‎2007 Jun 04 6:30 AM
Hi,
I am a program of IQ09 Transaction code by using submit .like.
DATA: BEGIN OF OBJECT_TAB1 OCCURS 0.
INCLUDE STRUCTURE RIHAFVR.
DATA TPLNR_INT LIKE IFLO-TPLNR.
DATA SELECTED.
DATA PM_SELECTED TYPE PM_SELECTED.
DATA: END OF OBJECT_TAB1.
SUBMIT RIEQUI21 AND RETURN EXPORTING LIST TO MEMORY .
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
LISTOBJECT = OBJECT_TAB1.
EXCEPTIONS
NOT_FOUND = 1
OTHERS = 2
.
but it is giving an ABAP Dump that length is incorrect. and it is also saying that object_tab is the correct type but length is incorrect.
how can we solve the program ?
How can I pass the parameters to the Selection Screen of IQ09 transaction code.
and at last of IQ09 the data will come to object_tab table in the sap standard code.
I would like to use that data for BDC purpose .
How it is possible ?
‎2007 Jun 04 6:33 AM
hi ,
OBJECT_TAB1 should be of type ABAPLIST.
Regards,
Raghavendra
‎2007 Jun 04 6:45 AM
Hi,
If the type is ABAPLIST then how can we process the data ?
I have to process the data .
Can I process it or not ?
Bye,
satya.
‎2007 Jun 04 6:58 AM
Hi,
when you run IQ09 it gives the output in alv form.
I want the data to process it.
How can we get it ?
Bye,
Satya.