<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ME23N Insert Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474913#M1059765</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's consider extra field is a Die Number(in Item Level)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)	First Append fields in EKPO by double clicking on the existing structure CI_EKPODB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)	Create screen elements (SE51) using dictionary fields in EKPO which were created in the previous step in the screen exit SAPLXM06 u2013 0111.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)	To save the enhanced field values, Go to PAI of screen SAPLXM06 u2013 0111 and export the values to memory as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4)	SET PARAMETER ID 'DIENO' FIELD ekpo-zzdieno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5)	In the user exit EXIT_SAPMM06E_018, get the values from memory as below and store it in extended structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6)	GET PARAMETER ID u2018DIENOu2019 FIELD e_ci_ekpo-zzdieno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7)	Now values will be updated in the table upon saving.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8)	For displaying the data from table to screen, Go to the user exit EXIT_SAPMM06E_016, import the value to memory as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9)	SET PARAMETER ID u2018ODIENOu2019 FIELD i_ekpo-zzdieno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10)	Go to PBO of screen SAPLXM06 u2013 0111, and get the value form memory as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;11)	GET PARAMETER ID 'ODIENO' FIELD ekpo-zzdieno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have any clarification, revert back.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Sep 2008 13:17:47 GMT</pubDate>
    <dc:creator>asik_shameem</dc:creator>
    <dc:date>2008-09-15T13:17:47Z</dc:date>
    <item>
      <title>ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474909#M1059761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to insert a new screen (tab) in ME23N (Item). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I use the badi ME_GUI_PO_CUST for that ?  how can i use this badi for create a new screen in this transaction please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 11:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474909#M1059761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T11:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474910#M1059762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can easily acheive this by using enhancement MM06E005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen exit(Item): SAPLXM06 u2013 0111&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following exits to handle data between screen and table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_SAPMM06E_018 - Custom Screen(Item) to table EKPO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_SAPMM06E_016 - Table EKPO to Custom Screen(Item)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 11:48:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474910#M1059762</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2008-09-15T11:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474911#M1059763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your reply.I test the implementation I have never do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to impelement this 2 user exits?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_SAPMM06E_016 - Table EKPO to Custom Screen(Item).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_SAPMM06E_018 - Custom Screen(Item) to table EKPO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 12:41:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474911#M1059763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T12:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474912#M1059764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What difference they are between CI_EKKODB and CI_EKPDB?&lt;/P&gt;&lt;P&gt;And what i need to implement in this include. I just need a tab with 1 title and in this tab 1 filed PS_POSID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 13:11:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474912#M1059764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T13:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474913#M1059765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's consider extra field is a Die Number(in Item Level)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)	First Append fields in EKPO by double clicking on the existing structure CI_EKPODB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)	Create screen elements (SE51) using dictionary fields in EKPO which were created in the previous step in the screen exit SAPLXM06 u2013 0111.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)	To save the enhanced field values, Go to PAI of screen SAPLXM06 u2013 0111 and export the values to memory as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4)	SET PARAMETER ID 'DIENO' FIELD ekpo-zzdieno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5)	In the user exit EXIT_SAPMM06E_018, get the values from memory as below and store it in extended structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6)	GET PARAMETER ID u2018DIENOu2019 FIELD e_ci_ekpo-zzdieno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7)	Now values will be updated in the table upon saving.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8)	For displaying the data from table to screen, Go to the user exit EXIT_SAPMM06E_016, import the value to memory as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9)	SET PARAMETER ID u2018ODIENOu2019 FIELD i_ekpo-zzdieno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10)	Go to PBO of screen SAPLXM06 u2013 0111, and get the value form memory as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;11)	GET PARAMETER ID 'ODIENO' FIELD ekpo-zzdieno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have any clarification, revert back.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 13:17:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474913#M1059765</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2008-09-15T13:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474914#M1059766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)	First Append fields in EKPO by double clicking on the existing structure CI_EKPODB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's ok i have create my field to the tab : PS_POSID.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;2)	Create screen elements (SE51) using dictionary fields in EKPO which were created in the previous step in the screen exit SAPLXM06 u2013 0111.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have create the screen : SAPLXM06 u2013 0111&lt;/P&gt;&lt;P&gt;I have insert a input field for PS_POSID ( with referece : search help : COBL_EX_PRPM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have do the all next step. But I have activate the screen but he don't show me the screen?&lt;/P&gt;&lt;P&gt;When i activate the screen in se51 it should be ok?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 14:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474914#M1059766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T14:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474915#M1059767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when i launch the transaction they are a dump and error DIENO is unknow.&lt;/P&gt;&lt;P&gt;I think he don't pass to my screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 14:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474915#M1059767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T14:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474916#M1059768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think is because i have not implemented ME_GUI_PO_CUST.&lt;/P&gt;&lt;P&gt;Can you help me with this implementation please?&lt;/P&gt;&lt;P&gt;I don't know what method use with the element i have create before.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 14:45:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474916#M1059768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T14:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474917#M1059769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have try to implement the badi ME_GUI_PO_CUST with the method : SUBSCRIBE but nothing appear in item for transaction ME23N.&lt;/P&gt;&lt;P&gt;I use this code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
