cancel
Showing results for 
Search instead for 
Did you mean: 

call transaction - not skipping first screen until browser window maximized

former_member186444
Participant
0 Kudos

I've had a search on the forum for this but have not been able to find an answer. I'm calling an SAP transaction from a Web Dynpro application, passing over a document number and asking it to skip the first screen, as follows:

CONCATENATE 'http'

'://' host ':' port

'/sap/bc/gui/sap/its/webgui/?~transaction=MIR4 RBKP-BELNR=5105600751' '&DYNP_OKCODE=SHOW'

into url.

This pops up the transaction in the new window with the document number (hard-coded above while I'm testing this out) but doesn't immidiately skip the the first screen. The browser window opens at a reduced size and as soon as as I maximize it (not pressing enter or doing anything else), that's when it jumps through to the detail screen. A little strange.

Does anyone have any ideas why it's doing this and what I can do to correct it ?

thanks,

Malcolm.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member186444
Participant
0 Kudos

this is now resolved. My call to the transaction was slightly incorrect. This is now the working code:

CONCATENATE 'http'

'://' host ':' port

'/sap/bc/gui/sap/its/webgui/?~transaction=*MIR4 RBKP-BELNR=5105600751' ';DYNP_OKCODE=SHOW'

into url.