cancel
Showing results for 
Search instead for 
Did you mean: 

Hide the QR code in sap Adobe forms if there is no data

mahabaleshwar_patil
Participant
0 Kudos

Hi,

I have QR code of the sales order. There can be case where sales order can be present or not.

Now I am getting barcode printed in adobe form.

If there is no data in the sales order QR code should not be printed. It should be hidden.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member191296
Participant
0 Kudos

Hi P,

I will suggest a solution, though it might not be a generic one but it works. You can use java scripts to make a field invisible.

Like,

If ( data.Page1.TextField1.RawValue == null )

{

data.Page1.Barcode.Presence = 'invisible';

}

Raghu