<?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: Adding new web address for the customer using BAPI_ADDRESSORG_CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935833#M1600173</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resolved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Jun 2011 10:32:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-30T10:32:02Z</dc:date>
    <item>
      <title>Adding new web address for the customer using BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935830#M1600170</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 used the function module BAPI_ADDRESSORG_CHANGE to add a new web address for the customer (XD03). When a web address is added, I have set the parameters STD_NO to 'X' and HOME_FLAG = 'X' to identify the web address as the default. And the next time I add a new web address, I am setting the STD_NO to 'X'  and HOME_FLAG = 'X' for the tables for the tables BAPIADURI &amp;amp; BAPIADURI_X to mark the new address as the default. But I couldn't get the default set for the newly added web address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done the same while adding a new email address for a contact (VAP3), using the function module BAPI_ADDRESSCONTPART_CHANGE. Here, the newly added email address was set to default by setting STD_NO to 'X' and HOME_FLAG = 'X' for the tables BAPIADSMTP &amp;amp; BAPIADSMT_X. It was working fine, here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea.&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;Satish Kanteti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 13:44:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935830#M1600170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T13:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new web address for the customer using BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935831#M1600171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Satish Kanteti,&lt;/P&gt;&lt;P&gt;                                  You are passing data  correctly in the BAPI call. Check is thare a OSS for this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will let you know if I find one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Greetson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 14:16:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935831#M1600171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-29T14:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new web address for the customer using BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935832#M1600172</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;Greetson, Thanks for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I myself had solved this query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had used the function module BAPI_ADDRESSORG_GETDETAIL to fetch the existing web addresses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Convert the existing default web address to non-default by deleteing the internal table entries of BAPIADURI where STD_NO not equal to 'X' , and set the parameters STD_NO = ' ' and HOME_FLAG = ' ' . Append the internal table of BAPIADURI_X with parameters STD_NO = ' X', HOME_FLAG = ' '  and UPDATEFLAG = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now append the internal table of BAPIADURI with parameters STD_NO = 'X',  HOME_FLAG = 'X' and URI = new web url&lt;/P&gt;&lt;P&gt;and append the internal table of BAPIADURI_X with parameters STD_NO = 'X',  HOME_FLAG = 'X', URI = 'X' and UPDATEFLAG = 'I'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use the fucntion module BAPI_ADDRESSORG_CHANGE to add the new web address as the default for the customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish Kanteti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2011 10:28:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935832#M1600172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-30T10:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new web address for the customer using BAPI_ADDRESSORG_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935833#M1600173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resolved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2011 10:32:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-new-web-address-for-the-customer-using-bapi-addressorg-change/m-p/7935833#M1600173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-30T10:32:02Z</dc:date>
    </item>
  </channel>
</rss>

