cancel
Showing results for 
Search instead for 
Did you mean: 

Adobe Form Printing

Former Member
0 Kudos

Hi All,

I have a requirement to create Export Shipment Form in GTS system. A message type everything is created and configured.

As there is no driver program(Form will be called by Action Definition)I have to write all code in code initialization of the form. I have 1 query.

I have to stop form from appearing based on some amount calculation .How can i stop form from appearing in code initialization? What parameter I have to set?

Please help..

Thanks & Regards,

Anjana Rao

Accepted Solutions (0)

Answers (2)

Answers (2)

AntonPierhagen
Active Participant
0 Kudos

hi, one thing is not clear to me,

- do you want to stop the whole processing of the form?

- Or a (sub) part of the form?

If it is the first question, you should do it in SAP, else the answer of Memhet is the right one

Former Member
0 Kudos

You can set the 'presence' value to 'hidden' (= invisible and excluded from layout) or 'invisible' (= invisible, so empty, but space is reserved).

You have to decide if you put some page invisible or a certain subform.

For instance:


if (conditionabc == 'valueabc')
{
   SubformABC.presence = 'hidden';
}
else
{
   SubformABC.presence = 'visible';
}

Mehmet Metin