Selecting multiple checkboxes...Please Help!!!

I am having an issue I have multiple checkboxes - once the checkboxes are selected, I would like some information to appear in a field and if checkbox is deselected I would like the text to disappear.
My major problem is if all the checkboxes are selected at one time and the information appears in the textbox only one line of text will appear at once and I would also like for text to appear on separate lines and not on the same line.
This is what I am working with now:
if 
(RadioButtonList4.rawValue == true) TextField.rawValue
= "This is a value set using a script.";
else
TextField1.rawValue
= "";
Please Help
Tammi

Humm... did you make the Textfield multiline? (Sry but the easiest solutions often are overseen.)
Okey I try to get what you want. I hope I got you right and didn't completly missunderstand you...
Let's assume there are 4 checkboxes.
Okey so the user has 5 options. He can choose each of the checkboxes and NO more or he can choose them all...
choosing 2 out of 4 is not possible.
javascript:
if (this.rawValue == 1 && (checkbox1.rawValue == 1 || checkbox3.rawValue == 1 || checkbox4.rawValue == 1))
// will select everything when more then one checkbox is selected... this one only goes for checkbox 2 the other are nearly the same though!!!
     checkbox1.rawValue = 1;
     checkbox2.rawValue = 1;
     checkbox3.rawValue = 1;
     checkbox4.rawValue = 1;
if (this.rawValue == 0) // will deselect everything if one checkbox is deselected...
     checkbox1.rawValue = 0;
     checkbox2.rawValue = 0;
     checkbox3.rawValue = 0;
     checkbox4.rawValue = 0;
Then you create a Textfield (where you normally input things) and put on the calculate event:
if (checkbox1.rawValue == 1 || checkbox2.rawValue == 1 || checkbox3.rawValue == 1 || checkbox4.rawValue == 1)
// will show up if one checkbox is checked. If you want it only to show up if all checkboxes are checked use && instead of ||
this.presence = "visible";
else
this.presence = "invisible";
if (checkbox1.rawValue == 1 && checkbox2 == 0)
{this.rawValue = "only checkbox1 is selected";}
if (checkbox2.rawValue == 1 && checkbox1.rawValue == 0)
{this.rawValue = "only checkbox2 is selected";}
if (checkbox3.rawValue == 1 && checkbox1.rawValue == 0)
{this.rawValue = "only checkbox2 is selected";}
if (checkbox4.rawValue == 1 && checkbox1.rawValue == 0)
{this.rawValue = "only checkbox2 is selected";}
//what will appear if it is only a single checkbox that is selected
if (checkbox1.rawValue == 1 && checkbox2.rawValue == 1) //don't need the others since it is just one or all
{this.rawValue = "all checkboxes are selected \ncheck1 \ncheck2 \ncheck3 \ncheck4"}
The thing is, I don't think you can easily input data in static "text"fields. Since you already know how to show and hide you can do that one on your own I think ^^
If I missunderstood you and you just want to add/change the text by the checkboxes that are selected plz say so.
If I got you totally wrong and you just have let's say 10 checkboxes which can be selected and deselected and each one will provide a textfield with data, I can make you a little script for the calculate event...
Just tell me how many checkboxes they are... could get much to write (especially if they are more checkboxes) but I've got a script that will create even long scripts really fast

