parallel cursor Former Member 2005 Aug 04 1:29 PM 0 Kudos 451 SAP Managed Tags: ABAP Development can anyone tell me what is use of parallel cursor method?Reply All forum topics Previous Topic Next Topic 2 REPLIES andreas_mann3 Active Contributor 2005 Aug 04 1:49 PM 0 ...
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 the answer?
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-...
Solved: Dear team, (Not sure if I have opened this message at correct place) We have A program (forecasting that is related to Production planning). It runs country
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...