SAP Managed Tags: ABAP Development, ABAP Extensibility, ABAP Cloud how to write parallel cursor method condition for multiple table fetching, in my case I am joining ekko,ekpo,ekbe,lfa1,adr6. here ekko, ekpo, ekbe tables are having more records for single po number(ebeln).Know...
SAP Managed Tags: ABAP Development can anyone tell me what is use of parallel cursor method? 2 REPLIES andreas_mann3 Active Contributor 2005 Aug 041:49 PM 0Kudos 194 SAP Managed Tags: ABAP Development hi, you mean Using a Cursor to Read Data ? Andreas ChristianFi Active Participant In...
With this statement, you are instructing the SAP system to process function module calls in parallel. Typically, you’ll place this keyword in a loop in which will divide up the data that is to be processed into work packets. Calling program is continued using the statementCALL FUNCTION, as ...
METHOD process. DATA: tasks_input TYPE cl_abap_parallel=>t_in_tab, task_input_single TYPE xstring, single_record TYPE single_record, tasks_input_shared TYPE xstring, shared_record TYPE shared_record, task_result TYPE task_result. shared_record-process_mode = 1. * Since the process_mode ...
SAP Managed Tags: ABAP Development If I can get the where condition, i will have less loops so faster performance. I don't know what you mean by this. Fyi, LOOP...WHERE does a full table scan if the appropriate keys are not used. I am reading using an interface method if_ujo_que...