2010 Feb 22 9:01 AM
Hi all,
Screen is a structure in ABAP Dictionary, but we also can use 'loop at' statement for the special structure ? How does the system work?
Thanks and Best regards,
Yinyan Lu
2010 Feb 22 9:07 AM
Hi,
Check the Below thread, As per this document
http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm
LOOP AT SCREEN itself a statement NOT to be confused with loop at other internal tables.
" For more info on this Take F1 help on this key word or Searh the internet a Lot info is availableCheerz
Ram
2010 Feb 22 9:07 AM
Hi,
Check the Below thread, As per this document
http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm
LOOP AT SCREEN itself a statement NOT to be confused with loop at other internal tables.
" For more info on this Take F1 help on this key word or Searh the internet a Lot info is availableCheerz
Ram
2010 Feb 22 9:38 AM
Hi Ram,
Screen is a structure, so we need a system table to store the screen elements. Who can tell me the table's name and how does it pass the values to the structure?
Thanks
Yinyan Lu
Edited by: YINYAN LU on Feb 22, 2010 10:54 AM
2010 Feb 22 10:48 AM
HI Lu,
There is no datbase table where you'r screen details get updated. This is a run time process, as soon you run your program, structure SCREEN had the screen details. You can create you'r table by looping this structure and appending the table
Edited by: Anurag_n on Feb 22, 2010 11:48 AM
2010 Feb 22 9:10 AM
Hi,
Please sea SAP help on this, it will give you complete details.