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 is execuiing slowly

Former Member
0 Likes
365

I have return LBD and executed it in Program by giving folllow code

tables : kna1,vbak,vbap,mara.

get kna1.

get vbak.

get vbap.

get mara.

When i try to execute it Iam not getting output but there is no error. It is continuously in execution.

Thanks in advance

Ranjith

I have return LBD and executed it in Program by giving folllow code

tables : kna1,vbak,vbap,mara.

get kna1.

get vbak.

get vbap.

get mara.

When i try to execute it Iam not getting output but there is no error. It is continuously in execution.

Thanks in advance

Ranjith

1 REPLY 1
Read only

suresh_datti
Active Contributor
0 Likes
336

just the GET statements & nothing else? GET is like a SELECT loop & will have to be closed.. I hope you have put the GETs between the start-of-selection &

END-OF-SELECTION evenst ie..

tables : kna1,vbak,vbap,mara.
start-of-selection.
get kna1.
* do your processing
get vbak.
* do your processing
get vbap.
* do your processing
get mara.
* do your processing
end-of-selection.

write : / 'report executed'.

~Suresh