cancel
Showing results for 
Search instead for 
Did you mean: 

Jump to KE24 using RRI

Former Member
0 Kudos

Hi, all!

I need to jump from Bex report to KE24 report using RRI (applying all restrictions of report line). But KE24 is such a specific transactions that it doesn't accept parameters throught RRI. I made proxy (standart report) in R/3 that calls ke24, but it also doesnt work, because of specific of KE24.

Have you faced such a problem? How did you solve it?

Accepted Solutions (0)

Answers (2)

Answers (2)

krzysztof_konitz4
Contributor
0 Kudos

Hi,

You can also use BAdI SMOD_RSR00004 in order to create custom field mappings in RRI...

Krzys

Former Member
0 Kudos

Of course I've read it already.

2 Krzysztof Konitz

It doesnt' help. The reason is that ke24 erases all params due to its specific logic...

former_member187709
Active Participant
0 Kudos

Hi,

The SAP enhancement (BW end) RSR00004 has the component EXIT_SAPLRSBBS_002 -user exit which is processed before the jump into the R/3 system.

I dont know if this would help.

You can use the option “Run and Debug” in the query monitor (RSRT), to diagnose the problem.

Select the check button “RRI transformation”. On the execution of the jump into the R/3 system the program is interrupted at various stages, i.e. during the mapping of the fields in the BW system as well as in the R/3 system.

When the system stops in the R/3 system, you can verify whether the mapping of the fields (and the value transfer) has been performed properly. You can check the internal tables I_T_FIELDS and I_T_SEL.

Cheers

Disha

Former Member
0 Kudos

I used that exit, but the problem is not in it.

All transformations work correctly, and data transferred to R/3. But when ke24 get params, it modifies them.

krzysztof_konitz4
Contributor
0 Kudos

Hi,

I didn't used transaction KE24 in RRI. Try to code in R/3 simple program with CALL TRANSACTION instruction. If it wouldn't be possible to set parameters from this program it wouldn't be also possible with RRI.

Krzys

Former Member
0 Kudos

I tried. Ke24 checks if transaction is started with CALL TRANSACTION WITH BATCH INPUT. I need BATCH INPUT to fill params

krzysztof_konitz4
Contributor
0 Kudos

You can try create COPA report using report painter. May be such reports would be possible to call from RRI...

So try KE30.

Krzys

Former Member
0 Kudos

AFAIK Reports are using ke24, because almost all copa data are displayed through ke24

krzysztof_konitz4
Contributor
0 Kudos

So may be the qucikest way to display COPA data from R/3 would be to give up using standard COPA report and creating your own report based on COPA tables (CE1, CE2, CE3, CE4) via ABAP or SAP query...

Krzys

former_member187709
Active Participant
0 Kudos

Hi,

Try reading through the following link

http://help.sap.com/saphelp_nw04/helpdata/en/99/08629bd3e41d418530c6849df303c9/frameset.htm

"Transaction and ABAP/4 Report"

Cheers,

Disha