cancel
Showing results for 
Search instead for 
Did you mean: 

Is my understanding correct?

Former Member
0 Kudos

Hi,

Iam practicing sap scripts now.I will put my understanding,please let me know whether its correct or not.

Sap Scripts is used to print forms like letters,payroll slip..any letter which the company gives out.We use SE71 to create forms in sap scripts.Sap scripts compnonents can be divided to

Layout set - where the document is printed

sapscript - where we use text symbols

abap program-which gets input from user,fetches data from database and put

into layout

symbols - to print data

function modules - open_form,write_form and close_form

In SE71 we create layout set,we start with pages,windows,page windows,paragraphs,characters.we creat elements in each.we use form painter to view out page.For each windows we create text elements to display data.

Please gimme suggestions whether my understand is correct.I dont understand write_form,can any one describe it more?whats that exporting element?

Thanks in advance

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos
Former Member
0 Kudos

Thanks satish.I collected the material.Is what I have given correct about sap script?

Former Member
0 Kudos

Some what correct Gopi ,not all.

Write_form is the function module to pass data between from program(SE38) to SE71 (SAP Form Painter) using text elements. so you should use loop internal table before using write_form. Just check the your program,i modified according to your needs.

SAP Script is three parts .

1. Form painter ( SE71)

Designing the windows ,using text elements and so on

2. Standard Text ( SO10)

You can call standard text globally when you want to go for Reusablitity

3. STYLE ( SE72)

Global Paragraph formats and charcters formats,mainly for standard text.

Thanks

Seshu