View Attribute Types shows only Java Types

Hi,
when I edit an attribute of a view, normally I can choose it's data type,
containing Java Types: "BigDecimal", "Integer" ....
and Oracle Types: Number, Date etc.
But after having reinstalled the Jdeveloper, the drop down box only shows
the Java types and the oracle types are missing. I can still enter the FQDN ("oracle.jbo.domain.Number"),
but when it comes to the View Criterias I cannot choose the operater "Less or equal than", it
shows me 4 operators only "Equals", "Does not equal", "Is blank" and "Is not blank".
It seems to be related to the settings of this application because when I open another application (with the
same Database-Connection), then the oracle types are available.
Does anybody know why the oracle types are not choosable any more and how to
reinstall them in this application.
jdeveloper 11.1.1.4.0 (Build JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923)
Thanks in advance
Yves

Hi Arunkumar,
yes, this shows "Java" for Type Map instead of "Oracle". But I cannot change it, because the drop down box
is disabled.
Anyway, I think my installation of Jdev is buggy, because in the resource palette I cannot add any new connections.
When adding any DB-Connections (and it shows "success") it won't show up in the resource palette window.... it just
remains empty...
Thank you
Yves

Similar Messages

  • How to convert object type to only Date type ?

    Hii everyone,
    I have a table in database and their is column called as date and its data type is DateTime
    In my UI part i have taken a Datepeacker and what ever user selected that date i am storing in my Date properties which has the same data type DateTime and at the Insertion time the date inserting successfully but at the time of updating data i am getting
    error that the Date is not correct format because in date property it having the value 23:12:2014 00:00:00 which is crate problem at the time of update. So how to solve this ?
    Note : I am using VS2008 and using Datagrid inside datgrid what ever changes user make tat one i required to update ,below are my update code which done through datatable i.e
      first i have done datatable dt=new datatable();
                                  dt = EmpBusinessLayer.SelectManager(dd.Eno)
    then my update logic is :
        for (int i= 0; i < dt.Rows.Count; i++)
                    ee.Ename = dt.Rows[i][0].ToString();
                    ee.Job = dt.Rows[i][1].ToString();
                    ee.Dept = dt.Rows[i][2].ToString();
                    ee.Gender = dt.Rows[i][3].ToString();
                    ee.Status =Convert.ToInt32(dt.Rows[i][4]);
                    ee.Dates = Convert.ToDateTime(dt.Rows[i][6]);// Hear i am getting value like 23.8.2104 00:00:00
                    ee.Eno = Convert.ToInt32(dt.Rows[i][9]);
                    cmd = new SqlCommand("update Employee set sEname='"+ee.Ename+"', sEJob='"+ee.Job+"', sEDept='"+ee.Dept+"',
    sGender='"+ee.Gender+"', bStatus="+ee.Status+", dDates="+ee.Dates+" where iEmpNo="+ee.Eno, con);       // Hear Getting Error tat incorrect syntax 00
                    if (con.State != ConnectionState.Open)
                        con.Open();
                    if (cmd.ExecuteNonQuery() > 0)
                        return 1;
    S.K Nayak

    You could use the yyyy-MM-dd format by calling the ToString method on the DateTime object:
    cmd = new SqlCommand("update Employee set sEname='"+ee.Ename+"', sEJob='"+ee.Job+"', sEDept='"+ee.Dept+"', sGender='"+ee.Gender+"', bStatus="+ee.Status+", dDates=" + ee.Dates.ToString("yyyy-MM-dd") +" where iEmpNo="+ee.Eno, con);
    Note that you should use parameters when create a command like this though:
    https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlparametercollection.addwithvalue(v=vs.110).aspx
    But that's another story for another thread in another forum.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question.

  • FieldDefinition - Java type in public Toplink API.

    Hi, is there a utility in Toplink API that gets FieldDefinition instance (that is representing the attributes of a database field i.e. db type name, size, etc.) as argument and returns java type name?.
    some examples :
    CHAR(1) ---> java.lang.Character
    CHAR(>1) ---> java.lang.String
    VARCHAR ---> java.lang.String
    DATE ---> java.sql.Date
    etc.
    thanks and regards.

    I think I need something else.
    I was asking for code generation facilities instead of handling persistence. What I do in my project is code generation to produce persistence class' code using Toplink-generated descriptors and Apache Velocity. this process takes place completely out of mapping workbench but still makes use of Toplink API to process descriptors. For the moment, what I'm missing is this type NAME conversion.
    Since Mapping workbench is doing the same thing for generating attribute definitions, get/set methods in auto-generated classes, I thought that could be part of Toplink API (at least would be great to have).
    thanks.
    >
    Hi
    TopLink only requires the names of database fields
    and tables in order to handle the persistence. We
    don't even need to store the actual database type
    because conversion of database types to java types is
    done at the JDBC level. After this implicit
    conversion, TopLink might do some extra conversion
    (ie for TypeConversionMappings) but that is all
    confurable in the Mapping Workbench.
    The class java.sql.Types contains constants for all
    the regular sql data types. The exact conversion
    between these types and the java types is documented
    with most JDBC drivers. JIM

  • Use DB Sequence/Trigger with Java types

    The documentation(Fusion Dev Guide 4.10.10) covers using triggers to assign DB primary keys. This does not seem to apply when using java types.
    I have a create button on a master level page which should take the user to a detail level page to fill in the item properties.
    How can I use the DBSequence type with java typed variables?

    This chapter tess you that you can use the trigger assigned PK only for the db sequence type.
    Still you can use a db sequence to get a unique number and assign it (after converting it to the right type) to a java type. This you have to do yourself.
    this is the javadoc for the class [http://download.oracle.com/docs/cd/E15051_01/apirefs.1111/e10653/oracle/jbo/client/remote/SequenceImpl.html|http://download.oracle.com/docs/cd/E15051_01/apirefs.1111/e10653/oracle/jbo/client/remote/SequenceImpl.html]
    Timo

  • Advanced Table Multiple Selection View Attribute Type

    Hi,
    I have an advanced table with multiple selection. The multiple selection is associated with a view object attribute that is of type "String". In the create mode, the view attribute stores "Y" for the selected rows. But in the update mode, when I try to initialize the VO from the DB table, the multiple selection checkboxes are not selected for the rows where the DB value of the associated attribute is "Y". Somebody told me that if I specify the type of the DB attribute associated, to Boolean (and also the view attribute as Boolean), then this problem wouldn't occur. Is that correct or I must be doing something else wrong?
    Thanks,
    Amit

    Hi Pratap,
    It's quite simple actually. I mean the problem defintion :-) (not the solution)
    I have a table with multipleselection. Initially the user does a "Select All" and the data is committed to the DB.
    Once committed I don't want the user to change the selection, hence I need to hide the checkbox ( there is no way to make it read only).
    To do this, I make the multipleselectionbean as rendered=false. But when the page is committed again, the row selection is getting changed back to "N" for all rows.
    Now if I don't hide the multipleselection bean, the checkboxes appear as selected and the commit doesn't change the value to "N".
    Hope the problem is clear now.

  • View does not show column type

    I have two views containing a column, which is defined exactly in the same way. One view shows the column type as VARCHAR2 (200 CHAR) and the other does not show anything as the type.
    Here is the screen shot:
    http://public.ceving.de/2012050900/postaladdress.png
    First question: why is there a difference?
    Second question: why is the type VARCHAR2 although the modeler does not know VARCHAR2 but only VARCHAR as a column type?
    Here are the definitions of the views:
    This is "user_status":
    WITH user_status_data AS
    (SELECT work_user_status_data.person_id,
    MAX(work_user_status_data.startdate) AS startdate
    FROM work_user_status_data
    GROUP BY work_user_status_data.person_id
    SELECT person.id AS tmdid,
    person_a.lastname,
    person_a.firstname,
    person_a.email AS emailaddress,
    person_a.address
    || ', '
    || person_a.zipcode
    || ' '
    || person_a.city
    || ' '
    || person_a.country AS postaladdress,
    person_a.phone,
    person_a.mobile,
    person_a.company AS organization,
    person_a.orgunit_abbr AS orgunit,
    work_user_status_data.pwdresetflag,
    work_user_status_data.lockaccount,
    work_user_status_data.primarypwd,
    work_user_status_data.expdate,
    work_user_status_data.iamtid,
    work_user_status_data.startdate,
    work_user_status_data.stopdate,
    'IN PROGRESS' AS status
    FROM person_a
    INNER JOIN ts
    ON ts.id = person_a.ts_id
    INNER JOIN person
    ON person.id = person_a.person_id
    INNER JOIN user_status_data
    ON person.id = user_status_data.person_id
    INNER JOIN work_user_status_data
    ON user_status_data.person_id = work_user_status_data.person_id
    AND user_status_data.startdate = work_user_status_data.startdate
    WHERE ts."until" IS NULL
    And this is "work_user_status":
    SELECT person.id AS tmdid,
    person_a.lastname,
    person_a.firstname,
    person_a.email AS emailaddress,
    person_a.address
    || ', '
    || person_a.zipcode
    || ' '
    || person_a.city
    || ' '
    || person_a.country AS postaladdress,
    person_a.phone,
    person_a.mobile,
    person_a.company AS organization,
    person_a.orgunit_abbr AS orgunit,
    work_user_status_data.pwdresetflag,
    work_user_status_data.lockaccount,
    work_user_status_data.primarypwd,
    work_user_status_data.expdate,
    work_user_status_data.iamtid,
    work_user_status_data.startdate,
    work_user_status_data.stopdate,
    work_user_status_data.action,
    work_user_status_data.progress
    FROM person
    INNER JOIN person_a
    ON person.id = person_a.person_id
    INNER JOIN work_user_status_data
    ON person.id = work_user_status_data.person_id
    INNER JOIN ts
    ON ts.id = person_a.ts_id
    WHERE ts."until" IS NULL
    Edited by: 931739 on 09.05.2012 06:37

    I just found out that the engineered version (10g) is also quite strange:
    http://public.ceving.de/2012050900/postaladdress_10g.png
    It shows the values in the columns for the types.
    This looks very buggy.
    Is it not recommended to create views with the data modeler?
    Edited by: 931739 on 09.05.2012 06:38

  • Assigning format/format type to entity or view attribute

    When I edit a entity or view attribute and click on the Control Hints node, the Format and Format Type fields are disabled.
    The online help mentions "mapping of the domain type to it’s available formatters" but in this particular instance I am not using a domain type.
    Does the attribute have to be of a domain type in order to specify a format type and format for that attribute?

    It looks like the attribute formatting only works for numbers and dates. I was trying to apply the formatting to a string (social security number).
    Still not sure if this is a bug or by design.

  • Copy the attribute as well the associated type from the  standard to your enhanced view.?

    We are doing CRM Upgrade to Ehp3 and i am working with TC:WCF_CC
    Please guide me how to open standard view in parallel in component workbench?
    to add copy the attribute as well the associated type from the
    standard to your enhanced view.?
    Please advice

    Hi,
    The only option i see is writing a BDC for a Mass Change or through Catt or E-Catt procedure, you can define any no. of fields there to copy and then you need to maintain the data in Excel file correctly, otherwise Ecatt is not going to upload the data.
    Hope this helps.
    Thanks
    Aktar

  • How to determine a View Object Type (read only or Updatable) ADF B.C 10.1.3

    Hi all,
    in scott Schema by ADF B.C 10.1.3, I created an entity object like emp
    and created view object EmpView from emp and dept entities
    and Application Module
    and when draging EmpView and dropping it in jspx
    while running I got an error :
    JB0-25003 your EmpView View Object has no Type
    How to determine a View Object Type (read only or updatable) in B.C ?
    Thanks

    Hi,
    this should not require any manual confiuration. Can you select the ApplicationModule in the model, right click on it and run the ADf BC tester ? Check if he ViewObject runs if not added to JSF
    Frank

  • CS13 ----- will it show only parts with procurement type F ?

    Hi,
    I have a basc issue
    when we execute CS13 it summarises teh BOm and show the Bom component and  quantity .
    will it show only parts with procurement type F ?
    when we execute CS13 for a finished product , its not displaying all the BOM components , the list is displaying only few
    what might be the reason
    will it show the parts only directly linked to it at the first level ?
    regards,
    madhu kiran.

    Hi,
    CS13 shows summarize BOM that mean it leaves out all the intermediate BOMs(sub assemblies) and displays on the end components.  End component need not have procurement type F.
    It will display End components in the any level.
    To simply cross check, in CS12 add colum Assembly indicator and filter only those components having blank value. You will get report displayed as that of CS13.
    Regards,
    Krishna Mohan

  • SRM 4.0- How to set the default values for product type (01) only for SC

    The radio button “Service” should not be visible.
    Also for search help (e.g. search for internal products) where a search should only be possible for product type 01 (goods). The system should not display the product type and internally always search for goods only.
    How to set the default values for product type (01) only for SC
    We needs to use Search help BBPH_PRODUCT which having parameter PRODUCT_TYPE
    Here we can set defalut value 01 but it is not correct one since same search help is using several places.
    We need to limit the search help results only for SC.
    Kindly help out me ASAP.

    The easiest way to set defautl values is to edit the batch class.
    Goto the characteiristic and go to update values.
    In here you probably have something like 0 - 100 as a spec range.
    On the next line enter the default value within this range.  At the end of the line, click in the box in the column labelled "D".  This indicates the defautl value for the characteristic.
    If you need to you can do this in the material classification view as well.
    Just to be clear, these values will only show up in the batch record.  You can not have defautl values in resutls recording screens.
    FF

  • Getting error message "Only a type can be imported-" when trying to execute jsp page

    I get the error: "Only a type can be imported. com.adobe.cq.TestServiceImpl resolves to a package in adobe day cq5
    I have created one bundle and installed in felix console. The status of the bundle is also Active. And also it is available in both service and component console.
    Here is my TestServiceImpl class in com.adobe.cq bundle
    package com.adobe.cq;
    import org.apache.felix.scr.annotations.Component;
    import org.apache.felix.scr.annotations.Service;
    import org.osgi.framework.BundleContext;
    import org.osgi.service.component.ComponentContext;
    import javax.jcr.RepositoryException;
    import org.apache.felix.scr.annotations.Property;
    import org.apache.felix.scr.annotations.Properties;
    //src.component
    //declares the class component. This will provide a wrapped ManagedService component in the OSGI container.
    //src.service interface="SampleService"
    //declares the service we are offering. Actually, the interface attribute is superflous, as by default, all implemented Interfaces are used.
    @scr.component
    @scr.service interface="testService"
    @Component(immediate = true, metatype = true)
    @Service
    @Properties( {
    @Property(name = "service.description", value = "abcd"),
    @Property(name = "label", value = "myLabel") })
    public class TestServiceImpl implements TestService {
    public String sayHello() {
         return "Hello World!";
    Here is my jsp code
    <%@include file="/libs/foundation/global.jsp"%><%
    %><%@include file="/apps/mine/includes/functions.jsp"%><%
    %><%@ page import="com.adobe.cq.TestServiceImpl,
    org.apache.sling.api.SlingHttpServletRequest,
                    java.util.List"%><%
    %><%
    SlingHttpServletRequest r = (SlingHttpServletRequest)request;   
                    TestServiceImpl testService = sling.getService(TestServiceImpl.class);
                    out.println("testService:::"+testService);
    %>
    <div id="te-nav" style="display:block !important;">
    </div>
    Is it because of am using annotation in TestServiceImpl class?
    Could you please tell me how to fix it?
    Regards,
    Anderson

    Hi Pawan,
    Thanks for your information. It was problem with my pom.xml It started to work after changing my POM.xml
    I am not able to get sling service for TestServiceImpl. But I am only able to create TestService which is my interface. I need to get reference for TestServiceImpl class not for TestService interface. Please help me to make it.
    i have created TestServiceImpl and TestService class for testing whether my bubdle is crating all the folder structure or not.
    But my requirement is like assume class A has some methods like getMenuLink, setMenuLink.. And In class B i am calling some methods in class A and doing some manipulation in createLink method.
    Here class B does not have any interface. Not implementing  any interface. But I need to get class B refererence via sling.getService.
    I know that if we are using maven SCR plugin..we need to have @component, @service. And All java classes are not services. Will it work if I add activate, deactivate method in class B?
    Could you please tell me how to proceed next?
    Thanks,
    Anderson

  • Custom Template for Third Party Balance Summary Report(Java type executable

    Hi Al,l we have a requirment to have a layout with some of the fields from
    Third Party Balance Summary Report( Which is a Java type executable and
    Data definition has Data Template attached(.xml)).
    I tried in below way.
    Coppied the Third Party Balance Summary Report program with same application and parameters
    with. Then defined a Datadefinition with my concurrent prog short name
    attached the same standard .xml file(Not sure what it is) and developed a custom template with
    a custom rtf(excel output type), and submitted the program
    the output is generated in excel but my custom .rtf layout is not getting applied
    rather it is showing same layout as in standard.
    Some thing I am missing here or else it is not the way of changing the
    template.
    If any one know how to do this please let me know.
    My client want only some files from the standard report(no need of new fileds)
    with output type xls.
    Thanks in Advance.
    The same content is posted in Custom Template for Third Party Balance Summary Report(Java type executable sorry for duplicating the thread, just for increase the visibility for my issue I did this.

    I gave up on using a different font or figuring out if I could use Times New Roman's built-in fractions visible in Font Book (as unicodes) and did a work-around based on Michael Wasley's tips in this discussion.
    https://discussions.apple.com/message/11622842#11622842
    I adapted it however and think it looks a little better.
    Font: Times New Roman 12 point
    I used the fraction bar in 12-point (Shift-Option-1) for automatic kerning.
    For the numerator, I changed the font style to superior (12-point).
    For the denominator, I changed the font style to subscript (Shift-Command-hyphen) and reduced the font size to half, or 6-point using the short-cut Shift-Command-<.
    When the fractions occured in my footnotes (9-point), I used 4-point in the denominator; 10- and 11-point, I used 5-point in the denominator. This seemed to produce the best result when printing.
    Thank you, Michael.
    -Dottie

  • VB Web service with arrays as variant type - access from java

    Hi, I have a VB service as an activex.dll running on IIS. My first experience with VB.
    The input type is variant, as VB will only handle arrays of that type. All works well with
    a VB client. It takes 2 arrays in and returns an array. The WSDL file using a complex
    type of
    <complexType name='ArrayOfanyType'>
         <complexContent>
              <restriction base='SOAP-ENC:Array'>
                   <attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='anyType[]'/>
              </restriction>
         </complexContent>
    </complexType>
    I take this WSDL file to the client side, change the type to
    <complexType name='ArrayOfinteger'>
         <complexContent>
              <restriction base='SOAP-ENC:Array'>
                   <attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='integer[]'/>
              </restriction>
         </complexContent>
    </complexType>
    and then generate the Java proxy using jdeveloper 9031. All is good and I call the service
    and get a response, which in turn gives me a result. the result.getvalue fails with a caste
    exception, [LObject[] to Integer[]. The return value is there, but it's type is Object, which I can
    see by inspecting response in the debugger. I am getting
    pretty sure it is not a Java Object, but a dom or sax Object. The DOM DocumentBuilder
    works for String to get the values, but not for this Object type. Does anyone know how to
    parse out an Object Type with DOM or SAX?

    A java type "Object" is parent class of all java instances - to parse it with DOM or SAX requires you to cast it to the required object type by that parser api - eg "Document" - check out the DOM and SAX api docuemntation.

  • Creating data dictionary type using custom java class

    Hi Experts,
    I have a situation involving the TableSorter mechanism as described here:
    In order to do my sorting correctly, I've created my own Java class implementing the Comparable interface. Based on this class, I need to define my own data dictionary type to be used in a context/table.
    However, I cannot se how this could be achieved as standard Data Dictionary elements can only be based on simple built-in types. Any ideas?
    Kind regards,
    Rasmus Røjkjær Ørtoft

    Hi,
    have you tried to use the following steps while creating your attribute
    1) Right click on the context
    2) New->Attribute
    3) Manually-> Provide a name for the attribute
    4) Browse->Select java native type and select your class
    regards
    Ayyapparaj

Maybe you are looking for

  • Is it safe to upgrade from Photoshop Album to PSE8?

    I developed a fairly large catalog in Photoshop Album (version 2 I think). I successfully converted it to a downloaded version of PSE7. But then someone told me about PSE8, so I downoaded that. It wouldn't accept my Album catalog, getting stuck and r

  • Business Area or Profit center

    Hi Gurus, We are using Profit Center instead of Business area. Why they are using profit center? Please don't tell in business there is no upgraded Please tell except this one. Thanks Krishna

  • Redirecting to another site

    Hi, sorry for my bad english but I'm german and didn't found a other forum. I was changing from one site to another site as a strange website wrote that my flash player is to old and I have to update it. In the same moment as the website was loaded,

  • I ordered a photo book from iPhoto

    I was charged shipping even thought the website says that everything ships free for Christmas. How can i fix this?

  • Adobe Story Plus's sharing features keep failing for my account

    I have been an Adobe Story user since it first launched, when collaboration was included in the free version. Then it split into Adobe Story Free and Adobe Story Plus. Recently, the internship I landed required that I adobt a CC-centric workflow, thu