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: 

Call Transaction CN22 then Services for Object missing

0 Kudos

If we directly access Tranasction CN22 the "Services for Object" toolbar icon appears just fine. If I access CN22 through a Call Transaction command in my ABAP program the "Services for Object"

toolbar icon is missing. Anything that I can do so the "Services for Object" toolbar icon functionality

is available to the user when the Call Transaction CN22 statement is used?

Appreciate any ideas you may have.

Thanks MPersson

3 REPLIES 3

Former Member
0 Kudos

I am not sure, but i hope you can take the function code of the required push buttons of the Services for Object toolbar and try to write use in call transaction program and check, whether its recognizing those function codes or not.

Thanks

~Satyasuresh Donepudi

0 Kudos

Satyasuresh,

Thank you for your suggestion.

I did find a solution. I was using an ABAP statement...

Call Transaction CN22 using BDCDATA.

Object Services was not available when the Call

stmt was used.

I changed my code to use....

SET PARAMETER ID 'ANR' FIELD W_AUFNR

CALL TRANSACTION 'CN22' AND SKIP FIRST SCREEN.

The Object Services functionality is now available to the user.

Simple solution... I should have figured this out sooner.

Thank you

MPersson

0 Kudos

Hi Mike,

I am using the same code as below for my Transaction ME33K/ME33. But still I dont find the GOS button on my screen from Z Program,

SET PARAMETER ID 'CTR' FIELD W_CONTRACTNO

CALL TRANSACTION 'ME33K' AND SKIP FIRST SCREEN.

Could you pls guide me to resolve this.