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

User defined tcode in VA01/02/03

Former Member
0 Likes
1,133

Hi,

is it possible to use an own tcode (ZTC01) in transaction VA01/02/03.

This tcode shell be inserted in the command-line and shell start the report wich belongs

to the tcode. After ending this report the user shell be back to VA01/02/03.

When i do this now the system-error is V0 104: Requested function ZTC01 is not available here.

Is there any customizing table?

thanks.

Regards, Dieter

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,012

Hi

Yes it can, but u need:

- Change the Status gui of VA01/2/3 in order to insert your function to run the trx

- Customize the trx VFBS

Max

Hi,

is it possible to use an own tcode (ZTC01) in transaction VA01/02/03.

This tcode shell be inserted in the command-line and shell start the report wich belongs

to the tcode. After ending this report the user shell be back to VA01/02/03.

When i do this now the system-error is V0 104: Requested function ZTC01 is not available here.

Is there any customizing table?

thanks.

Regards, Dieter

7 REPLIES 7
Read only

Former Member
0 Likes
1,012

Check View V_T180 from SM30,And search with position VA01.

Read only

Former Member
0 Likes
1,013

Hi

Yes it can, but u need:

- Change the Status gui of VA01/2/3 in order to insert your function to run the trx

- Customize the trx VFBS

Max

Read only

0 Likes
1,012

Hi max,

thanks for your answer. I tried VFBS but i don't know how to insert my tcode. I have looked

for some documentation for VFBS but i didn't find anything.

Do you know some documentation or do you have a short example how to insert what i need?

Thanks.

Regards, Dieter

Read only

0 Likes
1,012

Hi

I'm sorry but I don't have any documentation, u should check a standard hit having a behavior like your function.

For example: the function KUST of status gui U of program GUI SAPMV45B submits the report RVKUSTA1.

So u can use KUST as model in order to insert your function key in VFBS.

So try to run VFBS and insert SAPMV45B as program:

- Table T185F - Copy the hit of KUST and replace the function kye KUST with yours;

- Table T185 - Copy the hit of KUST and replace the function kye KUST with yours;

....................

Max

Read only

0 Likes
1,012

Hi max,

i have tried as you has mentioned at it works. I do not use a own report, i define an FORM in

MV45AIZZ and call via an entry in T185.

Thanks.

Regards, Dieter

Read only

0 Likes
1,012

Hi

Great!

Just only a little advice: it should be better to use the include MV45AFZZ to define an own FORM routine, the include MV45AIZZ is to define an own PAI Module routine.

Max

Edited by: max bianchi on Dec 16, 2008 5:19 PM

Read only

former_member194669
Active Contributor
0 Likes
1,012

How about this way .for avoiding teadious VFBS entry

Create program ZTC03 and assign a tcode ZTC03 to that


report  zTC03 no standard page heading
        line-size 170
        line-count 65(4).
call transaction 'VA03'.

I know this is not right way.