Application Development 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: 

Doubt

Former Member
0 Kudos

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

Clemenss
Active Contributor
0 Kudos

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

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

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

Former Member
0 Kudos

> 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.

0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

hi,

for LDB check the below link

Regards,

Naveen

Clemenss
Active Contributor
0 Kudos

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