‎2007 Aug 07 10:34 AM
Hi All,
I have table control in module pool program, the values of the fields not available in run time. I have declared in program DATA: v_data type ZSD_STRUCTURE. But this is(ZSD_STRUCTURE) structure not a table. If i use TABLES statement the values available in run time.
Can anyone guess whats the problem?. Thanks.
‎2007 Aug 07 10:38 AM
HI,
use instead of
DATA: v_data type ZSD_STRUCTURE
DATA: v_data <b>type standard table of</b> ZSD_STRUCTURE.
reward points if helpful
thanks & regards,
venkatesh
‎2007 Aug 07 10:40 AM
I knew this will work but I need the reason, since I am going to use single value why I need declare as a table.
‎2007 Aug 07 10:46 AM
Hi,
i need to know how you are populating that struture
thanks & regards,
venkatesh
‎2007 Aug 07 10:49 AM
I didnt get your question, this is the first screen will act like a selection screen and need the user entered values in my program.