Linking between different websites

Hi
How to get a couple of rows of from a search result of different website from ours.
For eg.:
I am entering a search criteria from
http://www.a.com/examples/a.jsp
and searching the result from
www.b.com/examples/query?q=query
Now, the tricky part is: i shouldn't display the complete result (I just need a couple of rows from the result) and also searching 'b' website should be a background process and display in my website using b.jsp
Hope I am not confusing too much.
Thanks in advance.
Idress

Hi guys
To add to my previous query above:
I have retrieved the page (reading it line by line), but that hasn't solved my purpose actually. What I need is to get (from the html page read) the order no. and product id, say for example, that are dynamic and varies for different users. The problem here is that I don't have permission to talk to the databae of "b" website to retrieve these.
Any idea on how to accomplish this will be highly appreciated.
Thanks in advance.

Similar Messages

  • Mail 4.4 urls link opens different website

    hello,
    we experience something very strange, in one of our emails we have included a url (syntax http://www.example.com) which opens a completely different website in safari, while showing the url included in the email.
    we have tried the following:
    1. emptied safari cache;
    2. tried from different computers on various networks > same behaviour;
    3. checked the raw source of the email > no reference to the other website anywhere;
    needless to say the other website is available when simply typing the url in safari's address bar.
    any ideas much appreciated.
    ds.

    Restart your Mac then try both browsers in the main account.
    If that doesn't help, remove all startup items in System Preferences > Users & Groups > Login Items
    And check startup items.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/StartupItems
    Click Go. Move any items in the StartupItems folder to the Trash.
    Restart your Mac then try a browser.
    If that doesn't help, back to the Finder.
    Copy and paste the following:
    ~/Library/Cookies
    Click Go the move all the files in the Cookies folder to the Trash.
    Try a browser.

  • Link between different fields in different databases

    Hi
    I have two asp pages displaying the contents of two different
    databases. I
    also have a link in a field of the first database to open the
    second asp
    page (<a href="results.asp">
    . However, that way I see the top of the
    results.asp, while I want to go to a specific field of the
    database that is
    connected to results.asp.
    In HTML words I want to define an ancor in a field of
    database2 and call it
    from a link in a field of database1.
    Please note that this is my first try in asp, so take it easy
    Thanks
    [gt] aka geotso
    Please, remove hyphens to contact me

    <a href="results.asp#field">
    and then on results.asp, you would have -
    <p id="field">whatever</p>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "geotso" <[email protected]> wrote in message
    news:e3iicm$7b7$[email protected]..
    > Hi
    > I have two asp pages displaying the contents of two
    different databases. I
    > also have a link in a field of the first database to
    open the second asp
    > page (<a href="results.asp">
    . However, that way I see the top of the
    > results.asp, while I want to go to a specific field of
    the database that
    > is connected to results.asp.
    >
    > In HTML words I want to define an ancor in a field of
    database2 and call
    > it from a link in a field of database1.
    >
    > Please note that this is my first try in asp, so take it
    easy
    >
    > Thanks
    >
    > ------- ---- --- -- - -
    > [gt] aka geotso
    > ------- ---- --- -- - -
    > Please, remove hyphens to contact me

  • BAPIs or Function Modules for Links between different Business Objects

    Hi experts,
    I am accessing an SAP CRM 5.0 system from outside via remote function calls.
    I have the GUID of a business partner and would like to find other business objects
    that are related to this business partner.
    For example:
    - Which activities are relevant for this business partner?
    - Which orders were placed by this business partner?
    - Which leads or opportunities are linked to this business partner?
    - Which products did this business partner order?
    Is it possible to get this information by calling BAPIs or other RFC function modules?
    Regards,
    Karsten

    After studying lots of documentation and trying to understand the BOL and GenIL concepts,
    I finally found a function module which meets my demands. With function module
    CRM_GENIL_GET_QUERY_RESULT you can execute a Search Object of the GenIL,
    and it is remote-enabled.
    By checking transaction GENIL_MODEL_BROWSER and choosing component set "ALL"
    you get a list of all defined Search Objects. The Search Object that finds all orders of a
    business partner is "BTQuery1O".
    DATA gt_parameter_list TYPE crmt_name_value_pair_tab.
    DATA gs_parameter_list TYPE crmt_name_value_pair.
    DATA gt_data_hdr       TYPE TABLE OF crmt_genil_rfc_data_hdr.
    DATA gt_data_attr      TYPE TABLE OF crmt_genil_rfc_data_attr.
    DATA gt_data_rels      TYPE TABLE OF crmt_genil_rfc_data_rel.
    DATA gt_data_rel_obj   TYPE TABLE OF crmt_genil_rfc_data_rel_obj.
    gs_parameter_list-name  = 'BP_NUMBER'.
    gs_parameter_list-value = '4000000011'.
    APPEND gs_parameter_list TO gt_parameter_list.
    CALL FUNCTION 'CRM_GENIL_GET_QUERY_RESULT'
      EXPORTING
        iv_query_name                = 'BTQuery1O'
        it_parameter_list            = gt_parameter_list
      TABLES
        et_data_hdr                  = gt_data_hdr
        et_data_attr                 = gt_data_attr
        et_data_rels                 = gt_data_rels
        et_data_rel_obj              = gt_data_rel_obj
      EXCEPTIONS
        error_occured                = 1
        OTHERS                       = 2.
    Before you can use the function module, you have to call function module CRM_GENIL_INIT
    to initialize the GenIL.
    Regards,
    Karsten

  • Linking between different web overlays

    Hi,
    I'm working on a folio that has one article consisting of several pages with web overlays. Each overlay has the complete size of the the folio document (2048x1536px, optimized for iPad3), but the included html file is twice as wide (4096x1536px), so that the user can swipe horizontally within this overlay. This works fine. Now, is it possible in DPS to link from one html file in an overlay to a specific anchor of another html file in a web overlay (so that for example, the user can jump to the second half of the next page)? Maybe via Javascript, setting cookies etc. ("navto://" only navigates to a certain page)?
    Any help would be great.
    Thank you,
    Alex

    I've tried a whole bunch of things (setting variables, putting in links with an anchor reference ect.). Unfortunately, it seems you can't transfer any parameters from one web overlay to another.

  • Bpartner - Link between customer and vendor if its the same face

    Hello
    As I understood the primary idea to keep all business partners together is to make a link between differant roles of the same partner (like link customer and vendor if its the same face). Please correct me if I am wrong.
    The questions is : how this link is done in CRM (how the customer is linked to vendor if its the same face).
    Message was edited by: Aleksandrs Frolovs

    no answer

  • Link between business transactions in CRMD_ORDERADM_H

    Hi,
    Could you please help me with a table/tables that contains link between different business transactions.
    For example, if I need purchase order associated with an invoice?
    I know that CRMD_ORDERADM_H contains information regarding both purchase order and invoice.
    I can use Transaction Code bbp_pd, however, I need the underlying tables.
    I will use this information to pull data from SRM to BW.
    Thanks,

    Hi,
    Instead of using SELECT statements,you cna use standard Function modules to fetch the required data.
    e.g.To get all the details for a PO,you can use the FM "BBP_PD_PO_GETDETAIL".
    In the export parameter,table "E_HEADER_REL",you can see the follow on documents details for the PO.
    Hope this helps.
    BR,
    Disha.

  • Link Between Pages in a PDF Report

    It would be great to be able to make a link between different pages in a DIAdem report, and have those links carry over into a PDF version of the report. For example, if I had a very large report, it might be useful to be able to create a Table of Contents with links to the different sections of the report.
    Currently, the PDF creation process will create bookmarks for the pages, but a link within the document might be easier to use when examining the report.

    I agree, links would be great (as occasionally related items aren't placed directly side-by-side)!
    In general, a 'table of contents' customizable sheet would be very useful as well.
    We've created our own in the past in scripts that export large reports, but have had users complain because it didn't 'auto-update' so if they rearranged the sheets, it would be wrong.
    -Josh

  • DB link between 8i and 9i

    Hi,
    i created a dblink from 8i to 9i.
    some simple query can be executed successfully:
    select * from tablename@dblink
    However, when use join method. It prompted me with following error:
    ORA-02068:following servere error from dblink
    ORA-03113: end-of-file on communication channel
    does anyone know how to correct it??
    Many thanks,
    Tommy

    Subject: Client / Server / Interoperability Support Between Different Oracle Versions
    Doc ID: Note:207303.1 Type: BULLETIN
    Last Revision Date: 26-OCT-2005 Status: PUBLISHED
    Oracle Client / Server Interoperability Support
    Introduction
    This note gives a summary of the support for interoperability between Oracle client and server versions. This includes support for connections over database links between Oracle versions. Note that this relates to support for investigation of defects / ability to obtain bug fixes.
    For a summary of the support status of each Oracle release see Note 161818.1
    General Policy
    Oracles general policy is to test and support each new Oracle release for compatibility with older releases thus:
    Test the NEW client to each OLDER server release where the OLDER release is still covered by Premier Support (formerly Primary Error Correction support) at the time that the NEW version is released.
    Test OLDER clients to the NEW server release where the OLDER release is still covered by Premier Support (formerly Primary Error Correction support) OR is in the first two years of Extended Support (formerly Extended Maintenance support).
    Tests between the NEW version and other OLDER releases may be added where Oracle deems it sensible to support interoperability between those releases.
    Current Interoperability Support Situation
    The matrix below summarizes client and server combinations that are supported.
    New interoperability problems will only be investigated if BOTH releases involved are covered by a valid support contract at the time that the issue is reported .
    eg:
    An 8.1.7 client to a 9.2.0 server issue requires the customer to have a valid Extended Maintenence support contract for the 8.1.7 client in order for Oracle to investigate it.
    Server Version
    Client Version 10.2.0 10.1.0 9.2.0 9.0.1 8.1.7 8.1.6 8.1.5 8.0.6 8.0.5 7.3.4
    10.2.0 Yes Yes Yes #5 No EMS No #3 No #3 No #3 No #3 No #3
    10.1.0(#4) Yes Yes Yes Was EMS #2 No #3 No #3 No #3 No #3 No #3
    9.2.0 Yes #5 Yes Yes Was EMS No No Was No No #1
    9.0.1 No Was Was Was Was Was No Was No Was
    8.1.7 EMS EMS EMS Was EMS Was Was Was Was Was
    8.1.6 No No No Was Was Was Was Was Was Was
    8.1.5 No No No No Was Was Was Was Was Was
    8.0.6 No No Was Was Was Was Was Was Was Was
    8.0.5 No No No No Was Was Was Was Was Was
    7.3.4 No No Was Was Was Was Was Was Was Was
    Key:
    Yes Supported
    EMS Supported for customers under Extended Maintenance (EMS) only.
    Was Was a supported combination but one of the releases is no longer covered by any of Premier Support , Primary Error Correct support or Extended Maintenance Support so fixes are no longer possible.
    No Has never been Supported
    Specific Notes:
    #1 - See Note 207319.1
    #2 - An ORA-3134 error is incorrectly reported if a 10g client tries to connect to an 8.1.7.3 or lower server. See Note 3437884.8 .
    #3 - An ORA-3134 error is correctly reported when attempting to connect to this version.
    #4 - There are problems connecting from a 10g client to 8i/9i where one is EBCDIC based. See Note 3564573.8
    #5 - For connections between 10.2 and 9.2 the 9.2 end MUST be at 9.2.0.4 or higher. Connections between 10.2 and 9.2.0.1, 9.2.0.2 or 9.2.0.3 are not supported.
    General Notes:
    For database links between different Oracle versions connections must be supported in BOTH directions in the matrix above.
    eg: As 9.2 -> 7.3.4 is not supported then database links between these version are not supported in either direction.
    Unsupported combinations may appear to work but can encounter errors for particular operations. The fact that they appear to work should not be relied upon - issues on unsupported combinations will not be investigated.
    Since new database servers are compatible with a limited set of older OCI clients, it may not be necessary to upgrade the client software when upgrading the database. However, some new features may not work without upgrading the client software. So, for example, an Oracle 7.3.4 client is able to connect to an Oracle8i database, but is not able to take advantage of newer features such as Transparent Application Failover (introduced in v8).
    Oracle Applications , or other Oracle products, may have supported configurations not listed in the matrix above.
    The matrix above also applies between different platforms and between 32/64 bit releases of Oracle client / server except where any Oracle platform desupport notice indicates otherwise .
    Terminology

  • Problems linking between articles

    Even though we follow all the directions from this forum concerning linking between different articles in a magazine we can only get i to work if it is in the same article - not between differet articles. We make a button and the url is set to "navto://[articlename as in folio builder] but i doesnt work when we test in Content Wiewer. Look at enclosed screendump.
    Anybody know what we do wrong?
    Thx
    Lars

    Lars,
    I would try renaming the articles to something without numbers.  If you must have the page number as the name then spell it out "Page One", etc.  Everything else about how you have the button set-up in your screenshot seems to be correct.
    Andrew

  • Dynamic link between Premiere pro and After effects versions?

    I was wondering if it was possible to use the dynamic link between different version of the products like preimere pro cs5.5 and after effects cs5.0, I downloaded the trial of premiere cs5.5 while I already have bought and installed after effects 5.0 a while ago. when I tried using dynamic link with premiere 5.5 with my current after effects cs5, the "replace with after effects composition" in premiere was greyed out. I didnt know if this was just a limitation of the trial, or if the two different versions (PR cs5.5 with AE cs5) were incompatable with dynamic link. hope you guys understand the question, and any answers would be helpful!

    Ok so just to get this straight, in order to use dynamic link between adobe premiere pro and after effects you have to have the complete suite? or just the same version installed? all I want to be able to do is have a good workflow between premiere pro to after effects to get my vfx done, and then send them back to premiere seemlesly without spending $2000 dollars on the entire suite just to use those 2 programs and because the suite is way over my budget. is that the only possible way (other than cs6, because I dont have the $$ to update either)

  • What is relationships between Different components of SAP NETWEAVER.

    Hi all
    What is relationships between Different components of SAP NETWEAVER like
    SAP EP, SAP XI, SAP BW , SAP WAS ,SAP MI.
    or What is link between  Different components of SAP NETWEAVER.
    Thanks in advance.
    Naresh-

    Refer this link:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ee/275c42b4e05542e10000000a1550b0/frameset.htm
    Regards,
    ravi

  • How to create a link between 2 cells in different spreadsheets?

    when using numbers on MacBook Pro/IOS X - how to create a link between 2 cells in different spreadsheets?

    In the cell where you want the duplicate data to appear from another sheet/table do the following:
    type the equal sign ("=") then click the cell you in the sheet table while contents you want to appear in the cell where you just typed the equal sign"
    it reads "The cell I click equals the result of the formula or the contents of the next cell I click"

  • How can I link text boxes between different Master Pages in InDesign?

    I want to link text boxes back and forth between different Master Pages in InDesign. How can I do this?

    I'm interested to know what it is you're trying to achieve - can you explain what you want your text to do?
    Regards,
    Malcolm

  • Why do new tabs open with completely different websites to what I am on when I click on any links on whatever site I am on in safari?

    Why do new tabs open with completely different websites to what I am on when I click on any links on whatever site I am on in safari?

    From your Safari menu bar click Safari > Preferences then select the General tab.
    Click the pop up menu next to; New tabs open with
    Select:  Same Page

Maybe you are looking for

  • Issue in BAPI_PS_PRECOMMIT in mass creation of WBS Elements

    Hi, I am facing a issue with BAPI_PS_PRECOMMIT. we have the following WBS Hierarchy: S - Proj, (level1) S-XXX WBS Element (level2) S-XXX-001 WBS Element (level3) I have created a program for mass creation of WBS elements creation which uses the follo

  • APP RUN Error -Foriegn Currency

    HI Guru's, Iam trying post  APP run for Foriegn currency showint following error.. Job started Step 001 started (program SAPF110S, variant &0000000004436, user ID RJRAO) Log for proposal run for payment on 21.08.2008, identification T4 > > Additional

  • Uploading iweb site from my idisk

    I recently had a hard drive crash on me so I've been restoring all of my old files using idisk. Problem is when I open iweb it keeps wanting to create a completely new site instead of opening my old site. I am afraid if I start a new site I will copy

  • Importing stops at every glitch in tape when using the ADVC300 to imprt vhs

    When I import a analog video from VHS or an 8mm with the ADVC300 iMovie stops the import at every glitch in the tape, I am looking for a way to import an entire VHS from beginning to end. Is the a preference setting in iMovie 09 that I can change? Or

  • Tabbed Panes

    Dear All, I have to create a form with tabbed panes. How can i do this using JFC as i m new to JFC. Then i have to submit the form data in the database using JSP. Please help me to solve this. Some Code Please Thanks & Regards Gagan