method IF_EX_ME_GUI_PO_CUST~SUBSCRIBE.
  *BREAK-POINT.
  DATA: ls_subscriber LIKE LINE OF re_subscribers.

  CHECK im_application = 'PO'.
CHECK im_element = 'ITEM'.

CLEAR re_subscribers[].

ls_subscriber-name = screen.
ls_subscriber-dynpro = '0111'.
ls_subscriber-program = 'SAPLXM06'.
ls_subscriber-struct_name = 'MEPO_BADI_STRUCT'.
ls_subscriber-label = 'test'.

APPEND ls_subscriber TO re_subscribers.

endmethod.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Spawn rad on Sep 16, 2008 9:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 07:55:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474917#M1059769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T07:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474918#M1059770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have found the solution but he don't save the value that i assign .&lt;/P&gt;&lt;P&gt;Any Idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Include           ZXM06U41&lt;/STRONG&gt;&lt;/U&gt; (user exit)&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'PRO' FIELD i_ci_ekpo-ZZPS_POSID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Include           ZXM06U40&lt;/STRONG&gt;&lt;/U&gt;  (user exit)&lt;/P&gt;&lt;P&gt;GET PARAMETER ID 'PRO' FIELD e_ci_ekpo-ZZPS_POSID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In screen painter :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;PROCESS BEFORE OUTPUT :&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;module ZSTATUS_0111 output.&lt;/P&gt;&lt;P&gt;GET PARAMETER ID 'PRO' FIELD ekpo-ZZPS_POSID.&lt;/P&gt;&lt;P&gt;endmodule.                 " ZSTATUS_0111  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;PROCESS AFTER INPUT :&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module ZUSER_COMMAND_0111 input.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'PRO' FIELD ekpo-ZZPS_POSID.&lt;/P&gt;&lt;P&gt;endmodule.                 " ZUSER_COMMAND_0111  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 08:57:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474918#M1059770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T08:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: ME23N Insert Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474919#M1059771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Spawn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whatever you have done is correct except the memory ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are using same memory ID for both. Change that as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;In Exits:

Include ZXM06U41 (user exit) - From EKPO to Screen
SET PARAMETER ID 'IPRO' FIELD i_ci_ekpo-ZZPS_POSID. " IPRO Here

Include ZXM06U40 (user exit) - From Screen To EKPO
GET PARAMETER ID 'OPRO' FIELD e_ci_ekpo-ZZPS_POSID. " OPRO Here

In screen painter :

PROCESS BEFORE OUTPUT :
module ZSTATUS_0111 output.
GET PARAMETER ID 'IPRO' FIELD ekpo-ZZPS_POSID. " IPRO Here
endmodule. " ZSTATUS_0111 OUTPUT

PROCESS AFTER INPUT :
module ZUSER_COMMAND_0111 input.
SET PARAMETER ID 'OPRO' FIELD ekpo-ZZPS_POSID.  " OPRO Here
endmodule. " ZUSER_COMMAND_0111 INPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 10:16:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me23n-insert-screen/m-p/4474919#M1059771</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2008-09-16T10:16:57Z</dc:date>
    </item>
  </channel>
</rss>

