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: 

Unknown Paragraph format warning in SAPSCRIPT

Former Member
0 Kudos

Hi All,

I am getting 2 different warning messages in SAPScript.

1. Unknown Paragraph format <PF_Name> even though the paragraph format is defined properly in the Script.

2. Include expansion not possible, as at least one parameter is a symbol, even though the Standard test exists.

Can anyone please help?

Full reward points will be awarded for helpful answers.

Thanks,

Naba

6 REPLIES 6

Former Member
0 Kudos

Send me the screenshot of the affected areas and also the standard text. I haven't encountered such kind of exception before. Is there any symbol used in standard text. my email id is dpitguru@gmail.com.

Regards,

Mallick

Former Member
0 Kudos

The second warning is probably due to a statement something like,

/: INCLUDE &TEXTNAME&

As the SAPscript checker cannot find the name of standard text it cannot be certain it will exist. Provided the variable is populated with a valid name at runtime there will be no problem.

The message can be ignored.

Regards,

Nick

0 Kudos

Then i guess i have to debug the script and find out what is getting populated in the &...& variable.

is it so??

Naba

0 Kudos

That is one way. You could also add a line to just write the value of the variable, something like,

/: INCLUDE &MY_TEXT&

/ My text is called &MY_TEXT& !!

Just remember to take it out before you transport the form to production

regards,

Nick

Former Member
0 Kudos

The problem may be with the usage of paragraph format. instead of writing the format manually go through f4 function in the script editor. if u are able to see the format u made then there is no issue with the paragraph format. mostly it happened only when there is some mistake in making a paragraph format.

check the way u are making paragraph .probably it is crossing the margins u have made in your program. do check this.

Former Member
0 Kudos

Hi,

may be ur specifying the paragraph format in the middel of the line and not ending the same with </PF_Name>.

Satya.