Combo Box navigation and update

i need a frame which will popup up the value from database into comboBoxControl and using the navigationBar to navigate the data. But when i click the insert , it will allow me to select the same data from the database. Which item in the property should i set in the conboBoxControl.

ya Ad,
          This is my code ..........
oCmb1 = frm.Items.Item("cmb_dept").Specific
            oCmb2 = frm.Items.Item("cmb_mno").Specific
            oCmb3 = frm.Items.Item("cmb_ename").Specific
            oCmb4 = frm.Items.Item("cmb_mtype").Specific
            oCmb5 = frm.Items.Item("cmb_chk").Specific
            oCmb6 = frm.Items.Item("cmb_agy").Specific
            oTxt = frm.Items.Item("t_docno").Specific
            oTxt1 = frm.Items.Item("t_date").Specific
            oTxt2 = frm.Items.Item("t_desc").Specific
            frm.DataSources.UserDataSources.Item("DS_dept").Value = rec.Fields.Item("U_Dept").Value
            frm.DataSources.UserDataSources.Item("DS_mtype").Value = rec.Fields.Item("U_MType").Value
            frm.DataSources.UserDataSources.Item("DS_agy").Value = rec.Fields.Item("U_CAgency").Value
            frm.DataSources.UserDataSources.Item("DS_mno").Value = rec.Fields.Item("U_Mno").Value
            frm.DataSources.UserDataSources.Item("DS_ename").Value = rec.Fields.Item("U_Ename").Value
            frm.DataSources.UserDataSources.Item("DS_chk").Value = rec.Fields.Item("U_Chklst").Value
            frm.DataSources.UserDataSources.Item("DS_dno").Value = rec.Fields.Item("U_DocNo").Value
            frm.DataSources.UserDataSources.Item("DS_date").Value = rec.Fields.Item("U_Date").Value
            frm.DataSources.UserDataSources.Item("DS_desc").Value = rec.Fields.Item("U_Desc").Value
Regards,
Anitha

Similar Messages

  • Combo Box Valid Values Update

    Hi All,
    I'm developing a Form which has BP Code and a ComboBox which, after entering a valid Supplier in the BPCode EditText, updates the ComboBox with the Supplier Catalog Numbers of all the Items where the CardCode (in OITM) matches the BPCode.  I have this working for the first change of BPCode but when the BPCode changes I want to update the ComboBox ValidValues.  I have tried many methods but cannot remove the ValidValues which are already there.  I have tried linking the ComboBox to a DataTable, clearing the DataTable and rebinding but this doesn't seem to work either.
    Any help on removing ValidValues from a list when I don't know what is already there (as the VV list is now out of scope) or adding a data bound ComboBox would be most appreciated.
    Thanks in anticipation,
    David

    Hi David,
    Try following
            'get the reference to the state combo box
            oCombo = oForm.Items.Item("combo box unique id").Specific
            'remove existing items if any
            'before adding new items
            For Flag = 0 To oCombo.ValidValues.Count - 1
                oCombo.ValidValues.Remove(0, SAPbouiCOM.BoSearchKey.psk_Index)
            Next
    After this, use a recordset or datatable to retrieve the records, and than a loop to add valid values to the combo box.
    Rahul

  • Programmatically update Combo box won't update its Local variable

    Hello all,
    I followed a tutorial from NI website and programmatically edit items in a combo box. It worked successfully but not for the Local variables. Local variables still retain items that it had before.
    Any suggestions ?
    Thanks !
    Solved!
    Go to Solution.

    You need to programmatically update the value property in order to change what the local variable will return, the value that you will wire doesn't have to match with one of the Strings[] array.
    Perhaps you need to do something like this to update your value to change from "Two" to "Five".

  • SBO 2005 combo box does not update value at first time

    Hi!I developed an addon for sbo 2004 with a combo box populated with the months of the year, and it works. The same code run on SBO 2005 works only after the second selection. Has anyone found the same problem?

    definition of the item:
    item = form.Items.Add("oMese", SAPbouiCOM.BoFormItemTypes.it_COMBO_BOX)
                    item.Left = 245
                    item.Top = 5
                    item.Width = 80
                    item.DisplayDesc = True
                    combo = item.Specific
                    combo.DataBind.SetBound(True, "", "uMese")
                    combo.ValidValues.Add(1, "Gennaio")
                    combo.ValidValues.Add(2, "Febbraio")
    event handling:
    inside ItemEvent in case the item is selected
    Case SAPbouiCOM.BoEventTypes.et_COMBO_SELECT
                        Select Case pVal.FormUID
                            Case "PRG_UFM_0002_RegIVAAcq"
                                retCode = oTy_RACQ.FormComboSelect(pVal, BubbleEvent)
      Public Shared Function FormComboSelect(ByVal pVal As SAPbouiCOM.ItemEvent, _
                                               ByRef BubbleEvent As Boolean, _
                                               ByRef funCaller As Object, _
                                               ByVal funCallerID As Integer, _
                                               ByRef aForm As SAPbouiCOM.Form) _
                                               As Integer
            Dim msg As String
            Dim edt As SAPbouiCOM.EditText
            Dim cmb As SAPbouiCOM.ComboBox
            Dim obt As SAPbouiCOM.OptionBtn
            Dim cbx As SAPbouiCOM.CheckBox
            Dim mtx As SAPbouiCOM.Matrix
            Try
                If pVal.Before_Action = True Then
                    Select Case pVal.ItemUID
                        Case "oMese"
                            Dim stre As New strEstremi
                            cmb = aForm.Items.Item("oMese").Specific
                            edt = aForm.Items.Item("anno").Specific
                            If Not cmb.Selected Is Nothing Then
                                GetEstremiPeriod(edt.Value, cmb.Selected.Value, "M", stre)
                                edt = aForm.Items.Item("dtFrom").Specific
                                edt.String = stre.dtFrom
                                edt = aForm.Items.Item("dtTo").Specific
                                edt.String = stre.dtTo
                            End If
    end function
    thank you I hope is enough otherwise please tell me

  • Response to mouse click by combo box list and underlying clickable label

    Hello,
    we developed a label responding to a mouse click by opening and thereby displaying an associated help text. The label extends a project specific hierarchy of labels and thus implements MouseListener, of course. Now we encountered a strange problem: It occurs when a combo box is placed above such a label in a panel. By clicking the combo box a selective list drops down and covers the label. As soon as a mouse click is performed on a list item directly covering (i.e., right in front of) the clickable label not only this item is selected but the help screen associated with the underlying label is displayed, too. So the mouse click is processed twice: as proposed by the combo box and unwantedly by the label. This behaviour could not be reproduced on other components being placed below a combobox. So the label itself seems to be the cause but we cannot imagine what could exactly be the reason for this double reaction. Perhaps anyone heard of something like that?
    We are currently working with IBM Visual Age for Java 2.0 (Java version 1.1.8 with the according Swing version). The clickable label reflectively calls methods of a model to determine whether help is available and if so later on to open this help text.
    Any help is appreciated!
    Danilo

    Thank you for your response. I tried both to check the focus and to consume the event. But I had to learn that labels are not able to catch the focus. I also was not able to consume an appropriate event of the combobox. So I finally solved the problem by extending JButton and implementing ActionListener. Thus my labels are actually buttons but I changed their appearance and behaviour so one cannot distinguish them from labels.

  • Combo box, ring and event to modify them runtime

    Hi,
    I attached a picture of the block diagram. Using LV 8.2.1, win XP.
    What I want : User should select from Main Selection, and that brings up new values for strings in the other menus (tried both combo box and menu ring items).
    Teh problem : This block doesn't do that. Why? Looking with probe, I see the event captured and data are ok until the property node. They are not writed and on the front panel I see no difference.
    Thanx
    Attachments:
    double box test.jpg ‏97 KB
    Test doppio ring.vi ‏21 KB

    Slyfer wrote:
    I thought that the code inside the while loop but outside the event structure wasn't care.
    So if I want to do something continuosly (for example continuosly comparing two integer values to have a real-time boolean led indicator on front panel), do I put the code in the middle? This is a bit confusing thinking about the "timeout event"....
    Use the timeout event or put in the middle (=outside event structure but inside while loop.... at which CPU rate is executed?? too fast?) ??
    Just a suggestion. The timeout event for the Event Structure [ES] is equivalent to that of providing a small delay inside the while loop.
    But it is not mandatory. If you dont wire some value to the timeout terminal, but still want to something, like comparison, you can very well put that code outside the ES but inside the while loop. It ll execute.
    Else you can wire a value like 50 or 100 to the timeout terminal [ this gives enough time for the execution of the various codes inside the various events configured for the ES], so that the ES times out for every 50 or 100 ms when none of the other events occurs. If you put your comparison code here, it ll be doing the comparison all the time or whenever the ES waits and crosses the specified ms after an event has happened.
    I hope this gives you a clear idea about eventstructures.
    See the below links for more details on Event Structures.
    http://zone.ni.com/devzone/cda/tut/p/id/3331
    http://zone.ni.com:80/reference/en-XX/help/371361B-01/lvconcepts/using_events_in_labview/
    http://zone.ni.com/reference/en-XX/help/371361B-01/lvhowto/caveatsrecmndtnsevnts/
    - Partha
    LabVIEW - Wires that catch bugs!

  • Combo box navigation

    I'm looking to use a combo box to navigate to a particular record in a data block, however when I change the combo box how do I get it to requery rather than just change the value for the current record???

    If i understand You correctly, you got
    combo field, and all the other fields are text boxes.
    Lets pretend that list box db field is emp.emp_id
    If there is not too mutch records try this one.
    Set combo box "Database item" to "no".
    create additional hidden text field for database column emp.emp_id
    Before start working with form (when-new-form-instance for example) fetch all the field values to the combo box.
    Then, create trigger "when-item-validate" or simething, witch requeries data for all the other data block items, when combo box value is changed.

  • Combo Box Won't Update

    I can't get my combo box to change it's list. It always displays the original list. I know that this code is being executed, cause I verified it with the debugger. I can't understand this.
            String[] stringArray = {"Why","Can't","I","Change","You"};
            cboMessageHeader = new javax.swing.JComboBox();
            cboMessageHeader.setModel(new javax.swing.DefaultComboBoxModel(stringArray));I've also tried
            cboMessageHeader = new javax.swing.JComboBox(stringArray );And
            cboMessageHeader = new JComboBox(new EnumComboBoxModel(CANHeader.class));Which is what I really want to do (use the enum to create the list).
    Ahh yes and thanks to anyone who responds to this, i'm pretty frustrated at the moment and help is appreciated,
    Nathan

    Could someone tell me exactly why you can't assign
    cboMessageHeader = new ...
    twice?you can, but the second one is a new instance of JComboBox, and not the one
    you see on the screen.
    to get it to work with the new comboBox, you would have to remove the old one,
    then add back the new one, revalidate the panel, perhaps repaint - overall, messy.
    much easier to just change the combobox's model

  • Combo box visible and loaded but cant interact with it

    I have two swf files onSiteSearch and onSiteReg. Both work as
    expected when used alone but when onSiteReg is loaded from onSite
    Search the comboBox on onSiteReg cannot be interacted with. It is
    visible and has the correct data in it but there is no ability to
    drop down the comboBox. I have tried many suggestions I have found
    here including making sure there is an instance of the comboBox in
    the onSiteSearch but nothing seems to change.
    The onSiteSearch brings up a dataGrid and when a list item
    from the grid is click it loads the onSiteReg (see code below).
    Everything works as it should including checkBoxs and actionScript
    but I can change the selected choice in the comboBox.
    Thanks in Advance for any insight and/or help.
    var dgListener:Object = new Object();
    dgListener.cellPress = function(event) {
    txtTalentEventID.text =
    dgResults.getItemAt(event.itemIndex).TalentEventID;
    _global.thisTalentEventID =
    dgResults.getItemAt(event.itemIndex).TalentEventID;
    loadMovie("onSiteReg.swf",_level0);
    dgResults.addEventListener("cellPress",dgListener);

    Ok. I changed the code to use loadMovieNum like this:
    var dgListener:Object = new Object();
    dgListener.cellPress = function(event) {
    txtTalentEventID.text =
    dgResults.getItemAt(event.itemIndex).TalentEventID;
    _global.thisTalentEventID =
    dgResults.getItemAt(event.itemIndex).TalentEventID;
    //loadMovie("onSiteReg.swf",_level0);
    loadMovieNum("onSiteReg.swf", 2);
    dgResults.addEventListener("cellPress",dgListener);
    and now the onSiteReg comboBox works fine but now i have both
    movies on the screen at the same time and can't figure out how to
    get rid of onSiteSearch.
    Yes, I am new to this flash stuff. Have been doing CF since
    v2.0 but flash is kicking my ***!

  • Question abt. combo box and database

    Hi. I have two combo boxes, A and B. Items in A is obtained from table X, Items in B is obtained from table Y. But, the problem is that whatever appears in combo box B should not contain those in combo box A. How do i go about doing this? Note that values in table X come from values in table Y.Here's an example:
    (this is I currently have)
    Combo X             Combo Y
    Apple            Mango
    Orange           Kiwi Fruit
    Pineapple        Apple
    Kiwi Fruit        
    Mango          (this is I WANT)
    Combo X                  Combo Y
    Orange                  Mango
    Pineapple               Kiwi Fruit
                            ApplePlease help and thanks in advance.

    hi....
    First of all, I've designed the two combo boxes with Add/Delete buttons in the GUI. I'm using JSP to retrieve values from database table into my combo boxes.
    Actually, I have the two combo boxes already. I have already got the items inserted into combo A from table X using JSP. I am thinking of getting all the values in combo box B from the table Y first, then maybe store them in an array or something, b4 comparing those values with that from combo box A, eliminate those existing in combo box A, and the rest will be stored in combo B.
    I do not know exactly how to store values i obtained from table to an array and how to compare arrays.
    hope u understand what i'm trying to say, please help if possible, thanks.

  • Combo Box Selected Data

    I have a combo box called class_cb, I am trying to use the
    combo box in a maths formula.
    I am trying to set that if the active selected combo box data
    = 1 then a text area = given number, if data = 2 then ....
    I can get flash to recognise the change i just can't seem to
    get the statement
    "if selected combo box data = 1 then text area = 5" to work,
    the text area defaults to the first value and changing the
    combo box item and pressing calculate doesn't change the
    value of the text box.
    Any help would be appreciated, thanks
    // COMBO BOX
    // Add Items to List.
    class_cb.addItem({data:1, label:"Normal"});
    class_cb.addItem({data:2, label:"Free"});
    class_cb.addItem({data:3, label:"Close & Interference"});
    // Update Upon Change Listener Object
    // Create Listener Object.
    var cbListener:Object = new Object();
    // Assign function to Listener Object.
    cbListener.change = function(event_obj:Object) {
    trace("Value changed to:
    "+event_obj.target.selectedItem.data);
    // Add Listener.
    class_cb.addEventListener("change", cbListener);
    // CALCULATE
    shaft_ta.text = "nul";
    //On calculate_btn release
    //Math functions
    calculate_btn.onRelease = function(){
    //If combo box = data no. then change label
    if (class_cb.selectedItem.data = 1) {
    shaft_ta.text = "6";
    } else {
    if (class_cb.target.selectedItem.data = 2){
    shaft_ta.text = "7";
    } else {
    if (class_cb.selectedItem.data = 3){
    shaft_ta.text = "9";
    }

    can any one help?, I have tried many different things and
    still can't get it to work.

  • MS Excel/VBA: Querying DB to populate combo boxes

    Hi.
    I am trying to populate five different combo boxes.
    They are in an order of importance - market, product, duration, trade period description and trade date. Therfore, if a user selects a different market, then all of the other combo boxes should automatically update to show, for example, only the products which operate in that market should be visible, and this should be iterated all of the way down the other three combo boxes.
    I have written code for this to happen so the query for product only includes those for that market.
    However, when I use the ListFillRange to select all of the available products and populate the combo boxes an error occurs sometimes stating "Application-defined or object-defined error". It highlights the .Refresh BackgroundQuery:=False line.
    Is there a better way to go about completing this task?
    Thanks, Dan.

    Sometimes I've seen this in access with form, where the database data has either something line a linefeed character or a load of spaces before the actual
    text eg " text" in which case the
    columns in the control will be too narrow.
    You could try udjusting your coulumns width in its control
    You might need to loop through each item in the cotrol and adjust using say
    the MID() function or the TRIM() function.

  • Browse and update database tables

    I'm looking for a tool that will let me connect to an Oracle database, select a table and some fields off the table and build a simple java class to navigate / update the data.
    Essentially, I'm looking for a tool that replicates the way Microsoft Access can build a form for navigation and update of a database table.
    However, I want to use java, not MS Access.
    Any ideas if such a tool is available ?
    Thanks

    http://squirrel-sql.sourceforge.net/

  • VBA Userforms – Getting errors when item from combo box is not selected

    Hi there
    Thank you in advance for taking the time to check this out.
    Objective:
    I have 2 combo boxes, one is dependent on what has been selected in the first combo box (dynamic named range), they work fine except for an irritating error when the user accidentally clicks in the empty
    Cmbox_IncCategory and it won’t allow the user to go back to the
    cmbx_Category_Type box if the user forgot he had to make a selection from that first before selecting the
    Cmbox_IncCategory.
    The error that pops up is “Invalid property value”.
    I tried having text in there to say “please select from Cmbox_IncCategory first, but that didn’t fix it.
    I tried to ‘If error resume next’ but that didn’t like it either. Now I am stumped.
    Main combo box= cmbx_Category_Type
    2nd combo box (displaying a list dependent on what was selected in Main combo box)= Cmbox_IncCategory
    I know there must be a way to fix it so that if a user clicks on the combo box, but doesn’t make a selection it won’t lock up the form.
    Yes, it is a mandatory field, and I was considering using a message box to advise the user that this must be completed, but I am not sure how to do it (and avoid the errors
    Here’s the current code I have for the combo boxes.
    Me.Cmbox_IncCategory = "" 'Clears the contents of the 2nd combobox when another category is chosen
    On Error Resume Next
    'I can't seem to have the Incident Category combobox to be empty when the form is open _
    I have tried Cmbox_IncCategory.Value = "", but I get an error. I then tried Cmbox_IncCategory.text = "" _
    but also get the error. I don't know how else to get it to work .. I tried both codes in the _
    form_initialize, but get an error ... I'm stumped !
    Select Case Me.cmbx_Category_Type
    Case "Crime"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_CRIME"
    Case "Property Damage - Minor - NS"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_PROPRTY_NS"
    Case "Property Damage - Significant - S"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_Proprty_S"
    Case "Safety"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_SAFETY"
    Case "Security Breach"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_BREACH_S"
    Case "Support"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_SUPPORT"
    Case "Vehicle"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_VEHICLE_S"
    End Select
    End Sub
    I’d be really grateful if someone could help me out, or perhaps direct me to where I might find some coding that will achieve the result I am seeking.
    This links to
    My Sample form
    With much gratitude,
    TheShyButterfly
    Hope you have a terrific day, theShyButterfly

    Hi Peter,
    Thank you for your quick response :) Brave man! :)
    Both combo boxes are blank to start with (because nothing has been selected). If I click on the first combo box (cmbx_Category_Type) which lists the main events/category types, but I don't select any thing, and I click in the secondary box
    (Cmbox_IncCategory) and then click on any other control, I get an “Invalid property value” error. When I click OK on the error (a few times) and I return to the code window, it gives no indication where/what is breaking
    the code/causing the error. I have no choice but to exit the form by stopping in the code window.
    If I click on the first textbox, (cmbx_Category_Type), and then do the right thing and make a selection, then I have no problems with the secondary textbox (Cmbox_IncCategory).
    As I am not that up on VBA I am trying to follow your instructions... I have changed the code as follows, removed and replaced the rowsource name, but I encounter the very same problem.
    When I changed my code from Me.Cmbox_IncCategory="" to yours myCombo.ListIndex = -1  (changing the combo box name to reflect my combo box name) and adding the second line of code ...
    Me.Cmbox_IncCategory.ListIndex = 0 I still got the same behaviour and error.
    I even tried moving each row of the named rows down one row (so that there would be a 'blank' row which could be selected to get out of trouble, but it wasn't very successful either.
    Have you opened my form to see what happens, I included the link so whoever was looking at my problem (and yes, I have many I know), could see for themselves what it is doing/not doing.
    The code now reads as below (is this what you meant?) - the results were as I mentioned above.
    Me.Cmbox_IncCategory.ListIndex = -1 'Clears the contents of the 2nd combobox when another category is chosen
    Me.Cmbox_IncCategory.ListIndex = 0
    ' On Error Resume Next
    'I can't seem to have the Incident Category combobox to be empty when the form is open _
    I have tried Cmbox_IncCategory.Value = "", but I get an error. I then tried Cmbox_IncCategory.text = "" _
    but also get the error. I don't know how else to get it to work .. I tried both codes in the _
    form_initialize, but get an error ... I'm stumped !
    Select Case Me.cmbx_Category_Type
    Case "Crime"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_CRIME"
    Case "Property Damage - Minor - NS"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_PROPRTY_NS"
    Case "Property Damage - Significant - S"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_Proprty_S"
    Case "Safety"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_SAFETY"
    Case "Security Breach"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_BREACH_S"
    Case "Support"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_SUPPORT"
    Case "Vehicle"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_VEHICLE_S"
    End Select
    End Sub
    I appreciate your patience :) I am growing in knowledge, but its a slow process. Please let me know if there is anything else I can help clarify for you :)
    This links to
    My Sample form
    Thanking you again
    TheShyButterfly
    Hope you have a terrific day, theShyButterfly

  • Combo box in javascript

    I have a combo box (combo1), and on changing the value selected in it, a second combo box (combo 2) is displayed on the screen.
    I need to be able to add some java script code for Combo2, as depending on the value selected in it, some further action has to be done.
    All the code i've tried searching for so far, uses the HTML version of combo box, and accesses the value in java script using the line "document.formname.OPTION.[selectedindex].value".
    How would i do the same for a JSF combo box, in java script?
    Thanks in advance :)

    hi.. thanks for the response.. i did as u suggested but i got the following error : "document.all.menu8 is null or not an object "
    The code for my combo box is as follows:
    <h:selectOneMenu styleClass="selectOneMenu" id="menu8" onchange="display()">
    <f:selectItem itemLabel="select" itemValue="select" />
    <f:selectItem itemLabel="option 2" itemValue="op2" />
    <f:selectItem itemLabel="option 3" itemValue="itemValue3" /></h:selectOneMenu>
    <div id="op2" style="DISPLAY: none">The following is the java script snippet:
    <script language="javascript">
         function display()
              document.all.op2.style.display='none';
              document.all.itemValue3.style.display='none';
              var d=document.all.menu8.getElementById(menu8);
              var name=d.options[d.selectedIndex].value;
              if(name!='select')
               eval("document.all."+name+".style.display='' ");
              </script>Is it that the 'div' tag is incompatible in this case?

Maybe you are looking for

  • "The disk you inserted was not readable by this computer" on NTFS ext HDD

    I have spent hours trying to find a solution to this problem, but alas - nothing really useful came up. Therefore I now turn to you, Discussions - you're my only hope! And to the case: I just got a brand new shiny and aluminiy MacBook Pro a couple o

  • Can i use execption in forall like below proc

    CREATE TABLE X_TEST1 (X_NO VARCHAR2(8), X_SAL NUMBER,X_NAME VARCHAR2(10) ); CREATE TABLE X_TEST2 (X_NO NUMBER, X_SAL NUMBER,X_NAME VARCHAR2(10) ); CREATE TABLE X_TEST3 (X_NO VARCHAR2(8), X_SAL NUMBER,X_NAME VARCHAR2(10) ); INSERT INTO X_TEST1 VALUES

  • When Coherence security is enabled there is a significant performance hit

    When Coherence security is enabled, every call to do the cache operation do a security check. This is negatively impacting application's performance. I'm using the built in DefaultController & java keystore login. Is there any workaround so that the

  • Getting NI B4 Organ to work in mainstage

    I am using a Yamaha CS2x for my controller and a digidesign mbox 2 pro for my midi interface. I was able to get the B4 to work in Logic Pro by adding a multi-timbral software instrument track. Once the B4 plugin was loaded I switched the upper and lo

  • Consumption in quantity

    Hello, While doing confirmation of process order  consumption of Packing material is not happening as per BOM.  Some additional quantity approximately 4 to 5% is happening. what can be reason. we had define 8% wastege also. Thanks in Advance Lisa