cancel
Showing results for 
Search instead for 
Did you mean: 

Create a new screen similar to CO11N

Former Member
0 Kudos

Hi Gurus,

We have a requirment to create a user friendly new screen similar to CO11N , In CO11N screen there are around 30 user input fields, but the user want only few of them say around 12 nos, through IMG Settings it is not possible to hide all the required. Customer want to create a new screen using t.code ZCO11N.

I am trying to create, but not able to attach subscreen to the main screen. If you see the status in the menu bar of CO11N, we can see 2 screens - 100, 110 . I had created 2 screens 9001, 9002 similar to the 100, 110, but not able to link each of them through t.code-ZCO11N.

Please guide.

Thanks in advance.

Vengal rao

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Consider this issue as resolved by other means.

MarcinPciak
Active Contributor
0 Kudos

Hi,

First of all you don't have to create new screens. You can use the ones from CO11N. Here are thes required steps:

1) Go to System->Status and see the program name for this transaction

2) Paste that program in SE80 so you can go and see its screens

3) Export the screen typing in command field UTDL

4) Go to your program create new screen, eidt it and import former screen back with UTUL tcode

5) Now repeat steps 3-4 for next screen

As for you question. Subscreens are not placed phisically at the screen form, but are called in the PBO and PAI like this.


PROCESS BEFORE OUTPUT.
...
  CALL SUBSCREEN area INCLUDING prog dynp.

PROCESS AFTER INPUT.
...
  CALL SUBSCREEN area.

For more information about subscreens refer [this|http://help.sap.com/saphelp_nw70/helpdata/EN/9f/dbabfe35c111d1829f0000e829fbfe/frameset.htm].

Hope this helps you

Marcin