Values not saved in "Global Authentication Setup" page

Hi,
I searched a bit in this forum but I couldn't find a related topic. So here is my problem.
We are trying to deploy a small NAC lab environment. We use NAC Appliance v4.1.
Now the problem is, that I like to set the values for PEAP and EAP-TLS in the "Global Authentication Setup" page. However, every time I press "Submit and restart" all checkboxes for PEAP and EAP-TLS are not checked anymore.
I use a WebServer certificate from our PKI and I created it as described in various guides.
If I create a self-signed certificate with ACS it works fine, but this will not be feasible for a larger deployment.
I hope somebody knows this issue and can help me.
Thanks,
Harald

I could solve my problem. I had to import the CA certificate in "ACS Certification Authority Setup".

Similar Messages

  • Input values not saved in MRP 2 view

    Hi Gurus,
    we have a new new Z field called "Vendor material class" created in "MRP 2 view" as per the customer requirement . we maintained the values all the values via a Z transation code. but when you want to save a value for this filed in MM02 it is not getting saved and a message " No changes made" in our Production system.
    but where are in our test box we were able to save the values. the program versions are same in both the systems. let me know if i am missing any congigurations for this field which saves the value in Production system.
    appreciate your help on this.
    Thanks,
    Nagesh.

    Hi Nagesh,
    I think you may check the SAP note:
    44410  Integrating cust.-specific fields in matl master
    to see if you have done all the pre-requisition to correctly integrate your own fields in material master, then you may compare this between your test system and production system to see if you missed anything.
    Regards,
    Rachel

  • Workflow Form Issue - Form value not saved in WF container

    Problem, value in the form can not be available for the whole process.
    I created a data structure by SE11.
    In my workflow,
    Step 1: FORM change step, value can be entered.
    Step 2: FORM display step, no value from step one has been display. All fields are blank.
    I don't think I need binding because those value should be saved in workflow container after step 1, when you click save button.
    Am I missing anything(step or binding)?
    Thanks a lot.

    Is there a Business Object or Class associated with your form? If you are expecting the data to be available via the BObj or Class then you may have to refresh the Bobj or Class before displaying it. Alternately, make sure your method for changing it refreshes the obj and have the BusObj or Class bound coming back from Step 1 so that you get the updated object.
    If you're expecting to save the form data within the Workflow, you'll have to bind the data both to and from each step.
    Regards
    Mark

  • Settlement Receiver Value not Saved in Table Control Program

    Hi,
    I have Table control program regarding to Equipment Log, where in output it show the Equipment details with Account assignment category, General settlement receiver, Shift Hours, Work Hours, Idle Hrs, Maint. Hrs., Production Hours etc...
    In report, we have a formula i.e.
    Shift Hrs. = Work Hours + Idle Hrs + Maint. Hrs. + Production Hours.
    and all those fields are linked to each other.
    If we want that Work Hours should be 0, then msg showing - Working Hrs. should be entered. , means without enter Working Hrs. value we cann't save it.
    Now we removed the link of Working Hrs to others, means if we insert value 0 of Working Hrs., no msg showing. BUT Problem is this after remove this link, General settlement receiver value should not be saved.
    We want Work Hrs. as 0 value and General settlement receiver value must not be BLANK. It should be Saved.
    Plz guide..

    hi
    write a if statement after the Shift Hrs. = Work Hours + Idle Hrs + Maint. Hrs. + Production Hours.
    if work hours = 0, message i000 with 'Working Hrs. should be entered'.
    else ,write:/ shift hrs.end if. try to create a button for save when you click data will be saved or create a subrountine perform shift hrs than use if loop and select form end form inside keep Shift Hrs. = Work Hours + Idle Hrs + Maint. Hrs. + Production Hours.
    thanking you

  • Custom fields values not saved in AUFK using bapi_alm_order_maintain

    Hi ,
        We have a requirement where we have to update the custom fields in enhancement tab of IW31 using bapi_alm_order_maintain.
    We are able to get the successful creation of work order ,but the custom fields are not updated in enhancement tab aswell in aufk table. We are passing values in below table of bapi.
    EXTENSION_IN
                STRUCTURE           =  CI_AUFK
                VALUEPART1        =  '20091223' .
    Please provide the solution.

    Hi Phani,
    May be these links are helpful:
    BAPI extention to work order aiming AUFK custom field filling
    Update custom fields in MARA (BAPI_MATERIAL_SAVEDATA)
    Also search sdn using the BAPI function module, you may get some idea.
    Regards,
    Swarna Munukoti

  • REUSE checkbox values not saved after user-command

    Hi,
    I have an ALV grid using REUSE_ALV_GRID_DISPLAY within i have checkbox editable field. Initially all lines in the grid are checked. (user can deselect some of the lines)
    After display of ALV grid user deselect some of the lines in the grid and he press ENTER Here i am updating only checked data the alv grid data to a custom table.But my problem is user deselect some of lines in the gird and press ENTER, but the output table from the grid still showing all lines are checked. ie grid results not showing in the output table.
    Here is code
      data: pt_grpfcat      type slis_t_fieldcat_alv,
            ps_grpfcat      like line of pt_grpfcat,
            pt_grpself      type slis_selfield,
            pt_grplayout2   type slis_layout_alv,
            pv_grptitle(20) type c,
            p_grpexcltab2   type slis_t_extab with header line,
            p_header        type  slis_formname.
      ps_grpfcat-fieldname = 'BOX'.
      ps_grpfcat-checkbox  = c_x.
      ps_grpfcat-edit      = c_x.
      ps_grpfcat-seltext_m = text-272.
      ps_grpfcat-outputlen = 3.
      append ps_grpfcat to pt_grpfcat[].
      clear ps_grpfcat.
      ps_grpfcat-fieldname = 'WERKS'.
      ps_grpfcat-outputlen = 4.
      ps_grpfcat-seltext_m = 'Plants'.
      append ps_grpfcat to pt_grpfcat[].
      clear ps_grpfcat.
      ps_grpfcat-fieldname = 'NAME1'.
      ps_grpfcat-outputlen = 40.
      ps_grpfcat-seltext_m = 'Description'.
      append ps_grpfcat to pt_grpfcat[].
      clear ps_grpfcat.
      select * from t001w into table i_t001w_1.
      if p_plgrp ne c_gl.
        select * from yfe024 into table i_yfe024
                 where plgrp eq p_plgrp.
      else.
        select * from yfe024 into table i_yfe024
                 where plgrp ne space.
      endif.
      refresh : i_grpoutput. clear : i_grpoutput.
      pt_grplayout2-zebra = c_x.
      refresh i_events. clear i_events.
      if not i_yfe024[] is initial.
        loop at i_yfe024 into wa_yfe024.
          read table i_t001w_1 into wa_t001w_1
                      with key werks = wa_yfe024-werks.
          if sy-subrc eq 0.
            move : c_x            to i_grpoutput-box,
                   wa_t001w_1-werks to i_grpoutput-werks,
                   wa_t001w_1-name1 to i_grpoutput-name1.
            append i_grpoutput.
          endif.
        endloop.
      endif.
      pv_grptitle = text-t01.
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          it_fieldcat                 = pt_grpfcat[]
          it_excluding                = p_grpexcltab2[]
          is_layout                   = pt_grplayout2
          i_callback_program          = sy-repid
          i_callback_html_top_of_page = p_header
          i_callback_pf_status_set    = v_status_set1
          i_callback_user_command     = v_user_command1
          i_screen_start_column       = 5
          i_screen_start_line         = 5
          i_screen_end_column         = 70
          i_screen_end_line           = 15
          it_events                   = i_events[]
        tables
          t_outtab                    = i_grpoutput.
    endform.                                 " F_f4_help_fieldname
    * Form  f_user_command1                                                *
    * This form will handle the user command from fm REUSE                 *
    form f_user_command1 using p_ucomm type sy-ucomm
                         rs_selfield type  slis_selfield.
      case p_ucomm.
        when 'YCNC'.
          leave to screen 0.
        when 'YNTR'.
          perform f_upload_readions.
          leave to screen 0.
      endcase.
    endform.                                 " F_user_command1
    * Form f_pf_status_set1                                                *
    * For setting PF status to REUSE                                       *
    form f_pf_status_set1 using rt_extab type slis_t_extab..
      set pf-status '9001'.
      set titlebar '9001' with v_plgrp.
    endform.                                 " F_pf_status_set1
    * Form f_upload_readions                                               *
    * For upload plants under regions to load into YSCCPLNT                *
    form f_upload_readions.
      if not i_grpoutput[] is initial.
        loop at i_grpoutput where box eq c_x.
          read table i_ysccplnttemp with key werks = i_grpoutput-werks
                                             updkz = space.
          if sy-subrc ne 0.
            move i_grpoutput-werks to i_ysccplnttemp-werks.
            move v_affind          to i_ysccplnttemp-affind.
            append i_ysccplnttemp. clear i_ysccplnttemp.
          endif.
        endloop.
      endif.
    endform.                                 " F_upload_readions
    Any suggestions?
    Thanks
    aRs

    form f_user_command1 using p_ucomm type sy-ucomm
                         rs_selfield type  slis_selfield.
    <b>Data ref1 type ref to cl_gui_alv_grid.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    E_GRID = ref1.
    call method ref1->check_changed_data</b>
      case p_ucomm.
        when 'YCNC'.
          leave to screen 0.
        when 'YNTR'.
          perform f_upload_readions.
          leave to screen 0.
      endcase.
    endform.

  • Item translations are not saved for copied page

    Hello,
    item translations are not saved for copied page. Is it expected?

    Hello,
    >> item translations are not saved for copied page. Is it expected?
    I’m not sure what you mean by not saved, but if you expect to copy a current translated page into a new page, and inherent the translation in the new page, the answer is NO, it’s not saved.
    Adding a new page to your application, even by copying an existing page, is a major change in your primary language application, which create multiple new independent elements in your application (after the page has been copied, there isn’t any link between it and the original page). You need to re-seed the primary application, export a new XLIFF file, and translate the new <trans-unit> that were added to it.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Forthcoming book about APEX: Oracle Application Express 3.2 – The Essentials and More

  • ACS 4.0.2 Radius Authentication Setup

    Dear Experts,
    I am having ACS 4.0.2 in my network, which I want to use for 802.1x Radius Authentication for Clients on PEAP-MSCHAPv2 methodology.
    As per the documentation " EAP Authentication with RADIUS Server",  Doc ID: 44844
    I have configured Network Configuration and populated AAA client IP range and Secret Key.
    Question1:
    Under Authenticate Using option, there are various RADIUS flavors available for selection. For a Non Cisco AAA client, should I select RADIUS IETF?
    Question 2:
    In the above snap shot, It has an option called Global Authentication Setup, where we can setup EAP configuration. Under PEAP subsection there is an option to "Allow EAP-MSCHAPv2" check box.
    After checking that, is a restart required to the ACS Server? Would it cause any disruptions to the existing services on the ACS?
    Kindly help as it is not mentioned in the documentation available with me.
    Regards,
    Karthik

    Hello,
    As per the ASCII and HEXA settings concern you might want to ignore those fields and leave them as they are by default.
    As per the "Bad request from NAS" and "Invalid message authenticator in EAP request" it is 99% of the times a Shared Secret Mismatch.
    Under the ACS Interface Configuration > Advanced Options > Is the Network Device Groups option enabled? If yes, please check the Shared Secret Key at the NDG level where the device was created. Remember the NDG Shared Secret takes precedence over the one configured on the AAA Client entry itself.
    Attaching an Example:
    AAA client with Shared Secret as "Cisco123":
    NDG Entry (which allocates AAA clients) with Shared Secret as "cisco"
    In order to check the NDG Shared Secret go to Network Configuration > Click the appropriate NDG > Scroll to the bottom and click on Edit Properties.:

  • Server hangs and session variable value not maintained.

    dear all,
    this is exteremetly urgent. i upgraded my tomcat to 4.1.24.but i have problems running the same code which was working earlier, i get null in the value of session variable. and also get the following error
    ////////////////error got /////////////
    Compile failed; see the compiler error output for details.
    at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:842)
    at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:682)
    at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:317)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext
    .java:473)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:190)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2
    95)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:256)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:
    2415)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatche
    rValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:172)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:22
    3)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :594)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ssConnection(Http11Protocol.java:392)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java
    :565)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP
    ool.java:619)
    at java.lang.Thread.run(Thread.java:536)
    ///////////////end of error messsge ////////////
    the code where i am getting this message is as follows
    <%@ page session="true"%>
    <HTML>
    <HEAD><TITLE> LOGGED IN ok</TITLE> </HEAD>
    <%@ page import="java.sql.*" %>
    <%! // declaring variables
    String s = "";
    java.sql.ResultSet rs=null;
    java.sql.Connection con;
    java.sql.Statement stmt=null,stmt1=null;
    String username = "";
    String password = "";
    String Ousername = "";
    String Opassword = "";
    String changepass="";
    String usertype ="",useremail="",EmpName="";
    %>
    <body>
         <%      
         try
         //set session for max of 100 milliseconds
         // session.setMaxInactiveInterval(10000);
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         con = java.sql.DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};" +"DBQ=c:/vishal/HelpDesk.mdb;DriverID=22;READONLY=false","","");
              stmt = con.createStatement();
              s = "select * from LoginUser";     
         username = request.getParameter("LogonId"); //get this through prev. form
         password = request.getParameter("txtPassword");
         out.println(username + " " + password);
         // make explicitly to lower case
         username = username.toLowerCase();
         rs = stmt.executeQuery(s);               
                        while(rs.next())
                        //getting data from database
                        Ousername = rs.getString("EmpName");
                        Opassword = rs.getString("Password");
                        useremail = rs.getString("EmailId");
                        usertype = rs.getString("UserType");     
                        if(Opassword.equals(password) && Ousername.equals(username)) //found match correct entry
                             changepass = request.getParameter("PasswordNew");
                             if(changepass != null)
                             stmt1 = con.createStatement(java.sql.ResultSet.TYPE_SCROLL_INSENSITIVE,java.sql.ResultSet.CONCUR_UPDATABLE);     
                             s = "update LoginUser set Password = '" + changepass + "' where EmpName = '" + username +"'";
                             out.println(s);
                             stmt1.executeUpdate(s);
                             stmt1.close();
                             if(usertype.equals("User") == false)//ie admin
                             session.setAttribute("username",username);     
    ************************this value not maintained *********************
                             session.setAttribute("useremail",useremail);
                             session.setAttribute("usertype",usertype);
    ************************this value not maintained *********************
                             //closing connections
                             %>                                                       
                                  <jsp:forward page= "ComplaintType.jsp" />                         
                             <%
                             else //user
                             EmpName = username;
                             session.setAttribute("EmpName",EmpName);                         
                             session.setAttribute("useremail",useremail);
                             //closing connections
                             %>
                             <jsp:forward page="ComplaintCategory.jsp" />
                             <%     
                             }//end if
                        }//while loop                                   
                        //first closing connections then forwarding                    
         %>
                        <jsp:forward page="InvalidLOGIN.jsp" />
                        <%     
                        ///rs.close();
                        ////closing
                        //stmt.close();
         // con.close();
         }//try
              catch(Exception ep)
              out.println(ep);
              System.exit(1);
         %>
    </BODY>
    </HTML>

    hi all,
    thanx a lot for your help,specially hari52
    hari52 strangely enough the code started working,but
    now i have another problem
    after a while my server hangs or gets shutdown ,a
    message is shown as
    "java.exe has generated error and will be shutdown"
    i know that more connections can be a prob. but i
    make sure that connections r closed on each page,also
    i am a newbie and do not have the time at present to
    learn abt. connection pool ,can this problem be
    solved easily?
    it would be a great help again on your part,
    thanx again,You remove the System.exit(1) line from the code inside the catch block
    and try again. That's the reason tomcat getting down. System.exit(1) should not be used inside jsp. it will make the underlaying Servlet Engine to shutdown.

  • WRT54G2 internet setup is not saved

    Trying to modify internet connection type using the basic setup, but changes are not saved:
    1. On basic setup page - switch from DHCP to L2TP - page refreshes
    2. Fill in L2TP account info and click "Save Changes"
    3. Page waits for refresh, in the meantime the router  reboots
    when router is back online I see the old settings and the new ones are lost
    Please assist

    You need a wired connection between your computer and router.
    Greetings from Northern Ontario, Canada

  • New install of SQL 2014 Std MSDN. Get "The SQL Server product key is not valid. To proceed, re-enter the product key values from the Certificate of Authenticity (COA) or SQL Server packaging."

    Trying to install a new version of SQL 2014 Std 64 or x86. Installing on Windows 8.1Pro 64bit machine.
    I get:
    "TITLE: SQL Server Setup failure.
    SQL Server Setup has encountered the following error:
    The SQL Server product key is not valid. To proceed, re-enter the product key values from the Certificate of Authenticity (COA) or SQL Server packaging.
    Error code 0x858C0017."
    I looked at the summary log and that is the only error.
    I made sure there were no other instances of SQL on this machine. Uninstalled all VS2013 and sql instances just in case. IF there is somewhere to check if a previous version or license is causing the issue, i would be glad to check.
    Any help would be appreciated.

    Hi,
    Please read this thread with similar issue
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/bdd94577-515c-49fa-be44-008eacece057/installing-sql-server-2012-on-a-new-vm-error-code-0x858c0017?forum=sqlsetupandupgrade
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • H:datatable not saving input values

    Hi
    I've got a page with h:datatable and some other inputs. I've few actions that reload this page. What my problem is that inputs from datatable are not saved - when the page is reloaded the fields are empty, checkboxes reset to unchecked etc. But other inputs, outside the datatable remember their values. Is there any way to make datatable inputs behave like other components?
    Michael

    Could you explain this:
    "2.dataTable's data should not be binded to backing-bean's properties! "
    You mean I can't put input component in there? e.g. I've got datable with rows for different languages, and in one column I have input where I put name of sth in this language. Then I press submit and it's saved into db. Works fine...

  • On my macbook pro when opening a page i can not save it as a pdf only give me the option of saving it as a web page can any body help me on this I have tryed so many times without success

    on my macbook pro when opening a page on safaryi can not save it as a pdf only give me the option of saving it as a web page can any body help me on this I have tryed so many times without success?

    Just select Print in Safari and then, in the bottom left-hand corner, select PDF and you can save it to whichever flavor pdf file you like.
    Clinton

  • Value in a EIT segment(From Update Page)not getting passed to the Next Page

    Hi
    We have a extended CO to populate an EIT field as per the calculation in CO, on a custom button click.
    Calculated value is stored/displayed in the EIT Update Page.
    On clicking Apply, value is not getting passed to the next page, EIT Main Page and further to store the calcualted value in the EIT table.
    Anyone have faced such problem ?
    Thanks
    Arun

    Hi Gaurav
    Facing problems with put/getSessionValue.
    For the first time in a session, we do not have any issues.
    For next transaction in the same session,
    Variable has the same value even if we go for a next EIT transaction, and replaces this value for the field, without pressing the custom button.
    Thanks
    Arun

  • I have an iphone 4 and after updating it to the ios5 software, it will not allow me to activate nor allow me to leave the setup page. i cannot even restore it. does anyone know what to do?

    i have an iphone 4 and after updating it to the ios5 software, it will not allow me to activate nor allow me to leave the setup page. i plugged it into itunes and it is stuck there too... i cannot even restore it. does anyone know what to do?

    I have had this same issue but thankfully fixed it. Follow he steps below:
    Sync your iPhone with you iTunes therefore your info is backed up. Unplug your phone.
    Go to Settings > Reset > Erase All Content and Settings
    Once your phone has reset and come back on answer the question until it asks if you want to back up from itunes Click this then plug your phone in.
    After everything has sync'd back to your phone everything should work fine.
    Hope this helps.

Maybe you are looking for

  • Can't get JDK to work! Please help!

    Hi, I have downloaded the JDK1.3.1 many times and I have try installing it into different computers at home but none of them work. Is there like an online thing where I can compile my code and run it. Because at home it seems not to work but in schoo

  • Non-Cumulative and BWA

    Dear Expert I have one non-cumulative cube with Inflow and out flow. I compressed that cube and rolled up BWA index. Performance it good but the query still takes much time ( 10- 12 minutes) earlier 30 minutes. I saw during query running its still ac

  • How do i calculate e age given e year of birth?

    how do i calculate e age given e year of birth?

  • Checkbox to be checked by defualt

    Hi, In my application page, i have 3 checkboxs, i need to check the checkboxs based on a value from DB (ie) if record exists in the table, the checkbox should be checked otherwise no. How to achieve this?

  • Reader enabled form unable to save-- PLEASE HELP!

    Hi My colleague experienced an issue that I don't know why it happened. I created a form via Acrobat Pro 9, and reader-enabled it so that she could fill in the information. Prior to sending her the file, I have tried it using Reader  8 and saved it,