Similar Messages

  • HOW TO - Create new from clipboard and process multiple files - please help

    Need help - have new version of photoshop on trial only ATM...
    Want to know - HOW TO:
    1. Create new from clipbaord
    2. Process multiple files
    Please help.

    For clipboard copy, I start with File > New and the size will be set to what's in the clipboard. Then once the new file is opened, Edit > Paste will place the clipboard contents as a layer in the new document.
    You must remember to use the command Layer > Flatten Image of you want to save as jpeg or any other file format that doesn't support layers.
    For processing multiple files,
    File > Automate > Batch or
    File > Scripts > Image Processor...
    Check the User guide or google information for those commands if you have specific needs.
    Gene

  • Selecting multiple checkboxes with a button

    Hi, I'm currently making a booking form with a clickable map.  I'm trying to figure out the way to select multiple checkboxes (i.e. a zone on the map) with one button/checkbox.  Thanks!

    Just give them all the same name (and export value) and when you tick one, the others will be ticked automatically as well.

  • I an getting an error with photo merge in PS cc . It gives me a code tmp00000001 using from photoshop and if I try from bridge it tell me that I need to select more than one image. It is not recognizing the photos I am selecting in bridge. please help. my

    A new problem with CS5 forced me to download PScc but the problem is still there.  I am getting tmp00000001 in photo merge when importing multiple files from inside PS and if trying from bridge I am getting a pop up box telling me I need to select more than 1 file. Photoshop potomerge is not recognizing my selections from bridge..!! please help.. my knowledge of computers is a 3 on a scale of 1-10

    if i run this particular code
    ( SELECT
    AccountDetails.CUSTOMERNUMBER, AccountDetails.ACCOUNTNUMBER, CUSTOMERDETAILS.CDTITLE, CUSTOMERDETAILS.CDFIRSTNAME, CUSTOMERDETAILS.CDLASTNAME, AccountDetails.ACCOUNTTYPE,
    AccountDetails.ORIGINALCONTRACTENDDATE, AccountDetails.CONTRACTTERM, AccountDetails.CONTRACTENDDATE, AccountDetails.BRANCHAREA, AccountDetails.PRODUCTTYPE,
    AccountDetails.HOUSEBANKACCOUNT, AccountDetails.CARMODEL, AccountDetails.CARLICENCE, AccountDetails.ARREARSBALANCE, AccountDetails.CODEBTOR, AccountDetails.GUARANTORNUMBER
    FROM AccountDetails
    JOIN CUSTOMERDETAILS ON AccountDetails.CUSTOMERNUMBER = CUSTOMERDETAILS.CUSTOMERS1
    WHERE EXISTS
    ( SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.dcaid = 41
    AND Dcaaccountallocation.status = 2
    AND DebtEpisodes.DCASentDate IS NULL
    AND Dcaaccountallocation.ACCOUNTID = AccountDetails.ACCOUNTNUMBER
    AND DebtEpisodes.DCAORLAWYER = 'DCA'
    This returns 1 row of data
    However if i run a small part of the above code...
    SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.dcaid = 41
    AND Dcaaccountallocation.status = 2
    It returns a lot of rows with a status of 2
    Now i presume what I am going to do is to ensure that all the fields provide satisfactory requirements, with regards to the above code. Although I have many records in all the stated tables already.
    :(

  • Passing Multiple Checkbox Values Help

    Brand new to Coldfusion and I'm struggling to figure out how to pass values from multiple checkboxes on a form to a confirmation page and then an action page that inserts the data. The confirmation page will simply show their selections and allow them to go back and reselect, or submit to the action page.
    Form > Confirmation Page > Action
    I've found a couple of examples on the Web that mention looping, and one that said to use a WHERE IN clause but I'm lost on how to pass it through and insert at the end. Maybe the confirmation and action can be on the same page?
    Questions:
    1. Is it better to name all of the checkbox values the same or append some type of extra character and then evaluate at the end?
    2. Do I need to have hidden fields on the confirm page to transfer the data inbetween the form and action page?
    3. Can the confirmation and action be on the same page or should they be separated?
    4. What should the Query/Insert statement look like on the action page?
    I'm looking to see a basic example of code from start to finish, any help is greatly appreciated as I'm in learning mode.
    Thanks

    kittlez wrote:
    Ok so I know how to pass everything to the second page. I'm guessing I need hidden fields on that second page to go through to the last page where I insert the records...correct?
      That is one way to do it.  But one might also want to look into session variables if they have not been considered.
    When I've tried to do this I end up with something like this item1,item2,item3 all together which the database will not accept. How do I write the multiple values to the database so they are considered to be separate records.
    item1,item2,item3 is what you are supposed to get according to the HTTP protocol standard.  To insert that into a database you just need to recognize that you are getting a list and use ColdFusions list handling functions and tags to help you iterate through the list and do what you need to do with the data.
    This is a very hand code snippet for this type of work:
    <cfloop list="#listVariable#" index="aVar">
      #aVar# will equal one list item.
    </cfloop>

  • How to select multiple clips? "Help" is wrong.

    Hi. I've got iMovie 11 v 9.0.9.  "Help" is wrong in this version -  it says, to select multiple clips in the Events browser, hold down the command key while selecting - the normal thing, right?  - but it does nothing.  The first selection disappears, just as it would if you didn't hold the Command key down.  I've tried every combination of keys and click I can think of, and still no success.  Usually, when I can't get something to work and get frustrated with it, I find out it's my own fault and invariably what I've done is overthink the thing...with Mac it's always KISS.
    But I'm stuck.  Could someone please tell me how to do this?
    I'd really appreciate any help, thanks.
    Lynne

    No. In finder hold down the option key and in the GO menu select Library. In the window that appears Open the  Preferences folder then scroll down and find com.apple.iMovie.plist and com.apple.iMovie LSSharedFileList.plist and drag them to the trash. Do this with iMovie closed. Thenreboot and relaunch iMovie.

  • How to get save and select layout ? Please help!

    what parameters do i need to pass ? in set_table_for_first_display .
    please help!
      IF r_container IS INITIAL.
        CREATE OBJECT r_container
        EXPORTING container_name ='CONTAINER_1' .
        CREATE OBJECT r_grid
        EXPORTING i_parent = r_container.
        CALL METHOD r_grid->set_table_for_first_display
          EXPORTING
            i_structure_name = 'ZPO_INV_ALV'
                        CHANGING
            it_outtab        = t_alv_data.
    Edited by: Matt on Apr 8, 2009 2:12 PM - excessive use of ! and ? removed.  Code tags added.

    check this
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    *   I_INTERFACE_CHECK                 = ' '
    *   I_BYPASSING_BUFFER                = ' '
    *   I_BUFFER_ACTIVE                   = ' '
        I_CALLBACK_PROGRAM                = report_id
    *   I_CALLBACK_PF_STATUS_SET          = ' '
    *   I_CALLBACK_USER_COMMAND           = ' '
    *   I_CALLBACK_TOP_OF_PAGE            = ' '
    *   I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
    *   I_CALLBACK_HTML_END_OF_LIST       = ' '
    *   I_STRUCTURE_NAME                  =
    *   I_BACKGROUND_ID                   = ' '
    *   I_GRID_TITLE                      =
    *   I_GRID_SETTINGS                   =
    *   IS_LAYOUT                         =
        IT_FIELDCAT                       =  it_fieldcat
    *   IT_EXCLUDING                      =
    *   IT_SPECIAL_GROUPS                 =
    *   IT_SORT                           =
    *   IT_FILTER                         =
    *   IS_SEL_HIDE                       =
    *   I_DEFAULT                         = 'X'
        *I_SAVE                            = 'A'*
    *   IS_VARIANT                        =
    *   IT_EVENTS                         =
    *   IT_EVENT_EXIT                     =
    *   IS_PRINT                          =
    *   IS_REPREP_ID                      =
    *   I_SCREEN_START_COLUMN             = 0
    *   I_SCREEN_START_LINE               = 0
    *   I_SCREEN_END_COLUMN               = 0
    *   I_SCREEN_END_LINE                 = 0
    *   I_HTML_HEIGHT_TOP                 = 0
    *   I_HTML_HEIGHT_END                 = 0
    *   IT_ALV_GRAPHICS                   =
    *   IT_HYPERLINK                      =
    *   IT_ADD_FIELDCAT                   =
    *   IT_EXCEPT_QINFO                   =
    *   IR_SALV_FULLSCREEN_ADAPTER        =
    * IMPORTING
    *   E_EXIT_CAUSED_BY_CALLER           =
    *   ES_EXIT_CAUSED_BY_USER            =
      TABLES
        t_outtab                          = it_FINAL
    * EXCEPTIONS
    *   PROGRAM_ERROR                     = 1
    *   OTHERS                            = 2
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • How to use a SelectAll box / checkbox to select multiple checkboxes!!

    I have a question regarding checkboxes.
    My jsp page has the following layout generated dynamically based on a drop down selection box.
    ID State Initiated Released Locked
    US Initiated X
    Arg Released X X
    Ger Released X X
    Ita Locked X X X
    The Initated, Released & Locked columns are checkboxes. The checkboxes are enabled or disabled based on the State. This means that if the state is Initaited, the user will click the desired checkbox, while the others in the same row will be disabled, and so forth.
    Now all I want is the option of having a SelectAll button / checkbox (something like in yahoo,hotmail) for each column (Initiated,Released,Locked), which when clicked will select all the desired checkboxes under them.(which will select only those in the respective state).
    This is basically to make life easier for the user in case there are some 100 rows. Instead of selecting each individually, he can just click a single button for each column. He can then unselect whichever one he wants.
    I know this can be done using javascript. Remember that this list is not static, but dynamic. So I cannot send a fixed no. into my javascript function to iterate. Im using <nested:iterate> & <nested:checkbox> for iterating & displaying the checkboxes.
    If someone has a solution on it please do send me the code snippet.
    Thanks.

    Javascript is the only solution for something like this.
    I presume you are using struts indexed properties?
    Remember that this list is not static, but dynamic. So I cannot send a
    fixed no. into my javascript function to iterateTrue, but once your JSP is generated you know exactly how many controls you have generated using the varStatus of a iterate tag, or just looking at the size() of the list being iterated on. You can use that to generate the javascript function/call.
    Also you can use javascript without knowing exactly how many are there. You can actually discover the fields on the page.
    Hope this helps,
    evnafets

  • Problem : Not able to select multiple checkboxes in the JTable

    Here i am trying to select the multiple check boxes in the jtable. But i am not able to do that. I set the jTable.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); also.
    Can any one help on this...

    [email protected] wrote:
    Here i am trying to select the multiple check boxes in the jtable. But i am not able to do that. I set the jTable.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); also.
    Can any one help on this...That's row selection, not check boxes. The normal way to have active checkboxes in a JTable is with an editable Boolean column. The effect of clicking such a checkbox is to cause the table to call setValueAt() in the data model with a Boolean object value, and it's up to the data model to deal with that change.

  • Need assistance searching records from multiple tables - Please Help!

    Hi, I've been trying to solve this problem for several weeks now, and I have exhausted all of my knowledge and experience.  I need help, and I hope someone here can give me some direction.
    I am using VB 2008, and the CR that comes bundled with VS 2008 Pro.  My database is a SQL Server 2005 CE v3.5 (a *.sdf file).  I am connecting to the database through a dataset, and I am displaying the report in a CrystalReportViewer.
    My dataset consistes of two tables:
    1) tblCustomers which has a primary key "CustID", and contains only customer contact and personal information. 
    2) tblDateVisited which has a primary key of "VisitID", but it also has a column titled "CustID". Basically, every time a customer visits the business, details of that visit are recorded in tblDateVisited, and that record is associated with the customer by their CustID.
    Here's what I'm trying to accomplish:  I want to be able to display only Customer records when the customer has visited and that visit matches certain criteria.  Right now, I am trying to match visits from the "tblVisitDate.PlayerType" column.  If the customer has ever had a visit where they matched a particular player type, I want to see those customer records.
    I don't know what I'm doing wrong, though.  I can search a dataset if I am only querying one table and pulling records from that table.  However, whenever I try to add a second table and perform queries on that table to get records from the first table, I can't return any records. 
    If it helps, I am trying to use one CrystalReportViewer to display multiple reports (user choice) and here's how I'm loading the report into the viewer:
    Me.tblCustomersTableAdapter.Fill(Me.dsPlayerTypeReports.tblCustomers)
    Me.tblDateVisitedTableAdapter.Fill(Me.dsPlayerTypeReports.tblDateVisited)
    Me.ReportFile.SetDataSource(dsPlayerTypeReports.Tables(1))
    I am suspicious that my problem is in the Tables(1) method.  It confuses me that I can only assign one table as a datasource when I obviously need access to two tables to make this selection work. 
    Whatever the case, I'm at the end of my rope with this one.  I'm not prone to giving up, but I'm at a dead end currently. 
    Any attempt to assist me with this will be greatly appreciated, successful or not.
    Thanks in advance!
    -Will

    No, I am connected via ADO.NET.  I don't think SQL CE can connect through ODBC (or if it can, I haven't been able to figure out how, yet).  So this isn't a stored procedure.
    When I examine the link, I can only choose an Inner Join or a Left Outer Join.  Right Outer and Full Outer are not available.  Could this be a problem with the dataset I'm using?
    Could you explain what you mean by display all of the records and then choose the selection criteria?

  • Problems with selecting multiple checkboxes

    Hi! I'm very new to Javascript and am trying to navigate my way through adding some to a PDF document. 
    I have a document with groups of checkboxes, like
    Fiber
    Total Dietary Fiber
    Soluble Dietary Fiber
    Insoluble Dietary Fiber
    Pectins
    So if Fiber is selected, I would like all four options below it to also be automatically selected, and deselected if Fiber is unchecked. 
    I was trying to alter code from this discussion, http://forums.adobe.com/message/3496310, but I can't get it to work correctly. 
    This is what I have now -
    function cbControl() {
        var f1 = this.getField("Fiber");
        var f2 = this.getField("F1");
        var f3 = this.getField("F2");
        var f4 = this.getField("F3");
        var f5 = this.getField("F4");
    if (event.target === f1) {
            f2.value = "On";
                   f3.value = "On";
            f4.value = "On";
            f5.value = "On";
    Any help would be greatly appreciated!

    What specifically  is not working properly?
    Are you calling this function? I do not see the code.
    When are you calling this function?
    The value of a check box or radio button group is either "Off" (no item selected), or the export or checked value for the specific field. The default value of a button is :Yes".
    For the mouse up action:
    function cbControl() {
        var f2 = this.getField("F1");
        var f3 = this.getField("F2");
        var f4 = this.getField("F3");
        var f5 = this.getField("F4");
    if (event.target.value == "Yes") {
            f2.value = "Yes";
            f3.value = "Yes";
            f4.value = "Yes";
            f5.value = "Yes";
           } else {
         f2.value = "Off";
            f3.value = "Off";
            f4.value = "Off";
            f5.value = "Off";
    cbControl();
    Check the export.option values for you check boxes and adjust your code accordingly.
    Another option would be to use the "isBoxChecked" methiod to test if the item is selected and use the "chekcThisBox" to check or un-check the other boxes.
    function cbControl() {
        var f2 = this.getField("F1");
        var f3 = this.getField("F2");
        var f4 = this.getField("F3");
        var f5 = this.getField("F4");
    var bSelected = event.target.isBoxChecked(0);
        f2.checkThisBox(0,bSelected);
        f3.checkThisBox(0,bSelected);
        f4.checkThisBox(0,bSelected);
        f5.checkThisBox(0,bSelected);
    cbControl();

  • Multiple timertasks--Please help

    Hi
    Got a problem here.
    I want to poll some devices on a periodic basis.
    The polling interval for each of these devices will differ.
    So how do I achieve this?
    If I create a Timertask for each of these devices,then I would be creating too many threads ,which will clog my system eventually if I get too many requests to poll multiple devices.
    Please give me a solution as to how I should implement this functionality.
    I read on the net that Using the same Timer with multiple timertasks will anyway create only a single thread..but I am not in a position to know how many timertasks I will have to create before I start off the timer..
    Can anybody pleeeeeeeeease help??
    Early reply will be appreciated.....
    Regards

    yes, TimerTask only spawns 1 thread.
    Timertask will be adequate for your needs. (the best solution(in terms of performance) would be to write your own scheduler.)
    rob,

  • Select multiple checkbox

    hi all
    i want to add  many checkbox in the "input form" using my query values and when i check some of the checkox , i want to filter my "output table" with my selections. how can i do this??

    If your not familiar with BAPI you might try the following:
    Create several check-boxes at the input form (e.g. actual, budget, rolling forecast).
    Add a query and a chart.
    Create a datastore.
    In the datastore insert (bool) variables  - same amount as checkboxes (e.g. check_act/ check_bud etc.).
    Link input form checkboxes to datastore variables.
    In the chart create several dataservices.
    In the dataseries multiply the @store_check_act with the normal dataseries (result query).
    You can set the default value of the checkbox in the store to "true" or "false".
    So when you start the model for example your actual and budget output is shown (default true) and RF= false.
    If the RF box is checked, you have to press submit again and value in the store is set to true and output is visible.
    Hope this helps.
    Regards
    Bart
    Edited by: Bart B on Dec 24, 2007 8:32 AM

  • Emails disappear/vanished when using multiple devices please help!

    Please I need help, I have a long question but want to cover all possible options:
    I have several email accounts, set in different devices (all apple) that are checked continuously and simultaneously, they are all set as IMAP accounts (no conflict between IMAP vs POP) but very offen emails disapear and I am sure no one has deleted them. They literally vanish even from the server.
    I have norrowed down *I think* the problem to the following devices, my Iphone5 opens for the first time the email, and when a PowerBook with Mac OS X Version 10.7.5 opens the email at some point it vanishes, it doesnt happen with all emails but it mostlly happens with emails that contain attachments after I have viewed the attachements in my Iphone.
    I am a die hard Apple fan and I have looked the other way for over a year but I need this to stop, it is actually costing me money now and I have done lots of research but cant find the solution.
    My phone carrier is Verizon if this is relevant.
    Any help would be greatly appresiated! thanks!

    Are you using iCloud top sync mail between devices ??

  • MSEG select performance problem - Please help me (URGERNT)

    I have the following SELECT stmt which is taking more time to execute......Kindly help me how to improve performance ...
    YOUR HELP IS HIGHLY APPRECIATED....
      SELECT  a~mblnr
                    a~matnr
                    a~werks
                    a~charg
                    a~lifnr
                    a~bualt
                    a~erfmg
                    a~ebeln
                    a~ebelp
                    b~budat
                   INTO CORRESPONDING FIELDS OF TABLE it_mseg_mkpf
                    FROM mseg AS a INNER JOIN mkpf AS b
                      ON amblnr EQ bmblnr
                   WHERE a~matnr IN s_matnr
                     AND a~werks IN s_werks
                     AND a~lifnr IN s_lifnr
                     AND a~bwart EQ p_bwart
                     AND ( aebeln NE ' ' AND aebeln IN s_ebeln )
                     AND b~budat IN s_budat.
      IF NOT it_mseg_mkpf IS INITIAL.
        SELECT matnr bismt zzshelf_life FROM mara INTO  TABLE it_mara
        *          FOR ALL ENTRIES IN it_mseg_mkpf*
        *          WHERE matnr = it_mseg_mkpf-matnr.*
      ENDIF.
      IF NOT it_mara IS INITIAL.
        SELECT matnr maktx FROM makt INTO TABLE it_makt
        *                         FOR ALL ENTRIES IN it_mara*
        *               WHERE matnr = it_mara-matnr.*  ENDIF.
    Thanks in advance,
    Regards,

    Hi Sam,
    Try this.
    SELECT a~mblnr
    a~matnr
    a~werks
    a~charg
    a~lifnr
    a~bualt
    a~erfmg
    a~ebeln
    a~ebelp
    b~budat
    INTO CORRESPONDING FIELDS OF TABLE it_mseg_mkpf
    FROM mkpf AS b INNER JOIN mseg AS a  (although result will be same by reversing this join it's better to keep header on left of the join)
    ON amblnr EQ bmblnr and amjahr EQ bmjahr
    WHERE a~matnr IN s_matnr
    AND a~werks IN s_werks
    AND a~lifnr IN s_lifnr
    AND a~bwart EQ p_bwart
    AND ( aebeln NE ' ' AND aebeln IN s_ebeln )
    AND b~budat IN s_budat.
    (if possible, give mjahr in you selection screen and specify in where condition)
    IF NOT it_mseg_mkpf [ ]  IS INITIAL. (previous condition will check header line only)
    SELECT matnr bismt zzshelf_life FROM mara INTO TABLE it_mara
    FOR ALL ENTRIES IN it_mseg_mkpf
    WHERE matnr = it_mseg_mkpf-matnr
    ENDIF.
    IF NOT it_mara[ ]
      IS INITIAL.
    SELECT matnr maktx FROM makt INTO TABLE it_makt
    FOR ALL ENTRIES IN it_mara
    WHERE matnr = it_mara-matnr.
    ENDIF.
    Regards,
    Mohaiyuddin

Maybe you are looking for

  • Passing values to formula

    Hi All,         Is there any function module to create and read formula?Here I need to calculate the price for purchased material.i am using  formula to calculate price.Each tax code having its won formula.       I would like to store these formula i

  • Purchase Order ME23n  - communication tab - where these values stored

    Dear all Can someone tell me where the Purchase Order ME23n  - communication tab - where these values stored I am not able to find it. Regards, Venkat

  • File handling in J2ME

    Hi All, When I start reading or writing an y data in a local file in my system through a midlet, it asks for "Is it OK to read/write local files". I don't want this to popped up . Can anyone please guide me in how can I remove or bypass this popup an

  • Ipod not syncing music, "cannot sync, playlists don't exist"

    I just downloaded a few CDs to my iTunes and I tried to sync it up, but it said that my playlists don't exist anymore. Yet, they were still all there when I tried to sync it. Any help would be graciously appreciated! Dell   Windows XP Pro  

  • Bank Reconciliation by Two users - at a time

    Hi, Can two users do bank statement reconciliation at same time? SV Reddy Edited by: SV Reddy on Nov 29, 2010 12:49 PM