Define New option in Department Combo

Hi all,
I have created a Department Combo in my form.
I have loaded all the department from the table.
after that, i added a DefineNew option to create new department.
how can i activate the department setup form after selecting DefineNew in Combo.
please help me to solve this problem.
regards
mohana

Hi,
usually you would go this way:
1. catch when the combobox value is selected
2. use application.ActiveMenuItem
here's a vb6 snippet
if pVal.EventType = et_COMBO_SELECT and pval.BeforeAction = False then
  if oForm.Items.Item("comboUID").specific.selected.value = "New" then
     appl.ActivateMenuItem "menuuid"
  end if
end if
BUT:
3. but the problem is - the Department Setup has no MenuUID !
you can only call it from the users form. there's also no DIAPi for the department table.
actually i think you have to create your own department table/usertable.
i hope it's anyway a bit helpful
lg David

Similar Messages

  • How to Define "Define new" Option in UDF

    Hello
    My client want there is define new option in udf also
    suppose we create
    1) By road
    2) By DTDC
    there is many more that he want to crate when he need
    so he want in drill down option there is Define new option then he create next shipping method in udf
    Note: shiping type is only example i want define new in udf

    Hi Jaykumar............
    You can do this by two ways........
    1. By FMS
    2. By UDF with Linked UDO.
    1. By FMS:
    Create UDF as you created already. Press ShiftF2 on this UDF and select 2nd option and update. Not when you press ShiftF2 or press Indicator then it will open the list of values where you can find New Button and you can define here new value at run time.
    2. By UDF with Linked UDO:
    Create UDF as you created Already. Now Create a No Object UDO where you can define this code and its name or value.
    When you create this UDF you have one option of Linked UDO in User defined Table window.
    Select this UDO in drop down so that it gets linked with this UDF and when you see this UDF at your form you can find the dropdown list with Define New Option.........
    Hope this will clear you..........
    Regards,
    Rahul

  • SDK-UI - Combobox – Define New option in comboboxes

    If a combobox is databound to a UDF that links to a LinkTable it does not automatically include the entries + the Define new option.

    Hi,
    this code has to be executed iin the BeforeAction = False part. Where are u using this code?
    And are u getting any errors?
    Vasu Natari.
    P.S: And Rao garu where are u working?
    Edited by: vasu natari on Apr 21, 2010 12:47 PM

  • Combo define new

    in the system forms there are combobexes that have a option define new. when i select define new a new form iti is open and i can define some new values for the combo. does any one know how to do this on a user define form.
    I have a form build in screen painter, i have added Define New option to the combobox on my form. i want when i select new to can define a new transaction code (from OTRC table).

    Hi,
    In the procedure where you are handling the events, on the combo select event, check if the item selected is New. If yes, enable the menu code for the form, which you want to open. and than perform a click on the add button for that form.
    Rahul

  • How to create define new?

    i have taken combo box in form . i want to select  define new option in combo box.
    is it possible....?

    Imports SAPbobsCOM
    Imports SAPbouiCOM
    Public Class Class1
        '// At the begining of every UI API project we should first
        '// establish connection with a running SBO application.
        Private WithEvents SBO_Application As SAPbouiCOM.Application
        Private oForm As SAPbouiCOM.Form
        Dim oButton As SAPbouiCOM.Button
        Dim oOptionBtn As SAPbouiCOM.OptionBtn
        Dim oCheckBox As SAPbouiCOM.CheckBox
        Dim oComboBox As SAPbouiCOM.ComboBox
        Dim oItem As SAPbouiCOM.Item
        Dim oStatic As SAPbouiCOM.StaticText
        Dim oEdittext As SAPbouiCOM.EditText
        Dim oEditItem As SAPbouiCOM.EditText
        Dim oFolder As SAPbouiCOM.Folder
        Private oMatrix As SAPbouiCOM.Matrix
        Private Matrix2 As SAPbouiCOM.Matrix
        Private oLink As SAPbouiCOM.LinkedButton
        Private oColumns As SAPbouiCOM.Columns
        Private oColumn As SAPbouiCOM.Column
        Private sPath As String
        Private oDBDataSource As SAPbouiCOM.DBDataSource
        Private oCompany As SAPbobsCOM.Company
        Private rs As SAPbobsCOM.Recordset
        Private oLineRec As SAPbobsCOM.Recordset
        Private rs1 As SAPbobsCOM.Recordset
        '// declaring a User data source for the "Remarks" Column
        Private oUserDataSource As SAPbouiCOM.UserDataSource
        Public sErrMsg As String
        Public lErrCode As Long
        Public lRetCode As Long
        Private Sub SetApplication()
            '// Use an SboGuiApi object to establish connection
            '// with the SAP Business One application and return an
            '// initialized appliction object
            Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            SboGuiApi = New SAPbouiCOM.SboGuiApi
            '// by following the steps specified above, the following
            '// statment should be suficient for either development or run mode
            'sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
            sConnectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056" 'Environment.GetCommandLineArgs.GetValue(1)'
            Try
                SboGuiApi.Connect(sConnectionString)
                '// connect to a running SBO Application
                '// get an initialized application object
                SBO_Application = SboGuiApi.GetApplication()
            Catch ex As Exception
                MsgBox("Make Sure That SAP Business One Application is running!!! ", MsgBoxStyle.Information)
                Exit Sub
            End Try
        End Sub
        Private Function ConnectToCompany() As Integer
            '// Make sure you're not already connected.
            If oCompany.Connected = True Then
                oCompany.Disconnect()
            End If
            '// Establish the connection to the company database.
            ConnectToCompany = oCompany.Connect
        End Function
        Private Function SetConnectionContext() As Integer
            Dim sCookie As String
            Dim sConnectionContext As String
            ' Dim lRetCode As Integer
            '// First initialize the Company object
            oCompany = New SAPbobsCOM.Company
            '// Acquire the connection context cookie from the DI API.
            sCookie = oCompany.GetContextCookie
            '// Retrieve the connection context string from the UI API using the
            '// acquired cookie.
            sConnectionContext = SBO_Application.Company.GetConnectionContext(sCookie)
            '// before setting the SBO Login Context make sure the company is not
            '// connected
            If oCompany.Connected = True Then
                oCompany.Disconnect()
            End If
            '// Set the connection context information to the DI API.
            SetConnectionContext = oCompany.SetSboLoginContext(sConnectionContext)
        End Function
        Public Sub New()
            MyBase.New()
            Try
                SetApplication()
                ' Set The Connection Context
                If Not SetConnectionContext() = 0 Then
                    SBO_Application.MessageBox("Failed setting a connection to DI API")
                    End ' Terminating the Add-On Application
                End If
                If Not ConnectToCompany() = 0 Then
                    SBO_Application.MessageBox("Failed connecting to the company's Data Base")
                    End ' Terminating the Add-On Application
                End If
                'SBO_Application.MessageBox("DI Connected To: " & oCompany.CompanyName)
            Catch
                System.Windows.Forms.MessageBox.Show("SBO application not found")
            End Try
            diplay_DNEWform()
        End Sub
        Private Sub diplay_DNEWform()
            Dim oForm As SAPbouiCOM.Form
            Try
                oForm = SBO_Application.Forms.Item("SM_DNFM")
                SBO_Application.MessageBox("Form Already Open")
            Catch ex As Exception
                Dim fcp As SAPbouiCOM.FormCreationParams
                fcp = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
                fcp.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Fixed
                fcp.FormType = "SM_DNFM"
                fcp.ObjectType = "SM_DNEW"
                fcp.UniqueID = "SM_DNFM"
                oForm = SBO_Application.Forms.AddEx(fcp)
                oForm.AutoManaged = False
                DrawDNEWForm(oForm)
            End Try
            oForm.Visible = True
        End Sub
        Public Sub DrawDNEWForm(ByVal oform As SAPbouiCOM.Form)
            Dim oItem As SAPbouiCOM.Item
            Dim oButton As SAPbouiCOM.Button
            ''Form specifications
            oform.Title = "define new"
            oform.Left = 335 '340
            oform.ClientWidth = 550 '350
            oform.Top = 55
            oform.ClientHeight = 200 '500
            'oForm.Mode = SAPbouiCOM.BoFormMode.fm_ADD_MODE
            ShowAllItems(oform)
            '// Adding a OK button
            oItem = oform.Items.Add("1", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
            oItem.Left = 27
            oItem.Width = 65
            oItem.Top = 175 '300
            oItem.Height = 20
            oButton = oItem.Specific
            '// Adding a Cancel button
            oItem = oform.Items.Add("2", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
            oItem.Left = 101
            oItem.Width = 65
            oItem.Top = 176 '300
            oItem.Height = 20
            oButton = oItem.Specific
        End Sub
        Private Sub ShowAllItems(ByVal oForm)
            oDBDataSource = oForm.DataSources.DBDataSources.Add("@TESTDNEW")
            Dim oEditordr As SAPbouiCOM.ComboBox
            oItem = oForm.Items.Add("amtTxt", SAPbouiCOM.BoFormItemTypes.it_STATIC)
            oItem.Left = 5
            oItem.Width = 100
            oItem.Top = 10
            ' oItem.AffectsFormMode = False
            oItem.LinkTo = "amtVal" '"Vndval"
            oStatic = oItem.Specific
            oStatic.Caption = "location"
            oItem = oForm.Items.Add("amtVal", SAPbouiCOM.BoFormItemTypes.it_COMBO_BOX)
            oItem.Left = 110
            oItem.Width = 160
            oItem.Top = 10
            ' oItem.LinkTo = "OrdrTxt"
            oItem.AffectsFormMode = True
            oEditordr = oItem.Specific
            '' Adding Choose From List
            oEditordr.DataBind.SetBound(True, "@TESTDNEW", "U_name")
            Dim scombo As String = "Define New"
            Call InitializeMCombo(oForm, scombo, "@TEST_TABLE", "<Default_Value>")
        End Sub
        Public Sub InitializeMCombo( _
            ByRef oForm As SAPbouiCOM.Form, _
            ByVal sCombo As String, _
            ByVal sLinkedTable As String, _
            Optional ByVal sDefaultValue As String = "" _
            Try
                oForm.Freeze(True)
                Dim oCombo As SAPbouiCOM.ComboBox
                oCombo = oForm.Items.Item(sCombo).Specific
                Try
                    ' Add 1-st value if database field accept NULL
                    oCombo.ValidValues.Add("", "")
                    Dim oRS As SAPbobsCOM.Recordset
                    oRS = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    Dim sSql As String = "SELECT Code, Name FROM [@" & sLinkedTable & "] ORDER BY 1"
                    oRS.DoQuery(sSql)
                    oRS.MoveFirst()
                    While oRS.EoF = False
                        oCombo.ValidValues.Add(oRS.Fields.Item("Code").Value, _
                        oRS.Fields.Item("Name").Value)
                        oRS.MoveNext()
                    End While
                    ' Add DEFINE NEW value +++++++++++++++++++++++++++++++
                    ' Note: Code can have length up to 8 caracters
                    oCombo.ValidValues.Add("Redefine", "Redefine")
                    If Not oRS Is Nothing Then
                        System.Runtime.InteropServices.Marshal.ReleaseComObject(oRS)
                        oRS = Nothing
                    End If
                    System.GC.Collect() 'Release the handle to the table
                    ' Select dafault value if not null
                    If Not sDefaultValue.Equals("") Then
                        If oCombo.ValidValues.Count > 0 Then
                            oCombo.Select(sDefaultValue, SAPbouiCOM.BoSearchKey.psk_ByValue)
                        End If
                    Else
                        If oCombo.ValidValues.Count >= 1 Then
                            oCombo.Select(0, SAPbouiCOM.BoSearchKey.psk_Index)
                        End If
                    End If
                Catch ex As Exception
                    ' log exception
                Finally
                    oCombo = Nothing
                End Try
            Catch ex As Exception
            Finally
                oForm.Freeze(False)
                System.GC.Collect()
            End Try
        End Sub
        Private Sub SBO_Application_ItemEvent( _
              ByVal FormUID As String, _
              ByRef pVal As SAPbouiCOM.ItemEvent, _
              ByRef BubbleEvent As Boolean _
        ) Handles SBO_Application.ItemEvent
            Dim oForm As SAPbouiCOM.Form
            oForm = SBO_Application.Forms.Item(FormUID)
            If pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT _
            And pVal.FormUID = "SM_DNFM" _
            And pVal.ItemUID = "amtval" _
            And pVal.BeforeAction = False _
            And pVal.ItemChanged = True _
            Then
                SBO_Application.MessageBox("30")
                Try
                    Try
                        Dim oCombo As SAPbouiCOM.ComboBox
                        Dim sValue As String = ""
                        oCombo = oForm.Items.Item("amtval").Specific
                        sValue = oCombo.Selected.Value
                        If sValue.Equals("Redefine") Then
                            Try
                                oCombo.Select(0, SAPbouiCOM.BoSearchKey.psk_Index)
                                oForm.Refresh()
                            Catch ex As Exception
                                'log exception
                            End Try
                            SBO_Application.Menus.Item("51207").Activate()
                        End If
                        BubbleEvent = False
                    Catch ex1 As Exception
                        ' log exception
                    End Try
                Catch ex As Exception
                    ' log exception
                End Try
            End If
            ' Other events +++
        End Sub
    End Class
      its not working ,   please check it  why this is hapening.
    please help me.....

  • Business Partner Contacts Define new is blank when addon runs

    version 2007 PL 15
    When my addon is running the business partner contacts tab is missing the "Define New" option and contacts cannot be added.
    When the addon is stopped then the businness partner contacts tab functions normally.
    There is nothing in the addon that affects or references the business partner form, and the event filters have been set carefully to exclude any unnecessary events.
    Has anyone had this strange problem or does anyone have any ideas?
    Thanks,
    Mel

    Mel,
    the problem must be in your addon. I think that you dont catch correctly the events or you work on incorrect form. For solution I recomend to find out the item no in BP contact (its 13) and search  through your code where is the 13 and check if is it correct. Maybe the problem is, that contacts in BP are only in ok form mode - check if have somewhere in code changing of formmode for BP form.
    Petr

  • "Define New" in Combo Box

    Hello,
    I would like to implement the "define new" feature for combo boxes that I am using in my UDO, as it is for some of the combo boxes of SAP. I have noticed that when I add a linked table to my user defined field, this option doesn't appear in the UDO forms, so I believe it must be implemented by code. How can this be done?
    Thanks.
    Ralph

    Hi.
    I haven`t try this, but mayby You can make Value in combo with  description "Define new", and if this value is set, open form whith You want ?
    This is my sugestion.
    Hope it helps.
    Regards
    Kamil Wydra
    I found that this topic was answered in the past.
    Here:
    SAP Business One SDK
    Message was edited by: Kamil Wydra

  • Problem with combo in js IE - new Option(t,v) not working

    hello! Did somene had experience some problems with
    adding new options in select object (combo box) in javascript? I can change text or value property, delete option by setting it to null, but when I want to add new, there is a problem!?
    why this code doesn't work?
    <script>
    ref = window.document.frmExample["cbo1"];
    alert(ref.length);
    ref.options[ref.length] = new Option("text'","value1");
    alert(ref.length);
    </script>
    interesting thing is that this works in Netscape (6), but it is not working in IE(5.5), and this is my first and last example where Netscape is 'better'...
    Can someone help, please?
    regards...
    Vlada

    you are right, it works in the 'mother' page, but if I want to add some options from popup window (window.open...), and when I accessing combo throught opener propery, than I have problem, because it is not working!?
    code sample...
    ... 'mother' page function ...
    function fAdd(){
    var popupW;
    popupW = window.open("page.html","name",attr);
    if (!popupW.opener)
    popupW.opener = window;
    ... popup window function...
    function fClick(){
    var opt;
    var ref = window.opener.document.frmExample1["cbo1"];
    alert(ref.length);
    opt = "new";
    ref.options[ref.length] = new Option(opt,opt);
    window.close();
    I get alert with the number ofoptions in combo, so ref is OK. I can delete some of them, change, but not to add new! Then I get Error message.
    any sugestion!? Strange, but it works in Netscape ...

  • Define new

    Hi.
    When i click Define New in the combo box the datas that i enter should be displayed in the combo.but it is not displayed.how to do it

    Hi try this one
    CREATE FORM SUB
    Public Sub CreateForm(...)
      If oMatrix.RowCount > 0 Then
        Call InitializeMatrixCombo(oForm, _
                                   MatrixID, _
                                   "DSU_Linked", _  ' Combobox Column
                                   "@LINKED_TABLE", _
                                   "<Default_Value>" _
      End If
    End Sub
    InitComboBox sub when we initializing combobox to combobox values we add also 2 new values:
    - "","" : NULL value, if database column accept null value
    - "Redefine","Redefine" : When selected with ItemEvent we activating menu with form uid where are we can define new values.
    Public Sub InitializeMatrixCombo( _
        ByRef oForm As SAPbouiCOM.Form, _
        ByVal sMatrixID As String, _
        ByVal sComboColumnName As String, _
        ByVal sLinkedTable As String, _
        Optional ByVal sDefaultValue As String = "" _
      Try
        oForm.Freeze(True)
        If SBO_Company.Connect Then
          ' Matrix
          Dim oMatrix As SAPbouiCOM.Matrix
          oMatrix = oForm.Items.Item(sMatrixID).Specific
          If oMatrix Is Nothing Then Throw New Exception("ERROR: matrix object is nothing"))
          ' Matrix column
          Dim oColumn As SAPbouiCOM.Column
          oColumn = oMatrix.Columns.Item(sComboColumnName)
          ' Matrix column cell
          Dim oCell As SAPbouiCOM.Cell
          oCell = oColumn.Cells.Item(oMatrix.VisualRowCount)
          ' Matrix column cell combo
          Dim oCombo As SAPbouiCOM.ComboBox
          oCombo = oCell.Specific
          If ClearCombo(oCombo) Then
            Try
              ' Add 1-st value if database field accept NULL
              oCombo.ValidValues.Add("", "")
              Dim oRS As SAPbobsCOM.Recordset
              oRS = SBO_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
              Dim sSql As String = "SELECT Code, Name FROM [@" & sLinkedTable & "] ORDER BY 1"
              oRS.DoQuery(sSql)
              oRS.MoveFirst()
              While oRS.EoF = False
                oCombo.ValidValues.Add(oRS.Fields.Item("Code").Value, _
                oRS.Fields.Item("Name").Value)
                oRS.MoveNext()
              End While
              ' Add DEFINE NEW value +++++++++++++++++++++++++++++++
              ' Note: Code can have length up to 8 caracters
              oCombo.ValidValues.Add("Redefine", "Redefine")
              If Not oRS Is Nothing Then
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oRS)
                oRS = Nothing
              End If
              System.GC.Collect() 'Release the handle to the table
              ' Select dafault value if not null
              If Not sDefaultValue.Equals("") Then
                If oCombo.ValidValues.Count > 0 Then
                  oCombo.Select(sDefaultValue, SAPbouiCOM.BoSearchKey.psk_ByValue)
                End If
              Else
                If oCombo.ValidValues.Count >= 1 Then
                  oCombo.Select(0, SAPbouiCOM.BoSearchKey.psk_Index)
                End If
              End If
            Catch ex As Exception
              ' log exception
            Finally
              oCombo = Nothing
              oCell = Nothing
              oColumn = Nothing
              oMatrix = Nothing
            End Try
          End If
        End If
      Catch ex As Exception
        ' log exception
      Finally
        oForm.Freeze(False)
        System.GC.Collect() 'Release the handle to the table
      End Try
    End Sub
    Item Event to handle selection of "Redefine" voice in combobox.
    Private Sub SBO_Application_ItemEvent( _
          ByVal FormUID As String, _
          ByRef pVal As SAPbouiCOM.ItemEvent, _
          ByRef BubbleEvent As Boolean _
    ) Handles SBO_Application.ItemEvent
      Dim oForm As SAPbouiCOM.Form
      oForm = SBO_Application.Forms.Item(FormUID)
      If pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT _
      And pVal.FormUID = sgloFormUID _
      And pVal.ItemUID = MatrixID _
      And pVal.ColUID = "DSU_Linked" _
      And pVal.BeforeAction = False _
      And pVal.ItemChanged = True _
      Then
        Try
          Dim oMatrix As SAPbouiCOM.Matrix
          oMatrix = oForm.Items.Item(MatrixID).Specific
          If oMatrix Is Nothing Then Throw New Exception("ERROR: matrix object is nothing")
          Try
            Dim oCombo As SAPbouiCOM.ComboBox
            Dim sValue As String = ""
            oCombo = oMatrix.Columns.Item("DSU_Linked").Cells.Item(pVal.Row).Specific
            sValue = oCombo.Selected.Value
            If sValue.Equals("Redefine") Then
              Try
                oCombo.Select(0, SAPbouiCOM.BoSearchKey.psk_Index)
                oForm.Refresh()
              Catch ex As Exception
               ' log exception
              End Try
              ' +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
              ' Here place your menu uid to call the form for adding new value
              ' +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
              SBO_Application.Menus.Item("51207").Activate()
            End If
            BubbleEvent = False
          Catch ex1 As Exception
            ' log exception
          End Try
        Catch ex As Exception
          ' log exception
        End Try
      End If
      ' Other events +++
    End Sub

  • Element Entry not showing up for new option in a plan after Open Enrollment

    I had to add a new option in a plan. I have defined the option, added it to the plan. I setup 2 standard rates for this option; one non-tax and the other taxable. This is an odd example because 1 certain employee falls under Group Health Employee plus Spousal Equivalent Plus Family. Last year the employee had Group Health Employee plus Spousal Equivalent but he still is not married and now has a domestic partner child. So they have asked me to create this option in the Group Health plan. Everything works fine when i choose the new option while the open life event is in started status and i can designee the spousal equivalent and the domestic partner child. But when i close the open life event and go to people and maintain and go to assignment to view the entries this employee has Group Health EE and Group Health EE Taxable still there with an end date of 1Jan08 and when i day track to 2Jan08 he does not have this entries there? What am i missing here? Also, when selecting the option in benefits service center if you scroll to the right there are no rates defined for this option.....but under standard rates i have defined a specific rate to this option and correctly filled out the level, compensation object, activity type, tax type, usage, element, input value and assignment to use. Any information would be greatly appreciated!!!!

    I've discovered that the problem is that there is no new file for the new blog entry. The other blog entry was published to the site folder before I was online but now when I hit the publish button it goes straight to uploading to my site, and the new entry doesn't show up as it has no file in the folder. How can I get it to publish to the folder before it uploads?

  • "Define New" feature for the UDF

    I have created UDFs in Item master data.
    I want to load each of my UDFs with the data from a Database field from an UDT.
    For e.g, my UDF's name is U_Size.
    My UDT has the following structure:
    Code - Name -U_Size.
    I want to display the values of U_Size (of user defined table) in my UDF combobox, which also should have Define New feature.
    Please help me with this!

    Following gives the detailed explanation of the problem:
    For implementing the Define New feature, I did the following:
    1) Created a user defined table : (TableX)
    Code - Name - FieldX
    2) Created UDF(FieldX) in OITM, and set the Linked Table to be my user defined table(TableX.)
    Now, I can get the Define New added in the UDF (combobox).
    But, the Combobox has only Code-Name values loaded into it.
    for example, if the user defined table(tableX) has the following values:
    Code - Name - FieldX
    1-1-USA
    2-2-Canada
    The UDF combo shows
    1-1
    2-2
    Is there any way to show like the following?
    USA
    Canada
    (or)
    1 - USA
    2 - Canada

  • Hai , How to create 'Define New ' ?

    hai,
    How to create 'Define New ' in Combo box and then Enter the value in the user defined table how to get the value  from the database table and display combo box ?

    Hi.
    I used this example for the matrix column. It's work and open a form for defining new values.
    Your need to add an event to refresh values in combobox.
    Think I help you.
    Best regards
    Sierdna S.
    P.S. How to proceed.
    1) Fill the combobox with valid values:
    Try
      ' Add first value to combobox
      oCombo.ValidValues.Add("", "")
      Dim oRS As SAPbobsCOM.Recordset
      oRS = SBO_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
      Dim sSql As String = "SELECT Code, Name FROM [@" & sLinkedTable & "]"
      oRS.DoQuery(sSql)
      oRS.MoveFirst()
      While oRS.EoF = False
          oCombo.ValidValues.Add(oRS.Fields.Item("Code").Value, oRS.Fields.Item("Name").Value)
          oRS.MoveNext()
      End While
      ' Last value
      oCombo.ValidValues.Add("Define","Define")
      If Not oRS Is Nothing Then
          System.Runtime.InteropServices.Marshal.ReleaseComObject(oRS)
          oRS = Nothing
      End If
      System.GC.Collect() 'Release the handle to the table
    Catch ex As Exception
      ' log exception
    Finally
      oCombo = Nothing
    End Try
    2) In Item event handler
    If pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT _
    And pVal.FormUID = sFormUID _
    And pVal.ItemUID = sMatrixUID _
    And pVal.ColUID = sColUID _
    And pVal.BeforeAction = False _
    And pVal.ItemChanged = True _
    Then
      Try
        Dim oMatrix As SAPbouiCOM.Matrix
        oMatrix = oForm.Items.Item(MatrixID).Specific
        If oMatrix Is Nothing Then Throw New Exception("ERROR: matrix object is nothing"))
        Try
          Dim oCombo As SAPbouiCOM.ComboBox
          Dim sValue As String = ""
          oCombo = oMatrix.Columns.Item(sColUID).Cells.Item(pVal.Row).Specific
          sValue = oCombo.Selected.Value
          If sValue.Equals("Define") Then
            Try
                oCombo.Select(0, SAPbouiCOM.BoSearchKey.psk_Index)
                oForm.Refresh()
            Catch ex As Exception
            ' log exception
            End Try
            SBO_Application.Menus.Item("<menu id to activate>").Activate()
          End If
          BubbleEvent = False
        Catch ex1 As Exception
          ' log exception
        End Try
      Catch ex As Exception
        ' log exception
      End Try
    End If

  • No possibility to control rights by defining new values in activities

    Hello,
    there is no possibilty to control rights by defining new values in activities.
    In servicecalls there is the possibility to fobit users define e.g a new status value over authorities.
    The same issue is exposed in activities. But there is no authority which you can use to forbit users defining new values under e.g Type or topic.
    It is very neccessary to control the user rights in this case.
    It is very illogical to forbit users creating new values in servicecalls but under activities they are allowed to do that!!!!!

    Not all of the listed email recipients on my contact form are receiving the inquiries.    Muse allows me to add several email addresses separated by a semi-colon (see below from Corey Wrote) but only one of the three addresses are receiving the contact form inquiries.
    Corey@Adobe wrote:
    Forms
    We've added a new Form widget to the widget library.
    You can easily configure the form to send the form submissions to multiple email addresses, and optionally redirect users to another page after submitting the form.
    You can add and remove fields, and style the form as you would other Adobe Muse elements. You can independently style the various states of the form, and form fields to provide a compelling user experience, with visual cues for error states, empty states, and more.
    Because Form processing requires server-side support, Adobe Muse forms are configured to work when published to Adobe Business Catalyst. If you make changes to your form and publish again, Adobe Muse will make the appropriate changes to your Adobe Business Catalyst forms.
    Adobe Muse will safeguard data when redesigning your Adobe Business Catalyst forms                
    If a field with no data submitted is removed, it will be deleted from the database.
    If a field that has submitted data is removed, it will be preserved in the database, but can be deleted from the Adobe Business Catalyst admin console if desired.         

  • Help.define purchasing options

    hello gys;
    in EBS r12.1.1
    I want define purchasing options but not open the web page,cause this error.. the profle is fine.
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT PoSystemParameterEO.ACCRUED_CODE_COMBINATION_ID,
    PoSystemParameterEO.ORG_ID,
    PoSystemParameterEO.PRICE_CHANGE_ALLOWANCE,
    PoSystemParameterEO.REQ_CAN_AUTHORIZE,
    PoSystemParameterEO.INSPECTION_REQUIRED_FLAG,
    PoSystemParameterEO.ENFORCE_PRICE_CHANGE_ALLOWANCE,
    PoSystemParameterEO.DEFAULT_RATE_TYPE, PoSystemParameterEO.USER_DEFINED_RECEIPT_NUM_CODE,
    PoSystemParameterEO.MANUAL_RECEIPT_NUM_TYPE,
    PoSystemParameterEO.USER_DEFINED_QUOTE_NUM_CODE,
    PoSystemParameterEO.MANUAL_QUOTE_NUM_TYPE,
    PoSystemParameterEO.USER_DEFINED_RFQ_NUM_CODE,
    PoSystemParameterEO.MANUAL_RFQ_NUM_TYPE,
    PoSystemParameterEO.USER_DEFINED_PO_NUM_CODE,
    PoSystemParameterEO.MANUAL_PO_NUM_TYPE,
    PoSystemParameterEO.USER_DEFINED_REQ_NUM_CODE,
    PoSystemParameterEO.MANUAL_REQ_NUM_TYPE,
    PoSystemParameterEO.DEFAULT_QUOTE_WARNING_DELAY,
    PoSystemParameterEO.ENFORCE_BUYER_AUTHORITY_FLAG,
    PoSystemParameterEO.ENFORCE_BUYER_NAME_FLAG,
    PoSystemParameterEO.ENFORCE_VENDOR_HOLD_FLAG,
    PoSystemParameterEO.NOTIFY_IF_BLANKET_FLAG,
    PoSystemParameterEO.RFQ_REQUIRED_FLAG,
    PoSystemParameterEO.PO_DOCUMENT_REPORT_ID,
    PoSystemParameterEO.PO_DOCUMENT_PRINT_FLAG,
    PoSystemParameterEO.RFQ_DOCUMENT_REPORT_ID,
    PoSystemParameterEO.RFQ_DOCUMENT_PRINT_FLAG,
    PoSystemParameterEO.LINE_TYPE_ID,
    PoSystemParameterEO.RECEIVING_FLAG,
    PoSystemParameterEO.ALLOW_ITEM_DESC_UPDATE_FLAG,
    PoSystemParameterEO.DISPOSITION_WARNING_FLAG,
    PoSystemParameterEO.ENFORCE_FULL_LOT_QUANTITIES,
    PoSystemParameterEO.SECURITY_POSITION_STRUCTURE_ID, PoSystemParameterEO.MIN_RELEASE_AMOUNT,
    PoSystemParameterEO.PRICE_TYPE_LOOKUP_CODE,
    PoSystemParameterEO.NOTIFICATION_WARNING_DELAY,
    PoSystemParameterEO.PRICE_BREAK_LOOKUP_CODE,
    PoSystemParameterEO.INVOICE_CLOSE_CODE,
    PoSystemParameterEO.RECEIVE_CLOSE_CODE,
    PoSystemParameterEO.INVOICE_CLOSE_TOLERANCE,
    PoSystemParameterEO.RECEIVE_CLOSE_TOLERANCE,
    PoSystemParameterEO.CANCEL_REQS_ON_PO_CANCEL_FLAG,
    PoSystemParameterEO.REQIMPORT_GROUP_BY_CODE,
    PoSystemParameterEO.EXPENSE_ACCRUAL_CODE,
    PoSystemParameterEO.INVENTORY_ACCRUAL_CODE,
    PoSystemParameterEO.ORDER_TYPE_ID,
    PoSystemParameterEO.ORDER_SOURCE_ID,
    PoSystemParameterEO.SALESREP_ID,
    PoSystemParameterEO.TERM_ID,
    PoSystemParameterEO.NEXT_APPROVER_LOOKUP_CODE,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE1,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE2,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE3,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE4,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE5,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE6,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE7,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE8,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE9,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE10,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE11,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE12,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE13,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE14,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE15,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE16,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE17,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE18,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE19,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE20,
    PoSystemParameterEO.GLOBAL_ATTRIBUTE_CATEGORY,
    PoSystemParameterEO.ENFORCE_PRICE_CHANGE_AMOUNT, PoSystemParameterEO.PRICE_CHANGE_AMOUNT,
    PoSystemParameterEO.AUTO_OFFSET_METHOD,
    PoSystemParameterEO.PO_OUTPUT_FORMAT,
    PoSystemParameterEO.BUYING_COMPANY_IDENTIFIER,
    PoSystemParameterEO.GAPLESS_INV_NUM_FLAG,
    PoSystemParameterEO.MAX_ATTACHMENT_SIZE,
    PoSystemParameterEO.EMAIL_ATTACHMENT_FILENAME,
    PoSystemParameterEO.ACCEPTANCE_REQUIRED_FLAG,
    ot.name as order_type,
    pltv.line_type,
    pps.name as position_structure_name
    FROM PO_SYSTEM_PARAMETERS_ALL PoSystemParameterEO,
    oe_transaction_types ot, po_line_types_val_v pltv,
    per_position_structures pps
    where PoSystemParameterEO.org_id = :1
    and PoSystemParameterEO.ORDER_TYPE_ID = ot.transaction_type_id (+)
    and nvl(ot.po_required_flag, 'N') = 'N'
    and nvl(ot.agreement_required_flag, 'N') = 'N'
    and PoSystemParameterEO.LINE_TYPE_ID = pltv.line_type_id (+)
    and PoSystemParameterEO.SECURITY_POSITION_STRUCTURE_ID = pps.position_structure_id (+)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:980)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:211)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:720)
         at oracle.apps.po.common.webui.ClientUtil.executeServerCommand(ClientUtil.java:152)
         at oracle.apps.po.setup.webui.PurchasingOptionsCO.processRequest(PurchasingOptionsCO.java:141)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:596)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1166)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2513)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1894)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:538)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:426)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.sql.SQLException: Missing IN or OUT parameter at index:: 1
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:199)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:263)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:271)
         at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1738)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3382)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3431)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1491)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:860)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:669)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3723)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4559)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:688)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2657)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2634)
         at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1474)
         at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:2828)
         at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:5792)
         at oracle.apps.po.setup.server.PurchasingOptionsSvrCmd.setContextAttr(PurchasingOptionsSvrCmd.java:1206)
         at oracle.apps.po.setup.server.PurchasingOptionsSvrCmd.initPage(PurchasingOptionsSvrCmd.java:276)
         at oracle.apps.po.setup.server.PurchasingOptionsSvrCmd.execute(PurchasingOptionsSvrCmd.java:131)
         at oracle.apps.po.common.server.PoBaseAMImpl.executeServerCommand(PoBaseAMImpl.java:110)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:720)
         at oracle.apps.po.common.webui.ClientUtil.executeServerCommand(ClientUtil.java:152)
         at oracle.apps.po.setup.webui.PurchasingOptionsCO.processRequest(PurchasingOptionsCO.java:141)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:596)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1166)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2513)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1894)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:538)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:426)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    java.sql.SQLException: Missing IN or OUT parameter at index:: 1
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:199)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:263)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:271)
         at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1738)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3382)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3431)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1491)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:860)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:669)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3723)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4559)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:688)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2657)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2634)
         at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1474)
         at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:2828)
         at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:5792)
         at oracle.apps.po.setup.server.PurchasingOptionsSvrCmd.setContextAttr(PurchasingOptionsSvrCmd.java:1206)
         at oracle.apps.po.setup.server.PurchasingOptionsSvrCmd.initPage(PurchasingOptionsSvrCmd.java:276)
         at oracle.apps.po.setup.server.PurchasingOptionsSvrCmd.execute(PurchasingOptionsSvrCmd.java:131)
         at oracle.apps.po.common.server.PoBaseAMImpl.executeServerCommand(PoBaseAMImpl.java:110)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:720)
         at oracle.apps.po.common.webui.ClientUtil.executeServerCommand(ClientUtil.java:152)
         at oracle.apps.po.setup.webui.PurchasingOptionsCO.processRequest(PurchasingOptionsCO.java:141)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:596)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1166)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2513)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1894)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:538)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:426)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)

    Sorry you are late on your payments. I hope you get a job in you future soon.
    If your account has not been suspended for non-pmt:
    You can call customer care at 1-800-922-0204 to schedule a "promise to pay" option with financial services.  they will schedule payment options with you.  You will need to be 12 days past due on your past due balance or have a "Y"  indicator on your balance account information for them to set up payment plans for you. 
    If you are past due and services are disconnected:
    You will have to pay the past due balance before the will establist a reconnect for you.  You will have to pay a $15.00 reconnect fee per line, and proration charges for your services reconnected if it is within you 30 day billing cycle, plus a one month in advance charge on your month price plan and any features you have on the line(s).
    then, you will be able to schedule a promise to pay arrangment on your current charges with online services in your view bill link or the *611 automated system to schedule a electronic withdrawn payment 7 days in advance with a checking acount or credit/debit card.  make sure to have an account credit card or checking account saved on file in your account so you will not have to input all the numbers on the account information.  it will make it easier for the system and faster to process the scheduled payment.

  • Unable to update numbering schemes in define purchasing options

    Hi,
    We are unable to update the numbering scheme from manual to automatic in define purchasing options (Numbering Tab). Documentation says that you can update it, but it does not give any reason under what circumstances we would not be allowed to update the numbering schemes.
    Thanks,
    Ketul.

    Hi Sandeep,
    I am doing multi organisation implementation and only one ledger they do not require Inventory and Purchasing modules. Because of that i will not create any inventory organisation for that selected ledger.
    This ledger will have seperate responsibility for AP.
    Howver, my problem is when i am trying to complete the financial options, inventory organisation is mandatory for that responsability. Without inventory organisation i am unable to save the financial options.
    Please assist me how to overcome this issue.
    Thanks,

Maybe you are looking for

  • Upgrade to iPhoto - when iPhoto wants to build the library it crashes.

    I upgraded iPhoto from the Apps Store. When I opened it for the first time, it wanted to upgrade my library. It crashes within seconds of the upgrade and it won't let you get into the software if you don't do it. After that it gives me this nice big

  • Transfer purchased songs from one computer to another

    I bought 6 songs on my laptop due to a better internet connection. I want to transfer them to my desktop computer. When I log in, it has all my old songs listed, not the one's that I bought from my laptop and my old songs together. How can I merge th

  • Deleting dimension via script?

    Is it possible to automatically delete a whole (Atrribute) dimension (via MAXL-Scripts perhaps)?<BR><BR>The only solution I have seen until now is to build a load rule and delete any dimension members via the "remove unspecified" option but unfortuna

  • Class for componentRequest

    Hi, I am developing a JSP Dynpro application and would like to use session which help to exchange the data from controller to jsp. I have set user local country in the java file public void doProcessBeforeOutput() throws PageException { IPortalCompon

  • Macbook won't startup using DVD as Startup Disk

    What gives? Startup with 'C' key doesn't work. Even using Startup Disk in System Preferences doesn't show slot drive as an option. I'm trying to do a disc repair because of hourly computer freezes with Mail, Safari and others that have not been resol