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.

Similar Messages

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

  • How to get the loaded cost for the Parked Purchase Order Invoices.

    Hi,
    Could any one of you please help me out to find out how the loaded cost is calculated for Parked Purchase Order Invoices which have not been posted. The problem is that if the invoice is posted the ekbe-wrbtr field contains the total amt for any particular line item, i.e. the (material cost + unplanned costs + taxes ).
    But for the documents which are not posted ekbe-wrbtr does not have all the key data fields as that of a posted document. Is there any way out to find the total cost for the line item which is not posted.
    Please try to help me..
    Thanks & Regards,
    Sanjay.

    in that case u have to get the document amt of that accouting Document of PO invoice.
    how --->
    get the IR number from EKBE
    CALL FUNCTION 'FI_DOCUMENT_RECORD'
        EXPORTING
          I_AWTYP            =  'RMRP'
          I_AWREF            =  W_AWREF1----->IR of Po
          I_AWORG            =  W_GJAHR1----->year
        I_AWSYS            = ' '
        I_AWTYP_INCL       = ' '
        I_AWTYP_EXCL       = ' '
        I_BUKRS            = ' '
        TABLES
          T_DOCUMENTS        = T_DOC.--->here u get the accouting document number.
    Regards
    Prabhu

  • 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

  • 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

  • Design-Time Data with external url linking

    I have a data list here:
    http://facetmedia.com/new/
    In the portfolio section I would like to make links which are clickable for the portfolio items. I now know how to use Flex Builder to make external URL links for regular buttons. What I don't know is how to edit this data list to create external links. Any help would be appreciated.

    Hi trancepriest,
    First, if you haven't already, you probably want to read some of the other posts here about creating a URL link button.  Once you've tried doing that and feel comfortable setting up a simple URL link in a test project, then you can move on to integrating this functionality into your list.
    Now -- the rest depends on how the data is represented in your list.  From some of your other posts here, it actually sounds like you're no longer using a list at all, but rather just a tall layout of hardcoded items set inside a scrolling viewport.  If this is the case, you can just repeat the simple button creation you did above, placing all the buttons in the appropriate places in your tall layout (on top of / next to each distinct "item" in the layout).
    If you're still using a Data List with a Repeated Item, then the initial setup will be a little bit more tricky, but it will save you time in the long run since you only have to set up one button (which will then be repeated for each item).  Here's how:
    Find the "dataProvider" tag in the code.
    Inside that will be a series of "Object" tags listing your current list data.  Add a new "url" attribute to each tag, e.g. url="http://www.adobe.com".
    Edit the Repeated Item's definition (in the source code, find the itemRenderer attribute on the List tag and ctrl+click it).
    Create your URL link button inside there. But -- instead of typing in the URL as a string in quotes (as seen in other examples in this forum), use data.url to refer to the url attribute you added in step 2.
    Hope that helps!
    - Peter

  • How to add an internal link on pages 5.0.1?

    Could anyone please tell me how to add an internal link on pages 5.0.1.
    I am making FAQ list, and I would like to make the first page of the document as a list of questions and when a user click on each question, it jumps to the answer (in the same document).
    I found "Add link" tool but it allows you to jump URL or email only.
    I was able to  set the list of questions as an index page of "Table of contents" tool and jump to a question page by clicking each page number, however, it fails when I put a question in a table (I would like to place each question and answer in tables for a visual purpose).
    It seems a jump by using "Table of contents" become invalid when the contents are placed in a chart.  WHy?
    Are there any way to solve this problem?
    any advise will be appreciated.

    Bookmarks have been removed from Pages 5 along with 90+ other features.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=bb95ac0944151 2bc797f0c2dbd918f4c&mforum=iworktipsntrick
    You may have Pages '09 still in your Applications/iWork folder.
    The T.O.C. does not index text inside objects which includes Tables.
    Peter

  • How to add a report into the SAP-SCRIPT .using PERFORM ......ENDPERFORM

    My question is that How to add a report into the SAP-SCRIPT .
    by using PERFORM ......ENDPERFORM
    I don't know how to used it .

    Hi Sandeep,
    Please check this link
    http://help.sap.com/saphelp_40b/helpdata/en/d1/803279454211d189710000e8322d00/content.htm
    http://www.allinterview.com/showanswers/37425.html
    Calling ABAP Subroutines: PERFORM
    You can use the PERFORM command to call an ABAP subroutine (form) from any program, subject to the normal ABAP runtime authorization checking. You can use such calls to subroutines for carrying out calculations, for obtaining data from the database that is needed at display or print time, for formatting data, and so on.
    PERFORM commands, like all control commands, are executed when a document is formatted for display or printing. Communication between a subroutine that you call and the document is by way of symbols whose values are set in the subroutine.
    Syntax in a form window:
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    The ABAP subroutine called via the command line stated above must be defined in the ABAP report prog as follows:
    FORM <form> TABLES IN_TAB STRUCTURE ITCSY
    OUT_TAB STRUCTURE ITCSY.
    ENDFORM.
    The values of the SAPscript symbols passed with /: USING... are now stored in the internal table IN_TAB . Note that the system passes the values as character string to the subroutine, since the field Feld VALUE in structure ITCSY has the domain TDSYMVALUE (CHAR 80). See the example below on how to access the variables.
    The internal table OUT_TAB contains names and values of the CHANGING parameters in the PERFORM statement. These parameters are local text symbols, that is, character fields. See the example below on how to return the variables within the subroutine.
    From within a SAPscript form, a subroutine GET_BARCODE in the ABAP program QCJPERFO is called. Then the simple barcode contained there (u2018First pageu2019, u2018Next pageu2019, u2018Last pageu2019) is printed as local variable symbol.
    Definition in the SAPscript form:
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    Coding of the calling ABAP program:
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY u2018PAGEu2019.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018NEXTPAGEu2019.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018BARCODEu2019.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = u2018|u2019. "First page
    ELSE.
    OUT_PAR-VALUE = u2018||u2019. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = u2018Lu2019. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Best regards,
    raam

  • How to add Friendly URLs in Weblogic Portal?

    Hi,
    We are developing a portal using Weblogic 10gR3. Right now the URL's that are getting formed are very long which includes the nfpb, nfls, pagelabel e.t.c. The requirement is to have a very user friendly url something like http://www.x.com/portal/<<pageLabel>>
    The Weblogic documentation mentions something about URL compression, however unable to apply it for dynamic URL's. We have URL's which are formed on the fly from the WLP Content Repository
    Is there some kind of servlet / filter provided within WLP. I read somewhere about an URLTransformationServlet. But there was no documentation on its usage. Can some one share a sample code snippet with me. That would be really really helpful, as we are having a slight time crunch here.
    Any kind of help on this will be deeply appreciated. Thanks
    Thanks and Regards,
    Lilly

    Dear Team,
    Please help us in Change Portal Url . Please find below details and help us asap.
    Regards
    Radhakrishna
    Generic Note
    I understand [email protected] looks after your account and he should be able to assist you in this matter.
    You could possibly post your question to the oracle forums, like below
    How to add Friendly URLs in Weblogic Portal?
    [email protected] - November 1, 2010 7:05:03 PM GMT+05:30 [Update from Customer]
    Dear Team,
    Please let us know how to contact the assigned oracle account manager to engage someone from the professional services team.
    Please update us asap.
    Regards
    Radhakrishna
    Oracle Support - November 1, 2010 5:28:59 PM GMT+05:30 [Information]
    Generic Note
    I would suggest you contact the assigned oracle account manager to engage someone from the professional services team.
    [email protected] - November 1, 2010 4:55:25 PM GMT+05:30 [Update from Customer]
    Dear Team,
    How to engage oracle professional services to team to get assistance.
    Regards
    Radhakrishna
    Oracle Support - November 1, 2010 1:48:49 PM GMT+05:30 [Information]
    Generic Note
    As mentioned earlier, changes to the portal url is not provided out of box, the documentation link that I provided mentions a possible way of achieving this by creating a start up servlet, this may or may-not work in all circumstances. If the suggestions provided so far has not helped you so far, I would recommend you engage oracle professional services team to get assistance.
    [email protected] - November 1, 2010 1:36:12 PM GMT+05:30 [Update from Customer]
    Dear Team,
    Please find below comments from Dev team.
    While try to incorporate the URL navigation changes at
    our development environment we are getting exception Unable to render /framework/skeletons/bharti_skeleton/singlelevelmenu.jsp .
    I have also checked feasibility for the URL navigation changes provided and will not work for left menu
    and footer URL because while rendering these URL we are not using single level menu jsp or multilevel menu jsp.
    Please check with these comments and update ASAP.
    Regards
    Radhakrishna
    [email protected] - October 28, 2010 7:56:02 PM GMT+05:30 [Update from Customer]
    Hi,
    regarding making changes to the url meets ,we are working on the document which you have provided.we will update with result onc it get finished.
    Regards,
    Eranna D.
    Oracle Support - October 28, 2010 7:06:32 PM GMT+05:30 [Information]
    Generic Note
    Since your question about Rich Text support in CMS is not related to portal urls, I would request you raise this as a separate issue.
    In the new SR, please elaborate what you mean by the Rich Text support, whats your proposed use case, whats working and what is not.
    Could you also confirm if the further information I have provided regarding making changes to the url meets your requirement.
    [email protected] - October 28, 2010 7:04:48 PM GMT+05:30 [Update from Customer]
    CMS----Content Management System
    Rich contents are : Media files, Vedios, Movies... etc.
    [email protected] - October 28, 2010 6:58:46 PM GMT+05:30 [Update from Customer]
    Hi,
    Can you please clarify the below point also.
    "Please confirm whether CMS support Rich Text in weblogic , currently we have the weblogic version 9.2 . Plz confirm whether it will support or not."
    Regards,
    Eranna D.
    Oracle Support - October 28, 2010 5:41:53 PM GMT+05:30 [Information]
    Generic Note
    The following documentation http://download.oracle.com/docs/cd/E13218_01/wlp/docs81/url/simplify.html tells how you can achieve the simple urls you are looking for.
    Could you let me know if this meets your requirement.
    [email protected] - October 28, 2010 12:07:05 PM GMT+05:30 [Reopen Request]
    Hi,
    Please clarify why it is not possible to remove nfpb parameter.
    Call Me on +91 9686971269 ASAP.
    Oracle Support - September 29, 2010 5:39:48 PM GMT+05:30 [ODM Answer]
    === ODM Answer ===
    weblogic portal does not provide any out of the box way to achieve this functionality
    Oracle Support - September 29, 2010 5:39:15 PM GMT+05:30 [ODM Question]
    === ODM Question ===
    need to change the URL
    http://hostname:port/ics_war/ics.portal?_nfpb=true&_pageLabel=Tariff
    to
    http://hostname:port/ics_war/ics.portal/Tariff.
    Oracle Support - September 25, 2010 4:42:01 PM GMT+05:30 [Information]
    Generic Note
    WLProxy configuration falls under the weblogic server product hence you will have to raise an SR with that product to get any suggestions.
    Before that I would suggest you play around with the parameter I have suggested and see how it is impacting the url and then if there is any specific area you are stuck on check with the WLS team.
    Like I mentioned earlier, I do not know if this will completely meet your business requirement, but something you can look into.
    [email protected] - September 25, 2010 4:32:00 PM GMT+05:30 [Update from Customer]
    Hi,
    Can you please brief us what all are the changes needs to be done to meet our below requirement.
    Regards,
    Eranna D.
    +91 9686971269
    Oracle Support - September 24, 2010 9:00:57 PM GMT+05:30 [Information]
    Generic Note
    URLCompression servlet is the only option that weblogic portal provides out of the box to compress the URL of WLP. I understand this does not suite your requirement.
    The other option I can think of that can possibly help you achieve this is to configure any weblogic proxy plugin that you might be making use of, see the document
    http://download.oracle.com/docs/cd/E15051_01/wls/docs103/plugins/plugin_params.html#wp1143055 look for PathTrim, PathPrepend
    [email protected] - September 24, 2010 5:41:39 PM GMT+05:30 [Update from Customer]
    Hi,
    Please call me on +91 9686971269 ASAP.
    Regards,
    Eranna D
    [email protected] - September 24, 2010 5:41:22 PM GMT+05:30 [Update from Customer]
    Hi,
    Even thogh after implementing the below changes,still we are not able to get the result. " nfpb parameter is still existing in URL ".
    Implementing URL Compression :
    To configure a webapp to use url compression, follow these steps:
    1. Define the compression servlet in web.xml; for example
    <servlet>
    <servlet-name>UrlCompressionServlet</servlet-name>
    <servlet-class>com.bea.portlet.compression.UrlCompressionServlet
    </servlet-class>
    <init-param>
    <param-name>defaultPage</param-name>
    <param-value>/index.jsp</param-value>
    </init-param>
    <init-param>
    <param-name>errorPage</param-name>
    <param-value>/errors/error.jsp</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    2. Map the compression pattern; for example:
    <servlet-mapping>
    <servlet-name>UrlCompressionServlet</servlet-name>
    <url-pattern>wlp.c</url-pattern>
    </servlet-mapping>
    3. Add the token {url:compression} to the templates for which you want to apply compression.
    Please suggest on this ASAP.
    Regards,
    Eranna D.
    [email protected] - September 24, 2010 5:27:58 PM GMT+05:30 [Customer Problem Description]
    Problem Description: We need to change the URL
    http://hostname:port/ics_war/ics.portal?_nfpb=true&_pageLabel=Tariff
    to
    http://hostname:port/ics_war/ics.portal/Tariff.
    Pls suggest on this.
    Regards,
    Eranna D.

  • How to add friendly URLs to pages within the ALUI portal?

    I want to know how to add friendly URLs (human-readable URLs that users can bookmark or type into the browser address bar) to pages within the ALUI portal.
    The portal application is developed using plumtree portlets.
    regards,
    Veeshoo

    In 6.5
    Community links look like this:
    http://your_Server/portal/server.pt/community/lockdown_console/
    Documents look like this:
    http://your_Server/portal/server.pt/document/50541/your_document_name.doc
    If your goal is for users to "type into the browser address bar" then your best bet would be dns mapping.
    At that point you could have communities with urls like:
    http://your_Community.your_Server.com
    or
    http://your_Server/your_Community
    Which is significantly easier for users

  • How to add a page in the SAP Scripts

    Hi All,
    I want to know how to add a page in the sap scripts. there is already sap script developed by some other person.
    Now I have to add a page in front of that and have to add some more data.I added a page in page windows but thats not at all working.
    Please help me out in this.
    Thanks,
    Praveen

    new page will create in sap scripts using new page command.
    you have to set condition like after some number of records displayed in page new page has to be trigger.
    ex:YOU HAVE SO MANY RECORDS FOR PRINTING BUT YOU WANT TO DISPLAY 100 RECORDS IN FIRST PAGE REMAINING IN SECOND PAGE LIKE THAT.
    Here you can use NEW PAGE COMMAND .
    IT IS OPPOSITE PURPOSE OF PROTECT AND ENDPOTECT.
    Reward if useful.

  • How to add external library in class path folder for use in Java call-out?

    Hi,
    I am working with Java callout component in OSB 12c using Jdeveloper.
    Thing is Jar what i am using to perform conversion of json to xml that using external libraries.
    When i have give reference of my project jar to java callout it doen't found external libraries.
    Could you please tell me how to add external libraries in class path folder or How to use to add it through web-logic server ?
    Thanks,
    Pavan

    Hi,
    Thanks, I have solved issue.
    We can add on following path in windows pc:
    C:\Users\your_usename\AppData\Roaming\JDeveloper\system12.1.3.0.41.140521.1008\DefaultDomain\lib
    One you add your external lib here then do restart weblogic server instance.
    Now, you have that external lib or jar in use.
    Cool!

  • How to add a website link into a final cut video

    Does anyone know how to add a website link that someone can click on that I can add to a video I might be creating in Final Cut Express? I am looking for an easy way to do this and I cannot find one. Thanks.

    I believe Media100 is the only application that can do this. Or at least it used to, don't know if it still does. There is a company called VideoClix that can create hot spots on QuickTime files. The technology is in QuickTime, who'd just have to learn how to do it.

  • How to add external images onto a control and still be able to resize

    Hello,
    I'm a LabVIEW newbie.  I'm trying to customize the appearance of my VIs, and one of the things I like to do is to import external image and paste it onto the faceplate of the gauge indicator.  I've followed the instruction in the Labview application note using the control editor and was able to paste the picture into indicator.  But when I use it in the front panel and resize the gauge indicator, the image (added as a decoration) doesn't resize together with the indicator.  My questions are:
    1. How to add external images onto a control/indicator and still be able to resize the image automatically when I resize the control/indicator?
    2. How to "add" a new part to an existing control/indicator?  It looks like I can only customize/modify the existing parts of the control/indicator in the control editor. 
    Any help is appreciated.  Thanks.

    1/ Do not use the image as an added decoration. Instead replace part of the control with the image. Tis is illustrated in the attached vi : the arrow was pasted as a decoration, and also used to replace the slide cursor. Changing the control size do not affect the decoration, but changes the cursor.
    2/ What do you mean by adding new parts to a control. We have just seen that it was possible to modify a control. Now, if you want to include additionnal functionnality, that's another story. You can replace parts of the control, and this can give interesting results.  You can edit a slide control, and replace the numeric indicator by another control, including a numeric indicator, that you can replace with etc...
    But there, it still the same info displayed under different forms. If you want to have several independant functions on the same control, such as a string display and a boolean and a numeric indicator, then that's a job for a cluster...
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Slide with Arrow.vi ‏13 KB

  • 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

