Skip to Content
0
Former Member
Oct 16, 2006 at 11:19 AM

Use of SUBMIT

90 Views

Hi .

We have 1 SAP std program and 1 Z program for asset allocation.We need to combine these report.I need the data of SAP report in Z report. These is one table ITAB_DATA in SAP report which contains all data for display ALV.I want this data in my Z program.

I WANT TO TRANSFER THE DATA OF SAP TABLE ITAB_DATA INTO MY INTERNAL TABLE WRITTEN IN Z.i THEN WANT TO MANUPULATE THIS DATA

I have written the following code.

data t_listobject like ABAPLIST occurs 0 with header line.

submit RAGITT_ALV01 via selection-screen

USING SELECTION-SET 'TEST17247'

exporting list to memory

and return.

if sy-subrc = 0.

CALL FUNCTION 'LIST_FROM_MEMORY'

TABLES

LISTOBJECT = t_listobject

EXCEPTIONS

NOT_FOUND = 1

OTHERS = 2

BUT DATA IN t_listobject IS IN RAW format. I want actual data. Plz suggest.