发布网友 发布时间:2022-11-22 23:11
共3个回答
热心网友 时间:2023-12-31 04:37
depending on your version you could achieve this via process chain;in your chain the first step would be an abap program running on BW side triggering the R3 program;the second step would then be the infopackage schele;another idea I saw once (maybe somebody explained it in this forum), easier but a little bit more dirty, was to do everything in the user-exit : you start the R3 program, wait for its completion and then select everything from the tableCh热心网友 时间:2023-12-31 04:38
It would be something like :CASE I_DATASOURCE.when 'MYEXTRACTOR'... SUBMIT ZABAP_TO_FILL_ZTABLE AND RETURN... SELECT * FROM ZTABLE INTO L_ZTABLE... LOOP AT L_ZTABLE..... MOVE L_ZTABLE TO C_T_DATA. (field by field, of course).... INSERT C_T_DATA... ENDLOOP.With of course the needed data definition and other mandatory stuff around.The only thing I am not sure is wether the user-exit is entered when the datapackage is empty. I think it is, but if not, I still have an idea to force it.热心网友 时间:2023-12-31 04:38
Yes, I too would want to see an example user-exits...