‎2007 Jan 30 11:08 PM
Hi,
I am modifing existing BDC Prog. in PS Module CJ02 based on 'Key field' few fields will be enable and few will be disable. If the flat file containing data for the disable fields then it has to through error msg. this is requirement. But it is uploading data for the fields which are enable and it is not giving any error msg for which fields are disable. How should I get any msg for the disable fields when I am trying to upload data through flat file.
Thanks
Ram.
‎2007 Jan 30 11:16 PM
May be you can try like this:
LOOP AT SCREEN.
IF SCREEN-NAME = <FIELDNAME>.
IF SCREEN-OUTPUT = 1.
"Display MEssage"
ENDIF.
ENDIF.
ENDLOOP.
Thanks,
Santosh