To pick up input from Web page and retive data which adapter is to be used

Hi,
I need to accept input on a web page . e.g custeorm number. The go to the BW system and pull out transcations for this custoemr and display it on the web page again what adapaters should I use ? how do i pass the screen inptu a parameter to retrive data in BW ?

if exposed as webservice u can use soap adatper or check with http client example
Message was edited by:
        Prabhu  S

Similar Messages

  • I want to take an Input from the Page and pass to a plsql package

    Here i am extending a controller class i am get number of errors can you plz chk the syntax:-----
    I am taking Attribute1 ,2,3 from the page and input it into procedure and get the out variable into project number in the page:----
    public class adtDetailDataInputCO extends oracle.apps.ap.oie.webui.DetailDataInputCO
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public void assignProjectNumber(OAPageContext pageContext, OAWebBean webBean)
    OAApplicationModule oaapplicationmodule = pageContext.getApplicationModule(webBean);
    OADBTransaction dbtrans = oaapplicationmodule.getOADBTransaction();
    OAViewObject vo = (OAViewObject)oaapplicationmodule.findViewObject("OneReceiptBasedVO");
    for (Row row = vo.first();
    row != null;
    row = vo.next())
    String lattribute1 = (String) row.getAttribute("Attribute1");
    String lattribute2 = (String) row.getAttribute("Attribute2");
    String lattribute3 = (String) row.getAttribute("Attribute3");
    String lProjectNumber="";
    String l_status="";
    String l_message="";
    if (lattribute1 != null && lattribute2 != null && lattribute3 != null)
    OADBTransaction txn = oaapplicationmodule.getOADBTransaction();
    CallableStatement cs = txn.createCallableStatement("begin ADTP_PA_COMMON_UTILITY.get_project_from_tcc(:1,:2,:3,:4,:5,:6); END;",1);
    try
    cs.setString(1,lattribute1);
    cs.setString(2,lattribute2);
    cs.setString(3,lattribute3);
    cs.registerOutParameter(4, Types.VARCHAR, 200);
    cs.registerOutParameter(5, Types.VARCHAR, 0, 2000);
    cs.execute();
    l_status = cs.getString(4);
    l_message = cs.getString(5);
    cs.close();
    catch (SQLException sql)
    System.out.println(sql.getLocalizedMessage());
    cs.close();
    row.setAttribute("ProjectNumber",lProjectNumber);
    row.setAttribute("TaskNumber",lTaskNumber);
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    assignProjectNumber(pageContext, webBean);
    }

    I've done a similar PL/SQL package call using the following:
    You need update or add the following to your EO using the following:
    public class AcctMapEOImpl extends OAPlsqlEntityImpl //replaced with OAPlsqlEntityImpl
    public void create(AttributeList attributeList)
    Number n = new Number(0);
    if (getEntityState() != STATUS_NEW)
    super.create(attributeList);
    OADBTransaction transaction = getOADBTransaction();
    setFormId(n);
    setCreationDate(transaction.getCurrentDBDate());
    setLastUpdateDate(transaction.getCurrentDBDate());
    setCreatedBy(getCreatedBy());
    setLastUpdatedBy(getCreatedBy());
    public void insertRow()
    try
    OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl)getDBTransaction();
    String a = "begin apps.spl_jdev_api_item_console.spl_create_part(p_acct_nbr =>:1,p_part_nbr =>:2,p_part_desc =>:3,p_part_price =>:4,p_bin_bulk_yn =>:5,p_case_lot_yn =>:6,p_serial_yn =>:7,p_repack_yn => null,p_part_length =>:8,p_part_width =>:9,p_part_height =>:10,p_part_weight =>:11,p_done_flag =>null,p_creation_date =>null,p_uom =>:12,p_revision =>null,p_trans_type =>:13,p_lock_flag =>null,p_lock_id =>null,";
    String b = "p_item_status =>null,p_hazard_class_id =>:14,p_shelf_life_code =>null,p_part_weight_uom =>null,p_volume_uom =>null,p_unit_volume =>null,p_dimension_uom =>null,p_un_number_id =>null,p_un_num_desc =>null,p_haz_id_desc =>null,p_last_update_date =>null,p_last_updated_by =>null,p_created_by =>:15,p_process_key =>null,p_part_type => null,p_comm_code => null,p_cat_desc0 => null,p_attribute1 =>:16,p_attribute2 =>:17,";
    String c = "p_attribute3 =>:18,p_attribute4 =>:19,p_attribute5 =>:20,p_attribute6 =>:21,p_attribute7 =>:22,p_attribute8 =>:23,p_attribute9 =>:24,p_attribute10 =>:25,p_attribute11 =>:26,p_attribute12 =>:27,p_attribute13 =>:28,p_attribute14 =>:29,p_attribute15 =>:30); end;";
    String s = (a+b+c);
    OracleCallableStatement oraclecallablestatement = (OracleCallableStatement)oadbtransactionimpl.createCallableStatement(s, -1);
    oraclecallablestatement.setString(1,getAcctNbr());
    oraclecallablestatement.setString(2,getPartNbr());
    oraclecallablestatement.setString(3,getPartDesc());
    oraclecallablestatement.setNUMBER(4,getPartPrice());
    oraclecallablestatement.setNUMBER(5,getBinBulkYn());
    oraclecallablestatement.setString(6,getCaseLotYn());
    oraclecallablestatement.setString(7,getSerialYn());
    oraclecallablestatement.setNUMBER(8,getPartLength());
    oraclecallablestatement.setNUMBER(9,getPartWidth());
    oraclecallablestatement.setNUMBER(10,getPartHeight());
    oraclecallablestatement.setNUMBER(11,getPartWeight());
    oraclecallablestatement.setString(12,getUom());
    oraclecallablestatement.setString(13,getTransType());
    oraclecallablestatement.setNUMBER(14,getHazardClassId());
    oraclecallablestatement.setNUMBER(15,getCreatedBy());
    oraclecallablestatement.setString(16,getAttribute1());
    oraclecallablestatement.setString(17,getAttribute2());
    oraclecallablestatement.setString(18,getAttribute3());
    oraclecallablestatement.setString(19,getAttribute4());
    oraclecallablestatement.setString(20,getAttribute5());
    oraclecallablestatement.setString(21,getAttribute6());
    oraclecallablestatement.setString(22,getAttribute7());
    oraclecallablestatement.setString(23,getAttribute8());
    oraclecallablestatement.setString(24,getAttribute9());
    oraclecallablestatement.setString(25,getAttribute10());
    oraclecallablestatement.setString(26,getAttribute11());
    oraclecallablestatement.setString(27,getAttribute12());
    oraclecallablestatement.setString(28,getAttribute13());
    oraclecallablestatement.setString(29,getAttribute14());
    oraclecallablestatement.setString(30,getAttribute15());
    oraclecallablestatement.execute();
    catch(SQLException sqlexception)
    throw OAException.wrapperException(sqlexception);
    catch(Exception exception)
    throw OAException.wrapperException(exception);
    Method added to your AM:
    public void createPart()
    OAViewObject vo = (OAViewObject)getPartGenerationVO1();
    if (!vo.isPreparedForExecution())
    vo.executeQuery();
    Row row = vo.createRow();
    vo.insertRow(row);
    // Required per OA Framework Model Coding Standard M69
    row.setNewRowState(Row.STATUS_INITIALIZED);
    } // end createPart()
    Code in your *VOImpl:
    public void initQuery()
    setWhereClauseParams(null); // Always reset
    executeQuery();
    }

  • IPad won't copy text from web page and paste in email

    I'm trying to copy text from a web page, and when I paste it in Note or in a new email, it copied the web page link, not the text. Doing this in iPad.  What am I doing wrong? Thanks

    I think it depends on what you are trying to copy.
    To copy, put your finger on the text and hold until the copy thing shows up.  Adjust the size to whatnyou want, then touch copy.( I know, you already knew that).  To paste, touch the screen where you want it to go until the paste thing shows up.
    I just did it
    glass, metal and minimalist design. Two.    ( pasted from a web page)
    Some pages are set up so that you cannot copy words or images.
    So try a different page to see if you are doing it right.   
    If you want, post the link to the page and we call all try it as well.

  • Create from Web Page and Out Of Memory

    My machine is Windows XP Prof, 3+ GB of memory, 10's of GB of free hard drive space.
    I create a PDFs from HTML pages located on my local drive. I am not making a PDF from HTML pages served by a Web Server. They are not located on some network device.
    With Acrobat 7 Professional, I was able to create a PDF from HTML pages without any problem using the Create From Web Page menu option. It might have been slow, but it would predictably create a PDF. The final PDF might be as large as 72 or 130 MB.
    I recently upgraded to Acrobat Pro Extended version 9. When I make some small PDFs (4-5 thousand pages) it seems to work okay. However, if I make the full PDF (about 10-15 thousand pages), Acrobat produces an out of memory error.
    I have tried a number of things, but I still get the error. In the past I have had trouble like this with Acrobat 8 Prof on the Mac (but I don't remember an actual Out Of Memory message box).
    Is there some setting can change, or some procedure that I can get my work done. It appears to me to be a bug in Acrobat 9, but if I could get a workaround for now, I would greatly appreciate it.
    Thanks.

    Even though I an using the Create from Web Page function, I am accessing files which my company has produced. They are located on my local system. I am not accessing them via a web server.
    I can make a file with 1 level. I can make a file with a couple of thousand pages. Even 8400 pages. However, when I try to make a PDF of the full site Acrobat flakes out and dies. When it hits around 13,300 pages, it dies.
    The troubling thing for me is that I was able to do the same thing in Acrobat Pro 7. I made a file with almost 14,500 pages. Because of the way Acrobat must be installed in Windows, I can't easily go back to version 7. It is a real pain not to be able to do something in the "New and Improved" version that I was able to do in the "nasty old" version.
    It would be helpful if Acrobat had better logging and error logging facilities. Maybe there is one page that is hitting Acrobat's bug, and if I could eliminate or change that page I could continue, but there is no way of knowing (as far as I know).

  • Need to grab the data from Web Page and send it to SAP using PI

    Hello Experts,
    I need to grab the exchanges rates from the below link.
    http://www.cbr.ru/scripts/XML_daily.asp?date_req=09-06-2011.
    This link returns an XML . I need to get the data from this XML page and post it to SAP ECC using PI.
    My requirement is that, process should start from the ECC and grabs the data from the web page which gives you the XML and post this data into ECC using PI. We have a RFC written in ECC side to post the data in ECC.
    Please help me to identify the adaptor's needed and what should I need to do to initiate the process from ECC.
    Would it be a Async or Sync process ?
    I would really appreciate the inputs.
    Thanks.
    Gaurav.

    Hi,
         Any particular reason that you want to go for a sync process as then you would need to either use a BPM (RFC to BPM where you use sync/async bridge to get the xml file from the specified link and then send the response back to ECC) or go for a synchronous Java proxy on the receiver side which will grab the exchange rates and then map back to the RFC response structure. In this case, you can avoid the BPM.
    Else, as mentioned in Michal's blog, you can break it up into 2 seperate scenarios. RFC/Proxy to File and then File to IDoc/RFC/Proxy which will get the exchange rates into ECC.
    Another option can be Proxy --> PI --> ECC(IDoc/Proxy/RFC). Here you can grab the exchange rates from the link in your message mapping through a UDF.
    Regards

  • Since upgrading to FF 7.0.1 I can no longer view .pdf files from web pages and there is no plug in..

    The .pdf viewer plug in for FF3.6 worked fine but upgrading to FF7.0.1 has caused the problem. There are no such plugins for this version. I must go back to FF3.6 with the plugin and then if one for FF7.0.1 doesn;t exist by the time Mozilla stops supporting 3.6 I will go back to Safari as my browser I guess.

    I already reinstalled the Adobe's and it didn't solve anything. What I did find is that when faced with a pdf I want to view, I have to right click "Save Link As..." and then I can view the resultant pdf. Cumbersome perhaps but I guess it works.
    Thanks though for the snotty tone in your response; indeed I realize its not FF's job to ensure my machine is updated. However I'm a business guy not an IT guy and my guess is the business guys at Mozilla would want to be aware of things that would impact the use of their product. And if moving forward with new iterations and updated versions of their product changed the users experience in a negative fashion, however caused, I'm sure they would want to consider what actions they may or may not want to take.
    Furthermore its unfortunate that you mistakenly interpreted my words to mean that I expected them to rectify the issue for me. I simply stated that currently it doesn't work for me and if that doesn't change, I would have to move in a different direction. Simple as that. It's not a big deal.
    So perhaps your typical IT guy "users are so dumb" mantra was misplaced here.

  • How do I copy a section from a page and paste it into a power point?

    How do I copy a section from a page and paste it into a power point?

    Use the snapshot tool.

  • Open a web page and pass values from a java file

    Hi,
    I need to open a web page and pass values in the text boxes.
    Finally submit needs to be triggered. All this needs to be done from a java file. i.e instead of entering my values in a web page and submit, i need to do it from my java file..
    Any inputs so that I proceed in the right direction..or is there any alternate way to achive this ??
    Thanks in advance..
    Sid

    I hava found a lines of jaa that can open a URL , lets say www.net.java
    You can open it writable or not.
    It is half of the job you need.
    If you are interested.
    I am wrinting a program to print a URL , and have developed this small
    code.
    Angel Portal

  • How can I use Automator or AppleScript to get text from a web page and paste it in execl?

    I don't know how to make scripts or complexed automator workflows... that's why I'm asking.
    I'm trying to make a simple app or script to ask me what text to extract from a web page, like name, address and phone number of a web page and paste each one of these data in the righ cell of excel.
    I was thinking to promt a request from automator or an applescript to ask me which text to extract from the page or to look throught the HTML of the page to search for specific html tags, from which extracting text and then importing it, or paste it to the specified execl cell. Name in the name cell, address in the address cell and so on.
    Can somebody help me to make this script?
    If you know an alternative, like a software that already do this or another language to use, please tell.

    Try holding down the alt key as you mark the text to be copied. You can then copy columns to table text.

  • Want user to click on pic from my Web page and for it to enlarge in awindow

    I've uploaded my pic from iPhoto and placed in on my page in iWeb. I want the user to be able to click on the pic on my web page and for the page to "enlarge" so the user can see it better. Possibly in a new window.
    Is this possible in iWeb?

    There are a couple of ways. See my demo pages Fancy Zoom and Opening Item in New Specially Sized Window. Both will do what you want. The code uses is also described.
    OT

  • I have been unable to print from FF to Brother HL-1440. print generate pages w/odd bits of text from the page, and sometimes one image. If I want to print off the web, I have to print PDF. Older versions of FF print fine.

    I have been unable to print from FF to Brother HL-1440. print generate pages w/odd bits of text from the page, and sometimes one image. If I want to print off the web, I have to print PDF. Older versions of FF print fine.

    I downloaded OpenOffice and am able to print documents (in particular, the same document I created in MS Word). I guess MS Word is to blame. I believe the issue is concluded, but I'd welcome any comments about the Active Directory, as I might have a problem
    with OpenOffice in the future regarding that.

  • Printing from web pages is excruciatingly slow with most recent upgrades of Firefox .Use an iMac and an HP officejet printer. Printer works fine with Safari and woodprocessed files, but not with Firefox and web pages.

    Printing from web pages is excruciatingly slow since downloading most recent upgrades of Firefox Mozilla. I have a desktop iMac, OS 10.6.8, and an HP officejet printer 4500 G510n. The printer works fine with the Safari Browser and with woodprocessed files, but not with Firefox and web pages. Help please! It used to print fast with earlier versions of Firefox.

    Hello and welcome to the Apple Discussions Forum.
    I have hardly any experience with HP printers but since your posting has not been replied to yet I thought I'd offer some assistance.
    With the printer status and ink levels working, it shows that you have a connection to the printer. So I would look at the issue being with the protocol being used for the print queue on the Mac.
    Since you have XP and Vista working, I would check the printer queue configuration on either box. In XP, go to the Properties and select Ports. Click the Configure Port tab to view the connection. If you are using RAW, then this is known as HP Jetdirect-Socket on OS X. So if you are not sure what protocol was used before I would create another printer queue, this time selecting IP > HP Jetdirect-Socket. Then enter your IP address and select the K5400dn from the Print Using menu.
    If this still fails to print then please reply. There may be limitations with adding the HP driver this way that I am not aware of. There may also be other driver options you can look at, such as HPIJS. If Greg Sahli reads this posting he has expert knowledge on this matter and will be able to offer some guidance.
    PaHu

  • How do I Keep the "zoom" size setting the same each time I open Safari and from web page to web page?

    I have a 27" iMac when I open Safari the web page is only 1/3 the size of the full screen Safari window. I know how to ZOOM in on the web page! My question is, How do I keep this ZOOM setting for all web pages and each time I open Safari up?

    Sorry, but that's not possible.
    An alternative might be to use Zoom in System Preferences > Accessibility
    Or try a different screen resolutioin in System Preferences > Displays > Scaled

  • How do I read a web page and extract text information from it with LabVIEW?

    Hello,
    I want to read a webpage (not Labview), extract the text from the page and then sort out the text to get the information I want. It would be like reading a weather webpage and wanting to extract the current temperature from the webpage usign labview. Any suggestions?
    Thanks

    The discussion below touches on the subject, it looks like it will do what you want.
    http://forums.ni.com/ni/board/message?board.id=170&message.id=137315&requireLogin=False

  • Create PDF from Web page using Acrobat X - Page Order

    I have a structured web site that is in fact Program Help The web pages are structured as follows:
    index.html - Main Topic Index page with links to all topic subject index pages
    topic/index.html - Topic Subject Index Page with links to all subject pages
    topic/subject.html - Subject page
    .....etc
    Using Acrobat 5 "Create PDF from Web Page" created a perfect logical PDF  page structure in the page order of of the web site. In Acrobat 5 page 1  was the Main Topic Index Page, page 2 was the 1st Topic Subject Index  Page, page 3 was the 1st Subject Page, then the 2nd subject of the 1st  Topic, etc. until the Topic Subjects were exhausted after which the 2nd  Topic Subject Index Page and so it went on. As a result the bookmark  structure was sensible. The page order was as follows:
    Main Topic Contents
    Topic 1 Contents
    Subject 1 of Topic 1
    Subject 2 of Topic 1
    Topic N Contents
    Subject 1 of Topic N
    Subject 2 of Topic N
    Acrobat X (just purchased) produces a differently structured PDF from the same HTML pages. The order is:
    Main Topic Contents
    Topic 1 Contents
    Topic 2 Contents
    Topic N Contents
    Main Topic Contents (a second time)
    Subject 1 of Topic 1
    Subject 2 of Topic 1
    Subject N of Topic 1
    Subject 1 of Topic 2
    Subject 2 of Topic 2
    Subject N of Topic N
    Question: Is there any way I can get back with Acrobat X the same page order I got with Acrobat 5?
    Any help appreciated. The website is www.caliach.com/caliach/vision/help/index.html
    Chris

    Acrobat is using the underlying mark up of the rendered HTML page.
    This may or may not provide an adequate input to Acrobat when it is noodling out how and what to tag.
    I suspect you may find that, to obtain an adequately tagged PDF, you may have to capture the web page content with the create bookmarks and create tags options off.
    Once you have the PDF make working copies.
    Try letting Acrobat tag this already created PDF to see what happens.
    You may have to manually tag the PDF.
    n.b., The default read order for western language can be altered by user selections in the accesibility setup or by selection in the PDF page(s) Page Properties.
    Be well...

Maybe you are looking for

  • FISCAL year from Date  in the Selection Screen.

    Hi Folks, Is there any function module which returns the Fiscal year if we provide the date in ranges. I mean, I have a select option for date in the selection screen.So,if a user enters the date say 01042007 01042007 it should return the correspondi

  • How to map lookup table

    Hi friends, I did this simple report in obiee 10g(i.e) *"NATIONALITY COUNT IN DEPARTMENT WISE"* For that i used the following tables: per_all_assignments_f----->fact table hr_all_organization_units----->dim table(containing departments) per_all_peopl

  • Sony EX1R MPEG-2 Long GOP

    Dear Apple, you are a fan for all your Apple products, recently I bought a SONY camera EX1R MPEG-2 Long GOP CODEC. I'm in love IMOVIE to its simplicity, unfortunately does not handle movies Sony EX1R, Final Cut but it works fine. I was wondering if y

  • OIM - Approval process available on updates/modifications of a resource ?

    Hello, I would like to implement a typical workflow : 1) UserA is able to provision a resource for other users. He provisions it for UserB. There's an approval process which says that it's UserB's manager (ManagerB) who will approve this request. Use

  • Passing parameter from applet to portal is failing

    hi all. We have an external applet that we can view on the portal. We want to have two parameter (parm1 and parm2) passed from the applet to the gateway and thus have them re-written by the portal gateway. When we access the applet from the portal, a