Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Customize CJI3

Former Member
0 Kudos
1,079

Hi all,

I have got a requirement to customize the transaction 'CJI3' (which I have done).

When we execute the transaction CJI3, it asks for controlling area thru a pop up. I have been able to remove the pop up and set up a default value by calling the transaction OKKS in my program ( SET PARAMETER ID 'CAC' FIELD '0002'. CALL TRANSACTION 'OKKS' AND SKIP FIRST SCREEN.) but it also as asks for database profile thru a pop up again.

Can anybody please tell me if there is any transaction/way to do away with the pop up and set up a value for database profile.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
415

SET PARAMETER ID 'CAC' FIELD '0002'.

SET PARAMETER ID 'PDB' FIELD '000000000001'.

CALL TRANSACTION 'OKKS' AND SKIP FIRST SCREEN.

Set both value and then call transaction you will get the direct screen

Reward if useful..

Minal

3 REPLIES 3

Former Member
0 Kudos
416

SET PARAMETER ID 'CAC' FIELD '0002'.

SET PARAMETER ID 'PDB' FIELD '000000000001'.

CALL TRANSACTION 'OKKS' AND SKIP FIRST SCREEN.

Set both value and then call transaction you will get the direct screen

Reward if useful..

Minal

Former Member
0 Kudos
415

Sorry Try this

SET PARAMETER ID 'CAC' FIELD '0002'.

SET PARAMETER ID 'CAC' FIELD '000000000001'.

CALL TRANSACTION 'CJI3' AND SKIP FIRST SCREEN.)

reward if useful...

0 Kudos
415

Your first solution works. Thanks a lot