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

changing fields of Logical database BRF

Former Member
0 Kudos
336

Hi;

I have a changing problem

I use brf logical database in my program but I want to change attributes of some selection fields.

Ex:I want to do mandotary year field.I can't dı it.I can add new field but I can't change fields of BRF.

How can I do?

1 REPLY 1
Read only

andreas_mann3
Active Contributor
0 Kudos
193

try this:


AT SELECTION-SCREEN OUTPUT.

  LOOP AT SCREEN.

    CASE SCREEN-NAME.
      WHEN 'BR_GJAHR'.
        SCREEN-REQUIRED = 1.
        MODIFY SCREEN.
    ENDCASE.
  ENDLOOP.

hope tha helps

Andreas