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: 

va01 text, 'create sales order : initial screen'

Former Member
0 Kudos

ello,

where is this text stored, i have checked alla modules of PBO of sapmv45a-screen 0101, however, i could not find this text: 'Create sales order :  initial screen'

Could you direct me ?

thank you

1 ACCEPTED SOLUTION

rajkumarnarasimman
Active Contributor
0 Kudos

Hi Dimas,

The title is maintained in A01 in the program, it will be called using the below code.

SET TITLEBAR 'A01'.

Regards

Rajkumar Narasimman

3 REPLIES 3

rajkumarnarasimman
Active Contributor
0 Kudos

Hi Dimas,

The title is maintained in A01 in the program, it will be called using the below code.

SET TITLEBAR 'A01'.

Regards

Rajkumar Narasimman

0 Kudos

Hello Rajkumar,

Thank you for your help.

However i cannot change this text, for example i want to delete 'initial', it does not allow to do that.

Is there any way to do so?

Thanks

0 Kudos

Hi..

You can't change the existing text. It requires the Key I hope. But if required you can overwrite the standard text with some other customized text.

You can use the following code inside implicit enhancement.  Create the GUI Title in some program and call the same as like below in VA01 transaction in PBO Section.


IF SY-TCODE = 'VA01'.

   SET TITLEBAR 'ZVA01' OF PROGRAM 'ZTITLE'.

ENDIF.


1. Create the ZGUI Title:


2. Write the code in Implicit enhancement

Activate it.

3. Check VA01.

Regards

Rajkumar Narasimman