2014 Mar 21 5:10 PM
hi all,
i want some feedback for calling a custom transaction in function module(rfc) and need to capture the output of the transaction and its messages into my function module and further use the output for Webservices.
The transaction refers a custome report program .
hi all,
i want some feedback for calling a custom transaction in function module(rfc) and need to capture the output of the transaction and its messages into my function module and further use the output for Webservices.
The transaction refers a custome report program .
2014 Mar 25 5:37 AM
Hi Chetan,
Instead of calling transaction, you can used SUBMIT statement and IMPORT statement after the submit. In your custom report, do the EXPORT for the data that you need further process in function module.
Thanks
Hock Lin
2014 Mar 25 5:51 AM
Hi Chetan,
You can go for CALL transaction statement.
Here the transaction will be executed in background and messages will be populated in it_mess. This you can use for further action.
CALL TRANSACTION 'SE11' USING it_tab
MESSAGES INTO it_mess
UPDATE 'A'
AND SKIP FIRST SCREEN.
Thanks,
Sachin
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |