Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BDC Grayedout fields

Former Member
0 Likes
390

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.

1 REPLY 1
Read only

Former Member
0 Likes
337

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