SAP Managed Tags: ABAP Development You could do it with a FOR ALL ENTRIES, but you have to check if the table is not empty (otherwise you will have the full table as result). Or you could do INNER JOIN. It is how to make one SELECT statement and access to several table. For th...
SAP Managed Tags: ABAP Development hi! Chen Thanks for your reply Since that parameter is not required that error came. now i'm getting the Status - 51 Incorrect function module ZIDOC_INBOUND_KANBAN_MONITOR called up as per the Diagnosis checked the Message Type and Idoc type assigned to...
SAP Managed Tags: ABAP Development Hi Martin. Try, DATA: lv_element TYPE REF TO CL_SWF_CNT_ELEMENT, lv_name TYPE SWFDNAME. IF lv_element IS BOUND. lv_element->GET_NAME( IMPORTING NAME = lv_name NAME_STRING = lv_namestring EDITELEM = lv_element ). ENDIF. Hope it helpful, Regards...
SAP Managed Tags: ABAP Development Hi all, is there a way to create a field symbol within a method and export this field-symbol directly as a method parameter? The problem is that we can't pass a field symbol as method parameter unless it's assigned, but we would like to assign the...
SAP Managed Tags: ABAP Development Hi, I'm trying to set up a decentral warehouse scenario. I created an inbound delivery that successfully sent out an IDOC SHP_IBDLV_SAVE_REPLICA02 to a PI system that is currently acting as a data sink - e.g. just testing the ERP side of things....