cancel
Showing results for 
Search instead for 
Did you mean: 

&item-xblnr(C)&

Former Member
0 Kudos

Hi. In my smartform I have a table an in one of fields there is

<b>&item-xblnr(C)&</b>

Could You explain to me what's '(C)' for?

Greetings. P.

Accepted Solutions (1)

Accepted Solutions (1)

former_member196280
Active Contributor
0 Kudos

(C)--> condense

Ex: &item-xblnr(C)&HELLO --> "ABC " it will display ABC HELLO

Reward points to all useful answers.

Regards,

SaiRam

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

It condenses the variable, so it doesn't write the space chars on the right:

ITEM-XBLNR is long 18 char, so if ITEM-XBLNR = '123'

&ITEM-XBLNR& Second word, the output'll be

123 Second word

&ITEM-XBLNR(C)& Second word, the output'll be

123 Second word

Max