ABAP Development hi, you mean Using a Cursor to Read Data ? Andreas ChristianFi Active Participant In response toandreas_mann3 2005 Aug 042:06 PM 0Kudos 194 SAP Managed Tags: ABAP Development I guess you are referring to the SE30 Tipps&...
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...
· Division into changeable and non-changeable areas Although the lock logic makes the first two points technically possible, they are not practical because most accesses would be rejected. Check this link also. http://www.sapdevelopment.co.uk/perform/perform_pcursor.htm Ask a Question...
SAP Managed Tags: ABAP Development Hi Michelle, Do you have the code that you fixed the short dump? I'm facing the same problem where there is short dump in the Fetch Next cursor code. Appreciate if you could paste the code that you have fixed the problem Thanks. MY Reply Former...
using parallel cursor read with field symbols Former Member 2015 Jan 28 12:51 PM 0 Kudos 1,118 SAP Managed Tags: ABAP Development Hi all. I am trying to do loop inside a loop with field symbols to add some values checking same Profit center. I am doing loops on a BPC ...
SAP Managed Tags: ABAP Testing and Analysis Hello Gurus, i am running a 20 job parallelized programm, that reads two database tables: IF l_flg_second_time = con_off. l_flg_second_time = con_on. OPEN CURSOR WITH HOLD l_var_cursor FOR SELECT * FROM avor2 WHERE vtref IN s_vtref...
SAP Managed Tags: ABAP Development Hi, I need to update huge amount (around 3 million) of data in parallel process and fetch cursor is giving dump because of database commit during parallel process. I can not take whole data at once in internal table hence need to use fetch next cursor...
If you have nested loop, make sure you follow parallel cursor approach as mentioned in SE30 tips and tricks. Hope it helps. Reply Former Member In response to Former Member 2008 Sep 24 10:47 PM 0 Kudos 536 SAP Managed Tags: ABAP Development Thanks. Can you please give me ...