Application Development and Automation 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: 
Read only

call transaction

Former Member
0 Likes
1,677

Hi Experts,

I am calling 1 transaction in my report which displays a screen with save icon.

In that particular transaction some processing takes place on pressing save.

So either i want to disable save icon or no processing should take place on pressing save.

Please suggest.

Regards,

Kaustubh Kabre.

Hi Experts,

I am calling 1 transaction in my report which displays a screen with save icon.

In that particular transaction some processing takes place on pressing save.

So either i want to disable save icon or no processing should take place on pressing save.

Please suggest.

Regards,

Kaustubh Kabre.

15 REPLIES 15
Read only

dev_parbutteea
Active Contributor
0 Likes
1,647

Hi,

You should modify this in the transaction you are calling. If this is a standard one or one that you cannot change, i don't think that this can be done.

Read only

Former Member
0 Likes
1,647

What transaction is it that you are calling ?

regards,

Advait

Read only

Former Member
0 Likes
1,647

Hi,

what you can do is create a transaction variant, and remove the save icon and call that particular transaction.

i hope that 'll solve your problem.

regards,

Dheeraj

Read only

0 Likes
1,647

Hi,

Tcode i am calling is z transaction.

What i am doing is passing parameters to 1st screen of transaction and skipping 1st screen and there is save icon on 2nd screen.

what is transaction variant and how to proceed with it?

Regards,

Kaustubh

Read only

Former Member
0 Likes
1,647

Hi Kaustubh,

The T-Code which you are calling is a standard Sap T code or some custom Z t-code..?

Regards,

Navin

Read only

0 Likes
1,647

Hi,

Tcode i am calling is z transaction.

What i am doing is passing parameters to 1st screen of transaction and skipping 1st screen and there is save icon on 2nd screen.

Regards,

Kaustubh

Read only

Former Member
0 Likes
1,647

Hi Kaustubh,

Check whether BADI associated with the transaction have some addition functionality.

Regards

Karan

Read only

Former Member
0 Likes
1,647

Hi,

which transaction you are calling?

Regards,

Jyothi CH.

Read only

Former Member
0 Likes
1,647

Go to se93 for creating transaction, and check radio button create variant transaction. there it'll ask for a transaction for which u want to create a variant transaction and u can add more button and remove already present functionality. after creating variant transaction, call that particular transaction in ur program.

regards,

Dheeraj

Read only

0 Likes
1,647

Hi Dheeraj,

But will it affect my existing transaction ?

Read only

Former Member
0 Likes
1,647

Transaction variants simplify transaction flow by:

  • Inserting default values in fields

  • Hiding and changing the ready for input status of fields

  • Hiding and changing the attributes of table control columns

  • Hiding individual menu functions

  • Hiding entire screens

Transaction variants are actually made up of a series of screen variants. The field values and field attributes for each screen in a transaction variant are stored in screen variants. Each variant is assigned to a transaction. Variants may, however, contain values for screens in multiple transactions, if transaction flow makes this necessary. The transaction the variant is assigned to serves as its initial transaction, whenever you start the variant.

Both client-specific and cross-client transaction variants exist. Screen variants are always cross-client; they may, however, be assigned to a client-specific transaction.

A specific namespace has been designated for cross-client transaction variants and screen variants and they are both automatically attached to the Change and Transport System. Client-specific transaction variants can be transported manually.

regards,

Dheeraj

Read only

Former Member
0 Likes
1,647

No it'll not affect the functionality of your transaction, just the name 'll change, because you want to remove the save button. Transaction 'll work in the same manner.

regards,

Dheeraj

Read only

0 Likes
1,647

But I am not getting how to remove save button?

Read only

Former Member
0 Likes
1,647

there's a tool called GUIXT in that. just use that.

regards,

Dheeraj

Read only

Former Member
0 Likes
1,647

Hi,

As mentioned by Dheeraj, you can use GuiXT to prevent the save push button to show up on your transaction. In the GuiXT script, you can easily delete the push button by locating the element's name and then, save the script. Once you refresh your SAPGui screen, you will not see the push button on the screen at all.

For more information, please visit, http://www.guixt.com/site/index.php?mpane=solutions to have a better understanding of what it can offer to you and your users.

Thank you and I hope this helps!