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

Infotype 0006 Ehanacement

Former Member
0 Likes
624

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

3 REPLIES 3
Read only

Former Member
0 Likes
568

// 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.

Read only

0 Likes
568

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.

Read only

0 Likes
568

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