cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding Not displaying data for blank data fields in smart form

Former Member
0 Kudos

Hi All,

I have a issue in smart form.

I am dispaying item data in smart form.

Data is as below:

FIELD1 FIELD2 FIELD3

1455 65656 5.00

1455 65657 10.00

1455 65656 0.00

0.00

Now my issue is i should not display anything inplace of 0.00

It should be blank.

How to do it in smart form code!

Thanks,

Deep.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You could put a condition in your Text Node.

In the Condition Tab put:

FIELD3 NE INITIAL

Answers (1)

Answers (1)

Former Member
0 Kudos

hi deep,

Data is as below:

FIELD1 FIELD2 FIELD3

1455 65656 5.00

1455 65657 10.00

1455 65656 0.00

0.00

Now my issue is i should not display anything inplace of 0.00

deep. if u define condition for FIELD1 text node. it get suppressed when it is initial and so the field2 get printed inplace of FIELD1 and so on FIELD3 in place of FIELD2.

so, create gobal variable flag and check for NOT INITIAL before printing by creating program lines node within ur table node. print empty text node when initial with codition of GV_FLAG. i had similar probelm while printing voucher i had two colunms detib and credit. i have resolved by doing this way.

Former Member
0 Kudos

Hi,

This issue reolved by using conditions tab.

There i have added FIELD3 NE 0 condition.

So when any value present in FIELD3 only it will be displayed otherwise blank.

Thanks,

Deep.