Application Development 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: 

co11n screen exit help

Former Member
0 Kudos

In co11n , I need to add 3 custom fields. I found the enhancement CONFPP07, it has 3 screen exits but when I am trying to change them it is asking access key. how to change the subscreen 900 or 910 or 920 & add fields to that subscreen.

function group is CORU_S.

looking for answers, points are rewarded.

9 REPLIES 9

Former Member
0 Kudos

Hi,

may be you are doing on changes mode in SMOD or CMOD, goto display mode & implement the user exit.

It should not ask for access key, while u create same subscreen program name & screen number in SE51.

ex ;

goto SE51.

SAPLXCOF 0900.

but u should create subscreen only.

u can ur own fields in this screen.

By

Gupta...

0 Kudos

co11n transaction is already having some self definable subscreen can i use those or do i need to create my own subscreen.

reply

0 Kudos

Hi,

U cannot create u r own subscreens, in screen it mention the screen names & screen number with this name only u have to create other than this name u cannot create.

if really want to in own screen either u have to take access key or copy total program in Z program change accordingly.

By

Gupta....

0 Kudos

ok thanks for you reply. I have created a subscreen with number 900 for SAPLXCOF in se51. I defined custom fields also in that. I created a project in cmod & added enhancement CONFPP07 & activated it.

but know tell me how to link the subscreen i created to the standard screen . what is the use of function group & screen group here.

pls give clear step of linking what with what.

0 Kudos

Hi,

I think u added customer own fields in 'AFRUD' structure.

for PBO code ( display the data in screen u can use below function module given in screen exit.)

EXIT_SAPLCORU_S_100

for PAI code for update the of user entered data. using below function module.

EXIT_SAPLCORU_S_101

when activate this exit one new screen will apear in self definable1 , check it...

there user can input the data.

no nedd to link separatly. u should write code in above FM.

By

Gupta...........

0 Kudos

i added fields to AFRU transparent table as finally data needs to be stored in table from the transaction where user enters data.

but i think i need to add fields to AFRUD structure also those fields.

am i correct?

EXIT_SAPLCORU_S_101 is useful in this scenario.

0 Kudos

I am not able to see subscreen under co11n transaction. what could be the wrong.

0 Kudos

for co11n, help required

bastinvinoth
Contributor
0 Kudos

Dear Uday,

see you can get the co11n data by using memory id also .

The main purpose of these follwing code is,you can get the standard data's to your own custom screen.

You have to write the code under CONFPP07.

In that You have to use User Exits.

i got it co11n data by using following code in user exit - EXIT_SAPLORU_S_100

***************EXIT_SAPLCORU_S_100*************

if is_afrud-aufnr is not initial.

   move is_caufvd-vbeln to vvbeln.

   endif.

*IMPORT vvbeln TO VVBELN1 FROM MEMORY ID  'ZVVBELN'.

***********EXIT_SAPLCORU_S_100*************

After that i just write the code on my custom screen (910).


   export vvbeln to memory id 'ZVVBELN'.

then based on that sales order no or whatever you are passing in user exit,you can get it relevant data in ur custom screen.

I hope this helps you

--

Thanks & Regards,

BASTIN VINOTH NG

<personal information removed by moderator>

Message was edited by: Thomas Zloch