To access an internal table, one must understand the concept of the work area. A work area is a temporary space in the memory space where you can read and modify the data in an internal table, line by line. It must have the same structure as that of theinternal tablethat is associated...
SAP Managed Tags: ABAP Development One piece I have experienced myself and somone didn't bring up is: If you use only partial key to search in a hash table, this would take as long as standard table (based on my experience). You must specify all key fields in your <b>READ</b> ...
In the following you will perform the following steps to create a transactional app using the new SAP Fiori programming model Create a database table to store the sales order header data Create an interface view to read the data from the database table Create a consumption ...
order. READ TABLE it_data INDEXv_index. *- Call the BAPIfor SalesOrder creation CALL FUNCTION'BAPISALESORDER_CREATEFROMDAT1 EXPORTING order_headerin = it_orderh = order sold_to_party = sold ship_to_party= shipto return = TABLES order_itemsin =it_item order_partners...
I'd stay away from secondary indexes on this table - particularly to speed up a single badly written SELECT. Like you said, this table is meant to be read the other way around. The data is likely to be found in the subsequent document table pointing back to the sales order. Rob Former...
SAP Managed Tags: ABAP Development Hello, The PROCESS_ITEM method availabe in BADI ME_PROCESS_PO_CUST is only processed when a user makes a change to a field in the item overview. We want PROCESS_ITEM to run any time the user chooses to save a PO. For example, we need to read te...
That should give you an entry in the /NEPTUNE/DEVICES table: In the ABAP backend you can now test the /NEPTUNE/SEND application to see if everything works: Also check the logs on the SMP Cloud (Very helpful feature) Congratulations you now should be able to receive Push notifications on ...
Read documentation for this FM for more info how to pass values to this FM. Cheers Reply Former Member In response to mvoros 2014 Jul 12 3:23 AM 0 Kudos 988 SAP Managed Tags: Security Hi Martin, I am aware of this FM but, as this is production system i can't have ...
*** I do not want to include the children of the entity! incl_child = abap_false. *** I started reading the parameters that will be passed from Script Logic: CLEAR ls_param. READ TABLE it_param WITH KEY hashkey = 'VERSION' INTO ls_param. IF sy-subrc NE...
Could you please mention how are you passing the fields from PI to the RFC, i mean to say are the fields being sent as STRING to ABAP FM? Coz in ABAP, I can't take STRING as table parameters. As I am using mass RFC lookup in a intermediate step which is generating String ,so ...