2009 Apr 03 12:17 PM
Hello all,
I have one on abap-query in which i am displaying data for delivery details that is table LIKP and LIPS.
In this query i also have some code to get the sale order details from the the delivery details.
I have also used one FM module in this query as well as select endselet stamt.
When i run my quey it i going in infinite loop. I am not getting any thing . Each time i have to exit the screen.
Can anyone please tell me wat is the problem, why it is going in infinite loop.
Thanks and regards
Sachin yadav
2009 Apr 03 12:26 PM
HI,
don't use the select endselect.
first u pick the value from the table likp and write a for all enteries query on the lips table.
Before using for all entries follow all pre-requisites to it.
Regrads,
Naresh
2009 Apr 03 12:26 PM
HI,
don't use the select endselect.
first u pick the value from the table likp and write a for all enteries query on the lips table.
Before using for all entries follow all pre-requisites to it.
Regrads,
Naresh
2009 Apr 03 12:30 PM
can youplz tell me how to use for all entries.
As entry in table LIKP is filled from query.
So how to get the entry of table LIKP into my internal table.
Please suggest
2009 Apr 03 12:38 PM
Hi:
By using function module SPP02_READ_LIKP - find the data for LIKP
do like this
Select * from lips appending table int_lipks
For all entries in int_likp
Where VBELNy = int_likp-VBELN.
Regards
Shashi
2009 Apr 03 12:48 PM
thanks for your help,
But may i know how to display my internal table data to out put screen.
As i am new to the query i do not know how to display internal table data to report along with my data coming from ABAp-query.
for eg i have three field to display suppose A , B and C.
Field A and B are coming from query and i have to display field C from internal table.
How to do that
thanks in advance
2009 Apr 03 1:07 PM
Hi ,
For displaying data you can put a loop on the internal table.
Loop at Itab.
Write : 10 itab-field1,
20 itab-field2,
30 itab-field3.
Endloop.
Regards,
Anuj
2009 Apr 03 1:07 PM
Hello Sachin,
If you don't have problem,then put your code in this thread along with explanation of the problem facing.
Regards.
Sarbajit.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |