Is it possible to get a check box's export value when it is OFF

Hi,
I'm wondering if I can set a check box export value to something like "S".
I'll want to check all boxes whose export value is "S", but I want to detect if the export value is "S" when the box is NOT checked. Is that possible?
Thanks in advance.

Another option is to use COUNTIF for the column of checkboxes.
=COUNTIF(B2:B9, TRUE)*3.75
Any of the cells between B2 and B9 with a checkbox will be included in the count of people that paid the 3.75 amount. It does of course assume that the amount received is always 3.75.
Erik

Similar Messages

  • How to get a check box on the selection screen

    Hi all
    can any body tell me how to get a check box on the selection screen

    parameter: pa_check   as checkbox.
    To define the input field of a parameter as a checkbox, you use the following syntax:
    PARAMETERS <p> ...... AS CHECKBOX ......
    Parameter <p> is created with type C and length 1. In this case, you may not use the additions TYPE and LIKE. Valid values for <p> are ' ' and 'X'. These values are assigned to the parameter when the user clicks the checkbox on the selection screen.
    If you use the TYPE addition to refer to a data type in the ABAP Dictionary of type CHAR and length 1 for which 'X' and ' ' are defined as valid values in the domain, the parameter automatically appears as a checkbox on the selection screen.
    REPORT DEMO.
    PARAMETERS: A AS CHECKBOX,
    B AS CHECKBOX DEFAULT 'X'.

  • How can I get a check box automatically checked when other check boxes are checked?

    A little tongue twister there, but the attached image should clarify.
    I'm trying to create a form to measure achievements. When all achievements are met/checked I want the green check box with a star to auto-check.
    If not all achievements are checked, I want the orange check box to auto check...
    Can I get this working by using export values?
    Thanks!

    I would use a custom JavaScript to count the number of check boxes whose value is not "Off" and set the final box on the result of the count.

  • Is is possible to get a new iPhone 5c for free when I've bought a defective iPhone 5c?

    Is is possible to get a new iPhone 5c for free when I've bought a defective one on September the 30th?

    If you purchased your phone directly from Apple, in the US, you have 30 days from the date of purchase to return it for a no questions asked refund. 14 days in the rest of the world. If you make an appointment at the genius bar, & the genius bar determines your phone is defective, they will replace it on the spot. Whether the replacement phone is new or refurbished cannot be determined, as all replacement phones come in a white box. However, given how new the iPhone 5C is, most likely the replacement will be new, & not refurbished. Those are your options.

  • Possible to get JComboBox before and after chaged value?

    Hi,
    I have a JComboBox... whenever the JComboBox value change is it possible to get the before and after changed value? For example:
    Let says the JComboBox is showing "One" and the user change it to "Three" after the user chged... I want to System.out.println before chged value ("One") and aft chged value ("Three")
    I tried:
    put in some code in the itemStateChanged() method... but no success...
    Can someone pls provide some pointer or sample code...
    Thank you for your time...

    Ok, I lost half a day on this (novice problem), but I arranjed a solution that resolve the problem totally. There is the code:
    YourComboBox.addFocusListener(new java.awt.event.FocusAdapter()
            int aux_selected;
            // if YourComboBox gains Focus
           public void focusGained(java.awt.event.FocusEvent fe)
                // get index value of selected element
               aux_selected= YourComboBox.getSelectedIndex();
               // create a variable for storing de ItemListener
              ComboBListener = new java.awt.event.ItemListener() {
                   public void itemStateChanged(java.awt.event.ItemEvent e)
                       if(e.getStateChange()==java.awt.event.ItemEvent.SELECTED)
                           // compares the selected value with the old one
                           if (aux_selected!=YourComboBox.getSelectedIndex())
                           System.out.println("ComboBox Changed !");
               // add the variable Listener to your Combo
               YourComboBox.addItemListener(ComboBListener);
           // if focus is lost
           public void focusLost(java.awt.event.FocusEvent fe)
              // remove the itemListener from the combobox
             YourComboBox.removeItemListener(ComboBListener);
    //Put the Listener variable outside
    private java.awt.event.ItemListener ComboBListener; //----------------------------------------------------------------------------------------------------
    You only have to change YourComboBox by the name of the combobox.
    To all people that help this forum (specially from PORTUGAL) and all java people: YOU ARE DOING A GREAT JOB

  • Possible to get a fullscreen on my 42" TV when I mirror my Ipad?

    Possible to get a fullscreen on my 42" TV when I mirror my Ipad?

    I have no problem with getting full screen for my apple tv and 3g ipad. There are videos that won't allow airplay, and some sites have it set so full screen is less than great.
    Hugh

  • How to get dynamic check box value in NW Mobile 7.1

    Hi,
    i have 5 rows it contains dropdown and checkbox in a row.when i click update button i need the values of checkbox.How to get?
    Regards,
    Kanagaraj.

    Hi Vidyadhar,
    I have dropdown in first page.based ondropdown value selected navigating to next page.In that i am using row repeater it has label,checkbox and dropdown.here i need to  know whether the check box is checked or not while clicking update button.
    Drow down value also not able to get.
    How to get Checkbox and dropdown values?
    can u provide some sample codes??
    Regards,
    Kanagaraj.

  • How to get the  Checked box which are clicked

    for(int k=0;.....
    jsp code
    <input type=checkbox name=checkbox value='<%=k%>' >
    how to get the particular Checkbox which are checked???

    String[] checkedValues = request.getParameterValues("checkbox");You'll get an array filled with the values only for the checked boxes. In other words, if no boxes are checked, checkedValues will be null or checkedValues.length == 0, not sure, going from memory.
    Hope this helps!
    Patrick

  • ICloud and iTunes, cannot get the check boxes to stay checked under  preferences for iTunes to keep automatic downloads for iCloud, how can I fix this?

    When using my iPhone and Macbook with iTunes, I cannot get the checkboxes to stay checked in iTunes to use the automatic downloads for iCloud.  It is so frustrating. I check box them and hit ok under store preferences for iTunes, and when I go back in, they are unchecked. I am so excited to use iCloud with my iPhone downloads and it is not working, if I can't get it to work with this, I am never going to get it to work for documents.  Please help.

    Hey man. Did you ever get a solution to this problem? I spent an hour on the phone with AppleCare yesterday, and am going to have to call them back when I get home from work today. It's driving me bonkers!!

  • Is it possible to make a check box equal an amount?

    I am trying to create a school register for money received. What I want to do basically is - when an amount is received by a child, for a say an educational trip, I want to check the check box. If the trip costs £3.75 I would like a sum total at the bottom to add £3.75 every time a check box is ticked above. This would save me typing the amount everytime a child brings an amount. Is this possible? Thanks

    Another option is to use COUNTIF for the column of checkboxes.
    =COUNTIF(B2:B9, TRUE)*3.75
    Any of the cells between B2 and B9 with a checkbox will be included in the count of people that paid the 3.75 amount. It does of course assume that the amount received is always 3.75.
    Erik

  • Is it possible to get the check (cheque) numbers in a DME file

    hi
    Can someone share how to get the check (cheque) numbers in a DME file? Is it possible and if yes, how?
    Raj

    hi
    The trick is to update the payment method in FCHI transaction for the check lot. Then the check number will show up in the xml if it is forming part of the DMEE format.
    Raj.

  • How do you get different check box fields to display based upon a list box selection?

    I am a relative newbie with LifeCycle Designer ES using v.8.2.1 to create interactive forms to replace manual hardcopies.  I am working on a form that has a few pull down list boxes.  I want different check box fields to display based upon the selection of an item from one of the pull down lists.
    Any guidance on the best way to accomplish this would be greatly appreciated.

    Hi,
    Here is a sample with script in the change event of the dropdown. You may want to clear previous checkbox choices once the subform is hidden.
    It is good to group objects in a subform - that way you only need to hide the subform and not each object in turn.
    Good luck,
    Niall

  • How do I get the video box not to show when I open FF4. The one with the FF icon pointing to a folder icon.

    Upon downloading FF4 on my iMAC, I get a new box that I have to click on to open FF. It has a FF logo with an arrow pointing to a folder icon.
    This did not happen when I upgraded on my PC running Vista

    You have a corrupted Firefox 3.6.8 user agent;
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.0.2 GTB7.1 (.NET CLR 3.5.30729)
    See [[Finding your Firefox version]] and [[Web sites or add-ons incorrectly report incompatible browser]]
    See also http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default
    Check the <b>general.useragent</b> prefs on the <b>about:config</b> page.<br />
    You can open the <i>about:config</i> page via the location bar, just like you open a website.
    Filter: <b>general.useragent</b>
    If any <i>general.useragent</i> prefs are bold (user set) then right-click that pref and choose <i>Reset</i>.

  • Is it possible to get the image from the i pad when mirroring via Apple TV to fill the screen instead of appearing as a screen within a screen?

    When mirroring, is it possible to get the image from the ipad to fill the screen on the TV instead of appearing as a screen within a screen?

    Welcome to the Apple Community.
    No, the iPad has an aspect ratio of 4:3, a TV has an aspect ratio of 16:9, to fit one into the other is impossible without distorting the picture. If your TV has a zoom feature, you may be able to use this to fill the screen a little more to your liking, but this will result in cropping top and bottom.

  • To create a check box list having values updated as on click

    hi i am working on jDeveloper
    My scenario is like this
    Select Payee : # All
    # Stamp duty 21212
    # Loan 12122
    Total -- ______
    *# represent check box* so if i click on any of the check box its values need to dynamically updated in the Total .
    I have used this code
    <af:selectOneChoice> to list the items but i cant be able to dynamically update the Total. And also only variable are displaying and i need to show the values also.
    So anyone can help me in this plz.

    No easy answer, so maybe you'll first have to know Captivate a little bit better?
    There is a checkboxes interaction, that can be used to manually check off. But if you want that to trigger an animation, you'll be needing an action to apply an effect or to insert an animation.
    Is this really that important, nothing else more urgent? The TOC provides you already with a way to have visited slides automatically being checked with a tick mark.
    Lilybiri

Maybe you are looking for

  • On time Vendor in automatic payment (different documents)

    Hi, I have a master data one time vendor with payment method C and havenu2019t flag in u201CIndividual pmntu201D. Posting two documents (Vendor invoices) with different address of the one time vendor mandatory, but the same payment method. When I run

  • Crystal Reports XI: 6587706c SystemErr R Assertion Failed

    Hi: I am trying to incorporate Crystal Reports XI with in-house application, windows platform and Websphere Studio Application Development 5.1 and getting following errors. Most of the reports are coming up properly but the problem is it takes for ev

  • How do I open a custom template?

    I feel like I'm missing something very obvious here. I downloaded a custom template from the iWork community and I got a zip file with a bunch of pdf documents in it. In Pages, I can't seem to find a way to open anything in that folder; I don't know

  • Getting A Macbook, Need Help Transfering Files

    Ok I'm getting a MacBook for X-Mas (that is if Santa comes through :)) and I want to know the best way to transfer some of my files on my pc to my new MacBook. Specificly I'd like to transfer some of the videos in my iTunes library over to my new MB.

  • Unable to generate PO Requisition in Reorder point planning

    Hi All, I am running the REORDER POINT PLANNING REPORT, but after the completion of the report i am getting the error message Unable to generate PO requisition -- Check purchasing, order, and transaction flags on the item. So kindly help me to get th