on 2024 Oct 14 11:15 AM
Hi guys,
I would like to call the Transaction CJ20n (via ABAP), skip first screen and jump directly on a specific Milestone. Any ideas how to develop that?
Thank you in advance!
Request clarification before answering.
Yes but AFAIK CJ20N only reads 3 parameters from memory for 'easy call'
GET PARAMETER ID 'PSP' FIELD entry_data-pronr.
GET PARAMETER ID 'PRO' FIELD entry_data-pspnr.
GET PARAMETER ID 'ANR' FIELD entry_data-aufnr.
But it also read some data from shared bufer,
IMPORT entry_data
g_fcode
g_template_object
FROM SHARED BUFFER cnpb_indx(ed) ID sy-uname.
Try to export some data in this shared buffer before calling the transaction. (variables defined in top include of function group CNPB_M) - the transaction will read and delete the shared buffer.
NB: The buffer contains an instance of structure CNPB_TEMPLATE_OBJECT and a function code
So
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
106 | |
39 | |
6 | |
5 | |
4 | |
3 | |
3 | |
2 | |
2 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.