<?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: Change Pointer processing - send all data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505521#M843143</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;&lt;/P&gt;&lt;P&gt;yes ..you can write user exit ..to fill the segments&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Mar 2008 16:31:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-12T16:31:19Z</dc:date>
    <item>
      <title>Change Pointer processing - send all data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505520#M843142</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;do you know a way to fill the complete IDoc during change pointer processing ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example DEBMAS.&lt;/P&gt;&lt;P&gt;IS it possible to fill all segments/data instead of the changed data ?&lt;/P&gt;&lt;P&gt;The normal way is to fill only the changed segments/data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 15:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505520#M843142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T15:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Change Pointer processing - send all data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505521#M843143</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;&lt;/P&gt;&lt;P&gt;yes ..you can write user exit ..to fill the segments&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 16:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505521#M843143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T16:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Change Pointer processing - send all data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505522#M843144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you have sample code ? or the name of the exit ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 17:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505522#M843144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T17:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Change Pointer processing - send all data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505523#M843145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Please find the sample code to fill the Idoc data.&lt;/P&gt;&lt;P&gt;DATA:	C_INVREV_SEGNAME(7) TYPE C VALUE 'Z1INVRV',&lt;/P&gt;&lt;P&gt;		C_INVREV_MESTYPE(6) TYPE C VALUE 'ZINVRV',&lt;/P&gt;&lt;P&gt;		C_INVREV_IDOC_TYPE(8) TYPE C VALUE 'ZINVRV01', &lt;/P&gt;&lt;P&gt;		Z1INVRV LIKE Z1INVRV,&lt;/P&gt;&lt;P&gt;		C_INVREV_DOCTYPE LIKE BKPF-BLART VALUE 'YY',&lt;/P&gt;&lt;P&gt;		IDOC_CONTROL LIKE EDIDC,&lt;/P&gt;&lt;P&gt;		T_COMM_CONTROL LIKE EDIDC OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;		IDOC_DATA LIKE EDIDD OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--- Move the document header into a structure&lt;/P&gt;&lt;P&gt;LOOP AT DOC_HEAD_TAB INTO DOC_HEAD.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--- Move the document item data into a structure&lt;/P&gt;&lt;P&gt;LOOP AT DOC_ITEM_TAB INTO DOC_ITEM WHERE NOT ( LIFNR IS INITIAL ).&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--- Populate the IDoc segment&amp;#146;s field with the required data&lt;/P&gt;&lt;P&gt;CLEAR Z1INVRV.&lt;/P&gt;&lt;P&gt;Z1INVRV-LIFNR = DOC_ITEM-LIFNR.		&amp;#147;Store vendor number for filter&lt;/P&gt;&lt;P&gt;Z1INVRV-XBLNR = DOC_HEAD-XBLNR.		&amp;#147;Billing number&lt;/P&gt;&lt;P&gt;IDOC_DATA-SEGNAM = C_INVREV_SEGNAME.	&amp;#147;Segment name&lt;/P&gt;&lt;P&gt;IDOC_DATA-SDATA = Z1INVRV.			&amp;#147;Segment data&lt;/P&gt;&lt;P&gt;APPEND IDOC_DATA.				&amp;#147;Populate IDoc internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if u have any Queries&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Sree M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 06:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-processing-send-all-data/m-p/3505523#M843145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T06:07:08Z</dc:date>
    </item>
  </channel>
</rss>

