Want to state maintain of h:selectOneMenu

Hi,
i have some filter option with <h:selectOneMenu>
when i add some thing to with selected value from <h:selectOneMenu> ,*want to come with the same value after adding* .
Edited by: My_Problems on Jun 17, 2008 9:23 AM

Hi,
<h:outputText id="order1" value="Filter on cd/dvd type"/>   <h:selectOneMenu id="mymenu1" >
                    <f:selectItem itemValue="" id="val1" itemLabel=""/>
                    <f:selectItem itemValue="1" id="val2" itemLabel="*Licence*"/>
                    <f:selectItem itemValue="0" id="val3" itemLabel="Open source"/>
               </h:selectOneMenu>
I have filter option in main view page
1-Licence
2-Open source
suppose i filter with Licence get all result with Licence cd/dvd type
after that i add a new cd/dvd ,after adding when i came back to the main view page i want to same selected state of
<h:selectOneMenu > that was Licence,

Similar Messages

  • After validation want to state maintain of h:outputText /

    Hi,
    I have some fields with validation,
    after validation want to state maintain of <h:outputText />
    <h:outputText id="form_title" value="#{viewCDBean.form_title}"/>
    <h:outputText id="output1" value="Title"/><h:inputTextarea id="cd_title" value="#{viewCDBean.cd_title}" rows="2" cols="40" required="true"></h:inputTextarea><h:message for="cd_title" style="color:red"/>

    Add a h:inputHidden component which saves the h:outputText value for the next request.

  • ADF JSF data binding: why state maintained between requests?

    Dear All,
    i want to know when and how the state of jsf can be maintain automatically by
    adf model.
    i have 2 pages, pageA.jspx and pageB.jspx. in pageA.jspx show some data in
    datatable (bound to methodIterator), when it go to pageB.jspx from pageA.jspx
    and then back to pageA.jspx, the state of the pageA.jspx seems can be stored
    by adf somewhere else.
    i.e. (pageA.jspx -> pageB.jspx -> pageA.jspx)
    ****all the backing beans are request scope.
    according to the adf dev guide, only the the page binding data for the current page will maintain automatically, then why when pageA.jspx's state is stored ?
    do adf store the state in session?? when can i rely on this nature to avoid reload
    pageA.jspx's data?? or how can i clear the state of pageA.jspx (blank page) (return from pageB.jspx)??
    the adf developer guide seems with little information about the page/binding data
    management..where can i found more information about this??
    thank you
    lsp

    Hi,
    i am using EJB + JSF + adf model.
    in this case its the iterator that survives the page navigationdo you mean that all iterator(method/variable..etc) can survive between page navigation??
    You can decide to refresh the iterator on each page load or re-execute the query if
    you don't want this.i want to 'clear' the iterator's data, but not to re-execute/refresh it to get data
    (as this will cause the underlying methodAction be executed once more)..i just want, say
    to display a 'blank' page, say blank pageA.jspx.
    IS THERE ANY REFENENCE document that describe the detail behavior..
    1. when state maintain?
    e.g. case 1 pageA->pageB->pageA->pageB (pageB's state maintained?)
    e.g. case 2 pageA->pageB->pageC->pageA (pageA's state maintained?)
    2. how do the state maintained??
    the iterators are stored in the session or store in the request (e.g. serialized in
    hidden input..etc)? will it lead to large memory usage in server side (until session
    end)?
    i can't find information about the state managementin
    the adf developer guide (not adf bc)..
    could you please point out where can i found these info??
    thank you.
    lsp
    Message was edited by:
    lsp
    Message was edited by:
    lsp
    Message was edited by:
    lsp

  • User clicks one link and goes to other and comes back state maintain prob

    1st say 2 links r there,
    aaa --> if u click on "aaa" (my requirement) as shown below.
    problem : the bean values still maintaining when i go to "bbb" and come back to "aaa".
    ======
    NOTE: when user enters all fields and clicks on button it goes to "second.jsp" their ajax response (1 table) generating. That means page wont get refreshed. (panel is fixed) only down 1 table will generate.
    on FROM DATE AND TO DATE basis.
    if user presses on F5 also state maintaining with the help of bean object.
    i.e, say user in response table clicks on "page 5" then presses on F5 .
    but problem is when user goes to "bbb" link or "ccc" or "dddd" (separate interface or link) which is not related to this
    (they r nearly 50 interfaces or links) and comes back to "aaa" still old response is there.
    NOTE: i can clear the bean object, but if i clear the bean object in "onload" or general i cant handle F5 issue.
    bbb
    ccc
    ddd
    sample
    =====
    first.jsp
    =====
    <jsp:useBean id="sd" class="TestPage" scope="session">
    </jsp:useBean>
    <jsp:useBean id="sptb" class="TestPageBean" scope="session">
    </jsp:useBean>
    <script type='text'/javascript'>
    function testfun()
    --ajax response.
    forwarding to to
    "second.jsp"
    </script>
    <%
    HttpSession mdsession=request.getSession(false);
    if(mdsession!=null){
    String s1=sptb.getTxtname();
    String s2=sptb.getTestselect();
    %>
    <form>
    <table>
    <tr><td><input type='text' name='fromdate' value='fromdate'></td></tr>
    <tr><td><input type='text' name='todate' value='todate'></td></tr>
    <tr><td><select name='testselect''><option value=1>aaa</option></select></td></tr>
    <tr><td><input type='contains' name='txtname' value=''></td></tr>
    <tr><td><input type='button' name='clickname' value='Click' onclick='testfun()'></td></tr>
    </table>
    </form>
    <%
    %>
    second.jsp (this is ajax response)
    =======
    <%
    String txtname= request.getParameter("txtname");
    String testselect= request.getParameter("testselect");
    String fromdate= request.getParameter("fromdate");
    String todate= request.getParameter("todate");
    --storing in bean
    sptb.setTxtname(txtname);
    sptb.setTestselect(testselect);
    sptb.setTxtname(fromdate);
    sptb.setTestselect(todate);
    ---database conn...resultset values retrieved on "fromdate" and "to date" basis
    out.println("<table><tr><td>testeno</td><td></testename></td><td>fromdate</td></tr></td>");
    while(rs.next())
    out.println(rs.getString(3);
    %>
    output
    ====
    input screen
    1 fromdate
    1 todate
    1 selectbox
    1 contains
    1 button
    -> after clicking on button ajax response displayed below is (with out page refresh)
    1 table gets displayed on "FROM DATE" AND "TO DATE" BASIS
    with pagination

    Michael,
    Thanks a lot for the reply.
    In the case you have mentioned, how does application has to know the user is 'moving away'[clicking on other role] from the application.
    Thanks in advance,
    Regards,
    Ganga

  • Flexlib windowshade opened state maintain

    Hi,
    I have flexlib WindowShade component in repeater in my Flex + AIR application.
    <mx:XML id="mainMenuXML">
        <items>
            <item value="abc" />
            <item value="xyz" />
            <item value="lmn" />
        </items>
    </mx:XML>
    <mx:VBox width="100%" height="100%">
            <mx:Button label="Button" click="button1_clickHandler(event)"/>
        <mx:Repeater id="rep" dataProvider="{mainMenuXML.item}">
            <flexlib:WindowShade label="{rep.currentItem.@value}" width="50%" opened="{rep.currentItem.@open}">
                <mx:Label text="xxxxxxxxxx" />
            </flexlib:WindowShade>
        </mx:Repeater>
    </mx:VBox>
    Now in button1 click handler I am appending child in XML(mainMenuXML) resulting adding one more windowshade instance. But the problem is it opens all the windowshade intances.
    I need to maintain the opened states after adding a new windowshade instance. For example: Initially I get 3 windoshades with labels: abc, xyz, lmn all opened. Now I close the xyz windowshade instance(by clicking on the header) Now I click on button which appends child in mainMenuXML and also add a windowshade instance with some label "pqr". But now I see all the windowshade instances opened. But it should be like abc, lmn, pqr should be opened & xyz closed(property opened="false").
    Please help me in maintaining the opened true/false state of windowshade instances.
    I tried to add a property in dataprovider Bindable to opened property of windhowshade but didn't worked for me.
    Thanks in advance

    Create a loop and updated each table separately.
    Other than that you question is too vague to give a better reply.

  • Help! How do i make a button state maintain when there are other buttons on the page?

    I need to have the down state of pressed buttons stay in that state when there are multiple buttons being pressed on the same html page...

    Hello and welcome to the forum,
    Not sure if I understand well, but think you are bumping into the Quiz scope... I have been trying to explain this in a blog post, with other functionalities of Question and Score slide:
    Question Question Slides
    Lilybiri

  • I just set up family share, but my kids show up as adults using their existing Apple ids. I want their statis to be child so I can set some parameters. Can this be changed?

    I Just set up family share using my children's existing Apple ids. But theit statis show up as adult, is there a way to change this?

    No, it's only with family sharing that child accounts can now be created (by the family organiser), you can't change existing accounts to be child accounts. You will either have to keep them with their existing adult accounts, or you can create new child accounts for them : Family Sharing and Apple IDs for kids - Apple Support

  • Customer statements - Email & print at the same time - Is this possible?

    Hi all,
    We generate customer statements at regular intervals and send them to the customers, through mail, fax and email.
    We have a print program which generates the customer statement. For some customers we want the statements to be printed as well as sent by e-mail simultaneously.
    Can anyone please let me know which field, can we use to tell the system to look at if it has to only print / email / email & print.
    We thought of using Bank statement field in the correspondence tab (KNB1-XAUSZ).
    We created 4 values,
    A - print
    B - Email
    C - print & email
    D - Fax
    However when we use 'C' the print program only sends the email, without printing.
    Can anyone please let me know if I am using the wrong field? Is there any other field that can be used for our requirement.
    Thanks in advance.
    Krishna

    Hi,
    I know it is an old thread. Just to add to what Eduardo explained here, Answer for your question is, yes it is possible to control it through the selection- screen. No need for a new Z-program for this. Even if you check the OSS note 549119, it is only talking about controlling it through master data if you check the mentioned include LXFKOF01(whether Email id maintained or not)
    What we have done is, we have controlled the same through correspondence types. We copied the existing ones into new ones starting with E*. For example: SAP01 to EAP01 to denote that these are all for emails. And we check the correspondence type in BTE 2310 which is available in parameter I_BKORM-EVENT. Based on that, you either set FINAA-NACHA      = 'I' (Email) or FINAA-NACHA      = '1' (Print) or even you can include fax as well.(FINAA-NACHA      = '2').
    If you have some hard coded stuff in your forms, what you can do is, you can reset the correspondence type back to SAP01 from EAP01 by using field symbols , by changing '(RFKORD10_PDF)BKORM-EVENT'.  Make sure you use correct print program in place of RFKORD10_PDF.
    So when you run F.27 or F.62 with SAP01, it will mass print and when your run the same with EAP01, it will mass email.
    With regards,
    Gokul

  • Information about adf data model's state management in JSF/ADF faces?

    Dear All,
    i am developing an application with JSF/ADF faces + using
    adf data model (EJB, not adf bc)...
    i want to know more about state management of adf data model..
    1. under what condition, will the data in the binding context
    (methodIterator, variableIterator, accessorIterator..etc) be maintained accross
    http requests? say browse pageA.jspx, pageB.jspx, pageC.jspx..then do data
    in the corresponding pages saved somewhere else until session timeout?
    2. how do the binding context data be saved ?? http session?
    i can't find detail information in the adf bc dev guide and the adf dev guide..
    could anyone give me more information about this?? any better document??
    i have asked these question several times...but seem nobody can give me a
    full picture about the adf data model's state management....it is quite important
    in order to develop good application using adf data model.
    my company have brought oracle's support service...can i get these information
    through metalink (open a SR) ?? or actually no such information available ??
    btw, after playing with adf data model for a few weeks, i do find it is very
    hard to learn it... no complete document, information is just by providing example...
    adf data model do make:
    1. simple logic, supported by adf, more simple in coding
    2. simple logic, not supported by adf, more complex in coding
    3. complex logic, much more complex in coding...brain damage..
    lsp

    Hi,
    actually, these pages don't explain the state management about the adf data model's iterators?
    i want to know the state management of the iterators...for some iterators..it's
    state is maintained across requests...
    please see my previous post: ADF JSF data binding: why state maintained between requests? that Frank Nimphius said:
    "in this case its the iterator that survives the page navigation"...
    in the adf dev guide..section 5.5.5..it says: "Upon each request, the iterator bindings are refreshed to rebind them to the
    underlying RowSetIterator objects. By default, the rowset iterator state and the
    data caches are maintained between requests."
    in dev guide, it seems state is maintained for request for the same page, but not
    accross different pages. but in fact, the rowset iterator do survive...
    any detail document that write down the actual behavior of the iterators?
    thank you.
    lsp

  • Customer Statement with opening and closing balances

    Dear Forum,
    The users want to generate the Customer Statement with opening and closing balances like the traditional one. The statement now generated gives the list of all open items as on date, but the users want the statement with opening balances as on the date of the begining of the range specified and the closing balance at the end of the period for which the statement is generated. Is there a way to generate the same from the system.
    Thanks for the help.
    Regards,

    Hi,
    SPRO> Financial Accounting (New) > Accounts Receivable and Accounts Payable > Customer Accounts > Line Items > Correspondence > Make and Check Settings for Correspondence
    You can use the program RFKORD10 with correspondance type SAP06 for your company code
    This program prints account statements and open items lists for customers and vendors in letter form. For account statements, all postings between two key dates, as well as the opening and closing balance, are listed.
    Regards,
    Gaurav

  • If-then statement in formula node

    **Note - The attached file shows the current block diagram.
    I have a formula node inside a for loop. Inside the formula node I am trying to program the if-then statement:
    If T1<2.0E-5 OR T1>5.5E-4 THEN GOTO 3
    U7=U7+V
    I have 4 items I need help with:
    (1) Is 'II' the correct operator for 'OR'?
    (2) Is 'goto' an acceptable operator within LabVIEW?
    (3) 'U7' is building a 1D array. How do I need to define it? Is it simply 'int U7'? Also, I will add an output value named 'U7' on the formula node wall with an indicator wired to it from outside the for loop.
    (4) Is my use of the equal sign appropriate or do I need to use '=='?
    Thanks for the help.
    Philip
    Attachments:
    if-then_in_FN.jpg ‏18 KB

    Thanks for the help. I went ahead and rewrote the program so I could omit the 'goto's. Another problem that I am having is that I want 2 statements for 1 assignment:
    if (T1>=.002004 && T1<=.002584)
    B1=U
    A1=V;
    I want to assign both B1 and A1 values when the above condition is true. I tried a comma between the U and A1 but it doesn't work as well. Should I define A1 and B1 separately? Or would this create problems?
    if (T1>=.002004 && T1<=.002584)
    B1=U;
    if (T1>=.002004 && T1<=.002584)
    A1=V;
    Thanks,
    Philip

  • 'genius' broke my macbook, wants me to pay for it.

    I took to apple today so they could replace my wrist pad- its chipping. [I have a macbook, apple care, etc.. the screen cracked when it was 3 months old (bought it 8/06), the right hinge was broken (and is again now), I got both replaced for about 600 bucks. I go in today to get my keyboard/keypad etc replaced b/c they said it was still under warranty.. I had to wait when I got to the genius bar so I checked my email and other things (on my computer, in front of the tech, he used it to look up my serial # and then asked me to shut it down), he checked my comp, made me sign the papers, checked my warranty info and such and took it to the back for repair. He came back abt 45mins later and tells me there is 'errosion' inside my comp, prob water damage, that I should send it off to apple to have the diagnostic done etc.. I asked to see my comp, he brings it out totally gutted and shows me what he is talking abt (didnt look like anything to me, just a few spots on some curvy copper thing).. He tells me he's voiding my warranty.. I was confused b/c I havent spilled anything in it/he said it was obv working fine so i could leave it be, but should prob send it for a diagnostic. Also, I always have issues so I go in all the time and would have hoped they had seen this.
    Long story short he goes to put my MB back together, another 45mins, comes back out and is doing whatever the genius bar does on their own MB pros, I decided to just make sure everything was okay, (gut feeling) and turn it on. It goes on (I could feel it vibrating/hear the hum) but nothing on the screen. I wait about 20secs and call him over. He hooked it up via firewire to another mb and says, well, basically, your comp is done, it was bound to happen due to the water damage (my comp is dry and he said ERROSION, which happens over time.. which means its BEEN dry whenever whatever happened).. I said, so you're telling me its a coincidence that you took it apart and now it wont work? Even though I was on it two hours ago? IN FRONT OF YOU? He tells me yes, that is what he is saying, if I stayed home the same thing would have happened, tonight, at the same time. Excuse my french, but I call BS. I ask to speak to the manager who gives me the same crap.
    I AM ANGRY and WILL NOT pay for this.. If I had brought in a soggy computer/if it hadn't been working when they took it/if they didn't try and make me look like an a** ('it wouldve died the same minute regardless')/ if he hadn't told me that getting internal repairs done was optional, I'd be fine. But I'm angry and frustrated and have no notes or readings or anything school related but textbooks. They offered me 50% off for the tier 4 repair, but I dont want to pay a penny for this b/c I didnt do anything.. Do I have other options (to make them give me a new one/not pay for him breaking it)? Apple customer relations? Small claims? Any advice you can offer is greatly appreciated b/c I'm sick of getting screwed over by these people and this is clearly not my fault.
    Thanks

    Hi vkd1121,
    I think you have every right to be upset and disappointed when your investment and research tool(s) are not working. While I know it's incredibly odd that your computer failed, after it was reassembled, it's not as rare or random as you might think. I can't tell you how many times I've had a machine that I was working on for a coworker or customer and have completely die in front of me.
    If they performed a full removal of the MLB (Main Logic Board) and noticed corrosion on the circuitry then it has been exposed to liquid, and not "just the other day." I've seen corrosion on circuit boards in as little as 24 hours, but typically it's several days to a few weeks. Not having your exact machine in front me, I'm merely speculating.
    You're obviously not satisfied with the answer or solution provided to you by the staff at the store. You're entitled to that, just as they're entitled to void your warranty for a specific and cited reason. In this case... liquid damage to the internal components.
    The discussions forum will be unable to provide you any further resolution, other than a place to vent. As someone who works in the support department, I completely understand your POV... that being said I also completely understand the store's POV. Without seeing the computer, witnessing the entire transaction or what went on behind closed doors I can think of a few solutions and I'll let you decide what works best for you to being pursuing.
    1. Return to the store, ask for a second opinion on the original diagnosis from another technician, or lead technician.
    2. Request that the send machine out to the repair depot as "flat rate" repair, at which they'll most likely state that it doesn't fit under this category. At which point you'd want to state that you'd like to let the repair depot "re-quote" you if they found liquid damage which caused the failure. If you pursue this option, understand that the data on the hard drive may be lost if they send it out and that if the depot re-quotes to a Tier 4 Accidental you'd then be responsible to pay for the repair or be given the offer to decline. If you decline, the machine would be sent back to the store... unrepaired and a week or so will most likely have passed. You may also be subject to a diagnostic fee, as outlined in the terms and conditions in the repair.
    3. Contact Apple Care, and ask to arrange dispatch pickup on your machine because it won't turn on. The phone technician will most likely see the notes from the retail store, as they all have access to the same system. This is essentially the same option as #2, only you'd take a return visit to the store out of the equation.
    4. You can contact Customer Relations at the phone number provided at http://www.apple.com/contact and speak with them further.
    It'd seem overkill and unnecessary to pursue small claims over this, the costs/fees associated with such would more than likely exceed the 50% discounted price you were offered by the store.
    My suggestions above are just that, suggestions. I certainly respect, trust and value the opinions of the Genius team at Apple Retail stores but as a consumer you're also entitled to satisfaction with your production.

  • F.27 - combined statement for different company codes

    Hi,
       In F.27 transaction, for sending account statement to customer, for a customer with open items in different company codes, a different account statement is generated for each company code. The business wants one statement per customer, with open items from all company codes. We have been working on a investigating a solution, but making a Z-copy of the programs and modify looks too complicated. Is there a solution in FI configuration, which leads to generation of just one account statement per customer.
    Help would be appreciated.
    Thanks
    PH

    HI
    Have you tested the statement by giving multiple company codes in F.27 in Company code selection? You have the option of selecting multiple company codes here, It should solve your problem.
    Award points if usefull.
    sarma

  • How to create RFC(TCP/IP Connections) For BW Maintain BI accelerator Index?

    HI Friend,
        I want to test Maintain BI accelerator Index for CUBE ( RSDDV ), but I don't create RFC(TCP/IP Connections), what Program name enter in Program?
        Because  RSCUSTA tocde need to  enter : RFC BI Accelerator  .
    ERROR:
    SP test: Error in BI Accelerator (module TREX_EXT_GET_TREX_VERSION_INFO)
       BW SERVER:
    Operating system     Windows NT
    Machine type         2x AMD64 L
    Server name          SAPBW1_BW1_01
    Platform ID          562
    Database system      MSSQL
    Release              9.00.13
    Name                 BW1
    Host                 SAPBW1
    Owner                bw1
        Thank you.
    Regards,
    Howard.
    Edited by: flying on Apr 30, 2010 7:39 AM

    Hi Howard,
    is this your first usage of BWA? Normally this config is done by the initial installation normally from your HW vendor.
    Please use the python standalone tool trexadmin to setup this RFC connection:
    1. Log on with the user <sapsid>adm.
    2. Enter the following:
    cd <TREX_DIR>
    ./TREXAdmin.sh
    Go to the tab 'Connectivity' and create a new RFC connection.
    Regards,
    Jens

  • How do I ensure HttpSession state is NOT persisted across server failures?

              I need to PREVENT the data in the HttpSession from being restored if the server crashes.
              I can't seem to find any documentation explicitly documentating how to ensure this.
              Any help would be greatly appreciated.
              Thanks,
              Andrew
              (p.s. this applies to WL5.1sp8 and WL6.1sp2)
              

    WebLogic doesn't serialize and restore sessions when the server is
              shutdown/crashes
              for "memory" sessions. That should not happen. Check the value of
              session.getClass()
              to verify the perisistentStoreType.
              --Vinod.
              "Andrew Larson" <[email protected]> wrote in message
              news:[email protected]...
              >
              > It is set to memory, but it appears to serialize and restore most of the
              sessions
              > when the server is shutdown/crashes. It there a way to set the
              persistence to none?
              > (e.g. in memory, not replicated, and only for the lifetime of the JVM)
              >
              > "Vinod Mehra" <[email protected]> wrote:
              > >What's your persistentStoreType (in weblogic.xml) set to?
              > >
              > >It seems you want persistentStoreType="memory" (which is the default).
              > >
              > >Is that what you are looking for?
              > >
              > >--Vinod.
              > >
              > >
              > >"Andrew Larson" <[email protected]> wrote in message
              > >news:[email protected]...
              > >>
              > >> Yes, in both instances (crash or graceful shutdown) I need session
              state
              > >cleared away.
              > >> This doesn't seem to be happening.
              > >>
              > >> Help please!
              > >> TIA
              > >> Andrew
              > >>
              > >>
              > >> "Vinod Mehra" <[email protected]> wrote:
              > >> >Oh, yes I misread your question. Do you want your sessions to be
              cleaned
              > >> >up
              > >> >even on a graceful server shutdown too?
              > >> >
              > >> >--Vinod
              > >> >
              > >> >
              > >> >"Andrew Larson" <[email protected]> wrote in message
              > >> >news:[email protected]...
              > >> >>
              > >> >> you don't seem to understand - I do NOT want session state to last
              > >> >across a server
              > >> >> crash; I want the session state to be lost, cleared away, gone,
              never
              > >> >to
              > >> >be seen
              > >> >> again.
              > >> >>
              > >> >>
              > >> >> "Vinod Mehra" <[email protected]> wrote:
              > >> >> >Use session persistent store types: replicated or file or jdbc.
              > >> >> >
              > >> >> >Please refer to the docs for details.
              > >> >> >
              > >> >> >--Vinod.
              > >> >> >
              > >> >> >
              > >> >> >"Andrew Larson" <[email protected]> wrote in message
              > >> >> >news:[email protected]...
              > >> >> >>
              > >> >> >> I need to PREVENT the data in the HttpSession from being restored
              > >if
              > >> >the
              > >> >> >server crashes.
              > >> >> >> I can't seem to find any documentation explicitly documentating
              > >how
              > >> >to
              > >> >> >ensure this.
              > >> >> >>
              > >> >> >> Any help would be greatly appreciated.
              > >> >> >> Thanks,
              > >> >> >> Andrew
              > >> >> >> (p.s. this applies to WL5.1sp8 and WL6.1sp2)
              > >> >> >
              > >> >> >
              > >> >>
              > >> >
              > >> >
              > >>
              > >
              > >
              >
              

Maybe you are looking for

  • Saving scanned doc error message when using Mac Maverick with HP Photosmart C4795

    When I use HP Scan to scan documents with my HP Photosmart C4795 it scans fine.  The problems comes when I try to save the scanned document. I get one of two things, an error message or black document.  I get an error that states "An error has occurr

  • Adobe LiveCycle Designer Samples - problem

    Hello, i've just downloaded the DataImportExport.zip from http://partners.adobe.com/public/developer/livecycle/designer/index_samples.html and i have one question. Why i am unable to run first example: "Export Data: User to specify the file name" ? D

  • View where clause with "IN"

    Hi, Is there a nice way to specify the list eg. where itemNo IN(:1/?), where i can just set the where clause parameter with a array?

  • ATP Check Requirement

    Hi Folks, I am working on ATP check logic my logic is based on 3 things; Safety Stock, Lead Time, Confirmed PO qty (Include Shipping Notification) I have 2 issues, one is related to Safety Stock and second one is related to Tcode Z9R2. Safety Stock :

  • Should I buy now or wait for Windows 7 that is installed at the factory

    I'd like to buy the Acer 1410, should I wait until it's being shipped with Windows 7? Yes, the  free upgrade to Windows 7 is nice, but I'm concerned about all the drivers....WIFI, video, camera, etc. etc...  I'm also concerned about the how the Vista