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

Doubt

Former Member
0 Likes
887

Hi,

END-OF-SELECTION what is the significance of this event when a report with LDB is used?

How can be find the report that were using LDB's

Thanks in Advance

Regards

SDN

1 ACCEPTED SOLUTION
Read only

Clemenss
Active Contributor
0 Likes
839

Hi,

how to find reports using LDB:

1. Use transaction SE36, enter LDB name, do where-used-list.

2. Use SE16 for TRDIR, check field LDBNAME <> 'D$S'.

and LDBNAME <> space (includes).

'D$S' just means that no LDB is used. I can see 8219 Reports using LDB.

Regards,

Clemens

Message was edited by: Clemens Li

6 REPLIES 6
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
839

END-OF-SELECTION is the event which is fired after the selection from the db, and you are ready to write out the results.

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9aca35c111d1829f0000e829fbfe/frameset.htm

Regards,

Rich Heilman

Read only

Former Member
0 Likes
839

> How can be find the report that were using LDB's

If you go to the attributes of the program, there is a entry there for entering the LDB name. If it is blank then a LDB is not used.

If you want to find out the reports that use a particular LDB, then you go to transaction SLDB, give the LDB name and do a where-used.

Read only

0 Likes
839

hi,

for 2) look table trdir fields dbapl and dbna

e.g. report rfitemar:

dbna = DD

dbapl = F

=> LDB = DDF

Andreas

pls reward points for useful answers

Read only

Former Member
0 Likes
839

hi

good

END-OF-SELECTION->

This is the last of the events called by the runtime environment to occur. It is triggered after all of the data has been read from the logical database, and before the list processor is started. You can use the corresponding event block to process and format all data that the program has stored in sequential datasets, such as internal tables or extracts, during the various GET events.

GO THROUTH THESE LINK FOR THA RELATIONSHIP BETWEEN END-OF-SELECTION AND LDB.

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9bb935c111d1829f0000e829fbfe/content.htm

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9b8535c111d1829f0000e829fbfe/content.htm

thanks

mrutyun

Read only

Former Member
0 Likes
839

hi,

for LDB check the below link

Regards,

Naveen

Read only

Clemenss
Active Contributor
0 Likes
840

Hi,

how to find reports using LDB:

1. Use transaction SE36, enter LDB name, do where-used-list.

2. Use SE16 for TRDIR, check field LDBNAME <> 'D$S'.

and LDBNAME <> space (includes).

'D$S' just means that no LDB is used. I can see 8219 Reports using LDB.

Regards,

Clemens

Message was edited by: Clemens Li