All the properties are not displying for the View Object

i my one of the view Object it is only showing the properties
Values
Lable
Render values
I want to use text box (Input box )...but it is not showing in the property window
why it is not showing the all the properties for the that view Object.
Is it a read only view object ? if so then how to change it

This question is confusing.
You talk about properties, suggesting attribute properties are not showing up in the view object editor. Then you talk about a read-only view object, which suggests you talk about a running application?
Normally a view object is updatable when it is based on an entity object and when on the entity object tab of the view object editor (the page in which you select the entity object) the updatable checkbox has been checked.
But being updatable as such is not why attributes would not show up in a screen.
Can you be more specific, and also tell us what JDeveloper version you are working with?
Jan Kettenis

Similar Messages

  • Wild Cards are not allowed for this info object

    Hello Experts,
    I am getting some problem, when I trying to find the some selections for info object in variable selection screen; it giving some error like u201CWILD CARDS" are not allowed  for this info object.
    I am trying to find the search item like this: TELENOR*
    When I click on find button it is giving error.
    Please any body help me in this matter.
    Thanks & Regards
    Prathap.

    Hi,
    You need to create a selections option variable on the characteristic that needs to be filtered.
    After doing this, when you run the query, select the * from the dropdown box,and give the value.
    Hope this helps u..!!
    -Pradnya

  • Flex 4 scaleGrid properties are not working for me.

    Hello All,
        I'm new to Flex 4. I have used Flex 3. But in flex 4 i'm facing one problem which i'm unable to solve. I have added a backgroundImage for a BorderContainer. Image is getting added but it is not at all scaling. I felt as the properties scaleGridTop, scaleGridBottom, scaleGridRight and scaleGridLeft are not working which was working in flex 3.
    Here is my code
    <s:BorderContainer
                           width="100%" height="100%"
                           backgroundImage="@Embed('/Styles/Images/toolIcons/Top_Bottom_Bar_Sub.png',
                           scaleGridLeft='150', scaleGridRight='650',
                           scaleGridTop='25', scaleGridBottom='26')"/>
    The image to be added is here.
    This image is getting added but it is totally stretched. Not scaling according to the positions i've set.
    Please can anybody help me in resolving this issue...?

    Looks like BorderContainer doesn't respect scaleGrid values.  I have filed a bug for this here: http://bugs.adobe.com/jira/browse/SDK-30676

  • SetWhereClause not working for standard view object

    Hi All,
    We are trying to customize one standard page and for that we have add extra where conditions in the standard view object. In th standard view object query is null which is actually getting executed in vo impl using setQuery as follows:
    Please refer setUpQuery Method:
    Below is the controller code from where it is getting fired:
    if(oapagecontext.getParameter("SearchButton") != null)
                            oapagecontext.putParameter("CurrAction", "SEARCH");
                            validateCategoryCriteria(oapagecontext, oawebbean);
                            SupplierSearchVOImpl suppliersearchvoimpl = (SupplierSearchVOImpl)suppliersearchamimpl.findViewObject("SupplierSearchVO");
                            if(flag)
                                suppliersearchvoimpl.setupQueryForRequestedSupplier(oapagecontext, oawebbean);
                            else
                                suppliersearchvoimpl.setupQuery(oapagecontext, oawebbean);
                            suppliersearchvoimpl.executeQuery();
                            oapagecontext.setForwardURLToCurrentPage(null, true, "S", (byte)99);
                            break label0;
    As in the seeded condition setForwardURLToCurrentPage is getting fired we have added additional where condition in the processRequest of the extended controller as follows:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean) {
    super.processRequest(pageContext, webBean);
        pageContext.writeDiagnostics(this, "inside PR",1);
        OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("SupplierSearchAM");
       // OAViewObject vo = (OAViewObject)am.findViewObject("SupplierSearchVO");
        SupplierSearchVOImpl vo = (SupplierSearchVOImpl)am.findViewObject("SupplierSearchVO");
        //String voQuery = vo.getQuery();
        //pageContext.writeDiagnostics(this, "SupplierSearchVO Query : "+voQuery, 1);
        //String whereClause1 = vo.getWhereClause();
        //pageContext.writeDiagnostics(this, "SupplierSearchVO Where Clause : "+whereClause1, 1);
        //pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
        //vo.setWhereClauseParams(null);
         pageContext.writeDiagnostics(this, "sessionVal PR"+pageContext.getSessionValue("sessionVal"),1);
        if (pageContext.getSessionValue("sessionVal")!=null) {
           if(pageContext.getSessionValue("sessionVal").equals("NO")) {
               if(vo!= null){
              // vo.setWhereClause("QRSLT.vendor_id = :2");
              // vo.setWhereClauseParam(1,1486622);
                 //  vo.setWhereClause("vendor_id = 1486622");
                  String voQuery = vo.getQuery();
                  StringBuffer stringbuffer = new StringBuffer(" ");
                      stringbuffer.append("SELECT select_flag,vendor_id,vendor_name,asl_entry,trading_partner_id,\n" +
                          "Po_Hold_Switcher_Col,po_docs_totals,tot_invited_negs,tot_awarded_negs,requested_supplier_id from (");
                      stringbuffer.append(voQuery);
                      stringbuffer.append(") where vendor_id = 1486622" );
                      String str = stringbuffer.toString();
                   vo.setQuery(null);
                   vo.setFullSqlMode(vo.FULLSQL_MODE_AUGMENTATION);
                          pageContext.writeDiagnostics(this, "new query string==>" + str,1);
                   vo.setQuery(str);
                          pageContext.writeDiagnostics(this, "new query after vo==>" + vo.getQuery(),1);
                   pageContext.writeDiagnostics(this, "new query ready toexecute==>" + vo.isPreparedForExecution(),1);
               if(vo.isPreparedForExecution()) {
                   vo.executeQuery();
               else {
                   vo.setPreparedForExecution(true);
                   vo.executeQuery();
                   pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
                   pageContext.writeDiagnostics(this, "new query "+vo.getQuery(),1);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext,
    OAWebBean webBean) {
         // sessionVal="No";
          pageContext.putSessionValue("sessionVal","NO");
          pageContext.writeDiagnostics(this, "sessionVal PFR"+pageContext.getSessionValue("sessionVal"),1);    
    super.processFormRequest(pageContext, webBean);
    pageContext.writeDiagnostics(this, "ProcessFormRequest called...", 1);
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("SupplierSearchAM");
    //if (pageContext.getParameter("SearchButton")!=null)
    //  pageContext.writeDiagnostics(this, "inside serach button custom",1);
    //super.processFormRequest(pageContext, webBean);
    //    SupplierSearchVOImpl vo = (SupplierSearchVOImpl)am.findViewObject("SupplierSearchVO");
    //OAViewObject vo = (OAViewObject)am.findViewObject("SupplierSearchVO");
    //String voQuery = vo.getQuery();
    //pageContext.writeDiagnostics(this, "SupplierSearchVO Query : "+voQuery, 1);
    //String whereClause1 = vo.getWhereClause();
    //pageContext.writeDiagnostics(this, "SupplierSearchVO Where Clause : "+whereClause1, 1);
    //pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
    //vo.setWhereClauseParams(null);
    //vo.setWhereClause("vendor_id = :1");
    //vo.setWhereClause("city = :2");
    // vo.setWhereClause("vendor_id = :1");
    //vo.setWhereClauseParam(0, "1486622");
    // vo.executeQuery();
      // pageContext.writeDiagnostics(this, "new query after execute ==>" + vo.getQuery(),1);
       // vo.executeQuery();
    //pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
    // SupplierSearchAMImpl suppliersearchamimpl = (SupplierSearchAMImpl)pageContext.getApplicationModule(webBean).findApplicationModule("SupplierSearchAM");
    // boolean flag = "PROSPECTIVE".equals(pageContext.getParameter("SupplierStatus"));
      //  if(pageContext.getParameter("SearchButton") != null)
           // pageContext.putParameter("CurrAction", "SEARCH");
           // validateCategoryCriteria(pageContext, webBean);
           // SupplierSearchVOImpl suppliersearchvoimpl = (SupplierSearchVOImpl)am.findViewObject("SupplierSearchVO");
           // if(flag)
           //     suppliersearchvoimpl.setupQueryForRequestedSupplier(pageContext, webBean);
           // else
            //    suppliersearchvoimpl.setupQuery(pageContext, webBean);
            //suppliersearchvoimpl.customExecuteQuery();
           // oapagecontext.setForwardURLToCurrentPage(null, true, "S", (byte)99);
           // break label0;
      We have tried setting both where clause and query but the issue is condition is getting added in the query when I am printing getQuery but while executing it is executing the old vo query only.
    So can anyone help us on this?

    When you post a question, please use the Advanced Editor and paste the code with appropirate syntax. It will make it easy to read. Otherwise your question might get ignored by others as it is very very difficult to read.
    What is the output you are getting for the below diagnostic messages  ? Is it returning the correct query and correct count ?
    pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
    pageContext.writeDiagnostics(this, "new query "+vo.getQuery(),1);
    Cheers
    AJ

  • View link not working for programatic view objects

    Dear All,
    I have created 2 vo that is programatically populated from the stored procedures, which runs perfectly.
    I created a view link between these 2 vo which has 1-many relationships. when i run AM then the destination VO is not getting filtered based on source vo. but it displays all records for all the records in source table. Is there any work around for this problem....?
    Regards,
    Santosh.
    Component     Version
    =========     =======
    ADF Business Components     11.1.1.59.23
    Java(TM) Platform     1.6.0_21
    Oracle IDE     11.1.1.4.37.59.23
    Versioning Support     11.1.1.4.37.59.23

    beep.

  • Why filters are not awailable for my objects?

    Why filters are not awailable for my objects?

    Based on your screenshot preview, I can see that from your Elements panel, you are using an external .html file, correct?
    Some in-app Properties are not available for external, non-managed files.
    If you create a new project (File > New), for example, add an element you will have full access to Edge Animate properties.
    If you create a htm5 doc in Dreamweaver, for example, and open that in Edge Animate then you are limited - because the originating file (.html) is from another application.
    Hope this helps, clarify.
    Darrell

  • TS1474 Inspite of following the instructions for authorization of my iMac and my ipad I am unable to sync a movie from my iMac to my ipad.  All I get is a message that says  you are not authorized for it on this computer.  Any idea what is wrong?

    Not able to sync movie purchased from itunes from imac to ipad2.

    try this:
    redmatter
    This helped meRe: not copied to iPad because you are not authorized for it on this computer 
    Nov 20, 2011 10:41 AM (in response to hoppo72)
    One workarwound is to do the following:
    1. Remove the digital content from iTunes (but keep the files)
    2. Rename all .m4v files to .mp4 files
    3. Add the files back to iTunes
    This seems to fix the problem for me
    Hope this helps

  • Eraser tool in Photoshop CS4 acts as if it is transparent when on brush or pencil mode. Block acts like its not transparent at all but there are no options for opacity, flow or brush size. Whats wrong and how to I make the brush and pencil eraser erase co

    Eraser tool in Photoshop CS4 acts as if it is transparent when on brush or pencil mode. Block acts like its not transparent at all but there are no options for opacity, flow or brush size. Whats wrong and how to I make the brush and pencil eraser erase completely without having to go over it multiple times?
    It started randomly about two weeks ago and I thought it was a glitch that would just go away. But now I am getting sick of using only the block eraser on one size. Help?

    The easiest thing to start with is to reset the Eraser Tool.
    Right click on the Eraser icon in the tool options bar and then click on Reset Tool.

  • After clearing cash on mac applications won't lunch any more..I tried to delete apps like VLC player with app cleaner and again download and instal new but it's the same..goes for all apps that are not originally part of Yosemite. Please advise me?!

    After clearing cash on my mac ( Go to folder: ~/Library/Caches and clear all, than to Library/Cashes and clear all again) applications won't lunch any more..I tried to delete apps like VLC player, firefox.. with app cleaner and again download and install the new one but it's the same..goes for all apps that are not originally part of Yosemite. I have done this cash clean up very often on Maverick without any problems. This time I done it again because I could not open my web site, the server has blocked me and I was trying everything including deleting cash from mac. Please advise me what to do..?!? Thanks in advance.

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • New DSO data fields are not available for transformations in the upwardflow

    Hello,
    There are data flow from
        many source DSOs -> Target DSO -> Final DSO.
    Different transformations are defined and activated with DTPs. This works fine and provides the desired results.
    now new fields are added to the target DSO, final DSO and one of the source DSO.
    When I now try to edit the transformations, the new fields are not part of the sources at the different stage.
    The fields are available in the Data Source created out of a DSO but not directly when using a DSO as a data source.
    Have anyone faced such a problem?
    any solutions to this?
       - I cannot delete all the other transformations as this is too much work to do and there is no time for it.
    Regards
    Kannan

    We created ZMD_BS_MAT_OVP_LAYOUT. But the situation has not changed - the fields are not available for edit.

  • I made the mistake of resetting my iPod to factory defaults. Now it will only partially sync to my music library. I continually get an error message saying that certain songs are not authorized for my computer. Any ideas?

    I made the mistake of resetting my iPod to factory defaults. Now it will only partially sync to my music library. I continually get an error message saying that certain songs are not authorized for my computer, although they are in the iTunes library on the computer and will play. It's these songs that won't transfer to the iPod. I have deauthorized and re-authorized the computer but no joy. Any ideas?

    Hello there DesertRat71,
    I was thinking that some of the songs in your library may have been purchased under a different apple id. You have already done the first thing I would have done by de authorizing and re authorizing. To verify this, highlight one of the songs that will not sync over and use File>Get Info. Here is the help menu link for it if you need it help://bookmark='https://help.apple.com/itunes/mac/11.0/help/index.html?localePa th=English.lproj#itns2937'
    In the Summary section there will be an Apple ID entry. If it shows something different than what you are currently using then I recommend signing into the Apple ID it shows and authorizing the computer for that one as well.
    All the best,
    Sterling

  • HT203167 My movies will not download to my iPad. And I the downloads are not available for my computer. How do I cancel or get the movies to my iPad? I am on wifi and 3 g. Not happy

    My movies will not download to my iPad. And the downloads are not available for my computer. How do I cancel or get the movies to my iPad? I am on wifi and 3 g. Not happy

    Hi,
    For all people struggling with connecting their iPad to their router, constantly getting 'Incorrect Password' even though you have entered the correct one - this may be your solution as it just resolved my issue.
    In your router settings online (usually found at 198.168.1.1) change your security from WPA2 or WEP to WPA.  For my iPad it for some reason only accepts WPA but now it is running without problems.  Let me know if this helps.
    Cheers.

  • Every movie purchase through iTunes fails to transfer to my iPhone or iPad and the message I get is this: some of the items in the itunes library, including were not copied to the ipad because you are not authorized for them on this computer... help?

    For a couple months now, every movie purchase through iTunes fails to transfer to my iPhone or iPad giving me the error: "some of the items in the iTunes library, including were not copied to the iPad because you are not authorized for them on this computer". I have read many forums about deleting, reinstalling, de-authorizing and authorizing my iMac through the iTunes store. Many suggestions don't work except to rename the movie to *.MP4 in Finder under the iTunes movie directory. I imagine this is a setting or a bug somewhere... any suggestions on how to bypass having to rename the files in Finder? My research into Google suggests this problem dates back to 2007 or so but it is now more prevalent than ever.
    Thanks.

    Try:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases

  • I need to download all of my photos from my iPhone 4S and my iPad 2 to my MacBook Air. I want to make sure all my photos are not lost and that they do not return to the original devices because of the cloud. Can someone please help ?

    I need to download all of my photos from my iPhone 4S and my iPad 2 to my MacBook Air because there is no more storage space available. I want to make sure all my photos are not lost and that they do not return to the original devices because of the cloud. Can someone please help ?

    Connect your devices to the computer with the USB cable (one device at a time) and import the photos via iPhoto or Image Capture.
    If you have not changed any default settings on your computer, iPhoto will automatically launch when you plug in the device. Then follow the import prompts.

  • I downloaded iOS 7 and now in my music library all my songs are not in the order of the original albums. How do I get them back into order?

    I downloaded iOS 7 and now in my music library all my songs are not in the order of the original albums. How do I get them back into order?

    go to settings>general>reset>reset home screen layout and see if they appear.

Maybe you are looking for

  • Duplicating a user to another in the same db

    I have read plenty of posts about this, but no matter how I try with datapump or simply exp/imp I cant seem to get this right. I a devel 11gR2 server with one database and a user, USERA that an application uses. I need to duplicate that application s

  • IPhone + New Aluminum Keyboard + MBP = No Sleep?

    I just got the new wired aluminum keyboard two day ago, hooked it up to my MBP through my ACD's USB hub. Somehow the computer just keeps waking up from sleep after a while. I did an experiment yesterday. Put the computer to sleep mode for entire day

  • Summing and Finding Maximum in 2d array

    So I have an 2d array of numbers and I am trying to find the maximum sum of the rows and give back the row number. So far I can get the sum and the maximum number but I need to give back the row number of the maximum value. public static void RowSumR

  • Initial startup won't work due to invalid MyMusic location

    The drive which contains My Documents, and subsequently My Music is an administrator only drive and I can't create new folders. So, when I first start iTunes, I agree to the user agreement and then it says "the folder itunes cannot be found or create

  • Can I get rid of this file?

    Other than Movie, Music, Pic, here are my "space eater": - a folder called Private - another called usr - In Library: . Audio folder with Apple Loops: Are they used with iMovie . Printer folder in Library: do I need 1.6GB for that (I rarely print) .