Maybe you are looking for

  • N97 can send but not receive Yahoo emails. Secure ...

    Hi all, I promise i have looked through the other answers on here but not tell me precisely what to do. 1. Went to Yahoo and activated POP & Forwarding 2. Double checked Incoming and Outgoing servers i.e. pop.mail.yahoo.co.uk   SSL Port 995  and smtp

  • Page numbering issue on export to PDF

    I am using the Crystal Reports for Eclipse to export a report as a PDF. The report contains a grouping which has "reset page number after" set to true. The group name field is not displayed on the report. The problem that I am encountering is that th

  • "Installing Business Content is throwing a runtime error"

    Hi All, I am installing "Inventory Valuation: Material Prices and Inventory Values" Cube with grouping "In dataflow Before and Aftrwds", but its throwing runtime error with the message "In an ASSIGN statement in the program "SAPLSNR3" a field symbol

  • Multi touch screen monitors

    I presently have a HP Z620 with 4 monitors (2 video cards).  The monitors are beginning to get a bit old and unreliable as they were originally purchased for my previous PC. I am running win 8.1 Pro. Is it possible to run 4 touch screen monitors with

  • WLS10.3.0 and Oracle DB 12c

    Hi we've WLS 10.3.0 (we've extended support) and Oracle Database 11g DB 11.2.0.4 running under HPUX 11.31 U ia64 We plan first to upgrade to Oracle 12c. Question: is WLS10.3.0 supported together with Oracle DB 12c. Its planned to to do WLS10.3.6 upgr