<?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: Populate the values for new segment in E1EDP01 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200215#M1521113</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Have u done the enhancement assignment in CMOD. If not maintain in CMOD and activate it and check out. Let me know if the problem exist even after that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridevi S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Aug 2010 06:19:52 GMT</pubDate>
    <dc:creator>former_member671009</dc:creator>
    <dc:date>2010-08-27T06:19:52Z</dc:date>
    <item>
      <title>Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200208#M1521106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement were have to extend the INVOIC02 Idoc and add a segment under the E1EDP01 say z1_cust.&lt;/P&gt;&lt;P&gt;can anyone tell how to populate the values for custom idoc under E1EDP01.&lt;/P&gt;&lt;P&gt;i have the user exit to add the code , but confused in between while writing code.&lt;/P&gt;&lt;P&gt;Waiting for your valuable Reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2010 11:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200208#M1521106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-26T11:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200209#M1521107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;hope the following code will help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: c_z1_cust  TYPE edidd-segnam VALUE 'z1_cust',
           v_z1_cust  type z1_cust.

Loop at int_edidd(idoc data table which will be available in the user exit FM).
   if int_edidd-segnam = 'E1EDP01'.
v_z1_cust-fld1 = ' '.
v_z1_csut-fld2 = ' '.
int_edidd-segnam = c_z1_cust.
int_edidd-sdata = v_z1_cust.
append int_edidd.
clear v_z1_cust.
endif.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridevi S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2010 12:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200209#M1521107</guid>
      <dc:creator>former_member671009</dc:creator>
      <dc:date>2010-08-26T12:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200210#M1521108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi find the sma eu will get a lot examples how to populate the Zsegment in a Idoc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u have to use some Exit depending upon the Inbound ou outbound and u have to write code in that exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2010 12:48:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200210#M1521108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-26T12:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200211#M1521109</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;The inbound function Module include for INVOIC02 is IDOC_INPUT_INVOIC_FI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the User exit and BADI inside the Function Module and write your code to modify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2010 12:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200211#M1521109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-26T12:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200212#M1521110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Sridevi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want to conform user exit where i will writing the code.&lt;/P&gt;&lt;P&gt;User Exit:&lt;STRONG&gt;EXIT_SAPLVEDF_002&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Include: &lt;STRONG&gt;ZXEDFU02&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the mentioned the user exit is it the right place to code for populating the values for new segment under &lt;STRONG&gt;E1EDP01&lt;/STRONG&gt;..?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 05:46:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200212#M1521110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T05:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200213#M1521111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  The mentioned user exit is right. you can write a piece of code and check it by debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sridevi S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 05:53:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200213#M1521111</guid>
      <dc:creator>former_member671009</dc:creator>
      <dc:date>2010-08-27T05:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200214#M1521112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridevi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had mentioned a break-point in the user exit  and activated too. since it was not entering in debug mode, so i got doubt whether am I writing the code in right place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if possible can u suggest what might be the reason for this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Lalit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 05:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200214#M1521112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T05:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200215#M1521113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Have u done the enhancement assignment in CMOD. If not maintain in CMOD and activate it and check out. Let me know if the problem exist even after that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridevi S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 06:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200215#M1521113</guid>
      <dc:creator>former_member671009</dc:creator>
      <dc:date>2010-08-27T06:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200216#M1521114</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;First of all thanks for clearing the following queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In CMOD I activated the following user exit which has the code written in include.&lt;/P&gt;&lt;P&gt;but then also facing the same the problem.&lt;/P&gt;&lt;P&gt;one problem is I am not able to see the new segment which i added under the E1EDP01 in WE05 Tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Lalit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 06:25:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200216#M1521114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T06:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200217#M1521115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Have you released the segment in WE31? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Have you created an extension?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Have you created an entry in WE82 with&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;message type / basic type / extension and release.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Have you assigned the partner profile to the new message type / basic type / extension combination?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sujay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 06:39:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200217#M1521115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T06:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200218#M1521116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Sujay&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done with the all the things that you mentioned.&lt;/P&gt;&lt;P&gt;I can see the extended Idoc in we05 which has been filled with the respective standard fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here the following the code which i added in user exit: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; DATA: lv_z1rbc_e1edp01 TYPE edidd-segnam VALUE 'z1rbc_e1edp01',
      wa_z1rbc_e1edp01 TYPE z1rbc_e1edp01.

LOOP AT int_edidd.
  IF int_edidd-segnam = 'E1EDP01'.
    LOOP AT it_rbc INTO wa_rbc.
      wa_z1rbc_e1edp01-stdat = wa_rbc-stdat.
      wa_z1rbc_e1edp01-enddt = wa_rbc-enddt.
      int_edidd-segnam = lv_z1rbc_e1edp01 .
      int_edidd-sdata = wa_z1rbc_e1edp01 .
      APPEND int_edidd.
      CLEAR wa_z1rbc_e1edp01.
    ENDLOOP.
  ENDIF.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the it_rbc is the internal which has the following values.&lt;/P&gt;&lt;P&gt;please help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lalit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 07:03:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200218#M1521116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T07:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Populate the values for new segment in E1EDP01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200219#M1521117</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 don't need to loop at the table int_edidd.  This exit will get executed for all the segments. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check for the segment name and process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sujay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 08:32:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populate-the-values-for-new-segment-in-e1edp01/m-p/7200219#M1521117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T08:32:19Z</dc:date>
    </item>
  </channel>
</rss>

