Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table control fields value not available in program.

alex_m
Active Contributor
0 Likes
488

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.

4 REPLIES 4
Read only

Former Member
0 Likes
468

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

Read only

0 Likes
468

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.

Read only

Former Member
0 Likes
468

Hi,

i need to know how you are populating that struture

thanks & regards,

venkatesh

Read only

0 Likes
468

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.