2006 May 18 2:40 AM
Hi everyone,
Do you know, if there is RFC or BAPI, for the information that returns the transaction GR55.
Thanks
Eduardo Campos.
2006 May 18 10:46 AM
Hi ,
try fm GRW_JOB_SUBMIT_PREPARE
CALL FUNCTION 'GRW_JOB_SUBMIT_PREPARE'
EXPORTING
i_report_group = 'A123'
i_program_type = 'X'
i_no_auto_import = 'X'
IMPORTING
e_subrc = gen_subrc
e_program_name = program_name
EXCEPTIONS
OTHERS = 4.
SUBMIT (program_name) VIA SELECTION-SCREEN AND RETURN.Andreas
2006 May 18 2:52 PM
Hi Andreas,
But this no returns the data, I need the data for a web application, another RFC or BAPI?
2006 May 18 3:04 PM
So create your own fm:
CALL FUNCTION 'GRW_JOB_SUBMIT_PREPARE'
EXPORTING
i_report_group = 'A123'
i_program_type = 'X'
i_no_auto_import = 'X'
IMPORTING
e_subrc = gen_subrc
e_program_name = program_name
EXCEPTIONS
OTHERS = 4.
SUBMIT (program_name) VIA SELECTION-SCREEN
EXPORTING LIST TO MEMORY
AND RETURN.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
LISTOBJECT = LISTE
EXCEPTIONS
NOT_FOUND = 1
OTHERS = 2.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |