2006 Dec 01 12:46 PM
We are in the process of adding own fields on the "additional data tab B" within a contract (TCD VA41 - VA43) .
Therefore we will expand the VBAK tabel with the needed fields and via SE51
we will add new fields to the screen 8309 of program SAPMV45A .
When all the fields are added we would like to use this specific "additional data tab B" only for one specific contract-type.
So, we're looking for the correct way to only use this tab on one specific contract.
Thanks for your reaction
Jan Weegels
2006 Dec 01 2:07 PM
If order type = "your order type" set the fields to invisible. Use the screen group to identify the screen elements you want to hide.
Use the PBO event of screen 8309.
loop at screen.
case screen-group1.
when 'YID'.
set screen element visible
screen-invisible = '0'.
when others.
set screen element invisible
screen-invisible = '1'.
endcase.
endloop.
Cheers,
Dennis
We are in the process of adding own fields on the "additional data tab B" within a contract (TCD VA41 - VA43) .
Therefore we will expand the VBAK tabel with the needed fields and via SE51
we will add new fields to the screen 8309 of program SAPMV45A .
When all the fields are added we would like to use this specific "additional data tab B" only for one specific contract-type.
So, we're looking for the correct way to only use this tab on one specific contract.
Thanks for your reaction
Jan Weegels
2006 Dec 01 1:11 PM
u need to get the tab poperties and then when this condition...loop at screen...if screen-name = tab...disable and modify the screen.
2006 Dec 01 1:59 PM
Where/how can i get the properties of the screen.
The best Regards
Jan Weegels
2006 Dec 01 2:07 PM
If order type = "your order type" set the fields to invisible. Use the screen group to identify the screen elements you want to hide.
Use the PBO event of screen 8309.
loop at screen.
case screen-group1.
when 'YID'.
set screen element visible
screen-invisible = '0'.
when others.
set screen element invisible
screen-invisible = '1'.
endcase.
endloop.
Cheers,
Dennis
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |