2010 Feb 26 6:39 AM
Hello Frns,
i want to hide all the standard fileds and want to show only zfields (custom fields) for a subtype (a z subtype named 'HOSP') in infotype 0006 . how it can be possible ?
Please suggest some solution .
Thanks and Regards...
Priyank Dixit
Hello Frns,
i want to hide all the standard fileds and want to show only zfields (custom fields) for a subtype (a z subtype named 'HOSP') in infotype 0006 . how it can be possible ?
Please suggest some solution .
Thanks and Regards...
Priyank Dixit
2010 Feb 26 6:52 AM
// want to hide all the standard fileds and want to show only zfields (custom fields) for a subtype (a z subtype named 'HOSP') in infotype 0006 . how it can be possible ?
Please suggest some solution .
In my opinion there are two ways to handle this ..
From the functional perspective .. check with ur consultant if this can be achieved by
1.setting a feature at subtype level on a particular country defining the variable key .
2. hiding all the std fields and keeping the zfields in visible in T588M
3. maintain a separate screen for zfields and call them for this subtype only . Note Subscreen can be mapped to infotype screen in T582C.
he has the option to split this if its for a group of countries or a particular country in it0006 under subtype xxxx.
From technical ..
there must be an include ZP000600 where u can handle this with code on screen groups for this subtype .
handle the code in pbo include probably zp000620
same as
loop at screen.
if screen groupx = zfields screen screen group value enable and rest diable .
modify screen
endif.
endloop.
br,
vijay.
2010 Feb 26 7:30 AM
To enhance the infotype use transaction PM01. It will guide you through all steps. If you want to use standard functionality only no coding is required.
To show or hide fields use T588M.
2010 Feb 26 3:32 PM
My suggesion is to use the two HR definition HRBAS00INFTY and HRPAD00INFTY (transaction SE18).
Implement the 2 badis (transaction SE19) and use method BEFORE_OUTPUT to hide / show fields.
This is the best way suggested even by SAP.
Bye