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

generating report?

Former Member
0 Likes
771

Hiii,

Can i generate an report from a structure and if yes how can i do that?. And if no wat is the alternative for solving this problem?. The structure name is RFPOSXEXT.

6 REPLIES 6
Read only

Former Member
0 Likes
736

No u cant generate a Report from a structure. U have to Find out the Datebase table where the date is getting stored for that particular screen

Read only

Former Member
0 Likes
736

Hi,

This requirement is not possible .... Press the where-used-list of that structure and find for the table wehre it is used and genterate/activate the table to activate.

Regards,

Santosh

Read only

Former Member
0 Likes
736

See from which tables this structure is getting populated,

form these tables u cn use to generate the report.

and one of the tables populating this strucure is VDARL table.

Thanks

Read only

Former Member
0 Likes
736

Hi,

This is not possible u cant generate aprogram using a structure as structure holds data only at runtime, u need to search for the relavant database tables by which the structure is created.....

Regards,

kavitha.

Read only

Former Member
0 Likes
735

Hi,

From structure we cannot generate a report.check whether that structure is use in any of the database tables and try it.

regards,

vineela.

Read only

Former Member
0 Likes
735

Hi

Structure are similar to moulds.they are empty and data which u are seeing is generated at the runtime.you cannot generate a report on a structure.

you need to find out the table which is being used to populate the structure.

Debug the program.

Find the variable used of same structure type,then run through the program .try to search for query involving this variable or any variable which assigns value to the variable.

This involves lot of backtracking but end-result will a set of one or more database tables.

hope this has solved ur query.