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: 

SAPSCRIPT FROM ABAP

Former Member
0 Kudos
179

Hi,

I have a requirement to output a sapscript document from data held entirely in a Z table. The document will

have header and item format. Does anyone have a skeleton ABAP / or steps required to achieve this. My guess is:

1. Create Sapscript document

2. within ABAP fill internal tables with data to be printed

3. call sapscript function modules passing data to be printed.

Also ( rough estimate! ), would this be achievable in a day? There is an existing sapscript which could be used as a template - then modify to read Z data.

Thanks for your help.

Calum

1 ACCEPTED SOLUTION

Former Member
0 Kudos
93

Hi,

Go to se72.

give a name to script.

give the paragraph and character formats.

design the layout for header and main window.

then activate.

Now write the logic for ur script forms in se38 using

open_form, close_form,write_form.

Refer this link.

The complete introduction of sapscripts is given in it.

http://www.thespot4sap.com/articles/SAPscript_Introduction.asp

These are the standard programs try to understand them and u will come to know how to create

ur form.

RSTXFCAT - Program to find out SAP Scirpt names (Search Program)

RSTXCDM1 - SAPscript: Sample Program for Form Printing

RSTXCNVR - Converting SAPscript standard text to RAW format (ASCII)

RSTXCPDF - Routines for Converting OTF Format to PDF Format

RSTXDBUG - Activate/Deactivate Form Debugger

RSTXFCAT - Find Forms

RSTXFCPY - Copy Forms Between Clients

RSTXFCOM - Comparison of Two Forms

RSTXFCON - SAPscript: Conversion of Page Format for Forms

RSTXFINF - Comprehensive Information about a Specific Form

RSTXHTML - Conversion of SAPscript Texts (ITF) to HTML

RSTXICON - List of SAP icons and their names and SAP numbers <xxxxx>

RSTXSYMB - List of SAP symbols and their names as well as <xxxxx> SAP number

RSTXR3TR - Transport Program For SAPscript Transport Objects

RSTXSCAT - Find Styles

RSTXSF01 - TrueType font installation for SAPscript/SmartForms

RSTXTCAT - Find Standard Texts

2 REPLIES 2

Former Member
0 Kudos
94

Hi,

Go to se72.

give a name to script.

give the paragraph and character formats.

design the layout for header and main window.

then activate.

Now write the logic for ur script forms in se38 using

open_form, close_form,write_form.

Refer this link.

The complete introduction of sapscripts is given in it.

http://www.thespot4sap.com/articles/SAPscript_Introduction.asp

These are the standard programs try to understand them and u will come to know how to create

ur form.

RSTXFCAT - Program to find out SAP Scirpt names (Search Program)

RSTXCDM1 - SAPscript: Sample Program for Form Printing

RSTXCNVR - Converting SAPscript standard text to RAW format (ASCII)

RSTXCPDF - Routines for Converting OTF Format to PDF Format

RSTXDBUG - Activate/Deactivate Form Debugger

RSTXFCAT - Find Forms

RSTXFCPY - Copy Forms Between Clients

RSTXFCOM - Comparison of Two Forms

RSTXFCON - SAPscript: Conversion of Page Format for Forms

RSTXFINF - Comprehensive Information about a Specific Form

RSTXHTML - Conversion of SAPscript Texts (ITF) to HTML

RSTXICON - List of SAP icons and their names and SAP numbers <xxxxx>

RSTXSYMB - List of SAP symbols and their names as well as <xxxxx> SAP number

RSTXR3TR - Transport Program For SAPscript Transport Objects

RSTXSCAT - Find Styles

RSTXSF01 - TrueType font installation for SAPscript/SmartForms

RSTXTCAT - Find Standard Texts

Former Member
0 Kudos
93

Thanks Mahesh - this has given me all the information I required.

Calum