2008 Jun 12 10:27 AM
Hi Gurus,
I have on requirement. I have developed a report which displays a set of data similar to when we execute transaction ob52, and when we use NEW ENTRIES tab we get a refreshed screen and when the user enters its data in the fields , i need to capture that data into an internal table so that i can use them into bdc. the output is an alv oops display.
So basically i need to capture the information of the added rows into a table.
is there any method for doing this or any event?
2008 Jun 12 10:54 AM
Hello Abishek
If I understand you correctly you have an editable ALV grid.
In this case you just need to call method go_grid->check_changed_data( ) at PAI.
There is no need to define an event handler method for DATA_CHANGED if you do not need to validate the edited data.
Regards
Uwe
2008 Jun 12 11:11 AM
what are the parameters for this method.How can i capture into an internal table .Will it capture new entries i.e if i put new datas in a new row.
Thanks in advance
2008 Jun 12 11:14 AM
Hi,
no need of passing any parameters for this method. Also the new entries will be captured in to you internal table that you pass to the Set_first display method.
Reward points if useful
Raj
For Reference you can go through BCALV_EDIT_04 program.
Edited by: Raj D on Jun 12, 2008 12:14 PM
2008 Dec 01 9:36 AM