Operating Unit List Of Values is Null When Entering Transaction Types

Hi,
Operating Unit List Of Values is null when entering Transaction Types in Receivables Manager responsibility. I also re-checked MO: Security Profile and MO:Operating Unit Profile options that were set correctly. Please let me know how to troubleshoot the problem and fix accordingly.
Thanks for the help.
Regards,
Sri

There are some pointers in the below note
Troubleshooting Transaction Types In Oracle Receivables [ID 1090878.1]
Mahendra

Similar Messages

  • How to convert a measure value to null when the actual measure value is 0

    Hello Gurus,
    I have year, products, measure 1, measure 2, measure 3. I am added three products into one category by using bin in the analysis i am getting zeros for some of the measure cells when it should be null values, because the actual measure values are null for indivudual product. How can i convert that 0's to null. Please advise.
    Thanks,
    RC

    To answer your immediate question, you can write this:
    CASE WHEN table.column = 0 THEN NULL ELSE table.column END
    Remember though, that any aggregations done on a record that is NULL will not yield a sum. That is why the usual case is to convert NULLs to 0s. But that may not be a concern for what you are doing. Good luck!

  • List of values failure error when trying to use dynamic data values

    Hi there,
    I have a user who is experiencing problems when trying to use dynamic values in a report.  Whenever he tries to insert dynamic parameters he gets the following error message:
    Prompting failed with the following message: 'List of Values failure: Failed to get values.  [Cause of error: Access is denied.]  Error Source: prompt.dll  Error Code: 0x8004380D
    He even opened the sample report - prompting.rpt - that is included with CR and gets the same error.
    We are using Crystal Reports XI Release 2 ver. 11.5.11.1470.
    Any help would be appreciated.

    Please excuse my ignorance of the product.  I've had this problem dropped in my lap and I know practically nothing about Crystal Reports.  In doing some digging it appears to me as if the BusinessObjects Enterprise software may not be installed properly, if at all.  In the programs menu under the BusinessObjects XI Release 2 folder I see a BusinessObjects Enterprise folder, but the only icon listed in that folder is Software Inventory Tool.
    Is the BusinessObjects Enterprise software a separate install from Crystal Reports or is it bundled together?  I talked with the tech that did the install and he said that all he had was the Crystal Reports install media.

  • List of Value: Best practice when there are too many rows.

    Hi,
    I am working in JDev12c. Imagine the following scenario. We have an employee table and the organization_id as one of its attributes. I want to set up a LOV for this attribute. For what I understand, if the Organization table contains too many rows, this will create an extreme overhead (like 3000 rows), also, would be impossible to scroll down in a simple LOV. So, I have decided the obvious option; to use the LOV as a Combo Box with List of Values. Great so far.
    That LOV will be use for each user, but it doesn't really depend of the user and the list of organization will rarely change. I have a sharedApplicationModule that I am using to retrieve lookup values from DB. Do you think would be OK to put my ORGANIZATION VO in there and create the View Accessor for my LOV in the Employees View?
    What considerations should I take in term of TUNING the Organization VO?
    Regards

    Hi Raghava,
    as I said, "Preparation Failed" may be (if I recall correctly) as early as the HTTP request to even get the document for indexing. If this is not possible for TREX, then of course the indexing fails.
    What I suggested was a manual reproduction. So log on to the TREX host (preferrably with the user that TREX uses to access the documents) and then simply try to open one of the docs with the "failed" status by pasting its address in the browser. If this does not work, you have a pretty good idea what's happening.
    Unfortunately, if that were the case, this would the be some issue in network communications or ticketing and authorizatuions, which I can not tell you from here how to solve.
    In any case, I would advise to open a support message to SAP - probably rather under the portal component than under TREX, as I do not assume that this stage of a queue error has anything to do with the actual engine.
    Best,
    Karsten

  • JCo getting truncated value from SAP when field data type is RAW

    We are trying to fetch data from a SAP-AII table by using JCo using the RFC RFC_READ_TABLE.
    We are getting incomplete data when the data type of the column is RAW in a particular table.A typical case is:
    Table Name: /AIN/DM_DEVCTR
    Field : CLIENT                Type: CLNT    Length:3      Value: 100                                                            (SAP Generated)
    Field:  DEVCTR_GUID    Type:RAW      Length:16    Value: 306F50F53805ED488DE9797AC86B5728     (SAP Generated)
    Filed:  DEVCTR_ID         Type:CHAR    Length:128   Value: KDEVICECONTROLLER                             (User input)
    For the fields CLIENT and DEVCTR_ID we get the entire value (including blank spaces) but for DEVCTR_GUID we get only 16 characters whereas SAP-AII stores a value that is 32 characters in length. How do we fetch the actual value instead of the truncated value?
    Sample code is attached.
              try {
                   mConnection = JCO.createClient("100", // SAP client
                             "User", // userid
                             "Password", // password
                             "EN", // language
                             "SAP", // host name
                             "00"); // system number
                   mConnection.connect();
                   if (mConnection == null) {
                        System.out.println("Connection to SAP Server failed.");
                   mRepository = new JCO.Repository("User", mConnection);
                   ftemplate = mRepository.getFunctionTemplate("RFC_READ_TABLE");
              } catch (Exception ex) {
                   ex.printStackTrace();
                   System.exit(1);
              JCO.Function function = ftemplate.getFunction();
              JCO.ParameterList importParamList = function.getImportParameterList();
              importParamList.setValue("/AIN/DM_DEVCTR", "QUERY_TABLE");
              importParamList.setValue(";", "DELIMITER");
              JCO.Table tableData = function.getTableParameterList().getTable("DATA");
              JCO.Table fields = function.getTableParameterList().getTable("FIELDS");
              mConnection.execute(function);
              if (tableData.getNumRows() > 0) {
                   do {
                        for (JCO.FieldIterator e = tableData.fields(); e
                                  .hasMoreElements();) {
                             JCO.Field field = e.nextField();
                             String str = field.getString();
                             String[] values = str.split(";");
                             for(int i = 0; i < values.length; i++){
                                  System.out.println(values<i>);
                   } while (tableData.nextRow());
              } else {
                   System.out.println("No results found");
              mConnection.disconnect();

    Hi Kaanu,
       You have to modify your java code.
    String val = new String( field.getByteArray());
    PS: Please reward points for helpful answer or problem resolved.

  • Getting response object field value as null when importing xsd file in wsdl

    I have created a java webservice using X-Fire 1.2.6 framework and deployed on Tomcat 6.0 server. The response of the service is a java object named LoginDetail.
    Inorder to reuse the basic elements and types we have defined them in a separate Types.xsd file which have been imported in the WSDl file using xsd:import by giving the path to the xsd file.
    Below you can see the portion of the wsdl file
         <wsdl:types>
              <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   attributeFormDefault="qualified" elementFormDefault="qualified"
                   targetNamespace="http://webservices.gtl.de/xsd">
                   <xsd:import namespace="http://webservices.gtl.de/xsd"
                        schemaLocation="file:///D:/wsdl/LoginTypes.xsd"></xsd:import>
              </xsd:schema>
         </wsdl:types>
    After deploying the application on Tomcat I could access the WSDL using a web browser and after that I could successfully generate webservice client code using using XFire wsgen ant build.
    But when tried to call the service the fields of the response object(in my case it is LoginDetail object) returns null.
    Follwing are the main class used for running the client and the output received as webservice respone.
    Main class
    public static void main(String[] args) {
    CCLoginNewClient client = new CCLoginNewClient();
    CCLoginNewPortType service     = client.getCCLoginNewHttpPort();                         
    LoginDetail loginDetail = service.getLogin("CCLoginNew", "DE", "DE", "100", "0", "CC", "15","9344");
    System.out.println("service got in response : "+loginDetail.getService());                    
    Output
    service got in response : null
    is this the right way to import an xsd file in a wsdl file?
    Any input would be appreciated!
    Thanks in advance

    PramodDas wrote:
    Output
    service got in response : nullCheck with Apache TCPMonitor what response you are receiving from web service.
    is this the right way to import an xsd file in a wsdl file?Make sure that you really need import, not the include. However, I guess it has nothing do with the actual issue. It just to make sure that you are using right option.

  • Interactive Report - Column list of values

    The column header list of values feature is great but I think it would benefit from some usability enhancements. Specifically,
    1. Say I have a column which has 100s of distinct values. Clearly, I wouldn't want to enable the drop-down list of values (LOV) when I click on the column header. So I choose None for Column Filter List of Values. Yet, when I click on the column header, I get a [text field|http://screencast.com/t/M1SPYdAT] for filtering the (non-existent) values, which is a little misleading.
    May I suggest that choosing None should make this text field not appear? As a workaround, I use a user-defined LOV value like select 'Use <img src="/i/ws/action_dropdown.gif"/> to filter' from dual to nudge the user to use the main report menu.
    2. When I use the text field in the column heading LOV to narrow down list, Apex performs a "search as you type" query with a "contains" operator.
    May I suggest that
    a) this should be configurable (i.e. perform a "starts with" query or "contains" query)
    b) the search term matched so far should be highlighted in the results
    c) when I click on the column header, the text field should automatically get cursor focus so I can start typing without first having to click in the text field
    3. When I do use the main report menu to filter a column, is there a way to disable certain operators from the [Operator dropdown list|http://screencast.com/t/3kUwiNEH] ?
    For example, I have an indexed column so certain "index-friendly" operators (equality, starting with, less than, greater than, etc) are fine but I would want to disable operators which would not use the index (contains, not like, etc).
    4. I have a User Defined List of Values query for a column and the query returns 80 rows. When I click on the column header, only 11 values are displayed in the dropdown. But when I use Filter from the main IR menu and select that column and click on the LOV, all 80 values are shown. The same query is used in both places so I am puzzled as to why they would return different results.
    Is there a limitation on the column header LOV, some varchar2(4000) thing maybe?
    Thanks

    Vikas,
    Thank you for the feedback. For issue #1, we are aware of the bug. We should not display the text field if no LOV defined. Hopefully we have the fix by next APEX release. Issue #3 is a great suggestion. We will take a look to enhance that. I am unable to reproduce #4, could you please provide the test case in apex.oracle.com?
    Thank you,
    Christina

  • Receiving Error : Please set the Receivables system options for this operating unit and ensure that the MO: Operating Unit profile option is correctly set with an operating unit that is set up in Receivables. while trying to create a new Customer.

    Hi All,
    We have set up a new Operating Unit in Oracle Apps. Now when I am trying to create a new Customer in that Operating Unit, I am receiving following error:
    ERROR MESSAGE:-Please set the Receivables system options for this operating unit and ensure that the MO: Operating Unit profile option is correctly set with an operating unit that is set up in Receivables.
    We do have MO: Operating Unit and MO: Default Operating Unit set properly at Responsibility level for the Responsibility through which I am accessing this form.
    Your help is appreciated!
    Thanks in advance,
    SKA

    You can refer this thread and check your MO operating unit is set or not https://community.oracle.com/message/3937028 thanks

  • Refresh popup list of values javascript

    I try to change value of popup list of values with javascript.
    When i set it with javascript i get only return value visible in popup list of values (display). When i add refresh in dynamic action item is clean..and dont have any value..
    How to set display and return value correctly...
    Thanks...
    Edited by: Nihad Haskovic on Jul 18, 2012 3:18 AM

    I am not sure if I understand your question, but if you want to show two display value columns you can use a concatenation, for example:
    select raum||' - '||some_other_column display_value, raum return_value from standort order by 1
    You can also build a custom popup LOV picker. If you wanted to have popup list of values that selected a number of columns and contained custom report filters you could do so by:
    1. create a report page which queries the table you wish pick from
    2. change the page template to be a popup lov style template
    3. in the "Post Element Text" attribute put a link to the new popup page using javascript similar to: javascript:popupURL('f?p=&APP_ID.:10:&SESSION.')
    ( you may wish to wrap it around an image such as this one )
    <img src="#IMAGE_PREFIX#htmldb/icons/view_small.gif" />
    4. make one of the columns in your report a link to javascript to passback the value and close the popup window. A good example of this javascript can be viewed by viewing the HTML page source of the popup page finder which is linked from the APEX page definition page.

  • Select list to popup list of values

    Hi
    i am doing without refresh by using two select list.
    as i choose class from first select list related section to that class comes into second list
    it is working fine .
    if i change item type select list to popup list of values.
    then it is not working fine
    what i change into code so that it works fine by using popup list of values.
    javascript-------------------------------------------------
    <script language="JavaScript1.1" type="text/javascript">
    function get_select_list_xml(pThis,pSelect){
        var l_Return = null;
        var l_Select = html_GetElement(pSelect);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,'APPLICATION_PROCESS=CASCADING',1);
        get.add('SELECT1',pThis.value);
        gReturn = get.get('XML');
          if(gReturn && l_Select){
            var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
            for(var i=0;i<l_Count;i++){
                var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    application process------------------------------------
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    htp.prn('<data>');
    HTP.prn ('<select>');
    HTP.prn ('<option value="' || 1 || '">' || '- All Section -'|| '</option>');
    FOR c IN (select DISTINCT(section) ,CLASS_ID from class_details where class_id=:SELECT1 ORDER BY SECTION ASC)
    LOOP
    HTP.prn ('<option value="' || c.section || '">' || c.section || '</option>');
    END LOOP;
    HTP.prn ('</select>');
    htp.prn('</data>');
    END;
    calling statement-------------------------------------------------
    onChange="javascript:get_select_list_xml(this,'P134_SECTION');"
    Thanks & Regards
    Vedant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I haven't tried this, but check
    How to remove basic/advanced button in inputListOfValues search dialog
    This does not have complete solution, but might give you some lead.

  • Need to allow only one of 2 buttons in a region to respond when enter pressed

    Hi,
    Apex version 4.2
    Theme: Blue Resposive 25
    My page has 1 region with a sub-region inside it.  Both regions have a button. When I hit enter it seems the button in the sub-region is the one that gets actioned.  I don't want this to happen I want the other button to run.  Is this possible ? 
    Also when I google around looking for answers to this issue I see references to apex page items having a setting value of 'Submit when enter pressed' which can be changed to Yes or No.  I simply can't find that setting in my items.  Perhaps it has been removed in apex 4.2 ?
    Thanks
    Steve.

    Daggers wrote:
    Thanks Scott,
    That is useful information.  I turned on debug and I can see that my problem is actually that neither button is being submitted on enter.
    Are you able to tell me where the setting 'Submit when enter pressed' ? is found.  I think this is probably the key to my issue.
    Steve.
    It's in the item's Settings section. However, it's only available on Text and Password items.

  • No value for operating unit found in Receivable system options

    All,
    Please help. R11i
    After setting up inventory organization, operating unit, legal entity, set of books under HR > workstructures > organization > description.
    MO: operating unit defined and default MO operating unit also defined.
    HR: User type = HR user
    HR: security profile also set
    I cannot find the operating unit in Receivable > setup > system options
    FM-41830: List of values contain no entries.
    When goto Order Management > System > System parameter, the operating unit is blank as well.
    Please help to suggest which setup I missed.
    Many thanks.

    What is the output of this sql?
    SELECT o.organization_id organization_id
    , otl.name name
    , o3.org_information2 legal_entity_id
    , le.name legal_entity_name
    FROM hr_all_organization_units o,
    hr_all_organization_units_tl otl,
    hr_organization_information o2,
    hr_organization_information o3,
    hr_all_organization_units_tl le
    WHERE le.organization_id = O3.org_information2
    AND le.language = USERENV('LANG')
    AND o.organization_id = o2.organization_id
    AND o.organization_id = o3.organization_id
    AND o2.org_information_context = 'CLASS'
    AND o3.org_information_context = 'Operating Unit Information'
    AND o2.org_information1 ='OPERATING_UNIT'
    AND o2.org_information2 = 'Y'
    AND o.organization_id = otl.organization_id
    AND otl.language = USERENV('LANG')
    -- AND hr.name = x_sp_name
    AND o.business_group_id = &bg_id; --Since you are using business group as security profile                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • JSP, BC4J : Allowing users to choose from List of values when in Insert mode

    Hi,
    I have a requirement in which the user would be able to select a value from a combobox for populating a field when inserting a new record. The list of values in the combo box is derived from a look up table in the database. How can do this?
    Thanks.

    Use the version provided in Jdev 3.2. It has two methods:
    * Enables a LOV (list of values) for the specified attribute in
    * the UI. In the typical case, when an attribute is selected in an
    * HTML form, a LOV will be displayed.
    * <p>
    * This method enables a LOV for one or more of the RowSet's attributes.
    * To return all of the RowSet's attributes,
    * use the {@link #useLOV(String, String) useLOV} method.
    * <p>
    * @param sAtttibute name of the attribute for which an LOV
    * should be enabled.
    * @param voName name of the View Object to which the attribute belongs.
    * @param sDisplayAttributes a comma-separated list of the RowSet's attributes
    * that will be displayed when the attribute is selected.
    * @param sDataAttribute the location from which the attributes' values are
    * obtained.
    * @see #useLOV(String, String)
    public void useListOfValues(String sAttribute , String voName, String sDisplayAttributes, String sDataAttribute)
    JSlibNeeded |= WebBean.JSModalPageConstructorLib;
    LOVField lovField = new LOVField();
    ViewObject vo = qView.getApplicationModule().findViewObject(voName);
    ViewObject dupvo = qView.getApplicationModule().findViewObject(voName + "_query");
    if(dupvo == null)
    dupvo = qView.getApplicationModule().createViewObject(vo.getName() + "_query", vo.getDefFullName());
    lovField.setViewObject(getApplicationName() + "." + dupvo.getName());
    AttributeDef attr = qView.getViewObject().findAttributeDef(sAttribute);
    lovField.setPromptText(getAttributeLabel(qView, attr));
    lovField.setDisplayAttributes(sDisplayAttributes);
    lovField.setDataAttributes(sDataAttribute);
    setFieldRenderer(sAttribute , lovField);
    * Enables a LOV (list of values) for the specified attribute in the UI.
    * In the typical case, when the specified attribute is selected in an
    * HTML form, a LOV will be displayed.
    * <p>
    * This method enables a LOV for all of the RowSet's attributes.
    * To enable a LOV for a subset of the attributes,
    * use the {@link #useListOfValues(String, String, String, String)
    * useListOfValues} method.
    * <p>
    * @param sAtttibute name of the attribute for which an LOV
    * should be enabled.
    * @param voName name of the View Object to which the attribute belongs.
    * @see #useListOfValues(String, String, String, String)
    public void useLOV(String sAttribute, String voName)
    useListOfValues(sAttribute, voName, null, sAttribute);
    null

  • Set a LOV based on another LOV when the parent value is NULL

    Application Express 4.1.1.00.23
    Oracle Database 11g
    I have two Select Lists (LOV 1 and LOV 2) Items of several other items in a HTML region. LOV 2 is based on value in LOV 1 which is perfectly working. But I need to display some values in LOV 2 when value in LOV 1 is null which is not working at all. Any help is appreciated.
    Thanks,
    Sam

    Hi Sam,
    Sam82 wrote:
    Application Express 4.1.1.00.23
    Oracle Database 11g
    I have two Select Lists (LOV 1 and LOV 2) Items of several other items in a HTML region. LOV 2 is based on value in LOV 1 which is perfectly working. But I need to display some values in LOV 2 when value in LOV 1 is null which is not working at all. Any help is appreciated.
    Edit your LOV2 and do the changes suggested below
    Cascading LOV Parent Item(s) : LOV1
    Optimize Refresh : No (this is important not forget to make it NO)
    List of values definition : try to use query similar like this
    IF :P2_LOV1 IS NULL THEN
    RETURN 'select ENAME as display_value, EMPNO as return_value  from EMP';
    ELSE
    RETURN 'select ENAME as display_value, EMPNO as return_value  from EMP where  DEPTNO = :P2_LOV1';
    END  IF;
    Hope this will works for you,
    Regards,
    Jitendra

  • I need to validate Input List Of Values Field when Inserted From Bean

    I've two view object EmployeeView and DepartmentsView
    In Employee View I've changed Department_Id to Input List OF Values
    I've created a bean to inset data into Employee Table
          ApplicationModule am = ADFUtils.getApplicationModuleForDataControl("AppModuleDataControl");
          ViewObject importedVO = am.findViewObject("EmployeesView");
    try {
                newEmp.setEmployeeId(new Number("3424));
                newEmp.setFirstName("Test Fname");
                newEmp.setLastName("Test Lname");
                newEmp.setEmail("[email protected]");
                newEmp.setPhoneNumber("4643131345");
                newEmp.setJobId("AD_VP");
                newEmp.setDepartmentId(new oracle.jbo.domain.Number(999));
                 } catch (Exception e) {
                // TODO: Add catch code
                System.out.println("inside Catch");
                e.printStackTrace();
            }I know that ADF validate Input list of values when inserting new value on it
    when I've enabled the debugger I've found that
    <ViewObjectImpl><buildQuery> [604] SELECT DepartmentsEO.DEPARTMENT_ID,         DepartmentsEO.DEPARTMENT_NAME,         DepartmentsEO.MANAGER_ID,         DepartmentsEO.LOCATION_ID,         DepartmentsEO.ISDELETED FROM DEPARTMENTS DepartmentsEO WHERE ( ( (DepartmentsEO.DEPARTMENT_ID = :vc_temp_1 ) ) )
    <ViewObjectImpl><bindParametersForCollection> [605] Bind params for ViewObject: [com.test.model.views.DepartmentsEOView]AppModule.__LOCAL_VIEW_USAGE_com_test_model_views_EmployeesEOView_DepartmentsView_findByVC_12_LOV_DepartmentId_lov__filterlist__vcr___
    <OracleSQLBuilderImpl><bindParamValue> [606] Binding param "vc_temp_1": 999
    <ViewObjectImpl><processViewCriteriaForRowMatch> [607] VCs converted to RowMatch:  ( (DepartmentId = :vc_temp_1 ) )
    <ViewRowImpl><handleListBindingMismatch> [608] No matching row found for list binding:LOV_DepartmentId for ViewRow:oracle.jbo.Key[34235 ]
    <ViewRowImpl><handleListBindingMismatch> [609] --- filterList ValueMap key:DepartmentId, value:999
    <DCBindingContainer><internalRefreshControl> [610] **** refreshControl() for BindingContainer :com_test_view_testInsertPageDef
    <JUCtrlHierNodeBinding><release> [611] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_2, value:EmployeesViewIterator
    <JUCtrlHierNodeBinding><release> [612] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_2, value:EmployeesViewIterator
    <DCIteratorBinding><releaseDataInternal> [613] Releasing iterator binding:EmployeesViewIterator
    <ApplicationPoolMessageHandler><doPoolMessage> [614] **** PoolMessage REQ ATTACH LWS
    <ApplicationPoolMessageHandler><doPoolMessage> [615] **** PoolMessage REQ DETACH LWS
    <DCJboDataControl><initializeApplicationModule> [616] (oracle.adf.model.bc4j.DataControlFactoryImpl.SyncMode = Immediate
    <DCBindingContainer><internalRefreshControl> [617] **** refreshControl() for BindingContainer :com_test_view_testInsertPageDef
    <DCBindingContainerState><validateToken> [618] Process BindingContainer state token(decompressed state):BCST:=0%V%=NEmployeesViewIterator=-D-,
    <this means that ADF tries to validate the input list of values "Department_Id" and didn't found any match
    I need to through exception when I try to set Department_ID with invalid value "value not on range" like
    newEmp.setDepartmentId(new oracle.jbo.domain.Number(999));I don't want to validate it manually as I've a lot of fields.
    I need to through exception when try to
    newEmp.setDepartmentId(new oracle.jbo.domain.Number(999));

    Thanks Timo
    this is the code that I use
          ApplicationModule am = ADFUtils.getApplicationModuleForDataControl("AppModuleDataControl");
          ViewObject importedVO = am.findViewObject("EmployeesView");
          EmployeesEOViewRowImpl newEmp = (EmployeesEOViewRowImpl)importedVO .createRow();
          importedVO .insertRow(newEmp);
    try {
                newEmp.setEmployeeId(new Number("3424));
                newEmp.setFirstName("Test Fname");
                newEmp.setLastName("Test Lname");
                newEmp.setEmail("[email protected]");
                newEmp.setPhoneNumber("4643131345");
                newEmp.setJobId("AD_VP");
                newEmp.setDepartmentId(new oracle.jbo.domain.Number(999));
                 } catch (Exception e) {
                // TODO: Add catch code
                System.out.println("inside Catch");
                e.printStackTrace();
            }

Maybe you are looking for

  • Can't burn CD after downloading iTunes 7.2

    I just installed iTunes 7.2. Now I can't burn a CD. When I insert a blank CD, iTunes opens, but the blank CD does not appear on the desktop and there is no burn button that says burn CD. The "burn disk" under File is in gray (inaccesible). The help f

  • Can't move a mailbox anymore

    Dear all, I'm having troubles migrating to Exchange 2013... I'm unable to move any mailbox anymore. When I create a new move request, it stays forever in "queued" status. Now this request has been removed, but I've noticed that when I do the followin

  • Simpleviewer flash gallery in catalyst.

    I have been trying for quite some time now to import the .swf file into catalyst, is there something i am missing? everytime i try to import i get "The following error occurred during import : Unable to import file" any help would be great!

  • Unable to start .ons service in RAC

    hello in RAC enviroment on both node ora.node1.ons and ora.node2.ons services autometically gone offline.. evne we r able to connect database from client side on both node we didnt do any changes in server... when i try to start service on both node

  • Setting accounts mail is sent from

    Hi I've got Mail 2.1 and I can select which account mail is sent from. However, my friend has version 1.3.1 and although she's set up aliases on dot mac on the web, we can't see how to do it on her version. Does she need a later version - I think she