<?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: BAPI_ADDRESSORG_CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699112#M1452156</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hiren Chitalia  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i am trying to change the URL but i am getting error in the return table saying as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Select a standard number in communication type URI" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to over come this error.&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;Rajgopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Mar 2010 09:53:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-08T09:53:25Z</dc:date>
    <item>
      <title>BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699108#M1452152</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 am trying to delete the contact number from ADR2 using "BAPI_ADDRESSORG_CHANGE"  but this BAPI is deleting the 1st record irrespective of the contact number i am sending to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please have a look at my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT gt_validnumber INTO gs_validnumber .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLEAR: lt_adtel, lt_adtelx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    lv_obj_id = gs_validnumber-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ls_adtel-telephone = gs_validnumber-tel_number.&lt;/P&gt;&lt;P&gt;    APPEND ls_adtel TO  lt_adtel .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ls_adtelx-telephone  = c_x.&lt;/P&gt;&lt;P&gt;    ls_adtelx-updateflag = gs_validnumber-action.&lt;/P&gt;&lt;P&gt;    APPEND ls_adtelx TO lt_adtelx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'BAPI_ADDRESSORG_CHANGE'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                obj_type      = 'KNA1'&lt;/P&gt;&lt;P&gt;                obj_id          = lv_obj_id&lt;/P&gt;&lt;P&gt;                obj_id_ext   = space&lt;/P&gt;&lt;P&gt;                context       = '0001'&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                bapiadtel      = lt_adtel&lt;/P&gt;&lt;P&gt;                bapiadtel_x  = lt_adtelx&lt;/P&gt;&lt;P&gt;                return          = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      COMMIT WORK .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest  me on how to solve the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajgopal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 06:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699108#M1452152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-06T06:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699109#M1452153</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;FYI:&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;To delete, e.g. a telephone number in the table of existing telephone numbers for an address, the 'UPDATEFLAG' field in the associated reference structure line &lt;STRONG&gt;must contain 'D'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;To create an entry, this field must contain 'I' and the data to be inserted must be passed.&lt;/P&gt;&lt;P&gt;All new lines to be inserted (I) and their reference structures must be after all entries to be changed (U) and deleted (D).&lt;/P&gt;&lt;P&gt;Change data key fields must always be filled, and are taken into account as far as possible. It is not significant whether, e.g. all telephone number comments are followed by fax number comments as change data, or vice versa;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;only the sequence among entries with the same key is significant, unless you pass only some or no communication address or comment serial numbers, in which case the data sequence is significant .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The key fields are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure  | Fields &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;BAPIAD1VL  | ADDR_VERS, FROM_DATE &lt;/P&gt;&lt;P&gt;BAPIAD_REM | ADDR_VERS, LANGU &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;BAPIADTEL  | CONSNUMBER&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;   ...     |    ... &lt;/P&gt;&lt;P&gt;BAPIADPAG  | CONSNUMBER &lt;/P&gt;&lt;P&gt;BAPICOMREM | COMM_TYPE, LANGU&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 06:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699109#M1452153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-06T06:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699110#M1452154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 09:59:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699110#M1452154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-06T09:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699111#M1452155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi NI SHILIANG &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 11:04:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699111#M1452155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-06T11:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699112#M1452156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hiren Chitalia  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i am trying to change the URL but i am getting error in the return table saying as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Select a standard number in communication type URI" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to over come this error.&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;Rajgopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 09:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699112#M1452156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T09:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699113#M1452157</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;Are u marking the BAPIADURI_X with 'X' for any change in BAPIADURI.&lt;/P&gt;&lt;P&gt;Also please paste yur code to help u further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hiren K.Chitalia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 10:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699113#M1452157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T10:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699114#M1452158</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 passed BAPIADURI_X with 'X'.  its working for all the records but it is giving the error for one record only hope this is a problem with that record and one more thing it is not deleting the record whose HOME_FLAG is marked as 'X' do you have any idea why it is like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajgopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 10:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-addressorg-change/m-p/6699114#M1452158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T10:53:05Z</dc:date>
    </item>
  </channel>
</rss>

