cancel
Showing results for 
Search instead for 
Did you mean: 

Problem in USER_COMMAND USING R_UCOMM LIKE

Former Member
0 Kudos

Dear All,

I developed a report in Project Systems module. The report is developed using ALV. It has WBS, Network Activity etc as the out put fields.

Now the user asked if clicks on Network number it has to take directly to Network place in the transaction code CJ20N. I wrote the accordingly using user command & parameter id for Network number (ANR) & asked to skip first screen using tcode CJ20N. But once I execute the report & click on network number it is opening the project but not going to network place.

Code - READ TABLE FINAL INDEX RS_SELFIELD-TABINDEX.

SET PARAMETER ID 'ANR' FIELD FINAL-AUFNR.

CALL TRANSACTION 'CJ20N' AND SKIP FIRST SCREEN.

Kindly suggest how to do it,

Accepted Solutions (0)

Answers (2)

Answers (2)

kesavadas_thekkillath
Active Contributor
0 Kudos

Record the process in shdb and use

call transaction with bdcdata with mode E

Former Member
0 Kudos

Hi,

You need to do a recording of the transaction CJ20N on how to get to the network place and put these lines of recording before you CALL TRANSACTION and it will take you to the required place directly.