How to disable a checkbox

Hi,
I have scenario where I have 4check boxes in my selection screen.. P_PRI, P_QUA, P_NEW and P_INV.
<b>P_PRI, P_QUA, P_NEW</b> will be selected(X) by default.
I have a requirement like when I select the fourth Checkbox <b>P_INV</b>, the two check boxes P_QUA and P_NEW should be unchecked and should be disabled(uneditable mode) and at the same time I have to generate some warning message(Later it will display the output after showing the warning message).
Is it possible to disable a checkbox..? If so, please tell me how to do that.
Can anyone provide me the sample code how to do this.
This is the selection screen logic I was talking about.
SELECTION-SCREEN BEGIN OF BLOCK CHOOSE WITH FRAME TITLE TEXT-001.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(15) TEXT-002.
SELECTION-SCREEN POSITION 18.
PARAMETERS: P_PRI AS CHECKBOX DEFAULT 'X'.
SELECTION-SCREEN COMMENT 31(15) TEXT-003.
SELECTION-SCREEN POSITION 48.
PARAMETERS: P_QUA AS CHECKBOX DEFAULT 'X'.
SELECTION-SCREEN COMMENT 61(15) TEXT-004.
SELECTION-SCREEN POSITION 78.
PARAMETERS: P_NEW AS CHECKBOX DEFAULT 'X'.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK CHOOSE.
SELECTION-SCREEN BEGIN OF BLOCK PRICE WITH FRAME TITLE TEXT-006.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(15) TEXT-007.
SELECTION-SCREEN POSITION 18.
PARAMETERS: P_INV AS CHECKBOX.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK PRICE.
Thanks in advance.
regards,
Paddu.

Hi Paddu,
Check this out...I didn't include Warning message but once you are satisfied with this code...we can add it easily
SELECTION-SCREEN BEGIN OF BLOCK CHOOSE WITH FRAME TITLE TEXT-001.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(15) TEXT-002.
SELECTION-SCREEN POSITION 18.
PARAMETERS: P_PRI AS CHECKBOX DEFAULT 'X'.
SELECTION-SCREEN COMMENT 31(15) TEXT-003.
SELECTION-SCREEN POSITION 48.
PARAMETERS: P_QUA AS CHECKBOX MODIF ID m1 DEFAULT 'X'.
SELECTION-SCREEN COMMENT 61(15) TEXT-004.
SELECTION-SCREEN POSITION 78.
PARAMETERS: P_NEW AS CHECKBOX MODIF ID m1 DEFAULT 'X'.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK CHOOSE.
SELECTION-SCREEN BEGIN OF BLOCK PRICE WITH FRAME TITLE TEXT-006.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(15) TEXT-007.
SELECTION-SCREEN POSITION 18.
PARAMETERS: P_INV AS CHECKBOX USER-COMMAND P_INV.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK PRICE.
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF p_inv = 'X' AND screen-group1 = 'M1'.
      p_qua = ''.
      p_new = ''.
      screen-input = '0'.
    ENDIF.
    MODIFY SCREEN.
ENDLOOP.
Regards,
Vivek

Similar Messages

  • How to Disable a Checkbox on a report condionally.

    I have a report and I created a checkbox on this report.
    I have a button which is associated to the checkbox.
    When I check a record an click the button I delete that record.
    This all works great.
    I want to disable the checkbox based on a condition.
    Lets say I cannot delete DEPT rows 20 at all. In this case I want to disable the checkbox and do not allow use to delete these records.
    Can anyone help me on this.
    I really appreciate your help on this.

    In your SQL query, you may be able to use a CASE WHEN statement to accomplish this.
    SELECT .. CASE WHEN dept_id = 20 THEN <dont display checkbox or show disabled> ELSE <show checkbox> END
    Ravi

  • How to disable a Checkbox with condition.

    Dear experts,
    I am doing a module pool program. My questyion is, the program has a checkbox. After certain process, let's say if it met a IF condition. This checkbox needs to be disabled. No matter the checkbox previously is ticked or without tick. The checkbox need to be completely disabled.
    Please advice how should I do it. As I have search in the forum for some time, but I could not get my answer.
    Appreciate if someone can help. Thanks in advance.

    Hi,
    3 problems.
    1. U r using lower case for check boxes screen name
    2. Screen-invisible is used to make data of the parameter invisible while typing eg: PASS WORD.
    3. What ever modification we are doing is over written in AT SELECTION SCREEN OUTPUT event.
    use screen input attribute as i told earlier.
    AT SELECTION SCREEN OUTPUT is analogous to PBO of
    Dialog program
    Check below modified code. It is working fine now.
    SELECTION-SCREEN END OF BLOCK b1.
    INITIALIZATION.
      tt = 'Example'.
      chk1 = 'X'.
    AT SELECTION-SCREEN OUTPUT.
      IF radio1 EQ 'X'.
        LOOP AT SCREEN.
          CHECK screen-name = 'CHK2'.
          screen-input = 0.
          MODIFY SCREEN.
          EXIT.
        ENDLOOP.
      ELSE.
        LOOP AT SCREEN.
          CHECK screen-name = 'CHK1'.
          screen-input = 0.
          MODIFY SCREEN.
          EXIT.
        ENDLOOP.
      ENDIF.
    AT SELECTION-SCREEN ON BLOCK b1.
      CASE sy-ucomm.
        WHEN 'R1'.
          IF radio1 = 'X'.
            CLEAR chk2.
            chk1 = 'X'.
          ELSEIF radio2 = 'X'.
            CLEAR chk1.
            chk2 = 'X'.
          ENDIF.
      ENDCASE.
    I hope u r clear now.
    Thanks,
    Vinod.
    Edited by: Vinod Reddy Vemuru on Jul 29, 2008 4:33 PM

  • How to Disable CheckBox for a Particular Condition

    Hi All,
    In my application, iam using one table having 5rows , with checkboxes,
    based on one condition i want to  make few checkboxes as default disable in the same table, and some checkboxes i shud make it as enable, so experts please help me how to disable some checkboxes.
    disable means even if we select it shud not get selected, like that is it possible,

    Hi Sushma,
    You can have one more attribute in the same node from where you are populating the table and bind this boolean attribute to the enabled property of your CheckBox.
    and by looping thriugh the table you can check for conditions and based on it set the Enability of the checkbox.
    for (int iRowsCount =0;iRowsCount < wdContext.node<name>().size();iRowsCount++)
    if (condition)
    // Disabling the Checkbox based on the condition
    wdContext.node<name>().get<name>ElementAt(iRowsCount).set<BooleanAttributeName>(false);
    Hope this helps!!
    Cheers,
    Arafat

  • How to disable a default selection checkbox in the tableview

    Hi All,
             How to disable a default selection checkbox in the tableview ???
    I have  a tableview  with a iterator class mentioned on the iterator attribute of the table view. Table is a MULTISELECT tableview . Is it possible to disable or make it invisible a particular row selection check box?.
    For my scenario I have Currency values on all the columns and I want to do a sub total overall total for all the price column fields in the last row of that table. I archived this functionality using Iterator class method. But I don't want the user to delete that last row in any case.
    Thanks for your help in advance.
    Thanks,
    Greetson

    Hi,
      You can NOT disable the "Checkbox" of particular row using HTMLB. I had the same requirement. I achieved using <b>2 Tableviews</b>, one after another. 1st tableview will show all the rows and 2nd Tableview(without Table Header) and without any row. The <b>total</b> will be displayed as <b>Column title</b> of 2nd Tableview.
    Here is the code of 2nd tableview which we used to display the Total:
              <htmlb:tableView id                  = "tv2"
                               headerVisible       = "false"
                               keyColumn           = "appid"
                               footerVisible       = "false"
                               selectionMode       = "SINGLESELECT"
                               design              = "ALTERNATING"
                               fillUpEmptyRows     = "false"
                               visibleRowCount     = "0"
                               width               = "100%"
                               table               = "<%= tot_header %>" >
                <htmlb:tableViewColumns>
                  <htmlb:tableViewColumn columnName = "empno"
                                         title      = "Total"
                                         width      = "50"
                                         type       = "TEXT" >
                  </htmlb:tableViewColumn>
                  <htmlb:tableViewColumn columnName = "ename"
                                         title      = "  *      "
                                         width      = "90"
                                         type       = "TEXT" >
                  </htmlb:tableViewColumn>
                  <htmlb:tableViewColumn columnName = "appamount"
                                         title      = "   <%= tot_appamt %> "
                                         width      = "60" >
                  </htmlb:tableViewColumn>
                  <htmlb:tableViewColumn columnName = "ugjr_amt"
                                         width      = "60"
                                         title      = "<%= tot_ugjr %>" >
                  </htmlb:tableViewColumn>
                  <htmlb:tableViewColumn columnName = "apprvd"
                                         width      = "50"
                                         title      = "*" >
                  </htmlb:tableViewColumn>
                </htmlb:tableViewColumns>
              </htmlb:tableView>
    Hope this will help you.
    <b>Note: Reward each useful post.</b>
    Raja T
    Message was edited by:
            Raja T

  • How to disable "overwrite exisintg files" checkbox from Upload.aspx

    Hi Folks,
    I have a requirment to disable 'Overwrite existing files' check box from upload.aspx for only 2 specific libraries and it should be in visible for rest of libraries.
    could you please share the code snippet / any other suggestions to make it full this requirement.
    Thanks,
    janaiah

    Hi 
    you can use jquery to do so.
    $(document).ready(function()
        var
    form = $('form');
        if
    ( form.attr('action').indexOf('YOUR 36 character List ID - Without Braces') > -1 )
            var
    checkbox = $('#ctl00_PlaceHolderMain_UploadDocumentSection_ctl03_OverwriteSingle');
            checkbox.prop('checked',false);
            checkbox.parent().hide();
            var
    multiple = $('#ctl00_PlaceHolderMain_UploadDocumentSection_ctl03_UploadMultipleLink');
            multiple.hide();
    https://sharepoint4u.wordpress.com/2013/08/13/how-to-disable-overwrite-exisintg-files-in-a-library/
    Regards,
    Rajendra Singh
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful
    http://sharepointundefind.wordpress.com/

  • How to make the checkbox field as enabled/disabled?

    HI,
    i want to enable/disable the checkbox
    at run time??
    is it possible to do it??

    Hi user10185229 ,
    You can do this with SPEL.
    Thanks.....

  • How to disable selection of checkbox ?

    Hi,
    I got the following query wrote under WHEN-ITEM-NEW-INSTANCE :-
    Declare
    In_routing_header_id number;
    begin
    select      rrh.routing_name,
         rrh.routing_header_id
    into     :receipt_match.aic_routing_dsp,
         in_routing_header_id
    from     po_line_locations_all plla,
         rcv_routing_headers rrh
    where     rrh.routing_header_id = plla.receiving_routing_id
    and     plla.line_location_id = :receipt_match.po_line_location_id;
    if in_routing_header_id = 2 and :receipt_match.rect_qty_accepted = 0 then
    set_item_property('receipt_match_control.receipt_match',enabled,property_false);
    *** set_item_property ( 'receipt_match.selection_checkbox', enabled, property_false);
    raise form_trigger_failure;
    end if;
    set_item_property('receipt_match_control.receipt_match',enabled,property_true);
    end;
    Please note on line *** where I inserted this line is to disable user from make selection/ click on the checkbox. However, I got the error when putting this. The error prompt : 'FRM-41032: Cannot set enabled attribute of current item XXXXX '
    Please helps. I'm new in oracle forms.
    Thanks
    Lim

    Hi,
    Thanks for reply. However, I need to put the code only in the WHEN-NEW-RECORD-INSTANCE as the form that I called will display the data for user to check the button and select. I need to diable the check button from selection here. As you can see from the code, the match button had disable but now I need to disable the checkbox.
    This is b'cos current status is even the match button has disable but the checkbox still can enable user to make mistake and record still can be saved from there. That's why I need to disable the checkbox to prevent user from make selection and saved.
    Hope this is clear and looking forward to your helps.
    rgds
    Lim

  • How to disable one check box when another is checked

    Hi, I'm a first time user.
    i am trying to make text fields appar and dissapaer when check boxes are ticked. but only alow one check box to be active at one time. 
    I am making a simple form in Acrobat pro 9,
    I have two check boxes Checkbox1 & Checkbox2.
    I have two text fields Textfield1 & Textfield2
    i have added actions to checkbox1 & checkbox2 to 'hide or show' the text fields.
    Action --> on focus (checkbox1) show/hide field (textfield1) is hide
    Action --> on focus (checkbox1) show/hide field (textfield2) is show
    oposite
    Action --> on focus (checkbox2) show/hide field (textfield2) is hide
    Action --> on focus (checkbox2) show/hide field (textfield1) is show
    problem 1 - how to disable checkbox1 when checkbox 2 is ticked.
    or disable checkbox2 when checkbox1 is ticked.  
    my other problem is that this action has the same effect for ticking or unticking the checkbox.
    thanks in advance to anyone who can help.
    can you please write your answer in simple terms. Basically this is the first time i have used acrobat pro so please dont assume any knowledge at all. thansk very much .

    First, I would experiment with just check boxes and learn their properties and how they can interact.
    Have you tried using the same name for 2 check boxes and assign a different "export value" to each check box.
    Have you looked at the values a check box or boxes have when checked or un-checked?
    Have you looked at how the various actions for a field work?

  • Disabling a checkbox which is in a table, from managed bean

    disabling a checkbox which is in a table, from managed bean -
    i am able to iterate table and get/set value of checkbox but i want to disable it, how can i do that?
    FacesContext facesContext = FacesContext.getCurrentInstance();
    Application app = facesContext.getApplication();
    ExpressionFactory elFactory = app.getExpressionFactory();
    ELContext elContext = facesContext.getELContext();
    ValueExpression valueExp = elFactory.createValueExpression(elContext, "#{bindings}", Object.class);
    DCBindingContainer bindings = (DCBindingContainer) valueExp.getValue(elContext);
    DCIteratorBinding iter = bindings.findIteratorBinding("dogsIterator");
    RowSetIterator rit = iter.getRowSetIterator();
    rit.reset();
    while(rit.hasNext()) {
    Row currentRow = rit.next();
    Attribute attr = (Attribute)row.getAttribute("checked");
    what code should come here to disable checkbox?
    rit.closeRowSetIterator();
    thanks.

    Wes Fang wrote:
    You might find it easier to simply use EL and evaluate that value on the disable property:
    <af:column ...>
    <af:selectBooleanCheckbox ... disabled="#{row.bindings.checked.inputValue==YOUR_DISABLE_VALUE?true:false}"/>
    </af:column>
    i used this approach.
    kept a bean in session and used it's property in disabled attribute - now setting this property in my bean...

  • Does any one know how to Disable/Hide "BCC" from outlook/owa in office 365?

    Hi,
    Does any one know how to Disable/Hide "BCC" from outlook/owa in office 365?
    Thank You.

    Hi Kavin,
    You can try the below steps on the OWA server box,
    search for this file name in explorer
    File name: "messageoptionsdialog.aspx"
    open this file in notepad
    search for "chkbcc" you'll find something like this "input type="checkbox" id="chkBcc"
    you need to update the LINE BEFORE IT to <td style="visibility:hidden">
    Try this and let me now if this worked
    Although I've not tried this for the OUTLOOK client, you can try this and check if you need
    But this has worked for OWA for one of my client
    I'm also not very sure if this can be achieved on all of your outlook users from a server admin point of view, coz this is a client feature and not a user specific active directory attribute.
    Thanks & Regards
    John Chris 

  • How to disable instances of items in forms 4.5 in a mlti row block

    I have a multi row database block in forms 4.5 . One of the items is a checkbox. Based on certain conditions the user should be allowed to select only the checkbox only for some rows. How can i selectively disable the checkbox for some record and enable it for the other records.
    I know this can be done in OFrms 6i using set_item_instance_property but this is not available in forms 4.5 . Any ideas or workarounds to achieve this ?
    Thank You
    Satya
    Edited by: Satya V on Aug 13, 2009 11:48 AM

    I fear there is no direct solution.
    May be this is a work-around:
    1. Apply the older built-in: Display_item. You can't disable the item with display_item, but you can change the visual attribute and show the user that this item should not be checked.
    2. To be shure that the user doesn't ignore this "disable", you need a trigger, which resets the item to the proper value after an illegal change.

  • How to disable extra visit to portal server

    hi Experts,
    I am using wcp11.1.1.8, in a customized page template with portal builder, I used an EL expression to generate link like this:
    "http://localhost/webcenter/portal/Portal1/page1?_adf.ctrl-state=1dvjebskda_596"
    I clicked this link, using httpwatch to monitor network traffic, found IE visited portal server twice: first visit is a "Get" method for ""http://localhost/webcenter/portal/Portal1/page1?_adf.ctrl-state=1dvjebskda_596"", result code is 200, the second visit is a "Post" method for "http://localhost/webcenter/faces/oracle/webcenter/page/scopedMD/s64679523_e5d0_454a_952a_55128e607e07/Page7.jspx?wc.contextURL=/spaces/Portal1&_adf.ctrl-state=1dvjebskda_596", result code is 200.
    If I paste this url "http://localhost/webcenter/portal/Portal1/page1?_adf.ctrl-state=1dvjebskda_596" to ie addressing  field, and press return, httpwatch showed me there is no "second visit" for "/faces/oracle/webcenter/page/scopedMD/s64679523_e5d0_454a_952a_55128e607e07/Page7".
    Seems the "second visit" is auto generated by portal framework, how to disable it?
    Best regards

    Hi.
    Sorry about the delay, I was too busy and I only could do a small testing.
    I was checking quickly how WebCenter Portal (formerly Spaces) works with links compared to Framework Portal.
    The responsible of the "possible twice visit" is the following ViewHandler: oracle.webcenter.webcenterapp.internal.view.navigation.NavigationViewHandler in spaces-model.web.jar (method getPageTargetViewId, getActionURL and also isRedirectRequired).
    First of all, try to check that you're Pages have the "Redirect" checkbox unchecked (or you're navigation-model links). In case of being checked it will be 2 Requests.
    There are following behaviors:
    Using <af:commandLink> just will navigate using PPR and doing a POST.
    Using <af:goLink> using goLinkPrettyUrl there are many behavior:
    Already wc.contextURL is present in the URL and then it will call just one GET.
    If not is present, getActionURL it will add it in order to maintain the correctly the relationship Page - Space. It will generate you're behavior.
    I'm trying to understand why sometimes just call one GET and why sometimes generate a GET,POST,GET behavior.
    Anyway if it's urgent open a SR to Oracle.
    I think that If you try to add to your goLinkPrettyUrl the wc.contextURL parameter it just should do a visit once time (one GET). Try it if you have free time .
    I hope this information helps.
    Regards.

  • KSFETCH- causing massive slowdown on MDD 10.5x - how to disable

    GOOGLE IS PLAYING THE SLIME MASTER ROLE
    Below are several examples of how to disable this bull roar
    from taking precious system resources.
    EVEN ON OLDER MACS - (I used MDD running 10.5x)
    This started happening to me probably around May or June.
    My computer was Held down in some unknown process and then
    I installed Little Sntich - and BINGO it's KSFETCH the little
    hidden installer that is accessed multiple times daily by Google
    to (?).
    My computer was rendered almost unusable when these updates would occur
    and it was HORRIBLE because they happen so frequent.
    Does anyone know why LITTLE SNITCH does not have a
    simple area where you can have the Name blocked as
    KSFETCH ? Instead of the IP ect? I thought it would have this feature
    but no  and KSFETCH gets around this with Keystone
    by changing the IP last digit every call.
    Amazingly simple and effective.
    Google is the robot to fear.
    IMPORTANT
    THERE ARE AT LEAST  2 library folders.  (depending on how many users on system)One for root user (current user) and one for
    administrator (master file set)
    You want to target your Master file set first and then do your users LIbray folders.
    method 1:
    USING TERMINAL :
    http://forums.obdev.at/viewtopic.php?f=1&t=6720
    by buzzart » Fri Jun 29, 2012 4:27 am
    To stop the ksfetch (Google's auto-updater software) from checking every hour run the following in terminal:
    defaults write com.google.Keystone.Agent checkInterval 604800
    604800 is a week in seconds. Divide by 7 to check daily.
    Keystone agent is generating a new temporary executable file on each update check. This is why Little Snitch is asking repeatedly for permission. If Little Snitch were updated to allow regex for name checking then this could be solved. No doubt this would introduce other issues that would need to be considered.
    method 2 :
    USING TERMINAL :
    I have deleted files in LaunchAgents and made the Google files inaccessible = permissions 000 and ksfetch keeps running every hour. The "Do No Harm" company is full of it.
    method 3 :
    MANUAL method
    Go to /Library/Google/ and copy it to your desktop. delete GoogleSoftwareUpdate, Lock it and replace it with your old one.
    method 4 :
    MANUAL method
    first go to your home folder, then to the library folder.  Inside the library folder you will find a folder called Google.  Inside the google folder there is a folder named GoogleSoftwareUpdate.  Highlight this folder and click cmd  i.  The window that pops up is what you need.  At the bottom of this window, you will find sharing and permissions. This is where you would change the settings for the folder. 
    That is cmd plus the i key. (⌘+i) simultaneously.
    The same dialogue box can be accessed by right-clicking on the folder and selecting 'get info'.
    Incidentally, if you trash the contents of the folder and then lock the folder (checkbox at the top of the info window) that will also prevent anything being written to it.

    This seems to be a better / easier way.  In finder go to /Users/YourUserName/Library/Google
    Then right click "get info" or CMD I and change the permissions on the "Google Folder" too read only and lock it.
    You can also do this via terminal for advanced users.
    This  works for Hands Off or Little Snitch in fact you can delete "all the  rules" for KsFetch and it hasn't come back for me in a long time.
    This  may interfere with Google software updates so if your Google stuff  breaks just change the permissions back and update. Then change back if  necessary.
    You can also use the wildcards in Hands Off and  Little Snitch they do work as well. If you the recent versions. Google  it to learn how to use the wildcards.

  • How to disable spacebar scrolling

    The question of how to disable spacebar scrolling is discussed on these pages:
    https://support.mozilla.org/en-US/questions/935601
    http://forums.mozillazine.org/viewtopic.php?f=38&t=722865&start=0
    The solution given is to use the Keyconfig extension to reassign the use of the spacebar. However, the instructions are somewhat incomplete.
    After finally getting it to work, I wanted to elaborate on the instructions. (Since those topics are closed, I'm starting a new one.)
    <pre>1. Install the Keyconfig extension from this page:
    http://kb.mozillazine.org/Keyconfig_extension
    2. Make sure the Firefox Menu Bar is visible.
    3. From the Tools Menu, select Keyconfig.
    4. Click the Add a new key button.
    5. In the Name fleld, type a name for the keyboard shortcut, such as "Spacebar."
    6. To make this apply to all pages, click the Global checkbox.
    7. Click OK.
    8. In the Keyconfig main window, select the new shortcut, such as "Spacebar."
    9. Click where it says <Disabled>, and type a space. The term <VK_SPACE> appears.
    10. Click Apply.
    11. Click Close.</pre>

    Thank you shmuel67!
    I will document this when I have time: https://support.mozilla.org/kb/disable-spacebar-scrolling-keyconfig/history

Maybe you are looking for

  • Mpd won't resume in the middle of a track

    When I stop mpd (/etc/rc.d/mpd stop) the state file (~/.mpd/mpd.state) is created/updated and the contents look to be correct. However, when I start mpd (/etc/rc.d/mpd start) mpd won't start at the same place within the track that is indicated by the

  • Repetitive structure In ABAP HR

    hi all ,     Am getting syntax error for the code below. Am using 4.7 .its says "p0041-dar01" and "date" are type-incompatible. however when i compile the same code in 4.6 its workin fine. here is the code.. *& Report  ZTEST_REP                      

  • H:commandButton Javascript

    I have a JSF button that when i click this invokes a javascript <h:commandButton value="testing" action="#{index.indexSearchAction}" onclick="invokeJavascript"> </h:commandButton>Is there a way to ensure that the Action bean is invoked before the jav

  • Packet drop when clients moving from one Access point to another

    HI  All , I am new to wireless . I am using  WS-SVC-WISM-1-K9  wism module and using 5 Access points . When my clients are moving from one access point to another we are getting packet drops . Kindly anyone suggest me what all configuration i need to

  • Error in page while logging to Apex 3.1.1

    I've successfully installed Apex 3.1.1 on OAS 10.2.0.2, but when I try to log in to http://localhost:7778/pls/apex/apex_admin I got "Error in page" message in the status bar of the browser after pressin "Login" button and just nothing happens. Also n