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

va01 text, 'create sales order : initial screen'

Former Member
0 Likes
1,999

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
Read only

rajkumarnarasimman
Active Contributor
0 Likes
1,918

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

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

3 REPLIES 3
Read only

rajkumarnarasimman
Active Contributor
0 Likes
1,919

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

Read only

0 Likes
1,918

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

Read only

0 Likes
1,918

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