<?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: Creating URL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926557#M689442</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately there is no transaction SICF.&lt;/P&gt;&lt;P&gt;There is no workflow either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Found a fm, which could solve my problem: BINARY_RELATION_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for helping&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 20 Oct 2007 08:34:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-20T08:34:03Z</dc:date>
    <item>
      <title>Creating URL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926552#M689437</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 had to put an URL to an object (a PM equipment). It has to be put with the "Services for object" button (located in the left of the dynpro title). I have to make it like this: &lt;/P&gt;&lt;P&gt;Services for object button - Create - Create external document (URL).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I never did anything like this, so I'm a bit lost, how to start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found some FM-s, like SO_OBJECT_INSERT, but don't know, is it enough, what parameters like does it require... And of course where are the links stored in the background? What is the exact way to post an URL like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every help is welcome!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Oct 2007 07:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926552#M689437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-20T07:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating URL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926553#M689438</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;To create this link via a program, you need to code&lt;/P&gt;&lt;P&gt; something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
 * Add a URL link to an existing workitem
 PARAMETERS: p_OBJDES like sood1-OBJDES default
 'Testing URL',
             WI_ID LIKE SWWWIHEAD-WI_ID DEFAULT
 '000000120661',
             L_URL_ID TYPE SO_URL DEFAULT
 'http://www.sap.com/' no-display.
 
 DATA FOLDER_ID         TYPE SOFDK.
 DATA LT_OBJCONT TYPE STANDARD TABLE OF SOLI.
 DATA LS_OBJCONT TYPE SOLI.
 DATA L_OBJ_DATA TYPE SOOD1.
 DATA L_OBJ_ID   TYPE SOODK.
 DATA DOCUMENT_ID       TYPE SOFMK.
 DATA LT_OBJHEAD TYPE STANDARD TABLE OF SOLI.
 
 CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET'
   EXPORTING
     REGION    = 'B'
   IMPORTING
     FOLDER_ID = FOLDER_ID
   EXCEPTIONS
     OTHERS    = 1.
 
 WHILE NOT L_URL_ID IS INITIAL.
   CONCATENATE '&amp;amp;KEY&amp;amp;' L_URL_ID(250) INTO LS_OBJCONT.
   APPEND LS_OBJCONT TO LT_OBJCONT.
   SHIFT L_URL_ID LEFT BY 250 PLACES.
 ENDWHILE.
 
 L_OBJ_DATA-OBJNAM = 'MESSAGE'.
 L_OBJ_DATA-OBJDES = p_OBJDES.
 *OBJECT_HD_CHANGE
 CALL FUNCTION 'SO_OBJECT_INSERT'
   EXPORTING
     FOLDER_ID             = FOLDER_ID
     OBJECT_TYPE           = 'URL'
     OBJECT_HD_CHANGE      = L_OBJ_DATA
   IMPORTING
     OBJECT_ID             = L_OBJ_ID
   TABLES
     OBJHEAD               = LT_OBJHEAD
     OBJCONT               = LT_OBJCONT
   EXCEPTIONS
     ACTIVE_USER_NOT_EXIST = 35
     FOLDER_NOT_EXIST      = 6
     OBJECT_TYPE_NOT_EXIST = 17
     OWNER_NOT_EXIST       = 22
     PARAMETER_ERROR       = 23
     OTHERS                = 1000.
 
 IF SY-SUBRC = 0.
   DOCUMENT_ID-FOLTP = FOLDER_ID-FOLTP.
   DOCUMENT_ID-FOLYR = FOLDER_ID-FOLYR.
   DOCUMENT_ID-FOLNO = FOLDER_ID-FOLNO.
   DOCUMENT_ID-DOCTP = L_OBJ_ID-OBJTP.
   DOCUMENT_ID-DOCYR = L_OBJ_ID-OBJYR.
   DOCUMENT_ID-DOCNO = L_OBJ_ID-OBJNO.
 ELSE.
 ENDIF.
 
 CALL FUNCTION 'SWL_WI_NOTE_CREATE'
   EXPORTING
     WI_ID                               = WI_ID
 *   WORKITEM                            =
    NOTE                                = DOCUMENT_ID
 *   I_SUPPRESS_ENQUEUE                  = ' '
 *   DO_COMMIT                           = 'X'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Oct 2007 07:50:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926553#M689438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-20T07:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating URL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926554#M689439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get the WI_ID field? What is it exactly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Oct 2007 07:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926554#M689439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-20T07:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Creating URL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926555#M689440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;check the Tcode&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SICF&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;for maintain service&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Oct 2007 07:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926555#M689440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-20T07:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Creating URL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926556#M689441</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;WI_ID = WORKITEM_ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="43895"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Oct 2007 07:58:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926556#M689441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-20T07:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating URL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926557#M689442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately there is no transaction SICF.&lt;/P&gt;&lt;P&gt;There is no workflow either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Found a fm, which could solve my problem: BINARY_RELATION_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for helping&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Oct 2007 08:34:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926557#M689442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-20T08:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating URL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926558#M689443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hello all, i'm creating an URL attachment, so i'm using the sample code of&lt;/STRONG&gt; &lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://answers.sap.com/people/pavan.praveen2" id="jive-1202091690702809564704"&gt;Pavan Praveen&lt;/A&gt;.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;I have one problem, how can i do to know the logic of the values put in OBJYR, OBJNO, FOLYR and FOLNO.&amp;nbsp;&amp;nbsp; In my case when i debug a program using the same code&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;OBJYR = 37 &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;OBJNO = 000000000014, FOLYR = 33 and FOLNO = 000000000004 and i would like to know how these values are got to reproduce the same logic in my code.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;Thanks by advance for helping.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;Soufiane&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2012 09:38:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-url/m-p/2926558#M689443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-27T09:38:47Z</dc:date>
    </item>
  </channel>
</rss>

