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: 

Accessing Data From this Function Module

Former Member
0 Kudos

LB_BIL_INV_OUTP_READ_PRTDATA

When i enters bill no I am able to Fetch the entire data .

Now I want To access the table IT-KOND & want to fetch the values from this table.

i.e i want to save all the records from the IT-KOND in to some internal table.

How this can be done because its like hierarchy.

please help me its urgent

Tell me how should i define the internal table & fetch the data in that

1 ACCEPTED SOLUTION

athavanraja
Active Contributor
0 Kudos

data: myit type LB_T_BIL_IT_KOND ,

myit_wa type LBBIL_IT_KOND .

refresh myit .

myit = ES_BIL_INVOICE-IT_KOND .

loop at myit it myit_wa .

endloop .

Regards

Raja

2 REPLIES 2

Former Member
0 Kudos

Answered by me

athavanraja
Active Contributor
0 Kudos

data: myit type LB_T_BIL_IT_KOND ,

myit_wa type LBBIL_IT_KOND .

refresh myit .

myit = ES_BIL_INVOICE-IT_KOND .

loop at myit it myit_wa .

endloop .

Regards

Raja