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

Styles in SAP script

Former Member
0 Likes
638

Hi All,

How can I find , which style has been assigned to particular SAP scipt?

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
551

Hi Saurabh,

In Transaction SE72 we create the styles which we use in the scripts,


/E   WINDOW                              
/:   STYLE 'ZMK_SF_T'                    
P1   <CZ>THIS IS NOT MAIN WINDOW</>      
DP   tHESE IS STYLE USED DEFAUL PARAGRAPH
P1   &ULINE(30)&                         
/:     STYLE*

we use the styles in the text editor in scripts, just look into the above code which i wrote in text editor in scripts.

Regards

Kumar M

3 REPLIES 3
Read only

Former Member
0 Likes
551

Hi,

you can use the transaction code se72 for maintaining styles in scripts

Read only

Former Member
0 Likes
552

Hi Saurabh,

In Transaction SE72 we create the styles which we use in the scripts,


/E   WINDOW                              
/:   STYLE 'ZMK_SF_T'                    
P1   <CZ>THIS IS NOT MAIN WINDOW</>      
DP   tHESE IS STYLE USED DEFAUL PARAGRAPH
P1   &ULINE(30)&                         
/:     STYLE*

we use the styles in the text editor in scripts, just look into the above code which i wrote in text editor in scripts.

Regards

Kumar M

Read only

Former Member
0 Likes
551

thanks