Adf issue..

Hello Friends,
While opening the forms of planning applications in epm 11.1.2.2 i have got the error
Java.lang.NumberFormatException.For input string "null"
ADF_Faces-60097.For more information please see the servers error log for an entry beginning with ADF_FACES-60098 Server Exception during PPR,#1
Please informs me for solutions soon..
Thanks
Regards:
Rupali
Edited by: 977134 on Apr 11, 2013 5:19 AM

Not sure whether you got the answer to this query, but let me give a shot here. Basically this message you are observing is logged when there are a missing libraries (which are being referenced in application deployment descriptors) while the application initialization/activation/deployment. In your case its:
adf.oracle.domain.webapp
Now till here everything is understandable from the message, the key war that seems to be missing here is "adf.oracle.domain.webapp.war", which I think you can find in:
..\oracle_common\modules\oracle.adf.view_11.1.1
You can try to deploy using the admin console (as a normal deployment) to the managed node where you are deploying your ear.

Similar Messages

  • How to problem solve adf issue in the mx340 model

    how to problem solve adf issue in the mx340 model

    Alex,
    the missing thing in your example is the fact, that if only one value is selected, the parameter has exact this value like BOSTON. If you choose more than one value, the parameter includes the *'*, so that it looks like *'BOSTON','NEW YORK'*. So you need to check in the package, if there's a *,* in the parameter or not. If yes there's more than one value, if not it's only one value or it's null.
    So change your package to (you need to expand your variables)
    create or replace package bip_departments_2_parameters
    as
    p_dep_2_param varchar2(1000);
    p_loc_1_param varchar2(1000);
    p_where_clause varchar2(1000);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    create or replace package body bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    p_where_clause := ' ';
    if p_dep_2_param is not null then
    if instr(p_dep_2_param,',')>0 then
    p_where_clause := 'WHERE DNAME in ('||p_dep_2_param||')';
    else
    p_where_clause := 'WHERE DNAME = '''||p_dep_2_param||'''';
    end if;
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || ' AND LOC IN ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || ' AND LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    else
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || 'WHERE LOC in ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || 'WHERE LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    I've written a similar example at http://www.oracle.com/global/de/community/bip/tipps/Dynamische_Queries/index.html ... but it's in german.
    Regards
    Rainer

  • ADF Issue with Tree Table , Child Row not getting rendered.

    Hi All,
    I am trying to show a single Level Master-Detail Table via ADF Tree Table.
    I have MasterVO : InventoryVO (1 SubInventoryCode)
    DetailVO: SubInventoryVO (n :SubInventoryCode)
    Both VOs are SQL query based VO with bindVariables.
    I have a viewLink between MasterVO and ChildVO (1:n relationship)
    I dragged and drop the MasterVO as a tree Table. I added the Rule in the Tree Binding too.
    I have the Tree table under a Tab , I execute the AM impl method when the Tab is clicked where I set the bindvariables of the MasterVO and ChildVO and execute it.
    when I run the Page , the VO query gets executed but the I am able to see only the MasterVO Datas, and when I click MasterVO ROW , the Table doesnt expand and it doesnt render any ChildVO ROws.
    Please find the Page Definition and Jspx Page Code Below
    Page Definition Code
    <tree IterBinding="ItemsLocatorIterator" id="ItemsLocator">
          <nodeDefinition DefName="xxplp.oracle.adf.items.model.view.ItemsLocatorVO"
                          Name="ItemsLocator0">
            <AttrNames>
              <Item Value="SubinventoryCode"/>
              <Item Value="Openorderqty"/>
              <Item Value="Openwoqty"/>
              <Item Value="Qoh"/>
            </AttrNames>
            <Accessors>
              <Item Value="ItemSubInventoryVO"/>
            </Accessors>
          </nodeDefinition>
          <nodeDefinition DefName="xxplp.oracle.adf.items.model.view.ItemSubInventoryVO"
                          Name="ItemsLocator1">
            <AttrNames>
              <Item Value="Locator"/>
            </AttrNames>
          </nodeDefinition>
        </tree>Jspx Page Code
    <af:treeTable value="#{bindings.ItemsLocator.treeModel}"
                                          var="node"
                                          selectionListener="#{bindings.ItemsLocator.treeModel.makeCurrent}"
                                          rowSelection="single" id="tt2"
                                          styleClass="AFStretchWidth"
                                          rowDisclosureListener="#{backingBeanScope.TabListenerBean.LocationTableRowDisclosureListener}">
                              <f:facet name="nodeStamp">
                                <af:column id="c110">
                                  <af:outputText value="#{node.SubinventoryCode}" id="ot116"/>
                                </af:column>
                              </f:facet>
                              <f:facet name="pathStamp">
                                <af:outputText value="#{node}" id="ot117"/>
                              </f:facet>
                              <af:column id="c111"
                                         headerText="#{bindings.ItemsLocator.hints.Qoh.label}">
                                <af:outputText value="#{node.Qoh}" id="ot118"/>
                              </af:column>
                              <af:column id="column1"
                                         headerText="#{bindings.ItemsLocator.hints.Openorderqty.label}">
                                <af:outputText value="#{node.Openorderqty}"
                                               id="outputText1"/>
                              </af:column>
                              <af:column id="column2"
                                         headerText="#{bindings.ItemsLocator.hints.Openwoqty.label}">
                                <af:outputText value="#{node.Openwoqty}"
                                               id="outputText2"/>
                              </af:column>
                              <af:column id="column3"
                                         headerText="Locator">
                                <af:outputText value="#{node.Locator}"
                                               id="outputText3"/>
                              </af:column>
                            </af:treeTable>

    I was able to find the issue which is causing the problem, both the VOs are SQL Query Based VOs.
    The ChildVO (SubInventoryVO) is has a bindvariable in its Query, which is losing its value when the viewlink accessor query gets appended to it.
    Please find the query below
    SELECT * FROM (SELECT MOTV.ORGANIZATION_CODE, MOTV.SUBINVENTORY_CODE  
    FROM MTL_ONHAND_TOTAL_V MOTV
    WHERE INVENTORY_ITEM_ID = :P_INVENTORY_ITEM_ID) QRSLT  WHERE ORGANIZATION_CODE = :Bind_OrganizationCode Though I am setting the VO query before the Table is rendered, ":P_INVENTORY_ITEM_ID".
    Its Losing its value, when the above whereclause "ORGANIZATION_CODE = :Bind_OrganizationCode " gets appended to it.
    I am thinking to use ExecuteWithParams Operation on SelectionListener method of the Tree Table to set the ":P_INVENTORY_ITEM_ID" bind variable, but I also want the viewLinkAccessor rule also to be applied ..
    Please suggest me how to retain the implicit bindVariable of the Query.

  • URGENT!!! Java Gurus Please Help with adf issue!

    PLEASE SEE MY LATEST POST BELOW TIMO'S RESPONSE. THE REQUIREMENT HAS CHANGED. THAT IS THE ISSUE I AM LOOKING A SOLUTION FOR.
    Hello All,
    We have a requirement where our adf/jsf app needs to pick an EXCEL file from the server where the application is deployed. The sequence is :
    User comes to the page
    Clicks on "Open EXCEL" button
    EXCEL file located in the c:/ of the server opens up.
    How can this be done? I do not see any coding needed because the EXCEL file is being opened as is (and after user views it he closes the file) and the data is not being transferred to the jspx page.
    *We are totally flexible in how this is implemented - ie, using button, link , html etc etc. What ever works!!!!*
    Thanks,
    Edited by: user12054715 on Aug 17, 2010 8:54 PM
    Edited by: user12054715 on Aug 18, 2010 4:11 PM
    Edited by: user12054715 on Aug 18, 2010 4:13 PM

    Hello Timo,
    I am using 10.1.3g so your response is not going to help me.
    However, I have another question that I have already posted on the Forum. Please help me...
    Requirement:
    *1. Java application should be able to write "Hello World" in the excel file, when the user opens it.*
    I CAN DO THIS WITH THE FOLLOWING CODE:
    HSSFWorkbook wb = new HSSFWorkbook();
    HSSFSheet sheet = wb.createSheet("newSheet");
    HSSFRow row = sheet.createRow(1);
    row.createCell(1).setCellValue("HelloWorld!!!!!!!!!");
    *2. A "Write To Excel" button on jsf page opens a dialog asking user to Save or Open the excel file. (user can save the file anywhere on his machine)*
    I CAN DO THIS WITH THE FOLLOWING CODE:
    In jsf:
    <af:commandButton text="Download" action="#{myBackingBean.writeToExcel}" useWindow="true"/>
    In backing bean:
    public static void writeToExcel() throws IOException
    String filename = "workbook.xls";
    // //Setup the output
    String contentType = "application/vnd.ms-excel";
    FacesContext fc = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse)fc.getExternalContext().getResponse();
    response.setHeader("Content-disposition", "attachment; filename=" + filename);
    response.setContentType(contentType);
    PrintWriter out = response.getWriter();
    BOTTLENECK: When the user opens the excel how do I show "HelloWorld!!!!!!!!!" ?

  • ADF: Issue in selectOneChoice - dynamic list

    Hi,
    On my ADF page i have two selectOneChoice drop downs, one for CompanyName and other for DepartmentId. CompanyName drop down will get populated once the user logs in based on his credentials so, this is based on a query(having a where condition: where user='aaa'). CompanyName is fetched from the COMPANY table where CompanyId is the primary key. I wish to use Dynamic list for the selectOneChoice where base data source is the view based on 'select * from COMPANY' and the list data source is the view on 'select * from COMPANY where user='aaa''.
    DepartmentName is fetched from DEPARTMENT table(CompanyId is the foreign key here).
    I am using Dynamic list because i need to display CompanyName on the page whereas the backing bean needs to refer to the corresponding CompanyId as the DepartmentId drop down is based on 'select * from DEPARTMENT where CompanyId=<selected CompanyId>'.
    When i trying to run the ADF page, i am getting the following error:
    *<Utils> <buildFacesMessage> ADF: Adding the following JSF error message: Too many objects match the primary key oracle.jbo.Key[149 ].*
    oracle.jbo.TooManyObjectsException: JBO-25013: Too many objects match the primary key oracle.jbo.Key[149 ].
    *     at oracle.jbo.server.EntityCache.throwTooManyObjectsException(EntityCache.java:598)*
    Here oracle.jbo.Key[149 ] : 149 is the CompanyId of the selected CompanyName.
    Kindly help me resolve this issue.
    Thanks in advance.

    Hi,
    Thanks for reply!
    Can you please tell me what is base data source and list data source. I mean in my example of code which query points to base data source and which one points to list data source?
    Among the below options which one should be base data source and which one is list data source?
    1. 'select * from COMPANY'
    2. 'select * from COMPANY where user='aaa''
    Thanks.

  • Office Jet Pro 8600 ADF Issues

    When copying, Faxing or Scanning using the ADF, the printer doesn't stop after putting the last page through.  It continues to try to find the next page when there isn't one and then gives me a jam error.  It has been inconvenient for scanning and copying but still gives me the correct result eventually with messages.  However, the fax will not go through when the jam error comes up.

    Hello @CokeMan99,
    Welcome to the HP Support Forums!
    I understand that when using the document feeder on your HP Officejet Pro 8600 e-All-in-One Printer you are getting a 'paper jam' error after your machine successfully pulls through the pages. I would like to assist you today with resolving this issue. By the sounds of it your machine is either experiencing a hardware issue within the roller or paper sensor mechanism within the document feeder, or the printer is experiencing a programming issue. To resolve these issues please follow the steps below.
    Step 1: Update the Firmware:
    The internal programming Firmware Version within your machine is essentially the 'brains' of your printer. It controls what the printer does and how the printer does it. If there is any issues within the internal programming on your printer, you printer will not perform properly. To ensure that you are running the latest version of programming can I please have you click here. Once the website opens select the Download button on the top left. Follow any onscreen instructions to send the Firmware to your printer.
    Once the Firmware has been successfully updated, please test the document feeder again. Should the issue persist, please proceed to the next step.
    Step 2: Check Hardware:
    There may be a dirty roller or piece of debris or paper within the document feeder mechanism that could be causing a paper jam message. This could also cause your machine to attempt to pull in additional pages after the paper has already been fed. To check the document feeder can I please have you click here. Once the support document opens please run through Solution one, Solution two, and Solution four. When you clean the document feeder be sure to keep an eye out for any paper or debris that may be jammed in there.
    Once these steps have been completed, please test your document feeder again.
    Please respond to this post with the result of your troubleshooting. Good luck!
    X-23
    I work on behalf of HP
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    Click the "Kudos, Thumbs Up" on the right to say "Thanks" for helping!

  • ADF issue on weblogic

    Hi All,
    I deplyed the ADF application on weblogic92, but when I tried to render the CLOB object on to the UI page I do not see the CLOB object instead I see
    the following
    weblogic.jdbc.wrapper.Clob_oracle_sql_CLOB@163
    instead of xml text.
    Any pointers ????????????????????????????

    I'm not sure that this will solve it, but it is worth a try.
    Assuming you are using ADF BC and the Oracle data type mapping
    Locate the setupadf.cmd/setupadf.sh file that was created by the ADF Installer in your domain home directory.
    Remark the line
    set CLASSPATH=%CLASSPATH%;..\..\..\weblogic92\ADF\jlib\bc4jdomgnrc.jar
    and add the following line instead
    set CLASSPATH=%CLASSPATH%;..\..\..\weblogic92\ADF\lib\bc4jdomorcl.jar
    This will make sure you are using the Oracle specific types and not the generic JDBC types.

  • ADF Issue - LOV based on parameter not appearing

    Hi All,
    I am getting error as “AttibuteManagerID required” in my page
    Technical Description:
    Application Module: EOMUIModelAMImpl.java
    View Object:
    View1: EOMVO
    View2: NameOfNomineeVO - has a criteria Requestor_PersonId =: ManagerId(View criteria have a validation of type 'required' for attribute Requestor_PersonId )
    In View1 one of the attribute is NomineePersonId(Long) is an LOV which uses View2. View2 has a criteria with bind variable requestorPersonId(Long) =:ManagerId(Long), which we are setting using the criteria in EOMUIModelAMImpl.java file:
    These are the 2 methods used to set criteria in EOMUIModelAMImpl.java class.
    Method setManagerIdUsingCriteria will set ManagerId to display subordinates of Manager.
    public Long setRequestorPersonId(){
            Long requestorPersonId = 0L;
            try{
    EmployeeOfTheMonthRequestModelAMImpl employeeOfTheMonthRequestModelAM = (EmployeeOfTheMonthRequestModelAMImpl)getEmployeeOfTheMonthRequestModelAM();
    ViewObjectImpl employeeOfTheMonthVO = getEmployeeOfTheMonth();
    System.out.println("----- Before Calling fetchRequestorPersonId in EmployeeOfTheMonthRequestUIModelAMImpl-----");   
                requestorPersonId = employeeOfTheMonthRequestModelAM.fetchRequestorPersonId().longValue();
    System.out.println("--After Calling fetchRequestorPersonId in EmployeeOfTheMonthRequestUIModelAMImpl--"+requestorPersonId);
    employeeOfTheMonthVO.setApplyViewCriteriaName("EmployeeOfTheMonthVOCriteria");
    employeeOfTheMonthVO.setNamedWhereClauseParam("requestorPersonId", requestorPersonId);
    System.out.println("--End of setRequestorPersonId in EmployeeOfTheMonthRequestUIModelAMImpl--"); 
                } catch (Exception e) {
    e.printStackTrace();
    return requestorPersonId;
    * This method is used to set the value for bind variable ManagerId
    public void setManagerIdUsingCriteria(){
    Long requestorPersonId = 0L;
                EmployeeOfTheMonthRequestModelAMImpl employeeOfTheMonthRequestModelAM = (EmployeeOfTheMonthRequestModelAMImpl)getEmployeeOfTheMonthRequestModelAM();
    requestorPersonId = employeeOfTheMonthRequestModelAM.fetchRequestorPersonId().longValue();
    System.out.println("--After Calling fetchRequestorPersonId from setManagerIdUsingCriteria--"+requestorPersonId);
    ViewObjectImpl fetchManagerId = getNameOfNominee();
    fetchManagerId.setApplyViewCriteriaName("NameOfNomineeVOCriteria");
    // requestorPersonId =300000001130413L;
    fetchManagerId.setNamedWhereClauseParam("Requestor_PersonId", requestorPersonId);
    fetchManagerId.executeQuery();
    System.out.println("--End of setManagerId in EmployeeOfTheMonthRequestUIModelAMImpl----");
    Method setManagerIdUsingCriteria() is able to fetch  ‘requestorPersonId’ value but it is not able to set the criteria after query execution.
    Please share your ideas.
    Thanks

    Issue is resolved after mapping bind parameter variable to the db attribute in view accessor.

  • [ADF-11.1.2] Locking issue with SQL 92

    I see one Locking issue with SQL92 Oracle ADF Application.
    ADF Version: [ADF-11.1.2]
    Database: Oracle 10g Express Edition
    Situation 1:
    With Following setting:
    File: Application Resource > Description > ADF META-INF > adf-config.xml
        <startup>
          <amconfig-overrides>
            <config:Database jbo.SQLBuilder="SQL92" jbo.locking.mode="optimistic"/>
          </amconfig-overrides>
        </startup>I have a page showing record 'x' of view object. I open same record on another page. Now I have same record showing on two different tabs of browser.
    1. I modify first record and save it. It worked... Got commited to database.
    2. I goto second tab and modify same record and tried to same it. It throws me an error - Another user has changed the row with primary key oracle.jbo.Key[38 ] . As expected...
    3. I then, reopen the same record on 3rd tab of browser. Modify it and tried to save it. It just hang... as if it is processing the record endlessly.
    If I see the Log:
    <BaseSQLBuilderImpl> <doEntitySelectForAltKey> [312] BaseSQLBuilderImpl Executing doEntitySelect ... (true)
    <BaseSQLBuilderImpl> <doEntitySelectForAltKey> [313] Generating new LOCK statement
    <BaseSQLBuilderImpl> <buildSelectString> [314] Built select: 'SELECT ID, CI_ID, COLUMN_NAME, DISPLAY_COLUMN_NAME, COLUMN_VALUE, CREATE_DATE, CREATE_BY FROM ESUSER.CI_AUDIT'
    <BaseSQLBuilderImpl> <doEntitySelectForAltKey> [315] Executing LOCK "SELECT ID, CI_ID, COLUMN_NAME, DISPLAY_COLUMN_NAME, COLUMN_VALUE, CREATE_DATE, CREATE_BY FROM ESUSER.CI_AUDIT WHERE ID=? FOR UPDATE"
    <BaseSQLBuilderImpl> <bindWhereAttrValue> [316] Where binding param 1: 38
    That's it.. nothing happens further.. If I execute above query on SQL Worksheet, it doesn't come up with the result. Just hang for something...
    SELECT ID, CI_ID, COLUMN_NAME, DISPLAY_COLUMN_NAME, COLUMN_VALUE, CREATE_DATE, CREATE_BY FROM ESUSER.CI_AUDIT WHERE ID='38' FOR UPDATE I can execute above query for other record of same table but not '38'. Even if I fire commit command to database, it is not working.
    I have to restart the database services to bring everything to normal state.
    Situation 2:
    With Oracle as Database :
        <startup>
          <amconfig-overrides>
            <config:Database jbo.SQLBuilder="Oracle" jbo.locking.mode="optimistic"/>
          </amconfig-overrides>
        </startup>Everything is working file. i.e. at step 3, record is getting modified successfully with following log:
    <OracleSQLBuilderImpl> <doEntitySelectForAltKey> [27] OracleSQLBuilder Executing doEntitySelect on: ESUSER.CI_AUDIT (true)
    <ADFLogger> <begin> Entity read all attributes
    <OracleSQLBuilderImpl> <buildSelectString> [28] Built select: 'SELECT ID, CI_ID, COLUMN_NAME, DISPLAY_COLUMN_NAME, COLUMN_VALUE, CREATE_DATE, CREATE_BY FROM ESUSER.CI_AUDIT CIAudit'
    <OracleSQLBuilderImpl> <doEntitySelectForAltKey> [29] Executing LOCK...SELECT ID, CI_ID, COLUMN_NAME, DISPLAY_COLUMN_NAME, COLUMN_VALUE, CREATE_DATE, CREATE_BY FROM ESUSER.CI_AUDIT CIAudit WHERE ID=? FOR UPDATE NOWAIT
    <ADFLogger> <addContextData> Entity read all attributes
    <OracleSQLBuilderImpl> <bindWhereAttrValue> [30] Where binding param 1: 38
    <ADFLogger> <addContextData> Entity read all attributes
    <ADFLogger> <end> Entity read all attributes
    <ADFLogger> <end> Lock Entity
    <ADFLogger> <begin> Before posting the entity's changes
    <ADFLogger> <begin> Updating audit columns
    <ADFLogger> <end> Updating audit columns
    <ADFLogger> <end> Before posting the entity's changes
    <OracleSQLBuilderImpl> <doEntityDML> [31] OracleSQLBuilder Executing, Lock 2 DML on: ESUSER.CI_AUDIT (Update)
    <OracleSQLBuilderImpl> <buildUpdateStatement> [32] UPDATE buf CIAudit>#u SQLStmtBufLen: 210, actual=60
    <OracleSQLBuilderImpl> <doEntityDML> [33] UPDATE ESUSER.CI_AUDIT CIAudit SET COLUMN_VALUE=? WHERE ID=?
    <ADFLogger> <begin> Entity DML
    <OracleSQLBuilderImpl> <bindUpdateStatement> [34] Update binding param 1: cip7ri1
    <OracleSQLBuilderImpl> <bindWhereAttrValue> [35] Where binding param 2: 38
    <ADFLogger> <addContextData> Entity DML
    <ADFLogger> <end> Entity DML
    Can any one please tell me, what is the issue with SQL92 setting ?
    Edited by: Anandsagar Sah on Mar 11, 2012 8:10 AM

    The framework works correctly in the Situation #1. Please, note that the locking statement in this case is "SELECT ... FOR UPDATE", but not "SELECT ... FOR UPDATE NOWAIT" (as it is in the Situation #2). When you entered the 2nd tab and tried to update the row, then the framework executed the locking statement and the row was locked (and it remained locked because the framework detected that another user had modified the row, so it stopped the processing and no COMMIT operation was executed). When you entered the 3rd tab and tried to update the row, then the framework tried to lock the row againg, but the locking statement was blocked by the existign lock and it started waiting on the lock from the 2nd tab. So this is expected behaviour.
    The interesting question is why you do not get any error in the Situation #2. In my opinion you should get an error because the locking statement from the 3rd tab should fail immediately (because the row should have been locked from the 2nd tab and the locking statement is with NOWAIT option). I suspect that when the DB is Oracle and you use Oracle SQLBuilder, then the ADF issues a DB savepoint at the beginning of the DML operation and rolls back to the savepoint is a case of some failure, so the 2nd tab has not left any lock. You can check this by setting on SQL trace on the DB server.
    Dimitar

  • Error msg after scan "ADF does not contain any pages"

    HP office jet 6600 has worked well for months, but recently 3 out of 5 times that I tried to scan from the ADF, whether one page or many, the scanner runs through its cycle and then gives me the following error: “The scanner automatic document feeder (ADF) does not contain any pages. Insert the pages to be scanned into the ADF and try again.”
    Sometimes I just run it again and it works. I'm using HP scan that came with the 6600 download full driver package; running Windows 7 64-bit. I use the scanner significantly and it has operated perfectly for over a year and I haven't changed anything that I know of.Appreciate any help that somebody can give me… I have cleaned rulers and "flicked the little white thing", and some of the other things that were mentioned for similar problems.

    Hello  I would be happy to help you with the automatic document feeder (ADF)  issue you are having with the Officejet 6600. Even though it's a different issue this document has several steps you can try; Vertical Bands, Lines, or Streaks in Copies, Faxes, or Scans. I've copied the applicable steps here for you. Clean the scanner glass and scanner lid If the scanner glass or the white underside of the lid has fingerprints, smudges, lint, dust, or other debris, this can slow performance and affect copy and scan quality. To resolve this issue, clean the product.Before you begin, gather the following materials:Several clean, soft, lint-free clothsMild glass cleaner
     CAUTION:Use only glass cleaner to clean the scanner glass. Do not use cleaners that contain abrasives, acetone, benzene, or carbon tetrachloride. These substances can damage the product. Avoid isopropyl alcohol (rubbing alcohol) because it can leave streaks on the glass.Press the Power button () to turn off the product.Disconnect the power cord from the rear of the product.Lift the scanner lid.
    Figure : Lift the scanner lid
    Spray a clean, soft, lint-free cloth with mild glass cleaner.
     CAUTION:To protect the scanner, do not spray the glass cleaner directly on the glass.Clean the scanner glass, and the glass strip next to the scanner glass, with the lint-free cloth.
    Figure : Clean the scanner glass and the glass strip
    Clean the white underside of the scanner lid.
    Figure : The underside of the scanner lid
    Dry the scanner glass and the glass strip thoroughly with a clean, dry cloth or chamois to prevent spotting, and then dry the white underside of the scanner lid.
     NOTE:Do not use paper-based wipes or tissues that can leave fiber residue.Close the scanner lid.Reconnect the power cord to the rear of the product.If the product does not turn on by itself, press the Power button () to turn it on.Try to copy, fax, or scan again.If these steps resolved the issue, you do not need to continue troubleshooting.If the issue persists, continue to the next solution.
    Clean the automatic document feeder (ADF)
    Follow these steps to clean the automatic document feeder (ADF), and then make blank copies to check if the issue is resolved.Step one: Clean the ADF rollers and separator padFollow these steps to clean the automatic document feeder (ADF).Gather the following materials:A clean, lint-free cloth, or any cloth that will not come apart or leave fibersDistilled, filtered, or bottled water (tap water might damage the product)Remove any originals from the document feeder tray.
    Figure : Remove any originalsPress the Power button () to turn off the product.Disconnect the power cord from the rear of the product.Lift the cover of the ADF until it stops.
    Figure : Lift the ADF cover
    Locate the pick rollers and the separator pad.
    Figure : Locations of the pick rollers and the separator pad
    The ADF coverThe pick rollersThe separator padLightly dampen a clean lint-free cloth with distilled or bottled water, and then squeeze any excess liquid from the cloth.Use the damp cloth to wipe any residue off of the separator pad.
    Figure : The separator pad
    Use the damp cloth to wipe any residue off of the pick rollers.
    Figure :
    Dry the rollers and the separator pad with a clean, dry, lint-free cloth.Do not close the ADF cover. Continue to the next step to clean the glass strip in the automatic document feeder.
    Clean the glass strip in the automatic document feeder
    Follow these steps to clean the glass strip underneath the mechanism in the automatic document feeder (ADF).
     NOTE:The images in this step might not be of your product, but the steps are the same.If you have not done so already, disconnect the power cord from the rear of the product.Remove any originals from the document feeder tray.
    Figure : Remove any originals
    Open the ADF cover, and then lift the ADF mechanism.
    Figure : Lift the ADF mechanism
    Lightly dampen a clean, soft, lint-free cloth with a mild glass cleaner.Gently clean the glass strip inside the ADF, and then thoroughly dry it to prevent spotting.
    Figure : Clean the glass strip
    Lower the ADF mechanism back into place, and then close the ADF cover.Step three: Make a blank copy using the scannerFollow these steps to make a blank copy using the scanner.Lift the scanner lid.Figure : Lift the scanner lidRemove any originals from the scanner glass.Close the scanner lid.Load unused, plain white paper into the input tray.From the home screen on the product control panel, touch Copy ().Touch Start Black to start the copy.If the copy is clean, continue to the next step to make a copy using the ADF.If the copy has vertical bands, lines, or streaks, there might be dust inside the product, poor internal connections, or the product might be damaged.  Please let me know if these steps resolved your issue, or if there is anything else I can do to help.  I look forward to hearing from you!   Thanks, 

  • Question about ADF Menu Navigation

    i create an adf application, include ADF Menus for Page Navigation.
    i found the URL displayed in the browser always show previous page when switch between different tabs.
    http://dl.dropbox.com/u/6517186/Application14.7z
    this is the application I've created.when click tab1,it shows view2 url. click tab2,it shows view1 url.
    not sure if there is mistake in my configuration? or a adf issue? thanks

    Use redirect option to create a new browser URL for the view activity.
    So try adding a <redirect/> tag in the site-menu.xml as:
    <view id="view1">
    <page>/view1.jspx</page>
    <redirect/>
    </view>
    <view id="view2">
    <page>/view2.jspx</page>
    <redirect/>
    </view>
    Edited by: umesh.agarwal on May 10, 2012 2:06 AM

  • Using Tree view using treeTable in ADF

    We tried using oracle ADF components along with myFaces.
    ADF has its own component called ‘treeTabe’ which shows treeView in a table format.
    But we faced the following main problems with it.
    # The treeTable can have only one root node. Hence we cannot show multiple nodes at the root level.
    # The sorting of the rows ( by clicking the column header ) which can be done in a ‘table’ component cannot be done with ‘treeTable’ component.
    # The alternate coloring of the rows does not work properly in treeTable unlike the table component.
    Can you please suggest ways to get the above funtionalities( multiple nodes to be shown as in the root-level, sorting to be done by clicking the column header, row banding for alternate rows) working using treeTable or some other component.

    I think you should consider EO Tuning for performance as internally ADF issues BULK DMLs and that should be good on the performance side.

  • ADFS 2.1 Farm Network Requirement

    We are setting up an ADFS 2.1 Farm with proxy servers. The 2 proxy servers will be placed in 2 DMZ (different IP subnets) separately. The 2 Federation
    servers will be placed in internal network at different locations (different IP subnets) as well.
    Questions: What’s the network requirement in order for the proxy servers to be able to communicate each other, and to the internal federation servers,
    and to the external partners?
    Thanks,
    Kevin

    Hi,
    Please refer to the following articles:
    Checklist: Setting Up a Federation Server
    http://technet.microsoft.com/en-us/library/dd807086.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/2735.ad-fs-content-map.aspx#Plan_and_Design
    Meanwhile, for ADFS issue, i would suggest you could ask in ADFS forums:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=Geneva
    Regards.
    Vivian Wang

  • Expose ADF-BC as ejb and use it in UI from the datacontroller

    Hi Experts.
    Here i am looking forward some experts view and guidelines on this deployment architecture question. Currently i have deploped one ADF Web fusion application which has ADF-BC and web. In that web project datacontroller side i can be able to see the view object instances under each business service. Also the web has some UI bindings too. Now the application is working fine fine on one weblogic instance.
    question1) Can i deploy this above project into two weblogic instances one with ADF-BC model ( if yes how to deploy that alone) and the other web into the another instance. ( If yes can to configure the project)
    question 2) Now can i expose the ADF-BC as ejb and use it in the same way in the web (like drag and drop from the Data controller). ? I tried the option expose the ADF-BC as ejb In this case if the VO instance access methods are not exposed. So how can i access them in the UI? For example, assume if we have 2 view object EmployeeView and DepartmentView in the application module, then after immediately create the AM, the datacontrol shows the view object instances name like EmployeeView1, DepartmentView1 and also in the web we just drag and drop to create appropriate UI. This is fine. Now i create the ejb based on the AM. In the Remote interface i have the
    void removeEntity(Object entityDTO)
    method. If i look at the datacontrol section still the data controls remains same. I think this datacontrol still shows the ADF-BC direct connectivity. If i try to create the new ejb data control which points to the same AM ejb for web, then i couldn't see the above view instance name called EmployeeView1, DepartmentView1, where i can drag and drop in the UI.
    I can only see methods like EJBHome etc.....
    So this means i cannot use the Exposed EJB from the ADF-BC Application Module to drag and drop in UI like the ADF-BC direct unless we explicitly create the view access methods in the interface. Am i correct?
    Or still am i getting the wrong assumption.
    Much appreciated if u point some code to understand this.
    -t

    Thanks for the reply.
    Basically we have found the way to expose the ADFBC as ejb and use it for data binding in the UI. I will update this thread soon about our finding. But now i have an architecture question, can we deploy as 3-tier deployment for ADF-BC using the exposed ejb interface? Because i am worrying we might run into some ADF issue in furture if we move this path. Oracle gurus please share your ideas or thoughts.
    -t

  • ADF 10.1.3 : Cookies not loading properly

    Hi All,
    I am having problems loading cookies in my application.
    I am using following code to read cookies:
    FacesContext vFacesContext = FacesContext.getCurrentInstance();
    ExternalContext vExternalContext = vFacesContext.getExternalContext();
    Map vRequestCookieMap = vExternalContext.getRequestCookieMap();
    Cookie myCookie = (Cookie)vRequestCookieMap.get(cookieName);
    System.out.println(myCookie.getMaxAge());
    System.out.println(myCookie.getPath());
    System.out.println(myCookie.getValue());
    Now cookie is having proper path and 1 year age but on fetching it prints age as -1 and path as null also sometimes "getValue" fetches only partial value of total text.
    I am not sure whether issue is due to browser [I am using latest mozilla and IE7] or oc4j or some ADF issue.
    My main concern is "getValue" should return complete text.
    Any inputs will be great help.
    Regards
    Lokesh

    This is down to implementation rather than an issue.
    Whilest navigating away, you can always do getDBTransaction.rollBack() -- CAUTION!!!: it rolls back all views attached to the AM. So make sure you're not discarding other View changes which you might want to commit.
    Or, you can re-set the status of the row ViewRowImpl.setNewRowState() check javadoc for detailed explanation of various row/entity states
    Or, you can remove the row(s) before you navigate away. ViewRowImpl.remove()
    Or, you can revert the changes. ViewRowImpl.revert()
    You can use whichever best suits your usecase implementation.
    Regards
    Srini

Maybe you are looking for

  • Drag and Drop not supported in TextBox in Automation

    Hi All,     This is regarding the drag and drop functionality support in text box in Flex automation. I am using the automation API of Flex. since our application is having multiple modules, I had to use the automation swc given as an attachment in t

  • Use data pump 's FLASHBACK_SCN

    Hey, I try to export a schema, like below, expdp \"/ as sysdba\" DIRECTORY=data_pump_dir1 DUMPFILE=xxx.dmp LOGFILE=data_pump_dir1:exp_xxxx.log SCHEMAS=xxx FLASHBACK_SCN=xxxxx so first, I need to get current database SCN. SQL> select flashback_on, cur

  • Location field in Asset master

    Hi Folks, Need your help to know the path for" Location" field in SPRO ? This field is maintained in the time dependent tab of the asset master. Thanks Venkatesh Billakanti

  • I just purchased Adobe CC and cannot launch any applications after installation.

    I installed Photoshop etc and every time I click on the application it brings me to the download center.

  • -ve quantity in bom

    Dear all, I am putting -ve quantity in bom for one component .As per proposation same quantity comes in Production order.then I do GI and GR . let me know when this -ve quantity component will be trigged? at time of GR or GI ? but in my case both thi