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

To enable a textfield in Tcode FB02

Former Member
0 Likes
592

Hi,

I want to enable the textfield of Business Area(COLB-GSBER) in FB02 Tcode. I found the layout of the screen and wouldn't let me change the status of the textfield. Can it be done using Implicit Enhancement? If positive, what would be the name of the form and what would be code to be put in that enhancement?

Please help me out.

Regards,

Rakesh Nair

2 REPLIES 2
Read only

RaymondGiuseppi
Active Contributor
0 Likes
528

First read  40659 - Can GSBER be changed? (just for information contained and not for implementation) and ask functionals for their opinion.

Regards,

Raymond

Read only

Former Member
0 Likes
528

Hi,

I decided to proceed by Implicit Enhancement. I found the subroutine(ZEILE_MODIFIZIEREN) upon where I inserted my enhancement code i.e-

loop at screen.

  if screen-name = 'BSEG-GSBER'.

    screen-input = 1.

modify screen.

endif.

endloop.

While debugging, the screen-input gets changed to ON. But the result is not being obtained.

Please help me out.

Regards,

Rakesh Nair