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: 

Styles in SAP script

Former Member
0 Kudos

Hi All,

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

Thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi,

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

Former Member
0 Kudos

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

Former Member
0 Kudos

thanks