cancel
Showing results for 
Search instead for 
Did you mean: 

How to update and how to Display Customized tab Fields in table level

arunkumara_as
Explorer
0 Kudos

Dear Experts :

I have created Customized Tab with Some Fields in t-code MI GO How to Validate The Customized Tab fields and How to Update the Fields in Table Level

Please give solution for this Enhancement.

Accepted Solutions (0)

Answers (1)

Answers (1)

amine_lamkaissi
Active Contributor
0 Kudos

Hi Arun,

You can perform it with a loop in a abap code as following:

loop at screen.

if screen-name = <your field/>.

   screen-input = '0'. "to display your field

   modify screen.

endif.

endloop.

Amine