cancel
Showing results for 
Search instead for 
Did you mean: 

Which fonts are used in SAPScript

Former Member
0 Kudos

Hello,

I'm looking for a Font-Where-Used List in SAPScript. In all se71 forms.

I found the thread http://scn.sap.com/thread/1268072 with the helpful hint to TFORM01T,

but besides SmartForms I need to know, where a special font is used in old SAPScript-Forms.

I would like to avoid missing a form, when looking for the special font used.

Do you know a table or a where-used-list report for fonts?

Best regards,

Ulrike

Accepted Solutions (1)

Accepted Solutions (1)

Florian
Active Contributor
0 Kudos

Hi Ulrike,

good  thing is, that a sapscript is stored in the same way a so10-text is stored, just with different an different Id.

That mean, you collect all forms you want to check and can build a own small program which check if the font is used in.

Have a look in the table STXH with a formname you know.

OBJECT = FORM

ID          = DEF (Languages = LANG)

Afterwards you can use functionstone read_text and search through the lines for your statement.

You get a clear view what I'm talking about by testing it with one form you know (or a testform)

But a "Ready to Run" Report doesn't exist as far as I know.

~Florian

Answers (1)

Answers (1)

hedvig_rohonyi
Active Participant
0 Kudos

Hi Ulrike,

I suggest to use the function READ_FORM to find the used special fonts in your forms:
You can find the used fonts in internal table PARAGRAPHS(-TDFAMILY)  and

STRINGS (-TDFAMILY).


For Smartforms I suggest to use transparent table STXSPARA.

Best regards,

Hedvig