<?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: ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797479#M342600</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; Let me explain you in detail..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Step1:&amp;lt;/b&amp;gt; YOu should able to capture the 'Tracking Number".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Step2:&amp;lt;/b&amp;gt; Once you have the selected tracking number in hand, you need to call the UPS Site &amp;amp; pass this Tracking number. For that follow the below code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: url type string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;*Lets say your url is &lt;A href="http://ups.com" target="test_blank"&gt;http://ups.com&lt;/A&gt;. YOu should know what is the tracking number field form of website. Lets say its 'tracking_number'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Construct your url with Tracking number as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate c_url 'http://ups.com?tracking_number=' v_selecte_tracking number into c_url.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Note: your url should look like &amp;lt;b&amp;gt;http://ups.com?tracking_number=20344&amp;lt;/b&amp;gt;. Here 20344 would be the tracking number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'CALL_BROWSER'
    exporting
      url                    = c_url "
      window_name            = ' '
      new_window             = ' '
    exceptions
      frontend_not_supported = 1
      frontend_error         = 2
      prog_not_found         = 3
      no_batch               = 4
      unspecified_error      = 5
      others                 = 6.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you. If you are not clear, let me know where you are not clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Note:&amp;lt;/b&amp;gt; Reward each helpful answer.&lt;/P&gt;&lt;P&gt;Raja T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Dec 2006 04:21:22 GMT</pubDate>
    <dc:creator>raja_thangamani</dc:creator>
    <dc:date>2006-12-06T04:21:22Z</dc:date>
    <item>
      <title>ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797476#M342597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i developed a report that outputs tracking details for the packages sent via UPS..&lt;/P&gt;&lt;P&gt;in the output the report contains fields such as Tracking Number, Tracking Status, Dispatched Time etc..when a user clicks a tracking number a UPS web page shud be opened showing tracking details..can anyone tell how can i do it..the prob here is user is not allowed to enter tracking number again in the UPS site...whatever the number is clicked it shud directly be placed in the UPS url showing the details..is there any FM for this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2006 22:31:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797476#M342597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-04T22:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797477#M342598</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; Try this code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: url type string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Lets say your url is &lt;A href="http://ups.com" target="test_blank"&gt;http://ups.com&lt;/A&gt;. YOu should know what is the tracking number field form of website. Lets say its 'tracking_number'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Construct your url with Tracking number as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
concatenate c_url 'http://ups.com?tracking_number=' v_selecte_tracking number into c_url. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Note: your url should look like &lt;A href="http://ups.com?tracking_number=20344" target="test_blank"&gt;http://ups.com?tracking_number=20344&lt;/A&gt;. Here 20344 would be the tracking number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
call function 'CALL_BROWSER'
    exporting
      url                    = c_url "
      window_name            = ' '
      new_window             = ' '
    exceptions
      frontend_not_supported = 1
      frontend_error         = 2
      prog_not_found         = 3
      no_batch               = 4
      unspecified_error      = 5
      others                 = 6.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have any question..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja T&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Raja T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 01:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797477#M342598</guid>
      <dc:creator>raja_thangamani</dc:creator>
      <dc:date>2006-12-05T01:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797478#M342599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CAN U EXPLAIN ME IN DETAIL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 19:39:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797478#M342599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-05T19:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797479#M342600</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; Let me explain you in detail..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Step1:&amp;lt;/b&amp;gt; YOu should able to capture the 'Tracking Number".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Step2:&amp;lt;/b&amp;gt; Once you have the selected tracking number in hand, you need to call the UPS Site &amp;amp; pass this Tracking number. For that follow the below code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: url type string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;*Lets say your url is &lt;A href="http://ups.com" target="test_blank"&gt;http://ups.com&lt;/A&gt;. YOu should know what is the tracking number field form of website. Lets say its 'tracking_number'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Construct your url with Tracking number as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate c_url 'http://ups.com?tracking_number=' v_selecte_tracking number into c_url.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Note: your url should look like &amp;lt;b&amp;gt;http://ups.com?tracking_number=20344&amp;lt;/b&amp;gt;. Here 20344 would be the tracking number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'CALL_BROWSER'
    exporting
      url                    = c_url "
      window_name            = ' '
      new_window             = ' '
    exceptions
      frontend_not_supported = 1
      frontend_error         = 2
      prog_not_found         = 3
      no_batch               = 4
      unspecified_error      = 5
      others                 = 6.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you. If you are not clear, let me know where you are not clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Note:&amp;lt;/b&amp;gt; Reward each helpful answer.&lt;/P&gt;&lt;P&gt;Raja T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 04:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797479#M342600</guid>
      <dc:creator>raja_thangamani</dc:creator>
      <dc:date>2006-12-06T04:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797480#M342601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi if you have the URL name then please give the url name in the following Function module.&lt;/P&gt;&lt;P&gt;HR_URL_CALL_BROWSER&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 04:46:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1797480#M342601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T04:46:04Z</dc:date>
    </item>
  </channel>
</rss>

