‎2008 May 02 8:04 AM
‎2008 May 02 8:06 AM
Hi Prince,
Structures don't Store Values as they are not assigned Memory, so how can you get these Values when they does not Exist.
Regards,
Sunil.
‎2008 May 02 8:18 AM
Hi Prince,
Structures are populeted at run time and they dont store the values permanently.
Untill the specific Transaction is runned the values are stored and after that they get refreshed.
to find the values of the fields used in the structure, first u need to know where these fields are used, that is in which table these fields are used. Then u can easily find the values of the fields u want.
Hope this helps...
Best regards,
raam
‎2008 May 02 8:38 AM
hi prince
well structure are wokarea and can hold the value only noe record and that is at the time of execution .
we can also use these structure to define an internal table
now if u r asking how to get value for a field in a structure in program that is simple
suppose uhave a structure like this
fs_struct.
which have three field f1, f2, f3.
now to get the value of field use this
fs_struct-f1 for value of frist field
fs_struct-f2 for value of second field
fs_struct-f3 for value of third field
best regards
snehi chouhan
‎2008 May 02 9:51 AM
Hi Prince,
The structures dont have any memory allocated and hence they dont hold any values. The work areas and the internal tables which are defined using the structure holds the values.
Pls reward if useful.
Thanks,
Sirisha.