Vacation Search OAF Page

OAF Page need to automatically refresh the details section the moment the vacancy is selected in stead of requiring an additional step to click on the view details to refresh the detail section

>>
What is the "method" of your form? Post, Get ?
>>
it´s "Get", as the variables/values are getting added to
the URL (?searchfor=CO&Submit=Submit)
However, I personally find building such rather simple
queries *a lot* easier with DW´s "Recordset" Server Behaviour
-- here´s where you select the desired table and columns, plus
define your "Filter" condition like this:
1st row.
a) Filter: select the "state" column
b) menu to the right starting with "=" :: select the
"contains" option
(will generate the "LIKE" in the query)
2nd row:
a) as you´re currently passing the search values via URL
parameter, decide on the menu´s default "URL parameter" option
b) enter "searchfor" (without quotes) to define the previous
page´s text field "searchfor" as data source
All this will be creating the correct query, and will also be
checking if the URL parameter "searchfor" has actually been
set

Similar Messages

  • 11.5.9/OAF 5.7 : how to add new fields in iProc "search results" page

    We need to add new fields into iProc "search results" page - "Personalize Self-Service Defn" is et, we can enter the personalization screens (from both the "master" link at top/right page level or from the link above the region) - anyway cannot find how to add new fields. Do we have to go to AK developer and/or XML files or is it feasable from OAF (as it is with 11510) ? TIA.

    It depends on what fields you want to add.
    1. If Oracle has included the fields, just render them via personalizations
    2. If they are brand new fields:
    a) you will need to extend the VO (I do not know the exact name).
    b) change the query to get your extra db columns if necesary
    c) add transient attributes to the VO and map them to b).
    d) Then you need to add the items via personalization and map them to the attributes you created in c)
    Check on metalink for the lates version of OAF Dev Guide and Personalization guide.
    Thanks
    Sandeep

  • Stale data error while opening a multiple OAF page .

    Dear Friends ,
    I have a OAF page developed and deployed in server , its basically a search page , it also has several links to
    go to create page and update page . when the user opens the multiple page using different tabs in the browser
    like for example
    ex :
    from search page click on create page open it as new tab . if such multiple table are being opened
    and do some operation like search a record , it gives and error (stale data : Developer's mode exception ) .
    How to over come this exception , could you please share you ideas
    Thanks in Advance,
    Keerthi.k

    Hi friend ,
    In Search page i didn't do any update. and also search page is not a problem it's working fine. create page only the problem. In this page only throwing Stale data error exception.
    Please give me more suggestion.
    Thanks in advance,

  • How to Update Particular row in a table from OAF page

    Hi Can anyone please help me on the following requirement:
    In my oaf page i am displaying table values(supplier site details from base tables) with update and delete icons . When i click on update button a new page opens in which we used to update the values and click on apply button which again comes back to the original page.
    So when i click on apply button on update page i have to first search for the site in the site table whether it exists or not, if not exists i have to create a new row and save the data, if site exists in the table i have to update the row of a table for that particular site. I have written code for this but unable to achive the requirement, it is not updating the existing row of the table. And i am doing all this on the Temp tables.
    So now when i save, previous transaction is also updating along with the current transaction. That means when i m trying to save 2nd transaction values , 1st transactions values are getting updated with the 2nd transaction values(2 rows are getting updated)
    Can anyone help me with the code used for updating the current row of the table. Please correct me if i m doing anyting wrong in code.
    following is the current code i m using and which is failing :
    Controller Code
    if(pcontactaction.equals("createECdetailsEvent")) {
    String currentSiteName=pageContext.getParameter("SiteName");
    System.out.println("Selected Site Name is : " + currentSiteName);
    Serializable x[]={reqNum,suppId,currentSiteName,pnotifMethod,pfaxNum};
    System.out.println("Invoking AM Method.........");
    am.invokeMethod("initCreateECDetails",x);
    System.out.println("initCreateECDetails Method Executed. ");
    //am.invokeMethod("save");
    localOAApplicationModule.getTransaction().commit();
    pageContext.setForwardURL(
    "OA.jsp?page=/oracle/apps/floaf/flpos/supregister/webui/ECDetailsPG"
    , null //not needed as we are retaining menu context
    ,OAWebBeanConstants.KEEP_MENU_CONTEXT
    , null //not needed as we are retaining menu context
    ,null // no parameters are needed
    ,true //retain AM
    ,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
    ,OAWebBeanConstants.IGNORE_MESSAGES);
    AM Code
    public void initUpdateECDetails(String request_number,String supplier_id,String site_name,String site_id,String notification_method,String fax_number)
    OADBTransaction localOADBTransaction = getOADBTransaction();
    String siteToUpdate;
    siteToUpdate=site_name;
    String siteidToUpdate;
    siteidToUpdate=site_id;
    System.out.println("Site Name to Update or Create is : " + siteToUpdate);
    System.out.println("Site Id to Update or Create is : " + siteidToUpdate);
    System.out.println("Inside Update EC Details MEthod.");
    OAViewObject suppSiteDetVO = getFLPOSSuppSiteDetailsVO1();
    FLPOSSuppSiteDetailsVORowImpl sro=null;
    String existingWhereClause = suppSiteDetVO.getWhereClause();
    suppSiteDetVO.setWhereClause(null);
    suppSiteDetVO.setWhereClauseParams(null);
    suppSiteDetVO.setWhereClause("SUPPLIER_ID = :1 AND REQUEST_NUMBER = :2 AND SITE_ID = :3 ");
    suppSiteDetVO.setWhereClauseParam(0, supplier_id);
    suppSiteDetVO.setWhereClauseParam(1, request_number);
    suppSiteDetVO.setWhereClauseParam(2, site_id);
    suppSiteDetVO.executeQuery();
    suppSiteDetVO.setWhereClauseParams(null);
    suppSiteDetVO.setWhereClause(existingWhereClause);
    int rowcount = suppSiteDetVO.getRowCount();
    System.out.println("Fetched Rows : " + rowcount);
    if (rowcount == 0) {
    Row row = suppSiteDetVO.createRow();
    System.out.println("Row is : " +row);
    suppSiteDetVO.insertRow(row);
    String siteId = getOADBTransaction().getSequenceValue("FLPOS_SITE_ID_SEQ").toString();
    System.out.println("New Site ID : " + siteId);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    row.setAttribute("RequestNumber", request_number);
    row.setAttribute("SupplierId", supplier_id);
    row.setAttribute("SiteName", site_name);
    row.setAttribute("SiteId", siteId);
    row.setAttribute("FaxNo",fax_number);
    row.setAttribute("NotificationMethod",notification_method);
    System.out.println("New Row Created for Supplier Site.");
    System.out.println("Data Saved to table.");
    else{
    System.out.println("Inside Else Block ");
    try {
    System.out.println("Inside Try Block ");
    Row[] row = suppSiteDetVO.getAllRowsInRange();
    for (int i = 0; i < rowcount; i++) {
    sro = (FLPOSSuppSiteDetailsVORowImpl)row;
    String psiteName=sro.getSiteName();
    Number psiteid=sro.getSiteId();
    System.out.println(" p Site Name is : " +psiteName);
    System.out.println(" p site id is " +psiteid);
    if(psiteid.equals(siteidToUpdate) ) {
    sro.setAttribute("FaxNo",fax_number);
    sro.setAttribute("NotificationMethod",notification_method);
    //getOADBTransaction().commit();
    break;
    catch (Exception e) {
    System.out.println("Exception in update : " + e);
    }

    Please answer following:
    1. Are you using EO based VOs or ReadOnly VO?
    2. What is your VO Query for the search and update?
    3. Why have you based your logic on site_name; you should have used site_id?
    4.Are you getting correct site name in handling createECdetailsEvent event in CO?
    5. In case of update are you getting correct values on the Update Site Details?
    6. On coming back from Update page to Supplier Site Search page, do you see old values of the site or the new values in the results table?
    Please share the screenshot if possible.
    -Prince
    [email protected]
    http://princekapoor82.blogspot.com

  • Link to OAF page from workflow notification

    I am trying to give a link in a workflow notification to the customer details page in R12. I decompiled the Controller classes of the customer pages to get the parameters that the page needs.
    The page I am trying to access is defined as a function , AR_CUS_OVR with webhtml call :
    OA.jsp?page=/oracle/apps/ar/cusstd/ovrview/webui/ArCusOvrPG&OAFunc=AR_CUS_OVR
    I got the url for this page using the following function :
    FND_RUN_FUNCTION.GET_RUN_FUNCTION_URL
    (25779,660,21623,null,'HzPuiPartyId=32551,cusType=ORGANIZATION,HzPuiSubjectPartyType=ORGANIZATION')
    When i paste this URL in the browser, if I am not already logged in , I am directed to the login page and then I get an error :
    You have insufficient privileges for the current operation. Please contact your System Administrator.
    If i am logged in, i directly get the above error.
    I searched the DB to see where this message is thrown but did not find any match. It's probably thrown from some OAF page.
    The function is attached to the menu and my user has the required responsibility. I can access the page if i login and navigate to the page.
    It's probably the URL , but I am not able to lay a finger on the problem. Please let me know if I am missing something here.
    Does anyone know when this error is raised.
    thanks,
    Satya

    I was trying to access the page by pasting the link directly in the browser. I guess that's why it was throwing the indufficient privileges error.
    If I click the link from the notification, it tries to bring up the page. But throws a sql exception about invalid number.
    I checked the controller code in ArCusOvrCO.java. If the parameter cusType is null, the controlller invokes a method to get custType by calling amethod in the AM which executes a sql statement, SELECT party_type from HZ_PARTIES where party_id = : 1
    This parameter HzPuiPartyId is used for this. It looks like all the parameters are passed as null even though I am passing them .
    Is the following way the right way of passing multiple parameters to the function :
    FND_RUN_FUNCTION.GET_RUN_FUNCTION_URL. I am just passing a comma separated list.
    'HzPuiPartyId=24553,cusType=ORGANIZATION,HzPuiSubjectPartyType=ORGANIZATION,HzPuiPartyName=EOM40,HzPuiObjectPartyType=ORGANIZATION,HzPuiObjectPartyId=24553'
    thanks,
    satya

  • Dynamic layout of table in OAF page

    Hi,
    I have a requirement where, i need to generate a table layout with changing columns in OAF page.
    Ex: If i search a job in OAF page, depending on the job family, the results table displays the number of columns. (My number of rows is constant but the columns changes)
    Please let me know if anyone worked on it and if it can be achieved using PPR.
    Your help will be appreciated.
    Thanks in Advance,
    Sh

    Check this link
    Re: To Hide Columns of table region dynamically using Users Input in OAF

  • Lookup Table Insertions to OAF Page

    Hello friends,
    1)i have added new rows to the lookup’s in oracle apps, this lookups i am making one query and create the Vo to populate these values into dropdown of OAF pages.but they are not always available to the OAF pages until Apache is bounced.
    2)I have a program name drop down list in OAF page, where the data is coming from oracle apps lookups.i added XX, XX2 & XX3 program name lookups. When I went to the OAF page none of the values were available in the Program Name drop-down. I bounced Apache and then they appeared.
    3)sometimes i added programs through lookups , I went to the OAF Page and it was available to choose. I didn’t have to bounce Apache this time.
    I’ve seen this happen a few times. Do you know why? can any one have an idea how this was happend.
    Thanks
    vamshi.

    kumar , see my requirement is below.
    1) i have search page , in that i have a detail icon to navigate detail page - i am carrying some values from search page to detail page. carrying values should read only in detail page.
    2) based on the detail page , carrying values data - i want to render poplist.
    ex: in search page i have deptid,dname, loc, email- these values are carrying to detail page with read only. i have a ename pooplist in detail page . based on the values(deptid,dname, loc, email) rendering detail page , i want to display ename poplist data. for this i am doing this below approach.
    1. Created a viewObject VO.
    2. Added it to the ApplicationModule of the page.
    3. Created the poplist with required properties..
    i set the "Picklist View Instance" to VO added in the rootAM(for example, PoplistVO1).
    4. To change the whereClause based on the input parameter use following eg code in your processRequest()
    String a = pagecontext.getParameter("empno");
    vo.setWhereClause("emp_no = :1");
    vo.setWhereClauseParams(null);
    vo.setWhereClauseParam(1, a);
    vo.executeQuery();
    in this case i cannot use Picklist View Definition. please let me know and help me out.very urgent.
    Thanks
    vamshi.

  • Issue in Accessing OAF Page in Oracle Apps

    I am facing a strange issue while accessing OAF pages from a responsibility. I have a OAF page which is attached to a responsibility through a menu-function. When I click the menu, it opens the page in a new window properly, but if I click the menu again it opens the page ontop of the existing page (which was opened previously). Is there any setup in IE to fix this? Ideally the page should be opened in a new window everytime I click the menu.
    Any pointers on this would be appreciated.
    Thanks,
    Shree

    If all of the users are using the same responsibility and the issue happens only for some users, you can determine what profile options have been set for the user for which this works by using scripts in MOS Docs 367926.1 (How To Find All Users With A Particular Profile Option Set?) and 282382.1 (How to Search all of the Profile Options for a Specific Value). You may need to modify these scripts to suit your needs.
    HTH
    Srini

  • How can we Print Row count in OAf page

    Hi,
    I want to print No rows in adv. table in my page after i click search button in page..
    i wrote code in AM as below..
    B2BLookupTypeVVOImpl vo = getB2BLookupTypeVVO1();
    System.out.println("total no of count"+vo.getRowCount());
    But can i print this no. of records OAF page plz assit me in this
    Thnk
    chinna

    use
    pageContext.writeDiagnostics(this,"total no of count"+vo.getRowCount(), 2);
    to read this line enable the statement level logging .
    right top corner
    Diagnostics--->Show Log on screen-->Statement1
    now u will be able to see the statements .
    enable profile "FND:Diagnostics" to see diagnostics on top right corner.
    Thanks
    Pratap

  • How can we fine table or view in OAF page?

    Hi All,
    how can we find page is based on which table ?
    like in apps forms we can find through Help-->Diagnostic-->examine
    in the case of OAF page ,how can we find?
    thanks
    muthu

    Hi,
    Wel come to Oracle forums..:))
    user10491224 wrote:
    how can we find page is based on which table ?-----1st check the profile option 'FND:Diagnostics' to yes at UserLevel or Site level to "Yes".
    -----Then u will see AboutThisPage* link on the left bottom of the page,Click on that link.
    -----Click on Expand all
    -----u will see propertys of the page including vo's.
    -----you will see Table region and vo attached to it.
    -----click on Business Component References Details
    -----you will see viewobject section ,enter vo name and search.
    -----you will find the query of the vo.
    Regards
    Meher Irk

  • How to create side Navigation in a OAF Page**Urgent

    Hi All,
    please let me know the steps to create Side Navigation in an OAF page.
    thanks,
    Sowmya.

    It is always better to first start searching first in dev guide... then old threads inforums.... else raising the thread.
    --Mukul                                                                                                                                                                                                                                                                                                   

  • Adding new text  and removing existing one in standard oaf page

    Hi,
    I got requirement like this in iRecruitment login page .in that i need to modify raw text like New to iRecruitment?in this i have to place client text.
    can u help me?
    Thanks,
    ajay

    Ajay,
    If message which needs to be changed is attached to AOL message then try the below
    1.modify the message according to your requirement
    2. clear fucntional cache to reflect the change in login page
    Navigation to clear cache: Functional Administrator Responsibility -> Core Services -> Caching Framework -> Global Configuration -> Click on “Clear All Cache” button then click “Yes” button
    How to find out which message is attached with that login page.Is there any way to find out that in about this page or personalization or any other method.If your login page is OAF page then you can check it using about this page. Go to 'about this page' link select "Expand All" radio button then search for your message.
    regards,
    Anand

  • Customized OAF page -- Duplicates Issue

    Hi All,
    We have a customized OAF page which allows user to perform the below operations,
    1. Query for records
    2. Add a new row
    3. Save the changes
    Issue is 3 of the fields in the page are of unique combination. We perform the validation to ensure unique values only get stored, if user tries to enter an value combination which already exists then system throws an error. But when user enters valid records and save it, the previously entered wrong data also gets stored to database.
    I have explained the scenario below, Item id/global code/local code are the unique combination fields
    1. User enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T1
    Saved successfully.
    2. User now enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T2
    When tries to save, get error message as Combination already exist. If i search for item id IT123 and Global code 100 it shows only 1 row
    3. User now enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 101 T3
    Saves the data successfully. But if i search for item id IT123 and global code 100 i am getting 3 rows as below,
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T1
    IT123 100 100 T2
    IT123 100 101 T3
    Errored out record in step 2 also got inserted. Please assist if any of you have faced similar issue else provide some pointers in resolving the issue.
    Thanks,
    Rajesh SM.

    Rajesh,
    Issue is 3 of the fields in the page are of unique combination. We perform the validation to ensure unique values only get stored,
    if user tries to enter an value combination which already exists then system throws an error. But when user enters valid records
    and save it, the previously entered wrong data also gets stored to database.what all the steps or code u wrote to check the combination already exists or not. Post the method u have written to check the same.
    Regards,
    Gyan

  • Error in OAF Page Running

    Hi All,
         I created one sample and starting OAF page which displays only the brand logo.
         But when I am trying to Run the page it is creating an error as
         An error was encountered when running
         "JDeveloper\jedevhome\jdev\myclasses\JRADXML":
         No response received in 30 secs.
         Please try the following
         1) Increase the timeout limit by setting the JRAD.RUNREG_TIMEOUT parameter in the ide.properties file located in system directory.
         2) Check the Host Name in the Preferences, under Embedded OC4J.
         3) See the log window for any error message.
    I am using Oracle JDeveloper 10.1.3.3.0 version.
    I am not ware where this ide.properties file is present. I have totally 4 files in the paths:
         1. \jdevhome\jdev\system\oracle.jdeveloper.10.1.3.41.57
         2. \jdevhome\jdev\system11.1.1.6.38.62.29\o.jdeveloper
         3. \jdevhome\jdev\system11.1.1.6.38.62.29\o.sqldeveloper.11.2.0.10.4
         4. \jdevbin\jdev\system\oracle.jdeveloper.10.1.3.41.57
    But, in any of this files there is no such thing as timeout parameter.
    I am very new to the Oracle and this OAF part. Please let me know how this issue can be resolved.
    Please let me know if anyone has solution for this. Its very high importance.
    Thanks in advance,
    Srivathsava

    Hi Dilip,
         Thanks for your reply
         But it is also not working
         For your reference...the Log-Message is
    Compiling...
      validating OA Extension XML "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects\oracle\apps\xxcfi\thirteendec\OAFreshPRJ\webui\OAFreshPG.xml" file.
    C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\bin\java.exe -jar C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\lib\ojc.jar -source 1.5 -target 1.5 -noquiet -warn -nowarn:320 -deprecation:self -nowarn:560 -nowarn:704 -nowarn:489 -nowarn:415 -nowarn:909 -nowarn:412 -nowarn:414 -nowarn:561 -nowarn:376 -nowarn:371 -nowarn:558 -nowarn:375 -nowarn:413 -nowarn:377 -nowarn:372 -nowarn:557 -nowarn:556 -nowarn:559 -encoding Cp1252 -g -d "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myclasses" -make "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myclasses\OAFreshPRJ.cdi" -classpath  "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\rt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\i18n.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\sunrsasign.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\jsse.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\jce.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\charsets.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\classes;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myclasses;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\lib\jdev-rt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdbc\lib\ojdbc14dms.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdbc\lib\orai18n.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdbc\lib\ocrs12.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\diagnostics\lib\ojdl.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\lib\dms.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\jdev-cm.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\adfshare.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jmt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\collections.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jct.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\lib\xmlparserv2.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\ojmisc.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\commons-el.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\jsp-el-api.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\oracle-el.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jctejb.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\lib\ejb.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jmtejb.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\bc4jhtml.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\datatags.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\bc4juixtags.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\graphtags.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\lib\ojsp.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\lib\oc4j-internal.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\lib\servlet.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\lib\ojc.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\jewt4.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\regexp.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\share.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\uix2.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\mds\lib\mdsrt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\lib\mdsdt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\lib\oamdsdt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\fwkjbo.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\fwk.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\atg.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\collections.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\concurrent.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\oamMaintMode.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\wsp.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\fwkCabo.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\diagnostics.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\wsrp-container.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\pdkjava.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\ptlshare.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\xml.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\wsrp-container-types.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jaxb-impl.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jaxb-libs.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jazn.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jazncore.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\biamlocal.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bipres.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bicmn.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bidatasvr.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bidataclt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bidatacmn.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\biext.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bicmn-nls.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bipres-nls.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bidata-nls.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\olap_api.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jdomorcl.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\bc4jdatum.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\rosettaRt.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\iasjoc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\pat.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\patch_jars;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\portalFlexComps.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\svc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\svctester.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\lib\xml.jar" -sourcepath  "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\src.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\adfmsrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\bc4jsrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\bc4jaddinsrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\bc4jhtmlsrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\uix2-src.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\mds\src\mdsrtSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\src\oamdsdtSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\fwkjboSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\fwkSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\atgSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\oamMaintModeSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\wspSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\fwkCaboSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bicmn.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bidataclt.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bidatacmn.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bidatasvr.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\biext.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bipres.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\bc4jdomorcl-src.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\rosettaRtSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\patSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\patch_srcs;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\oamdsxml\*;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appsmdsxml\*;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\portalFlexCompsSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\svcSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\svctesterSrc.zip" "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects\oracle\apps\xxcfi\thirteendec\OAFreshPRJ\server\OAFreshAMImpl.java"
    Validating Business Component: OAFreshPRJ
    Validating Business Component: OAFreshPRJ
      copying OAFresh-data-sources.xml to output directory
      copying OAFresh-jazn-data.xml to output directory
      copying OAFresh-oc4j-app.xml to output directory
    Validating Business Component: OAFreshPRJ
    Validating Business Component: OAFreshPRJ
    Validating Business Component: OAFreshPRJ
    [6:26:59 AM] Compilation complete: 0 errors, 5 warnings.
    The Compiler - Log is
    Warning: OAFreshPRJ: The Business Component Project does not contain a valid connection.
    Project: C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects\OAFreshPRJ.jpr
         C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects\OAFreshPRJ.jpx
              Warning: OAFreshPRJ: The Business Component Project does not contain a valid connection.
    Embedded OC4J Server - Log is
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config>
    "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\bin\javaw.exe" -hotspot "-Doracle.home=C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin" -classpath "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\lib\jdev-oc4j-embedded.jar" -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true -DRUN_FROM_JDEV=true -mx256m -XX:MaxPermSize=256M -Xverify:none -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\server.xml"
    [waiting for the server to complete its initialization...]
    Dec 18, 2013 6:27:03 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Dec 18, 2013 6:27:03 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    WARNING: Code-source C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\xml.jar (from <library> in /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevhome/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml) has the same filename but is not identical to /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/lib/xml.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jazn.jar (from <library> in /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevhome/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml) has the same filename but is not identical to /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/j2ee/home/jazn.jar (from <code-source> in META-INF/boot.xml in C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jazncore.jar (from manifest of /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/jdev/appslibrt/jazn.jar) has the same filename but is not identical to /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/j2ee/home/jazncore.jar (from <code-source> in META-INF/boot.xml in C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\applications\datatags\webapp\WEB-INF\lib\uix2.jar (from WEB-INF/lib/ directory in C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\applications\datatags\webapp\WEB-INF\lib) has the same filename but is not identical to /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/jdev/appslibrt/uix2.jar (from <library> in /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevhome/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader datatags.web.webapp:0.0.0.
    13/12/18 06:27:26 java.net.ConnectException: Connection timed out: connect
    13/12/18 06:27:26  at java.net.PlainSocketImpl.socketConnect(Native Method)
    13/12/18 06:27:26  at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    13/12/18 06:27:26  at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    13/12/18 06:27:26  at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    13/12/18 06:27:26  at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    13/12/18 06:27:26  at java.net.Socket.connect(Socket.java:507)
    13/12/18 06:27:26  at java.net.Socket.connect(Socket.java:457)
    13/12/18 06:27:26  at java.net.Socket.<init>(Socket.java:365)
    13/12/18 06:27:26  at java.net.Socket.<init>(Socket.java:207)
    13/12/18 06:27:26  at oracle.jdevimpl.runner.oc4j.Oc4jNotifier.sendMessage(Oc4jNotifier.java:98)
    13/12/18 06:27:26  at oracle.jdevimpl.runner.oc4j.Oc4jNotifier.postInitApplicationServer(Oc4jNotifier.java:55)
    13/12/18 06:27:26  at com.evermind.server.ApplicationServer.serverExtensionPostInit(ApplicationServer.java:1202)
    13/12/18 06:27:26  at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1049)
    13/12/18 06:27:26  at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
    13/12/18 06:27:26  at java.lang.Thread.run(Thread.java:595)
    13/12/18 06:27:26 Oracle Containers for J2EE 10g (10.1.3.3.0)  initialized

  • Need Help on calling report in OAF Page

    Hi,
    At present i am wokring EAM Module. Here i need to call one report.
    In my OAF Page one button is there("The name of the button is *Issue*"). After clicking this button i need to fire one report(The name of the report is "Maintenance Picking Slip Issued Report").
    Please help me how to call report? I don't have any idea how to proceed for this.please explain clearly.
    Thanks in advance..
    Thanks,
    Somasekhar.

    Somasekhar,
    you want to call PLSQL Report or XML Publisher report or you want to submit the concurrent request.
    If this XML Publisher report then refer following code for your refrence
    public BlobDomain getXMLData(String as[], String s, String s1, String s2, String s3, String s4, String s5,
    String s6, String s7, String s8, String s9, String s10)
    throws Throwable
    int i;
    int j;
    int k;
    int l;
    int i1;
    int j1;
    int k1;
    int l1;
    int i2;
    int j2;
    int k2;
    OracleCallableStatement oraclecallablestatement;
    ARRAY array;
    int ai[] = new int[as.length];
    i = 0;
    j = 0;
    k = 0;
    l = 0;
    i1 = 0;
    j1 = 0;
    k1 = 0;
    l1 = 0;
    i2 = 0;
    j2 = 0;
    k2 = 0;
    for(int l2 = 0; l2 < as.length; l2++)
    ai[l2] = Integer.parseInt(as[l2]);
    if(s.equals("Y"))
    i = 1;
    if(s1.equals("Y"))
    j = 1;
    if(s2.equals("Y"))
    k = 1;
    if(s3.equals("Y"))
    l = 1;
    if(s4.equals("Y"))
    i1 = 1;
    if(s5.equals("Y"))
    j1 = 1;
    if(s6.equals("Y"))
    k1 = 1;
    if(s7.equals("Y"))
    l1 = 1;
    if(s8.equals("Y"))
    j2 = 1;
    if(s10.equals("Y"))
    k2 = 1;
    i2 = Integer.parseInt(s9);
    DBTransaction dbtransaction = getDBTransaction();
    String s11 = "BEGIN :1 :=EAM_WorkOrderRep_PVT.getWoReportXML(:2, :3, :4, :5, :6, :7, :8, :9,:10,:11,:12,:13); END;";
    oraclecallablestatement = (OracleCallableStatement)dbtransaction.createCallableStatement(s11, 1);
    java.sql.Connection connection = oraclecallablestatement.getConnection();
    ArrayDescriptor arraydescriptor = ArrayDescriptor.createDescriptor("SYSTEM.EAM_WIPID_TAB_TYPE", connection);
    array = new ARRAY(arraydescriptor, connection, ai);
    BlobDomain blobdomain;
    oraclecallablestatement.registerOutParameter(1, 2005);
    oraclecallablestatement.setArray(2, array);
    oraclecallablestatement.setInt(3, i);
    oraclecallablestatement.setInt(4, j);
    oraclecallablestatement.setInt(5, k);
    oraclecallablestatement.setInt(6, l);
    oraclecallablestatement.setInt(7, k1);
    oraclecallablestatement.setInt(8, l1);
    oraclecallablestatement.setInt(10, i1);
    oraclecallablestatement.setInt(11, j1);
    oraclecallablestatement.setInt(9, j2);
    oraclecallablestatement.setInt(12, i2);
    oraclecallablestatement.setInt(13, k2);
    oraclecallablestatement.execute();
    CLOB clob = ((OracleCallableStatement)oraclecallablestatement).getCLOB(1);
    blobdomain = new BlobDomain();
    OutputStream outputstream = blobdomain.getBinaryOutputStream();
    long l3 = clob.length();
    byte abyte0[] = new byte[(int)l3];
    String s12 = clob.getSubString(1L, (int)l3);
    abyte0 = s12.getBytes("UTF-8");
    outputstream.write(abyte0);
    outputstream.close();
    return blobdomain;
    SQLException sqlexception;
    sqlexception;
    try
    oraclecallablestatement.close();
    catch(Exception exception) { }
    throw OAException.wrapperException(sqlexception);
    public void initSearchCriteria()
    log(this, "init search crieria", 1);
    getWorkPlanSearchCriteriaVO().executeQuery();
    Let me know you got your point or not.
    Thanks,
    Kumar

Maybe you are looking for

  • Need to be displayed in ALV grid

    Dear All, Below is my Program's code which is working accordingly. But in this code I am generating output as Basic list display.  But  I want my output to be displayed in ALV only. So from where I will start. Where to add code for Alv in my existing

  • Delay in receiving mail sent through Javamail

    Hi all, n the code given in http://www.javacommerce.com/destination65673/18274/SendMailUsingAuthentication.java the, mail is received after 2-3 minutes after executing the code. How can I avoid that delay? Also, how can I have a message, if we try to

  • Allow cell contents to cross page

    Is it possible to allow text in a cell to run over more than 1 page? I have a table with 2 columns and 16 rows, which MUST fit in to 3 A4 pages; unfortunately, it is currently 5 pages long, as all cells are kept on a single page.

  • Connecting Flight Demo not work

    Hi, all I configed the multi-booking flight demo according to the Guide. After I executed the sample, I can't see any error from the SXMB_MONI except 'Outbound Status' column is a red flag. The page showing 'Flight booking order sent. Awaiting confir

  • Access for Servers tab

    We need to give access for Instance manager and Server tab to a group in BOBJ CMC . Access for Instance manger is arranged . I tried to maintain user security for each server node in under Servers tab , but not able to view Servers tab under a specif