on 2011 May 18 9:29 AM
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
62 | |
12 | |
7 | |
7 | |
7 | |
6 | |
6 | |
5 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.