2024 Jun 27 7:07 PM - edited 2024 Jun 27 7:10 PM
Hi Have standard program RREGCH_VM which returning specification data with some statuses, statuses are like Traffic lights green, Red, Yellow.
Requirement is Customer want same stranded output which displayed RREGCH_VM program with additional data so,
i am writing submit Program for same , i got all data except this status data. below is my code.
SUBMIT rregch_vm
EXPORTING LIST TO MEMORY
AND RETURN.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
listobject = list_tab
EXCEPTIONS
not_found = 1
OTHERS = 2.
CALL FUNCTION 'LIST_TO_ASCI'
EXPORTING
list_index = -1
TABLES
listobject = list_tab
listasci = list_txtlines
EXCEPTIONS
empty_list = 1
list_index_invalid = 2
OTHERS = 3.
Let me know if any issues with my code.
Request clarification before answering.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 6 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.