<?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: IDOC blank segment not displaying. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-blank-segment-not-displaying/m-p/7944702#M1601136</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 need to pass '\'  in the empty fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jun 2011 09:52:27 GMT</pubDate>
    <dc:creator>former_member404244</dc:creator>
    <dc:date>2011-06-07T09:52:27Z</dc:date>
    <item>
      <title>IDOC blank segment not displaying.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-blank-segment-not-displaying/m-p/7944701#M1601135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we create a line item in purchase order with  zero price. IDOC segment which contain price data is missing. but as per business requirement Zero Price segment should appear in IDOC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know the process of displaying blank or initial price Field in segment in an IDOC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to IDOC, so please help how to solve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tirumala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 08:35:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-blank-segment-not-displaying/m-p/7944701#M1601135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-07T08:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC blank segment not displaying.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-blank-segment-not-displaying/m-p/7944702#M1601136</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 need to pass '\'  in the empty fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 09:52:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-blank-segment-not-displaying/m-p/7944702#M1601136</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2011-06-07T09:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC blank segment not displaying.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-blank-segment-not-displaying/m-p/7944703#M1601137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi what you can do is pass the segment blank value i.e.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZE1KOMG-KSCHL = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above value can be passed only if your field domain is of Char or NUMC type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example below can help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take an internal table and work area of TYPE EDIDD. Take another work area of your segment type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ze1komg type ze1komg, &lt;EM&gt;&lt;STRONG&gt;"This is the work area for segment ze1komg&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;it_edidd type table of edidd, &lt;EM&gt;&lt;STRONG&gt;"Internal table and work area of type EDIDD&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;wa_edidd type edidd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Pass the value to the field of your segment&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;ze1komg-kunnr = wa_ct_time-vakey.&lt;/P&gt;&lt;P&gt;ze1komg-kschl = ' '.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Pass the segment to edidd internal table&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;wa_edidd-segnam = 'ZE1KOMG'.&lt;/P&gt;&lt;P&gt;wa_edidd-sdata = ze1komg.&lt;/P&gt;&lt;P&gt;append wa_edidd to it_edidd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and pass the internal table to function module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'COMMUNICATION_IDOC_CREATE'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 11:29:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-blank-segment-not-displaying/m-p/7944703#M1601137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-07T11:29:25Z</dc:date>
    </item>
  </channel>
</rss>

