Solution Manager_document URL link

Dear friends,
  I have uploaded project documents in SOLAR01. If i get into document attributes, i am finding option "generate". If i click on that, message has shown as "URL buffered". But i could not find the URL link for my document.
How to get a URL link for my document?
Thanks
Senthil

Hi Senthil,<br>
<br>
Now what you have done is activated the service "/default_host/sap/bc/solman/SolmanDocuments". By doing this, now your documents can be accessed by anybody in the same domain irrespective of whether they have an user account in the solution manager system.<br>
<br>
In case, if you want to restrict the access to users based on SSO, then SSO needs to be activated.<br>
<br>
For that,<br>
<br>
Activate SSL in WAS - for that follow note no. 510007<br>
(ii) Configure WAS as per note no. 612670, so that it will issue SSO logon tickets<br>
<br>
On doing this, whenever you try to open the document using URL, it will provide a secure access to your document.<br>
<br>
All these information you can find in a IMG activity as specified by other SDNers in their replies.<br>
<br>
<B>If your issue is solved, dont forget to reward points to all who have contributed valuable replies and close the thread.</B><br>
<br>
best regds,<br>
Alagammai.<br>
<br>

Similar Messages

  • How to display URL images and URL link (html) from Smartforms?

    Hi Gurus,
    I'm having difficulty on how to display targeted URL images and URL link from the smartforms, after i sending it out as html mail. The mail i sent just can be preview as a plain text, which can't execute the html code that i put inside the smartforms itself. I follow a few step from this very useful blog.. Hopefully, you guys can give me some solutions or ideas on this.
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp -thanks to Pavan for his useful blog.
    My code is like this..
    <--- Start Code.
    FORM call_smartforms.
      DATA : lv_subject TYPE so_obj_des,
             lc_true(1) VALUE 'X',
             lw_control_parameters TYPE ssfctrlop,
             lw_output_options TYPE ssfcompop,
             lc_graphics(8) VALUE 'GRAPHICS',
             lw_xsfparam_line TYPE ssfxsfp,
             lc_extract(7) VALUE 'EXTRACT',
             lc_graphics_directory(18) VALUE 'GRAPHICS-DIRECTORY',
             lc_mygraphics(11) VALUE 'mygraphics/',
             lc_content_id(10) VALUE 'CONTENT-ID',
             lc_enable(6) VALUE 'ENABLE',
             lw_job_output_info TYPE ssfcrescl,
             lw_html_data TYPE trfresult,
             lw_graphics TYPE ssf_xsf_gr,
             lt_graphics TYPE tsf_xsf_gr,
             lv_html_xstr TYPE xstring,
             lw_html_raw LIKE LINE OF lw_html_data-content,
             lv_incode TYPE tcp00-cpcodepage VALUE '4110',
             lv_html_str TYPE string,
             lv_html_len TYPE i,
             lc_utf8(5) VALUE 'utf-8',
             lc_latin1(6) VALUE 'latin1',
             lv_offset TYPE i,
             lv_length TYPE i,
             lv_diff TYPE i,
             lt_soli TYPE soli_tab,
             lw_soli TYPE soli,
             lc_mime_helper TYPE REF TO cl_gbt_multirelated_service,
             lv_name TYPE mime_text VALUE 'sapwebform.htm',
             lv_xstr TYPE xstring,
             lw_raw TYPE bapiconten,
             lt_solix TYPE solix_tab,
             lw_solix TYPE solix,
             lv_filename TYPE string,
             lv_content_id TYPE string,
             lv_content_type TYPE w3conttype,
             lv_obj_len TYPE so_obj_len,
             lv_bmp TYPE so_fileext VALUE 'BMP',
             lv_description TYPE so_obj_des VALUE 'Graphic in BMP format',
             lc_doc_bcs TYPE REF TO cl_document_bcs,
             lc_bcs TYPE REF TO cl_bcs,
             lc_send_exception TYPE REF TO cx_root,
             lw_adsmtp TYPE lty_adsmtp,
             lv_mail_address TYPE ad_smtpadr,
             lc_recipient TYPE REF TO if_recipient_bcs,
             lc_send_request TYPE REF TO cl_bcs,
             lv_sent_to_all TYPE os_boolean.
      DATA : v_language TYPE sflangu VALUE 'E',
             v_e_devtype TYPE rspoptype.
      v_form_name = 'ZTEST_EMAIL'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = v_form_name
        IMPORTING
          fm_name            = v_namef
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    starting here. ***
    Set title for the output
      lv_subject = 'Smartforms.'.
    Set control parameters to "no dialog"
      lw_control_parameters-no_dialog = lc_true.
    IF lw_service_subject-code = lc_fm1.
    *--- To get output device type
      CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language    = v_language
          i_application = 'SAPDEFAULT'
        IMPORTING
          e_devtype     = v_e_devtype.
      lw_output_options-tdprinter = v_e_devtype.
      lw_control_parameters-getotf = 'X'.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    Set output options
      lw_output_options-xsf        = lc_true.
      lw_output_options-xsfcmode   = lc_true.
      lw_output_options-xsfoutmode = 'A'.
      lw_output_options-xsfoutdev  = space.
      lw_output_options-xsfformat  = lc_true.
      lw_xsfparam_line-name  = lc_graphics.
      lw_xsfparam_line-value = lc_extract.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_graphics_directory.
      lw_xsfparam_line-value = lc_mygraphics.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_content_id.
      lw_xsfparam_line-value = lc_enable.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
    Get the smartform content
      CALL FUNCTION v_namef
        EXPORTING
          control_parameters   = lw_control_parameters
          output_options       = lw_output_options
    *pass other application specific parameters (eg order number, items ).
      IMPORTING
          job_output_info    = lw_job_output_info
      TABLES
          tt_tabh              = tt_tabh
          tt_tabb              = tt_tabb
          tt_tabf              = tt_tabf
      EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
      lw_html_data  = lw_job_output_info-xmloutput-trfresult.
      lt_graphics[] = lw_job_output_info-xmloutput-xsfgr[].
      CLEAR lv_html_xstr.
      LOOP AT lw_html_data-content INTO lw_html_raw.
        CONCATENATE lv_html_xstr lw_html_raw INTO lv_html_xstr IN BYTE MODE.
      ENDLOOP.
      lv_html_xstr = lv_html_xstr(lw_html_data-length).
      CALL FUNCTION 'SCP_TRANSLATE_CHARS'
        EXPORTING
          inbuff       = lv_html_xstr
          incode       = lv_incode
          csubst       = lc_true
          substc_space = lc_true
        IMPORTING
          outbuff      = lv_html_str
          outused      = lv_html_len
        EXCEPTIONS
          OTHERS       = 1.
    *HACK THE HTML CODE GENERATED BY SMARTFORM TO MAKE THE
    *EXTERNAL IMAGES APPEAR AS <IMG> TAG IN HTML
      REPLACE ALL OCCURRENCES OF '<IMG' IN lv_html_str WITH '<IMG' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '/>' IN lv_html_str WITH '/>' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '</A>' IN lv_html_str WITH '' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '<' IN lv_html_str WITH '<' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '>' IN lv_html_str WITH '>' IGNORING CASE.
    CALL METHOD html_control - >load_mime_object
       EXPORTING
         object_id  = 'ZWN'
         object_url = 'ZWN.GIF'
       EXCEPTIONS
         OTHERS     = 1.
      REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH lc_latin1.
    REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH 'iso-8859-1'.
       break mhusin.
      lv_html_len = STRLEN( lv_html_str ).
      lv_offset = 0.
      lv_length = 255.
      WHILE lv_offset < lv_html_len.
        lv_diff = lv_html_len - lv_offset.
        IF lv_diff > lv_length.
          lw_soli-line = lv_html_str+lv_offset(lv_length).
        ELSE.
          lw_soli-line = lv_html_str+lv_offset(lv_diff).
        ENDIF.
        APPEND lw_soli TO lt_soli.
        ADD lv_length TO lv_offset.
      ENDWHILE.
      CREATE OBJECT lc_mime_helper.
      CALL METHOD lc_mime_helper->set_main_html
        EXPORTING
          content     = lt_soli
          filename    = lv_name
          description = lv_subject.
      LOOP AT lt_graphics INTO lw_graphics.
        CLEAR lv_xstr.
        LOOP AT lw_graphics-content INTO lw_raw.
          CONCATENATE lv_xstr lw_raw-line INTO lv_xstr IN BYTE MODE.
        ENDLOOP.
        lv_xstr = lv_xstr(lw_graphics-length).
        lv_offset = 0.
        lv_length = 255.
        CLEAR lt_solix[].
        WHILE lv_offset < lw_graphics-length.
          lv_diff = lw_graphics-length - lv_offset.
          IF lv_diff > lv_length.
            lw_solix-line = lv_xstr+lv_offset(lv_length).
          ELSE.
            lw_solix-line = lv_xstr+lv_offset(lv_diff).
          ENDIF.
          APPEND lw_solix TO lt_solix.
          ADD lv_length TO lv_offset.
        ENDWHILE.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_filename.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_content_id.
        lv_content_type = lw_graphics-httptype.
        lv_obj_len      = lw_graphics-length.
    *Add images to the email
        CALL METHOD lc_mime_helper->add_binary_part
          EXPORTING
            content      = lt_solix
            filename     = lv_filename
            extension    = lv_bmp
            description  = lv_description
            content_type = lv_content_type
            length       = lv_obj_len
            content_id   = lv_content_id.
      ENDLOOP.
      TRY.
          lv_subject = lv_subject.
          lc_doc_bcs = cl_document_bcs=>create_from_multirelated(
                   i_subject          = lv_subject
                   i_multirel_service = lc_mime_helper ).
        CATCH cx_document_bcs INTO lc_send_exception.
        CATCH cx_bcom_mime INTO lc_send_exception.
        CATCH cx_gbt_mime INTO lc_send_exception.
      ENDTRY.
    Create send request
      TRY.
          lc_bcs = cl_bcs=>create_persistent( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->set_document( i_document = lc_doc_bcs ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Set-up email receiver
      lv_mail_address = '[email protected]'.
    TRANSLATE lv_mail_address TO UPPER CASE.
      TRY.
          lc_recipient = cl_cam_address_bcs=>create_internet_address(
              i_address_string = lv_mail_address ).
        CATCH cx_address_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->add_recipient( i_recipient = lc_recipient ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Send smartforms as HTML email
      TRY.
          lc_bcs->send( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      COMMIT WORK.
      WRITE:/ 'Mail sent'.
    ENDFORM.                    "call_smartforms
    End Code --->
    Thanks and Regards.

    1- put your images in a directory under the web app directory. Example: app/images/
    2- in your jsp, use: String file = application.getRealPath("/images/"); to get the images directory. See http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
    3- it's not the right forum to post this kind of question. Post them in the JSP/Servlet JSTL forum instead

  • URL Link In Gnome Desktop

    Hello,
    If I drag an URL from the Firefox address bar to my personal desktop in Gnome an icon is created and I can latter access that site by clicking on it. But when I do that the browser that opens the page is Epiphany rather than Firefox as I expected to be.
    How can I change this behavior for the link being open with my favorite browser (in System/Preferences/Preferred Applications I have Firefox set as my default browser)?
    Thanks in advance for your help.

    Hi,
    I think that you need to do the possible development in the ECC backend system - not in Portal/UWL - since as far as I understood from your message, your workflow is in ECC.
    You could take a look into this recent thread:
    Empty URL Link with SAP_WAPI_ATTACHMENT_ADD
    I don't know if it will work in UWL. You could easily test it by adding and URL attachment to a work item in backend (in business workplace) and then see how it looks in UWL and does it work. If it works, you can find a solution in the above mentioned thread or perhaps you can ask further questions from the author of the thread.
    Regards,
    Karri

  • URL link to open transaction in NWBC Desktop client

    Hi!
    I am trying to create an URL link to open a transaction in a role that I am using.
    The webpage is shown in a web-chip as a part of FPM page inthe NWBC desktop client.
    I have tried this type of concept: https://serverXX:8000/sap/bc/nwbc/~canvas/roleEntry/MyROLE:56/
    The problem is that this opens the transaction in the HTML version of NWBC (inside NWBC desktop client).
    However, I would do not want to use the HTML based version of the transaction. I want to use nativ abap transaction inside NWBC Desktop client.
    I am able to open the transaction with a link from a webbrowser with this type of link:
    sap-nwbc://https://serverXX:8000/sap/bc/nwbc/~canvas/roleEntry/MyROLE:56/
    This link does not open at all from within NWBC....
    How do I achieve opening a transaction via URL from inside the NWBC Desktop client?

    Hi Stefan,
    Same issue i have as well.
    My Understanding is, in NWBC desktop, if you open a non sap (eg: html) page, NWBC becomes an IE Browser.
    That means you are now out of SAP for that tab (with html page) and whenever you try to launch any SAP transaction (using the method from HTML) it will launch in a new window and ask for Login.
    May be Experts like Samuli Kaski & Melinda Ludanyi can put some light on it.
    But, I have one more solution for this which is partially working in my case. May be helpful in you case as well.
    Issue: From some SAP transaction in NWBC (say tab A), you are launching the html page (say tab B) and then want to launch another SAP transaction (Say tab C) from html.
    Solution: Embed the HTML in SAP using HTML Viewer class and launch SAP custom transaction using the interface IF_LSAPI. It will launch it in new tab as a sap transaction with your html page.
    Now if you want to launch the SAP transaction from your html page (Which is embedded in SAP custom transaction) you can use HTML Viewer class Events and you can pass parameters as well. Re use the same interface IF_LSAPI and launch it in new tab
    In my case i am facing problems as the web developer has so many things on java script and they are not working properly. He is working on it and i am hoping it will be fine.
    Regards,
    Nik

  • URL link in send e-mail pl/sql procedure

    I have a send e-mail procedure. I am trying to enclose in the body of the message a URL link with parameters from a form, but it is only taking part of it.
    for example http://my.link&pid='||pid||'&uid'||uid
    it only takes http://my.link
    What is the way to do it successfuly?
    Thanks,

    Thanks for your replies. I still did not get it to work. For example if I stick to your solution with :
    urlname := 'my.link?pid='||pid||'&uid='||uid;
    where should I stick the try this?
    I am using a variable called message.
    'message: ' 'click on the following link' ||CRLF || urlname
    This is is not working. Any clues? Thanks a lot. Jeanne

  • How can I be able to add url link in the standard text

    Hi expert,
    I want to add a url link in the standard text.Please guide me how can i be able to do that.

    Hi experts,
    I findout that there is no option in the standard text to add a url link and i findout the solution also we can create text module sepreatly ,here we can add a url link and then add in the smartfrom.In this way the user only can edit the text contents of the samrtfrom without seeing ht settings.
    Thanks everyone for help.

  • URL Link to BSP with MVC

    Hi,
    I have a BSP with MVC design.
    I assume that the URL link to the application is the URL I see when I go into the Controller page under the BSP in SE80.
    Is that correct?
    The problem is that when I take that URL and copy paste it into a web browser, I get the first view but when I click on any button, the controller class is not called.
    If I do a right click on the BSP and select the TEST option, all is working perfectly.
    Do you have any idea why this is happening or do I do something wrong?
    Thanks,
    Itay

    Hi Stefan,
    Same issue i have as well.
    My Understanding is, in NWBC desktop, if you open a non sap (eg: html) page, NWBC becomes an IE Browser.
    That means you are now out of SAP for that tab (with html page) and whenever you try to launch any SAP transaction (using the method from HTML) it will launch in a new window and ask for Login.
    May be Experts like Samuli Kaski & Melinda Ludanyi can put some light on it.
    But, I have one more solution for this which is partially working in my case. May be helpful in you case as well.
    Issue: From some SAP transaction in NWBC (say tab A), you are launching the html page (say tab B) and then want to launch another SAP transaction (Say tab C) from html.
    Solution: Embed the HTML in SAP using HTML Viewer class and launch SAP custom transaction using the interface IF_LSAPI. It will launch it in new tab as a sap transaction with your html page.
    Now if you want to launch the SAP transaction from your html page (Which is embedded in SAP custom transaction) you can use HTML Viewer class Events and you can pass parameters as well. Re use the same interface IF_LSAPI and launch it in new tab
    In my case i am facing problems as the web developer has so many things on java script and they are not working properly. He is working on it and i am hoping it will be fine.
    Regards,
    Nik

  • Url link in User Decision workflow step

    Hi Experts,
    I had created a workflow for "Employee transfer" process using SWDD tcode.
    I had a created a workflow step with type as "User Decision".I had included "Approve" & "Reject" decision options.
    Now i want to include URL link along with "Approve" & "Reject" in the user decision workflow step (i.e) The manager needs to see the URL link along with "Approve" & "Reject" in his SAP workflow inbox.
    Can anyone guide me...
    Regards,
    Krishna Balaji T

    Hi Krishna,
    I understand your issue. I have faced a similar issue in my project.
    Here is the solution!
    To add link of a URL you need to have the binding with the BO of the transaction your are refering to. To do this, you need to bind your BO event (triggering event) to the workflow container and then the workflow container to task container. This BO value should flow from event-> workflow -> task container to get the link in the User Decision.
    To do the binding you need to follow the following steps:
    1. Go to t-code SWDD and open your workflow template.
    2. Go to Basic Data (cap sign button at the top of the screen) or click Ctrl + F8
    3. Go to Start Events tab.
    4. In the Object type enter your BO name (BO for the transaction you need to add as link), in Event of object enter the BO event. This would serve as the triggering event for your workflow.
    5. Click on 'B' i.e. Binding Defined, click on generate automatic binding. It would automatically generate the appropriate binding for the workflow. You can also alter the binding as per requirement. This binding would ensure that the URL comes under 'objects and attachments' section.
    6. Click on 'C' i.e. Start Condition. A dialog would open, select the appropriate start condition for the workflow. Check the condition before saving (recommended).
    6. Click on 'A' to Activate the binding and start condition. All 'A', 'B' and 'C' would get green.
    7. Save the changes made and activate your workflow.
    8. Do the binding between the workflow and the user decision step. Select automatic binding (recommended).
    You can also refer to the similar thread that I had provided solution to. This would help you resolve the issue!
    Re: URL of site has to be attached along with the mail
    Hope this helps!
    Regards,
    Saumya

  • How to create an URL link for product cancellation using an FM

    Hi,
    I have tried creating an external attachment i.e URL link for a workorder by triggering a custom FM by exporting business object type , order id ,realtion type , title and link with return parameter as a message .
    But i'm not being able to create URL link for workorder using the custom FM.
    Kindly please suggest some solutions regarding how the URL link can be created using an FM instead of manual creation.

    given that there can be a variety of reasons for something to crash, you can sometimes initialize a buffer by wiring a non-null data structure to the left terminal of the call library function node. for example, if the output is to be a string no more than 100 characters long, create a string that long of nulls, blanks or anything and attach that to the left terminal for that output. no guarantees, but i have seen that work.
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • URL link is visible instead text in pdf  OBIEE 11.1.1.6.7

    I used formula column with GO URL link in the analysis.
    ''||"CIS_POLOZKA"."POPIS"||''
    I set the column format to @[HTML].
    Links work fine.
    Customer would like to print this analysis in pdf. I get hyperlink instead
    value of column after print and export to pdf. Page is ok after print and export to html.
    Please advice

    HTML Tags Showing when you Print or Export to PDF from a Report or Dashboard is a long known bug. Oracle don't have a solution and its anticipated to be fixed in 11.1.1.7. For more information refer: bug 5747757 or ID 1064060.1.
    Reference...
    HTML Tags escape while exporting to PDF

  • Fetching details from the URL Link

    Hi Experts,
    I need a help on the webdynpro, for capturing few details from the url used to call the webdynpro application.
    My client has designed the scenario such that,
    They have designed thier intranet in dotnet. For accessing the webpage designed, the user has to provide his Employee ID and name.
    On accessing the webpage designed for him, he has few webdynpro URL links assigned to him that he can access.
    On clicking the link, the Webdynpro application is called for doing the transaction.
    Now the requirement is that, for calling the webdynpro application the client is passing the Employee name, Employee ID and the IP address of the thin client system, through the URL link generated by the dotnet framework.
    Now I need to know the way how to capture these details into the webdynpro application?
    hereby am providing the sample URL by which they pass the values.
    http://abcde.industries.co.in:8000/sap/bc/webdynpro/sap/zwda_MB51?uid=1283265&empname=RAMESH KUMAR&tcode=MMBE&ip=192.168.45.118
    Kindly provide me the possible solution.
    Regards,
    Vijaysankar.V

    Dear Vijay,
               In your case , your application url parameters are like UID,NAME, IP, & TCODE.
               U Can write a method and fetch all these parameters as i shown below:
    data: uid type string.
    data: name type string.
    data: ip type string.
    data: tcode type string.
    uid = wdr_task=>client_window->get_parameter( 'UID' ).
    name = wdr_task=>client_window->get_parameter( 'NAME'' ).
    ip = wdr_task=>client_window->get_parameter( 'IP' ).
    tcode = wdr_task=>client_window->get_parameter( 'TCODE' ).
    Thanks,
    Saurin Shah

  • URL links in XML

    I have a datagrid populated with a XML file which contains
    URL links. I cannot get the links to work when I click on them. Is
    there a simple solution? I'v tried to use this format :
    <link> <a href="
    http://www.ghagdjagdjadg.com>
    testpage</a></link> , but nothing happens and the line
    in the datagris is empty. Can anyone help me?

    I dont suppose eith ero fyou can help me with a menu Im
    building, I have worked through a few demonstrations my xml menu
    looks like this.
    <menu>
    <menuitem label="Integration Files" icon="folder" >
    <menuitem label= "JPI Word dot" icon="dot"/>
    </menuitem>
    </menu>
    the problem I'm having is I have tried to add urls but to no
    avail. Any help would be appreciated.

  • URL link Attachment Limitation in Foreground

    Hi Experts,
    When i am attaching a URL link through Services of Object for a invoice document.
    The Complete URL link is not copied to the Address field. Only it is accepting 1000 character.
    My question is how to increase the URL length. Since my requirement is the URL link are having more that 1000 characters.
    Example :
    Tcode : MIR4 --- Invoice Document , year
    when i goto the services of Object ---> Create the Attachment
    It popup a dialog box which contain the Title and Address.
    In the Address we will copy the URL Link ,
    URL :  documentum\Docbases\dmbsip_prd_docbase\Hydrocarbon Supply Chain 
              Management\Integration\Application Documentation\WORKFLOW\SCC- 
              HSM-07-00011 (T & I Automation Workflow)\Misc. DPSR Documents
    when i try to copy this URL link in the Address Field , it is not taking the Full URL link.
    Venkat

    Hi,
    I think that you need to do the possible development in the ECC backend system - not in Portal/UWL - since as far as I understood from your message, your workflow is in ECC.
    You could take a look into this recent thread:
    Empty URL Link with SAP_WAPI_ATTACHMENT_ADD
    I don't know if it will work in UWL. You could easily test it by adding and URL attachment to a work item in backend (in business workplace) and then see how it looks in UWL and does it work. If it works, you can find a solution in the above mentioned thread or perhaps you can ask further questions from the author of the thread.
    Regards,
    Karri

  • Disabling URL Link to Marketing selectively

    Hello,
    I am using OBIEE10.1.3.3.
    I have been able to remove the Marketing link with help from Venkat's blog
    http://oraclebizint.wordpress.com/2008/03/04/oracle-bi-ee-101332-removing-url-links-to-marketing-disconnected-analytics-and-delivers/
    But, now my manager wants that the link be displayed but should be enabled only for users who belong to a particular group and be disabled for everyone else.
    How can I do this? Or is it possible to hide the link for everyone except users who belong to a particular group?
    Please advise,
    Thanks,
    Manju

    On Mon, 25 Sep 2006 15:39:29 +0000 (UTC), "djkha0s"
    <[email protected]> wrote:
    >I've got a question that I've been trying to figure out
    for some time. I'm
    >fairly well versed with dreamweaver, but some of the
    server stuff is a bit hazy
    >to me.
    >
    > Question:
    > Within dreamweaver, if I link to a subdirectory that has
    an index.htm page in
    >it, the url explicity shows the page name (i.e.
    >mysite.com/downloads/index.htm). I want to make the links
    look like this:
    >mysite.com/downloads/ Now, while I know that this kind of
    link works fine
    >once the site is on the server, when I navigate my local
    copy of the site, the
    >link simply opens the directory in an explorer window.
    >
    > So, without a solution, I either have to chose working
    on a broken site
    >locally that will work fine on the server, or just
    explicitly link to the htm
    >files in each directory - I've chosen the latter, but
    it's BUGGING me!
    >
    > Extra Info:
    > I currently edit all my websites locally with
    dreamweaver and then selectively
    >upload files with another ftp client. My reason is that
    many of these websites
    >that I work on are live and I don't want to be uploading
    files that I've just
    >modified, but have not tested, b/c I might have
    accidentally fudged something.
    >
    > So, how can I configure my environment such that all
    links to directories
    >containing index.htm file, open the file correctly both
    online and locally.
    >
    >
    As to why Explorer is opening, I haven't a clue, but I also
    oftenwant
    to link to /subfolder/index.htm. I point to the file in DW,
    then strip
    out the filename, leaving /subfolder/.

  • Capture URL Link click event in ProcessFormRequest

    Hi All,
    I have requirement to capture the event and do some validation/dialog page whenever a URL Link is clicked on my Page.
    I can handle the button click event in ProcessFormRequest, if I use a Button and sets its destination URI to a URL
    However, if its a standard hyperlink or Image and Destination URI is set. The event is not being captured in ProcessFormRequest.
    Is there any other alternative, apart from changing the Image to Button. Thats the restriction. Its has to be Image.
    Or how to capture that event, when the URL is clicked.
    Rgds
    Rakesh

    Hi
    Many thanks for the update.
    The page I am working on is the standard Oracle Page ( Receiving Home Page in iProcurement). This page has table of Requisitions which can be Received.
    Express Receive image is present corresponding to each Requisition in the tablelayout.
    Once the express receive is clicked ( Destination URI property is set to OAFunc= Final Review Page Parameter= Req Header ID), the Review page is displayed with Submit button.
    So as to change the ActionType of the Express Receive Image, I need to then customize the page and also extend the standard Controller code.
    Instead just extending the COntroller to capture the URL click event
    I guess, the URL click event cannot be captured in Controller. Hence the Property has to be changed and handled by code.
    What i am worryin for this solution is that, whether the specific Requisition Header ID which is passed on the URL link, can be passed similiarly while writing the code for the Action Type of the Express Image. Or the code would though take to Review Page but miss out the specific Req Header ID against which it was clicked.
    Pls advise
    Thanks
    Rakesh

Maybe you are looking for

  • How do I access photos from my OneDrive account on Photoshop Touch?

    I have all my files and photos organised on OneDrive because it's the most efficient way of sharing everything in my mixed-device environment (iMac, Windows phone and Android tablet). I recently downloaded Photoshop Touch on the Android and can't see

  • Change default calendar in iCal?

    I have two google calendars which sync properly with iCal. However, the wrong calendar is on top (listed alphabetically). When I enter a new event from iCal, the default is to go to the wrong calendar. How can I switch them, or convince iCal to only

  • FBCJ print preview

    Hi All, According to the client requirement for cash Journal print..at FBCJ...we have modified the standard program RFCASH20 and given the program name as ZRFCASH20 and from ..form name F140_CASH_DOC to ZFI40_CASH_DOC...I have assigned the changed fo

  • Do i need anti virus software on my MacBook Pro?

    I recently read an article on the BBC website that said mac users are now being advised to get anti virus software. Does anyone agree with this? And if so, which software? http://news.bbc.co.uk/1/hi/technology/7760344.stm

  • 870 BIOS flash problems

    Well, I am a moron flasher! Didnt know the first thing of what I was doing, and didnt think anything of coming here first. Dumba**, I know. (facepalm) However, I am apparently one lucky dude as well, as I have had no problems whatsoever out of it. My