Add a URL link to an area menu (SE43)

Does anybody know an possibility to add a URL link to an area menu in SE43?
Best Regards
A.B.

Hi.,
As far I know it is not possible to create URL link in Area Menu., instead, Create a Report and call Function 'CALL_BROWSER' and pass the url to the function module.
Now create a Transaction for this report let say ZURL,
Now Assign this transaction to Area Menu So., When you click that transaction in Area menu it will open Url in browser.
hope this helps u.,
Thanks & Regards,
Kiran

Similar Messages

  • How can URL links in Content Area be periodically checked ??

    Is there an automated way an to check for bad URL links in Content Areas??

    Guy,
    You should be able to browse through Oracle9iAS Portal with any link checker available on the market. Some products may only let you check public content.
    We have plans to add this functionality to the product directly in a future release.
    Good luck,
    Rich

  • Adding  URL Links to Tool Area iView in Default Framework Page

    We want to add a URL link to the Tool Area  iView in  Standard Framework page.  When we edit the property "EnableLink1" and "EnableLink2" property to "True" of Tool Area iView, it shows two links in the tools area without actual links.
    Where do we add these links?
    Thanks.
    PK

    Hi,
    In EP 7.0 SP21 no show the EnabledLink1 and EnabledLink2,
    Was deprecated?.
    Must to edit the par file to insert it?.
    Thanks

  • How to add a URL link to text

    I need t add a URL link to a word but have not bee able to locate this option, and the usual CTRL + K isn't working. Thanks!

    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.

  • What is Area Menu (SE43)

    What is Area Menu (SE43)? why we attach our reports here? I want to now its pupose and working.
    Regards
    Iftikhar Ali
    Islamabad

    Hi,
    Area menus allow you to group together menus that contain a set of functions intended to perform a particular task in a company
    check out these links.
    area menu
    area menu
    Reward points if helpful
    Manoj.

  • How to add external URL link to SAP object (Purchase Order, Invoice, etc)

    Hello,
    Is there any function module /BAPI that allows me to add an external URL link to a existing Purchase Order
    or Invoice document in R3 system?
    I tried to debug the system but have not found no suitable function module for it.
    I also analyzed the ABAP code of the small GUI window that allows to add a external URL link to
    a Purchase Order, and found the function module SO_OBJECT_INSERT. However I could not debug
    it (seems to be created with BOR objects) so I've no example for it.
    Please help!
    Regards,
    Manuel Dias

    CONSTANTS:
        c_http(36)    TYPE c VALUE '/BpHttpApis/slaphapi?ibmperson/(uid=',
        c_listxml(12) TYPE c VALUE ').list/byxml',
        c_value(5)    TYPE c VALUE 'value',
        c_cn(2)       TYPE c VALUE 'cn',
        c_mail(4)     TYPE c VALUE 'mail',
        c_em_num(19)  TYPE c VALUE 'managerserialnumber',
        c_em_cou(18)  TYPE c VALUE 'managercountrycode'.
      DATA  client          TYPE REF TO if_http_client.
      DATA  url             TYPE string.
      DATA  xbuffer         TYPE xstring.
      DATA  l_value         TYPE zchar2000.
      DATA  l_value_string  TYPE string.
      DATA  content         TYPE string .
      DATA  rows            TYPE STANDARD TABLE OF string.
      DATA  wa_rows         TYPE string .
      DATA  conv            TYPE REF TO cl_abap_conv_in_ce.
      DATA  ixml            TYPE REF TO if_ixml.
      DATA  streamfactory   TYPE REF TO if_ixml_stream_factory.
      DATA  parser          TYPE REF TO if_ixml_parser.
      DATA  istream         TYPE REF TO if_ixml_istream.
      DATA  document        TYPE REF TO if_ixml_document.
      DATA  node            TYPE REF TO if_ixml_node.
      DATA  xmldata         TYPE string.
      DATA  iterator        TYPE REF TO if_ixml_node_iterator.
      DATA  nodemap         TYPE REF TO if_ixml_named_node_map.
      DATA  attr            TYPE REF TO if_ixml_node.
      DATA  name            TYPE string.
      DATA  prefix          TYPE string.
      DATA  value           TYPE string.
      DATA  indent          TYPE i.
      DATA  count           TYPE i.
      DATA  index           TYPE i.
      url = 'http://bluepages.ibm.com'.
      CLEAR: l_value_string, l_value.
    ***Create the HTTP client
      CALL METHOD cl_http_client=>create_by_url
        EXPORTING
          url    = url
        IMPORTING
          client = client
        EXCEPTIONS
          OTHERS = 1.
      IF sy-subrc <> 0.
    Create the HTTP client failure, sy-subrc =
        MESSAGE i005(zm) WITH text-026 sy-subrc.
        EXIT.
      ENDIF.
      CONCATENATE c_http
                  p_accnt
                  p_couty
                  c_listxml
                  INTO l_value.
      l_value_string = l_value.
    ***Get employee information
      CALL METHOD client->request->set_header_field
        EXPORTING
          name  = '~request_uri'
          value = l_value_string.
      client->send( ).
      client->receive( ).
    ***Load to xstring
      CLEAR xbuffer .
      xbuffer = client->response->get_data( ).
      conv = cl_abap_conv_in_ce=>create( input = xbuffer ).
      conv->read( IMPORTING data = content ).
    create the ixml main factory
      ixml = cl_ixml=>create( ).
    create a stream factory
      streamfactory = ixml->create_stream_factory( ).
      xmldata = content.
    create a input stream
      istream  = streamfactory->create_istream_string( string = xmldata )
    create a ixml document
      document = ixml->create_document( ).
    create a xml parser
      parser  = ixml->create_parser( document       = document
                                     stream_factory = streamfactory
                                     istream        = istream ).
    parse the xml document into DOM tree
      IF parser->parse( ) <> 0.
    parse the xml document into DOM tree failure
        MESSAGE i005(zm) WITH text-027.
        EXIT.
      ELSE.
        node ?= document.
        IF node IS INITIAL.
    To be done
        ENDIF.
    create a node iterator
        iterator  = node->create_iterator( ).
    get current node
        node = iterator->get_next( ).
    loop over all nodes
        WHILE NOT node IS INITIAL.
          indent = node->get_height( ) * 2.
          indent = indent + 20.
          CASE node->get_type( ).
            WHEN if_ixml_node=>co_node_element.
          element node
              name    = node->get_name( ).
              nodemap = node->get_attributes( ).
              IF NOT nodemap IS INITIAL.
            attributes
                count = nodemap->get_length( ).
                DO count TIMES.
                  index  = sy-index - 1.
                  attr   = nodemap->get_item( index ).
                  name   = attr->get_name( ).
                  prefix = attr->get_namespace_prefix( ).
                  value  = attr->get_value( ).
                ENDDO.
              ENDIF.
            WHEN if_ixml_node=>co_node_text.
    User name
              IF name  = c_value AND
                 value = c_cn.
          text node
                value  = node->get_value( ).
                p_name = value.
              ENDIF.
    User email
              IF name  = c_value AND
                 value = c_mail.
          text node
                value  = node->get_value( ).
                p_email = value.
              ENDIF.
    Employ serial number
              IF name  = c_value AND
                 value = c_em_num.
          text node
                value  = node->get_value( ).
                p_em_num = value.
              ENDIF.
    Employ country code
              IF name = c_value AND
                 value = c_em_cou.
          text node
                value  = node->get_value( ).
                p_em_cou = value.
              ENDIF.
          ENDCASE.
      advance to next node
          node = iterator->get_next( ).
        ENDWHILE.
      ENDIF.

  • How do I add a URL link to a JTextArea?

    Hi,
    I have a JTextArea that updates the status of my program.
    How do I make some of the status updates URL links?
    Thanks.
    Vsh

    JEditorPane can provide support for links relatively easily. Read the abstract at the top of the JavaDocs for an example.

  • How to make result files as url link  when u are searching

    Hi
    i am searching for string in multiple files and i am gettin the result here i want to get each file is url link once u click that link it should be able to open file like what we do in goosle seach.
    can any one help me here?what is process for it........
    thnak u
    vijay

    Hi
    like google search i have developed uisng uima an apllication where i can enter text and looks into input directory in local system.here iam getting out put like getting the whole text as well as searched string which is highlated in yellow color.
    now i want insted of getting all files with whole and occurence of searched result 1st i want to get is file as link as in google.i hope now my point is clear.can u help me now?

  • Invalid URL Link in Content Area

    Hi,
    When I create a URL item which display directly on the Content Area. If I
    enter a invalid URL addres, the system will show an error when I view the
    folder, which is fine. However, it will disable me to see other item on the
    same folder and there is also no way to delete that invalid URL item at all.
    The only way is to delete the folder which will in turn delete all the items
    under that folder, which, is not acceptable. Is there some form of solution ?

    Alvin,
    Please see thread http://technet.oracle.com:89/ubb/Forum82/HTML/000067.html .
    I encourage everyone to search the forum to see if your question has already been answered.
    Thanks,
    Jerry
    null

  • URGENT: How to add an URL link to an Image?

    Hi,
    I need to be able to link a web page from an image . How can I do this using Oracle Portal?
    Many THANKS
    Mariela

    this link try to connect to a page named page_name
    <img src="images/24librar.gif" border="1">
    here is the code
    &lt;a href=/pls/portal30/url/page/page_name &gt;&lt;img src=images/24librar.gif border=1 &gt;&lt/a&gt;
    pedro

  • Add a URL link to my Flash banner ...

    I am also fairly new to flash and have made my first
    banner...
    http://www.airboxmedia.com/rhythmpunkz/
    As you can its finished now but I cant figure out how to make
    it link back to the page (listed above). I have created rectangle
    as a seprate layer over the whole stage, coverted it to a button
    and set the Alpha to 0% as the idea the user can click on the
    banner at anytime to open a new window.
    I have tried adding this action scrip to the rectangle layer:
    link.addEventListener(MouseEvent.CLICK,clickHandler);
    function clickHandler(event:MouseEvent):void{
    navigateToURL(new URLRequest("
    http://www.airboxmedia.com/rhythmpunkz"));
    but all I get is an error saying:
    Statement must appear within on handler ->
    link.addEventListener(MouseEvent.CLICK,clickHandler);
    The class or interface 'MouseEvent' could not be loaded.
    -> function clickHandler(event:MouseEvent):void{
    Many thanks, J

    You don' t need to add that to the layer, you need to add
    that script to your root.. normally you create a new layer and lock
    it immediately so you can't add any shapes / objects to it, then
    add your code above in that frame, test the movie :)

  • How to add a URL link to a WAD template

    Hi,
    the requirement is to have a kind of button in a WAD template
    that opens a document in a new browser window.
    (The document actually contains an extensive help for the application.
    It shall be stored in the portal CM and we have the URL for that)
    Any suggestions fr a simple solution?
    P.S.
    - A single document might be an option as well, however than we would have to attach the document to an BW object and it seems not to open directly after the call
    - A button group item that starts a script item?

    Hello,
    Try this one as Web Template:
    START ###
    <bi:bisp  xmlns="http://www.w3.org/TR/REC-html40" xmlns:bi="http://xml.sap.com/2005/01/bi/wad/bisp" xmlns:jsp="http://java.sun.com/JSP/Page" >
        <html >
            <head >
                <title >BEx Web Application</title>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            </head>
            <body >
                <p >
                    <bi:TEMPLATE_PARAMETERS name="TEMPLATE_PARAMETERS" />
    <!-- insert data providers, items and other template content here -->
                    Button with portal style:
                </p>
                <p >
                    <span class="urBtnRow" >
                        <a class="urBtnStd" id="BUTTON_DOCUMENTATION" title="Documentation" href="http://sap.com" target="_new">Documentation</a>
                    </span>
                </p>
                <p >Hyperlink:</p>
                <p >
                    <span class="urBtnRow" >
                        <a href="http://sap.com" >[Documentation]</a>
                    </span>
                </p>
            </body>
        </html>
    </bi:bisp>
    END ###
    Probably you have to look into source code of this page, because you have to copy the text directly into WAD.
    Search for ### START ###
    Regards, Karol
    SAP NetWeaver BI, Development

  • Add url link in "lightbox style" js gallery

    Hello,
    Can someone help me add a url link in the image description? I am using an "overlay" gallery (prettyphoto) and want viewers to be able to visit a site instead of going to the next image when clicked on images that are websites.
    CSS Code I am using:
    <li><a href="images/work/work-full1.jpg" rel="prettyPhoto[1]" title="Trade Show Panels - 2011"><img src="images/work/work-thumb1.jpg"></a></li>
    <li><a href="images/work/work-full2.jpg" rel="prettyPhoto[1]" title="Local Resource Website - Lake Wylie, SC"><img src="images/work/work-thumb2.jpg"></a></li>
    and so on...
    View gallery in action here:
    click on the work tab.
    http://doubleulabs.com/
    Thanks for any help on this.

    I no longer use lightbox.  I prefer Fancybox because you can do more with it.  Copy & paste  this code into a new, blank document.  SaveAs test.html and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5, with Fancybox2 and Captions</title>
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--LATEST JQUERY CORE LIBRARY-->
    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    <!--FANCYBOX plugins-->
    <link href="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.css" rel="stylesheet" media="screen">
    <script src="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.pack.js"></script>
    <style>
    /**LINKS**/
    a {text-decoration:none}
    a:link {color:#FF0}
    a:visited {color:#920000}
    a:hover, a:active, a:focus {text-decoration:underline}
    /**this styles image container**/
    #thumbs p {
        float: left;
        width: 180px;
        margin: 10px;
        padding: 10px;
        text-align: center;
        border: 1px solid silver;
        /**rounded borders**/
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
    /**recommend using same size images**/
    #thumbs img {
        width: 160px; /**adjust width to thumbnail**/
        height: 120px; /**adjust height to thumbnail**/
        opacity: 0.75;
    #thumbs img:hover { opacity: 1.0 }
    /**float clearing**/
    #thumbs:after {
        content: ".";
        clear: left;
        font-size: 0px;
        line-height: 0;
        display: block;
        visibility: hidden;
    </style>
    </head>
    <body>
    <h1><a href="http://fancyapps.com/fancybox/">Fancybox2</a> Viewer with images</h1>
    <h2>Captions contain text and links</h2>
    <div id="thumbs">
    <!--insert thumbnails with links to full size images below-->
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 1" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 2" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 3" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 4" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 5" /></a> </p>
    <!--end thumbs--></div>
    <!--FancyBox function code-->
    <script>
    $(document).ready(function() {
        $(".fancybox")
        .attr('rel', 'gallery')
        .fancybox({
         beforeLoad: function() {
         this.title = $(this.element).attr('caption');
    </script>
    </body>
    </html>
    Nancy O.

  • 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.

  • In SharePoint 2013 navigation, is it possible to add a custom link only to the left-hand menu without getting it in to the top menu dropdown?

    If I want to add a custom link to the left-hand navigation menu In a SharePoint 2013 sub-site, it can be done by visiting
    Site Settings à Navigation section and adding the link under
    Structural Navigation: Editing and Sorting section. However, this will automatically add a matching link to the top menu as a dropdown.
    (Note that Global Navigation is set to “Display the same navigation items as the parent site” where “Parent is using Structural Navigation.” and Current Navigation is set to “Structural Navigation:
    Display only the navigation items below the current site”)
    Is there a way to just add a custom link only to the left-hand menu without getting it in to the top menu dropdown?

    Hi Asanka,
     Please refer the below link which may help you to resolve your problem.
    http://blog.navantis.com/configuring-sharepoint-2013-navigation-to-span-site-collections/
    If its not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

Maybe you are looking for

  • Importing from sony dcr-dvd301

    I am trying to help a friend import video from a sony dvd handycam. I know that the video has to be converted for use in iMovie, but the problem is getting the video off the camera to convert it. I have all the conversion software (freeware) The came

  • IMAC G5 Fans Cycle approximately every 5 to 10 minutes to higher speed

    I have a 4 year old iMAC G5 which just started ( about 2 weeks ago) cycling the fan speed to high about every 5 to 10 minutes. I have checked using iStat the temps and the fan speeds, and the temps seem no different than they were before. I have chec

  • Call a Java Function From Abap

    Hi, I need to call a java function from ABAP,  I have a WAS 640 to deploy the module. I have found this tutorial... [ABAP calls Java via RFC|/people/thorsten.franz3/blog/2008/11/21/abap-calls-java-via-rfc-1-introduction] The problem is that it uses a

  • ThinkPad USB Keyboard Driver SK-8855

    The ThinkPad USB Keyboard SK-8855 is not listed in the driver matrix.  I can only find the one for the newer 55Y9003.  Help?  Does anybody know if the newer driver works with the older keyboard?

  • How to turn off versions in Keynote??

    I use Keynote all the time in my work, and my files can be quite large--sometimes exceeding 1 gig in size.  To make a long story short, yesterday at the Apple Store, we discovered, after two Apple guys were tenacious enough to hang in there with me,