... Also to update Z fields from all customer and vendor related tables. But lately after upgrade from 7.40 SP5 to 7.40 SP16 the method maintain_bapi was not saving the changes to the customers.
Afte ...
... ks to the blogs from SCN. Additionally I've started to search the web for the eclipse plug-in developments so I could get some more information about it. It was hard time for me, I've stopped thi ...
... the same and although I can only imagine that the problem comes from decimal type of field, funny stuff was that inside this form there are other fields which are using decimal type and they are disp ...
... I did what I should do from beginning. I used where used function to display where TVCPL table is used and I found two views V_TVCPLAK and V_TVCPLAP.
I started with the first one as from ...
... needed here.
So I had to use CL_PO_HEADER_HANDLE_MM and IF_PURCHASE_ORDER_MM to fetch all data from purchase order and to move them to MDPA and MDLB structures. Once it was ready the rest ...
... BOM" button, but I needed to do this from ABAP side. I started with IF_PURCHASE_REQUISITION but although there is a method "explode_bom" for item, then it was calling the screen ...
... not your friend. On TechEd also you had to manage your time correctly, but there always were some breaks when you could go and meet people you know from SCN/twitter/SITs (which I appreciate the ...
This year in July I received an email from SAP Developer Relation team that I was nominate for one of thirty SAP TechEd Developer Heroes 2016. This was quite unsuspected but at the same time ...
... you can make your SALV editable and you can handle all the events you want from underlying cl_gui_alv_grid object. What you need to do, is to set handler for event after_refresh for all instances ...
... 1. My first touch with ABAP in Eclipse It was not the love from the first sight. Although I liked very much the idea of using Eclipse for developing in ABAP. ...
Please be aware that accessing private or protected data may have unpredictible consequences! Use it at your own risk. From time to time, it happens that you want to access private data or methods ...
Everybody sends mails from SAP, some are still using old FM SO_NEW_DOCUMENT_ATT_SEND_API1 but some CL_BCS class. This class is really powerful but it has one disadvantage - it does commit work, and ...
... class of whole FALV. Everything starts here. Bellow you can find some description of main methods and attributes which are made in this class.
Methods:
CREATE
CREATE_BY_COPY
LVC_FCAT_FROM_ITAB ...
...
into corresponding fields of table @sflight
from sflight.
"FALV creation with only table passed
data(falv) = zcl_falv=>create( changing ct_table = sflight ...
... in the mass replace function for FALV so now you don't have to import separatelly from http://abapblog.com/articles/tips/72-mass-replace-popup-for-alv-grid.
"! This is demo for FALV with mass replace functi ...
...
"! done by Lukasz Pegiel for http://abapblog.com
report zdemo_falv05.
data: sflight type standard table of sflight.
class lcl_test definition inheriting from zcl_falv. ...
...
"! done by Lukasz Pegiel for http://abapblog.com
report zdemo_falv04.
data: sflight type standard table of sflight.
class lcl_test definition inheriting from zcl_falv ...
...
"! done by Lukasz Pegiel for http://abapblog.com
report zdemo_falv03.
data: sflight type standard table of sflight.
class lcl_test definition inheriting from zcl_falv. ...
... program shows how to use FALV when you want to use event handlers by your own.
"All" events are handled so you just need to redefine proper method starting from evt_*
"! This is demo for FALV with redefinition of hotspot event handle ...