Pass hyper link to all landscape users

Hello All,
Like system message i need to pass one hyper link to all the customers in my Landscape system. In System message SM02 it can't possible. only text will come not hyperlink(we need to copy and execute).
Please let me know any other option to pass(we have nearly 500 users for 1 system)
Thanks in Advance
Regards,
Rukmini.

Hi Arpita,
  BOE is required to to publish crystal reports to any other portals. If you don't have a BOE, you can build a custom web portal using crystal reports SDK and publish the report there. However BOE makes a lot of things easier.
   The whole point is if a crystal report is published to BOE, it can be accessed by a url. These url's can be integrated with SAP EP or any other portal.
Regards,
Sanjay

Similar Messages

  • Remove Hyper link from UWL ITems

    Hi All,
    How to remove Hyperlink from the UWL items list? Is that possible?
    I have list of tasks in UWL and I do not want to give hyper link to the end users since they already ahve "View Detail"  Button on UWL, Please help how to hide or remove hyper link?
    Thanks
    Krishna

    In the UWL configuration, you specify the default action for a UWL item using the attribute "defaultAction".
    This default action is performed when you click on the UWL item.
    You can set any of the available actions as the default action for the UWL item.
    As mentioned by Karri, it is usually not common to disable the hyperlink of a UWL item and make it non-clickable.
    However, if you would like to achieve this, you can identify and check the UWL configuration file being used for the given UWL item and modify it as below:
    <ItemType name="uwl.task.webflow.decision.TS20000999.MYUWL_SYSTEM" connector="WebFlowConnector" defaultView="yourDefaultView" defaultAction="dummyAction" executionMode="default">
          <ItemTypeCriteria
    Since dummyAction is something UWL doesn't recognize, the hyperlink should be disabled.
    You might have to do this for all the UWL item types you use.
    Thanks,
    Shanti

  • Creating Hyper-Links in Acrobat Pro 8

    Good Day;
    I am somewhat new at this so please forgive me if this question has been asked before.
    I am running Acrobat 8 pro and I am designing some forms. One of the things I want to do is imbed a hyper-link in some of the text. This hyper link will take the user to the documentation on a webpage.
    I have created a form using LiveCycle Designer 8 (part of Adobe Acrobat 8 pro not LiveCycle ES). Within this application there does not appear to be a way to create the hyper-links. I then opened the form in Acrobat 8 pro and the link tool is not available.
    Is there a way to create a hyper-link in the form?
    I hope I have explained this correctly
    Chomp

    The Chomp wrote:
    I then opened the form in Acrobat 8 pro and the link tool is not available.  
    Chomp
    If you created the form using Designer, you must make any edits in Designer and not Acrobat.

  • I updated and it kept freezing up. i deleted it. put IE on and have no hyper links now, fire fox won't work at all either, this is on my work comp. please help me now

    i upgraded on my work comp and it kept freezing up. i had to delete it from the comp. i can't us IE because the hyper link process is now missing for some reason, it was there before. i can't put firefox back on because it simply won't work. please help me because this is happening on my work comp.

    A reset may help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • How to pass alert to All current users via Forms?

    Hi,
    I want to send alert to all the current login user using Forms.Is it possible?. If so,please help regard this.
    kanish

    Hi Kanish,
    I would go with timer.
    Of course I don't your specific requirements, but generally logic can be like this:
    Create table forms_messages.
    In the form in when-new-form-instance create repeating timer (I would not go less then 2 minutes)
    In When-timer-expired trigger – select message from table, and if found display alert to user. To avoid alert to be displayed more then once - you can also create some global variable.
    Keep this forms_messages table empty. When you need to alert all current users – just insert one record into this table.

  • In APEX clicking the hyper link doesn't trigger session timeout page

    Hi All,
    I have a question about the session time out in APEX application. I have created a simple APEX application. In the SQL report region section, i have code like this:
    SELECT DOC_Name, DOC_URL,
    '<a href="' || DOC_URL || ' target="_blank"/">Download file</a>' pdf_link
    FROM test_table
    where emp_number =00010001
    When user clicks on the hyper link, it will display the destination page to user(for example if DOC_URL = 'http://forums.oracle.com', it will display the oracle forum page in a new browser).
    But the issue is that, after user's session timeout (I set for 240 seconds through Shared Components>Edit Security Attributes, i set max the session timeout for example 240 seconds), when i click on this hyperlink, it doesn't trigger my session timeout page and it still displays the page (oracle forum page).
    Why in APEX clicking the hyper link doesn't trigger session timeout page after the user session timeout???
    how to implememt or fix to trigger the session timeout page after clicking on the hyperlinks?
    (BTW, our APEX version is 3.2)
    Thanks!

    Hi Lily,
    the reason for that behavior is that APEX is not involved anymore if you click on an external link. That's completely handled by your browser.
    To involve APEX timeout handling you could redirect to a specific page in your application which performs the final redirect.
    For example:
    1) Create a new page 999
    2) Create hidden page item P999_URL
    3) Create a before header PL/SQL process with the following source
    owa_util.redirect_url('http://'||:P999_URL);
    apex_application.g_unrecoverable_error := TRUE;If you want to embed a link, create a link to page 999 and set the page item P999_URL to forums.oracle.com
    You could also add a white list into the above code to verify that you are just redirecting to valid URLs, so that nobody is using your trusted application URL for phishing attacks.
    Hope that gives you a direction
    Patrick
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • People Picker JS Control not fetching all the users...

    Hi,
    I am using Java Script people picker control. It fetching information for users but not all. I used following code block to get the control working. Why is not fetching all the users?? Where as OOTB people picker fetches same user. This does not make sense.
    My environment is SharePoint online.  
    // Run your custom code when the DOM is ready.
    $(document).ready(function () {
    // Specify the unique ID of the DOM element where the
    // picker will render.
    initializePeoplePicker('peoplePickerDiv');
    // Render and initialize the client-side People Picker.
    function initializePeoplePicker(peoplePickerElementId) {
    // Create a schema to store picker properties, and set the properties.
    var schema = {};
    schema['PrincipalAccountType'] = 'User,DL,SecGroup,SPGroup';
    schema['SearchPrincipalSource'] = 15;
    schema['ResolvePrincipalSource'] = 15;
    schema['AllowMultipleValues'] = true;
    schema['MaximumEntitySuggestions'] = 50;
    schema['Width'] = '280px';
    // Render and initialize the picker.
    // Pass the ID of the DOM element that contains the picker, an array of initial
    // PickerEntity objects to set the picker value, and a schema that defines
    // picker properties.
    this.SPClientPeoplePicker_InitStandaloneControlWrapper(peoplePickerElementId, null, schema);
    Here is the link from Microsoft explaining it.
     How to: Use the client-side People Picker control in SharePoint-hosted apps: https://msdn.microsoft.com/en-us/library/office/jj713593.aspx
    Appreciate any help or workaround here.
    Thanks.

    Hi,
    In my case im usign customize people picker. it is better to use in delelopement since you have the control and customization.
    I have used select2 (https://select2.github.io/examples.html) drop down control and create a people picker
    You can use the same REST call to populate data.
    function initApproversPicker(success, fail) {
                var data = { results: [] };
                var executor = new SP.RequestExecutor($$.getAppWebUrlUrl());
                executor.executeAsync(
      url: $$.getAppWebUrlUrl() + "/_api/web/siteusers",
      method: "GET",
      contentType: "application/json;odata=verbose",
      headers: { "Accept": "application/json; odata=verbose" },
      success: function (dt) {
          $.each(JSON.parse(dt.body).d.results, function (i, ele) {
              data.results.push({ id: ele.Id, text: ele.Title });
          executor.executeAsync(
               url: $$.getAppWebUrlUrl() + "/_api/web/sitegroups",
               method: "GET",
               contentType: "application/json;odata=verbose",
               headers: { "Accept": "application/json; odata=verbose" },
               success: function (dt) {
                   $.each(JSON.parse(dt.body).d.results, function (i, ele) {
                       data.results.push({ id: ele.Id, text: ele.Title });
                   $("#WFApprovers").select2({ data: data, multiple: true });
                   if (success) {
                       success();
               error: function (d, errorCode, errorMessage) {
                   if (fail) {
                       fail();
                   utils.log(errorMessage);
      error: function (d, errorCode, errorMessage) {
          utils.log(errorMessage);
    Melick Rajee http://melick-rajee.blogspot.com

  • Using hyper-links in a jsp pages that are in a Session

    Hi i am trying to include a hyper-links in my jsp pages that are in a Session, however when i use the links to navigate throughout the pages i get a java.lang.NullPointerException. The Session begins after the user has been validated i.e
    String cid= request.getParameter("counsellorID")
    session.setAttribute("counsellorID",cid);
    All the pages included within the session have a session scope=session
    ; and they call the attributes that have been set when the session first begins i.e
    String counsID= (String) (session.getAttribute("counsellorID"));
    Any advice on this problem would be most appreciated!
    Many Thanks
    Stephen

    check if you borwser have cookies enabled

  • Image should work as hyper link in smartform

    Hi,
    I am able to convert smartform with images in to HTML format and able to send as e-mail using the program similar to SF_XSF_DEMO_MAIL.
    As soon as the user receives e-mail, he should able to click on images and should redirect to other webpage. (Image should work like hyper link).
    Can you please suggest how to work on this issue ?
    Thank you very much.
    Regards
    Badari

    Using smart form we can not send image as hyper link. This functionality is not available using smartform.
    Instead of using smart form written the HTML Code and used the following function module  'SO_NEW_DOCUMENT_ATT_SEND_API1' and works fine for me.
    wa_objtxt-line ='</body>'.
      APPEND wa_objtxt TO t_objtxt.
      wa_objtxt-line = '</html>'.
      APPEND wa_objtxt TO t_objtxt.
      HTML close
      wa_objtxt-line = '</body> </html> '.
      APPEND wa_objtxt TO t_objtxt.
    Document data
      DESCRIBE TABLE t_objtxt      LINES w_tab_lines.
      READ     TABLE t_objtxt      INTO wa_objtxt INDEX w_tab_lines.
      wa_docdata-doc_size =
          ( w_tab_lines - 1 ) * 255 + STRLEN( wa_objtxt ).
    Packing data
      CLEAR wa_objpack-transf_bin.
      wa_objpack-head_start = 1.
      wa_objpack-head_num   = 0.
      wa_objpack-body_start = 1.
      wa_objpack-body_num   = w_tab_lines.
      we will pass the HTML, since we have created the message
      body in the HTML
      wa_objpack-doc_type   = 'HTML'.
      APPEND wa_objpack TO t_objpack.
    *ENDFORM.                    " CREATE_TITLE_DESC_BODY
    *&      Form  fill_receivers
          Filling up the Receivers
    *FORM fill_receivers .
      wa_reclist-receiver = I_email. "p_email.
      wa_reclist-rec_type = 'U'.
      APPEND wa_reclist TO t_reclist.
      CLEAR  wa_reclist.
    *ENDFORM.                    " fill_receivers
    *&      Form  send_message
          Sending Mail
    *FORM send_message .
    Send Message to external Internet ID
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = wa_docdata
          put_in_outbox              = 'X'
          commit_work                = 'X'     "used from rel.6.10
        TABLES
          packing_list               = t_objpack
          object_header              = t_objhead
          contents_txt               = t_objtxt
          receivers                  = t_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc NE 0.
        E_STATUS = 'Sending Failed'.
      ELSE.
        E_STATUS = 'Sending Successful'.
      ENDIF.
    Edited by: Badari Narayana1 on Oct 6, 2009 10:09 PM
    Edited by: Badari Narayana1 on Oct 6, 2009 10:09 PM
    Edited by: Badari Narayana1 on Oct 6, 2009 10:10 PM

  • How to Open GUI Transaction when clicking in Hyper Link

    Hello All,
    I want to open GUI Transaction  when user will click on Hyper Link created in a particular column in a table view. For that I have created  Transaction Launcher ID using Transaction Launcher  Wizard. Then what will be the next step, i'm not getting. Can anybody help me out on this?
    Thanks in advance,
    Madhusudan

    Hi,
    Here is the sample code:
    DATA: lr_navigation TYPE REF TO if_crm_ui_navigation_service.
    lr_navigation = cl_crm_ui_navigation_service=>get_instance( me ).
    CHECK lr_navigation IS BOUND.
    lr_navigation->navigate( iv_link_id = 'ZLINKID' ).
    -ASB

  • Hyper Link in Object attachment in work item

    Hi,
    I am working with workflow for IDOC error resolution.  I need to make hyper link in a workitem in the Object and Attachment section to goto WE02.  How to do this?  do I need to create a new task for this?  what is the use of template attachment in user decision?
    Thanks
    Sunil

    Hi,
    you can create the link by useing following url
    http://<host>:8000/sap/bc/gui/sap/its/webgui?sap-system-login-basic_auth=X&sap-language=EN&~transaction=WE02
    Now pass/create this link in the workitem description in following way...
    <A href="&link&">
    IDOC
    </A>
    where &link& is the variable hold the value of the above link..
    Thanks and regards,
    SNJY

  • Hyper link to create Expense Report

    Hi All,
    When a Travel Request has been fully approved, the user should see a hyperlink to create Expense Reports in the All My Trips tab on portal currently we have a issue that hyper link does not show in the ALL My Trips tab
    Quite surprised about the issue whether it  relates to Development or Configuration
    Provide the valuable input to proceed further
    Regards
    Jaipal

    Hi,
       please specify what ui element used for hyperlink

  • I store FAQ for Power Zone hyper link functionality.

    Hello All,
    There is a customer requirement as to have a access of FAQ's for Power Zone, where customer will get all type of question and Answers regarding Power Zone. Currently we have customization to meet customer's requirement. As per customization a Hyper link has been created of FAQ's for Power Zone. The link has non editable FAQ's page. FAQ page can have more hyperlinks which will refer other page and so on, there is a closed button provided on FAQ page to close the page.
    Can we bring the same functionality in Oracle R12.1.3 seeded system ?

    The play store in Khanning's initial AOSP ROM is certainly improved over previous versions of ICS but is still not fully working. To date no ICS build on the K1 has achieved the level of app compatibility in 3.2.1 HC. As pointed out in the thread on xda devs Chrome is still not working. I have noticed in the list of apps that I own that most items that were not working in the stock ICS build now are (ex. Maps, street view, free editions of angry birds games, paid fruit ninja). I have also noticed however that a significant number of items that worked fine in the stock release are now showing incompatible (ex. Google Earth, Oscura, Scramble with Friends, Monsters Ate my Condo). All of these apps were accessible in the play store in HC. For what its worth I have not yet tried manipulating build.prop to spoof another tab in the AOSP ROM but this method was largely ineffective in resolving similar issues with the stock ROM.
    This is not me griping about the situation as I remain greatful to Kreg for his work on the K1 but rather I am setting expectations for other users as well as sharing my experiences in the hope it will be helpful to Kreg and others in the ongoing effort to create a fully functioning ICS (and hopefully later JB) ROM for K1 users. I would post on XDA devs but the thread is in the development section and not open to new users.

  • Quotes in a page level item not showing up as " when used in a hyper link

    Hi all,
    In my app, I need to hyper link to a crystal report application with parameters from my page. I have a page level item that puts my parameter in quotes, but when the item is utilized in the hyperlink, the quotes come across as & q u o t ; (spaces were put in to the post to avoid html conversion) how can my string be used to appear the way I want?

    I don't use Crystal Reports, but, in general, you should encode your URL. When you create your link, run the URL through utl_url.escape() first. Put it in your select statement.
    E.G.,
    select utl_url.escape('http://oracle.com/foo"bar') from dual;
    will escape/encode the quotation mark and give you:
    http://oracle.com/foo%22bar
    This translates the " into a URL-safe escape code, %22, that should (I hope) be understood properly by your Crystal Reports server.
    Good luck.

  • Workflow mails going to all the Users Maintained in the System

    Hi Everyone,
    I have a Purchase order workflow which gets triggered through ME21, when the PO need to be approved at every level based on the amount of PO , mail need to be sent to set of users.
    We have a step in workflow , where we have created a rule and we pass the current level( eg, L1, L2,L3,L4) to the FM and this FM provides the List of Users for that level and the mail need to be sent to them.
    I checked the FM that is working fine but when the workflow gets triggered it sends to every user .
    Please let me know what possibly has gone wrong.
    Regards,
    Raj

    hi,
    As suggested, did you check in the rule definition, there is an option called  "Terminate if Rule resolution without result" , enable and this should resolve the issue.
    Since the task is defined as general task, the work item can be executed by all users. And if the rule fails, the above option is not enabled, hence it sends it to all valid users in the system.
    Please try this out.
    Best Regards,
    Saujanya

Maybe you are looking for