2007 Sep 05 11:24 AM
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.
2007 Sep 05 11:32 AM
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
2007 Sep 05 11:32 AM
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
2007 Sep 05 11:35 AM
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...
2007 Sep 05 11:38 AM