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

LDB Event

Former Member
0 Likes
630

What is the mandatory event in LDBs?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
550

As such you can have a LDB program without any Event (Say you can only wanna PNP selection screen, just include Tables: pernr)...

But for utilizing LDB fully in the code, you have to have GET <node> followed by End-of-selection... (Node - is the table/node defined for each LDB in its structure, which you can find in SE36)... This "GET <node> followed by End-of-selection" forms a loop similar to Select ....Endselect

As such you can have a LDB program without any Event (Say you can only wanna PNP selection screen, just include Tables: pernr)...

But for utilizing LDB fully in the code, you have to have GET <node> followed by End-of-selection... (Node - is the table/node defined for each LDB in its structure, which you can find in SE36)... This "GET <node> followed by End-of-selection" forms a loop similar to Select ....Endselect

3 REPLIES 3
Read only

Former Member
0 Likes
550

hi check this..

get and tables event is mandatory....

if the LDB is the pnp then

get pernr

tables pernr..

regards,

venkat

Read only

Former Member
0 Likes
551

As such you can have a LDB program without any Event (Say you can only wanna PNP selection screen, just include Tables: pernr)...

But for utilizing LDB fully in the code, you have to have GET <node> followed by End-of-selection... (Node - is the table/node defined for each LDB in its structure, which you can find in SE36)... This "GET <node> followed by End-of-selection" forms a loop similar to Select ....Endselect

Read only

amit_khare
Active Contributor
0 Likes
550

In SE36 give the LDB name and check the documentation. You will get the info about required events.