2008 Oct 08 11:54 AM
Hi Experts,
CALL FUNCTION 'LIST_TO_ASCI'
TABLES
listasci = t_xlstab
listobject = list_tab1
EXCEPTIONS
empty_list = 1
list_index_invalid = 2
OTHERS = 3.
IF sy-subrc NE 0.
when iam using this it asks as t_xlstab so how i want to declare this one
MOhan
I dont understand it clearly.
I think you can declare it like this.
DATA: BEGIN OF t_xlstab OCCURS 100,
line LIKE bapitrform-line,
END OF t_xlstab.
pls check 'Where used list' on it. you can see the code.
2008 Oct 08 11:59 AM
You mean you don't know how to declare that internal table?
How about you double click on the function and see how the table parameter is defined?
2008 Oct 08 11:59 AM
I dont understand it clearly.
I think you can declare it like this.
DATA: BEGIN OF t_xlstab OCCURS 100,
line LIKE bapitrform-line,
END OF t_xlstab.
pls check 'Where used list' on it. you can see the code.
2008 Oct 08 12:00 PM
That table has no structure so you could use a table of strings:
DATA generictable TYPE TABLE OF string.
2008 Oct 08 12:16 PM
Hi i want to prepare the report as i want to submit the another report using varint in alv report so pls provide the solutuion
and at the same time i want to download the dat from the alv output
Thanks & Regards
Mohan
2008 Oct 08 12:21 PM
On my ECC6 system.
function list_to_asci.
*"----------------------------------------------------------------------
*"*"Lokale Schnittstelle:
*" IMPORTING
*" VALUE(LIST_INDEX) LIKE SY-LSIND DEFAULT -1
*" REFERENCE(WITH_LINE_BREAK) TYPE C DEFAULT SPACE
*" EXPORTING
*" REFERENCE(LIST_STRING_ASCII) TYPE LIST_STRING_TABLE
*" REFERENCE(LIST_DYN_ASCII) TYPE REF TO DATA
*" TABLES
*" LISTASCI OPTIONAL
*" LISTOBJECT STRUCTURE ABAPLIST OPTIONAL
*" EXCEPTIONS
*" EMPTY_LIST
*" LIST_INDEX_INVALID
*"----------------------------------------------------------------------So why not use that declaration:
*" REFERENCE(LIST_STRING_ASCII) TYPE LIST_STRING_TABLE
2008 Oct 16 10:34 AM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |