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

New SubInfotype Subscreen

Former Member
0 Likes
376

How Do Everyone!

I have managed to add new fields to part of the

existing P0019 infotype ( Monitoring of Tasks) using

a CI include. These new fields are now being displayed.

But I only wish to display the new subscreen when the

subtype = '98' i.e. new custom subinfotype.

Can anyone tell me where I can put the conditional

check?

Cheers

Andy

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
337

Hi andy,

1. Using PM01 itself.

2. Goto PM01

3. Enter the infotype 0019

4. Click on the Enhance Infotype Tab (3rd Tab)

5. Click on Radiobutton 'Include Screen (0200)'

6. Click Create / Edit

7. Goto that Flow logic of that screen.

8. In the PBO u can write your code, something like this.

IF p0019-SUBTY = 'XXYZ'.

loop at screen.

if screen-name = 'P0019-ZZFIELDNAME'.

SCREEN-INVISIBLE = '0'.

SCREEN-INPUT = 1.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

ENDIF.

regards,

amit m.

How Do Everyone!

I have managed to add new fields to part of the

existing P0019 infotype ( Monitoring of Tasks) using

a CI include. These new fields are now being displayed.

But I only wish to display the new subscreen when the

subtype = '98' i.e. new custom subinfotype.

Can anyone tell me where I can put the conditional

check?

Cheers

Andy

1 REPLY 1
Read only

Former Member
0 Likes
338

Hi andy,

1. Using PM01 itself.

2. Goto PM01

3. Enter the infotype 0019

4. Click on the Enhance Infotype Tab (3rd Tab)

5. Click on Radiobutton 'Include Screen (0200)'

6. Click Create / Edit

7. Goto that Flow logic of that screen.

8. In the PBO u can write your code, something like this.

IF p0019-SUBTY = 'XXYZ'.

loop at screen.

if screen-name = 'P0019-ZZFIELDNAME'.

SCREEN-INVISIBLE = '0'.

SCREEN-INPUT = 1.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

ENDIF.

regards,

amit m.