Table is not enable mode

Hi Gurus,
I am creating a webdynpro in that I created a couple of tables when I am running the application it is indisable mode. I want it to be in enable mode to enter some data. Please help me as this is very urgent.
Thanks
Venu

Hi KodaliVenu,
I will explain u with an example.
Let ur view name be ' MyView '
Let ur table have 2 columns: First Name and Last Name
Let ur Context node be ' Root ' (cardinality 0..N) and ' firstname ' and ' lastname ' be two attributes of type string under ' Root'.
Do the following
1. Create a table with two columns, each column with tablecele editor as InputField
2. Bind the DataSource property of table with node ' Root '
3. Bind fistname input field with context variable ' firstname '
4. Bind lastname input field with context variable ' lastname '
5. in wdDoIni(), do the following
   IPrivateMyview.IRootNode root=wdContext.nodeRoot();
   IPrivateMyview.IRootElement rootEl;
   for(int i=0;i<5;i++)
     rootEl=root.createRootElement();
     root.addElement(rootEl);
   The above code will create 5 rows in table, with two columns, which willl be editable

Similar Messages

  • Table is not stretching to its full width in Advanced Search Mode.

    Hi All,
    I am invoking a popup which contains search panel and af:table to display the result.
    In Basic mode search operators are not enabled so its showing only search field and result table .
    But in advanced mode the width of search panel is increased because all the searchable fileds are coming with search operators.
    However width of result table is not changing at all .its same as it was in basic mode.
    My requirement is whenever the width of search panel gets increased Result table shold also increase till the end of panel.
    I have attached the screen shot of basic and advance search with this post .
    Thanks,
    Arun.

    Why don't you use panelStretchLayout and place your table into its center facet? Then you will not worry about the size of your table.

  • XP Mode in Windows 7 on T400, CPU virtualization not enabled (but it really is) error

    I installed Windows 7 Pro 64bit on my T400 this week. I'm trying to get the XP mode VM to run because the VPN's for work aren't compatible with Windows 7 yet. When using the tool to verify compatibility of the T400 with Microsoft's new VM software it says that hardware virtualization is not enabled. According to microsofts help page that means the laptop is compatible but the CPU virtualization needs to be enabled in the bios. I followed their instructions to enable it but there was no change. I returned to the bios to verify & sure enough, it's on. I installed XP mode vm & vm software but it wouldn't run stating the above problem.
    Has anyone else run into this or know how to fix/get around it?
    Thank you,
    Chad
    Solved!
    Go to Solution.

    I found the answer in another forum. Apparently just restarting isn't enough to make the switch work properly. The computer needs to be shut down & left off for a few seconds then started for each change to CPU virtualization to be applied.
    So, I disabled it again. Turned it off for a few seconds. Re-enabled, turned off for a few seconds. Then it worked after booting to windows.
    Cheers,
    Chad

  • Commit operation not enabled after createinsert in detail table

    Hi Everybody,
    After clicking createinsert operation for detail table in master detail, i got unique contraint error from db.after rectifiying the data for newly created row..commit operation not enabled to save the data.
    Please find the code i used in my jsf.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelBox text="PanelBox2" id="pb2">
              <f:facet name="toolbar">
                <af:group id="g2">
                  <af:commandButton actionListener="#{bindings.Delete1.execute}"
                                    text="Delete1"
                                    disabled="#{!bindings.Delete1.enabled}"
                                    id="cb4"/>
                  <af:commandButton
                                    text="CreateInsert1"
                                    disabled="#{!bindings.CreateInsert1.enabled}"
                                    id="cb3"
                                    action="#{backingBeanScope.MyIndustryBean.cb3_action}"/>
                  <af:commandButton actionListener="#{bindings.Commit.execute}"
                                    text="Commit"
                                    disabled="#{!bindings.Commit.enabled}"
                                    id="cb5"/>
                  <af:commandButton actionListener="#{bindings.Rollback.execute}"
                                    text="Rollback"
                                    disabled="#{!bindings.Rollback.enabled}"
                                    immediate="true" id="cb6">
                    <af:resetActionListener/>
                  </af:commandButton>
                </af:group>
              </f:facet>
              <af:table value="#{bindings.IndustryEOView1.collectionModel}"
                        var="row" rows="#{bindings.IndustryEOView1.rangeSize}"
                        emptyText="#{bindings.IndustryEOView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.IndustryEOView1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.IndustryEOView1Query.queryDescriptor}"
                        queryListener="#{bindings.IndustryEOView1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.IndustryEOView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.IndustryEOView1.collectionModel.makeCurrent}"
                        rowSelection="single" id="t1" width="448"
                        inlineStyle="height:193px;" partialTriggers="::cb3 ::cb4">
                <af:column sortProperty="IdDesc" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryEOView1.hints.IdDesc.label}"
                           id="c2">
                  <af:inputText value="#{row.bindings.IdDesc.inputValue}"
                                label="#{bindings.IndustryEOView1.hints.IdDesc.label}"
                                required="#{bindings.IndustryEOView1.hints.IdDesc.mandatory}"
                                columns="#{bindings.IndustryEOView1.hints.IdDesc.displayWidth}"
                                maximumLength="#{bindings.IndustryEOView1.hints.IdDesc.precision}"
                                shortDesc="#{bindings.IndustryEOView1.hints.IdDesc.tooltip}"
                                id="it2">
                    <f:validator binding="#{row.bindings.IdDesc.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="IdPlace" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryEOView1.hints.IdPlace.label}"
                           id="c1">
                  <af:inputText value="#{row.bindings.IdPlace.inputValue}"
                                label="#{bindings.IndustryEOView1.hints.IdPlace.label}"
                                required="#{bindings.IndustryEOView1.hints.IdPlace.mandatory}"
                                columns="#{bindings.IndustryEOView1.hints.IdPlace.displayWidth}"
                                maximumLength="#{bindings.IndustryEOView1.hints.IdPlace.precision}"
                                shortDesc="#{bindings.IndustryEOView1.hints.IdPlace.tooltip}"
                                id="it1">
                    <f:validator binding="#{row.bindings.IdPlace.validator}"/>
                  </af:inputText>
                </af:column>
              </af:table>
            </af:panelBox>
            <af:panelBox text="PanelBox1" id="pb1">
              <f:facet name="toolbar">
                <af:group id="g1">
                  <af:commandButton actionListener="#{bindings.Delete.execute}"
                                    text="Delete"
                                    disabled="#{!bindings.Delete.enabled}"
                                    id="cb2"/>
                  <af:commandButton
                                    text="CreateInsert"
                                    disabled="#{!bindings.CreateInsert.enabled}"
                                    id="cb1"
                                    action="#{backingBeanScope.MyIndustryBean.cb1_action}"/>
                  <af:commandButton actionListener="#{bindings.Create.execute}"
                                    text="Create"
                                    disabled="#{!bindings.Create.enabled}"
                                    id="cb7"/>
                </af:group>
              </f:facet>
              <af:table value="#{bindings.IndustryRatinEOView1.collectionModel}"
                        var="row" rows="#{bindings.IndustryRatinEOView1.rangeSize}"
                        emptyText="#{bindings.IndustryRatinEOView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.IndustryRatinEOView1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.IndustryRatinEOView1Query.queryDescriptor}"
                        queryListener="#{bindings.IndustryRatinEOView1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.IndustryRatinEOView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.IndustryRatinEOView1.collectionModel.makeCurrent}"
                        rowSelection="single" id="t2"
                        partialTriggers="::t1 ::cb1 ::cb2 ::cb7">
                <af:column sortProperty="RatingId" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingId.label}"
                           id="c5">
                  <af:selectOneChoice value="#{row.bindings.RatingId.inputValue}"
                                      label="#{row.bindings.RatingId.label}"
                                      required="#{bindings.IndustryRatinEOView1.hints.RatingId.mandatory}"
                                      shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingId.tooltip}"
                                      id="soc2" autoSubmit="true">
                    <f:selectItems value="#{row.bindings.RatingId.items}" id="si2"/>
                  </af:selectOneChoice>
                </af:column>
                <af:column sortProperty="RatingSubId" filterable="true"
                           sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingSubId.label}"
                           id="c6" partialTriggers="soc2">
                  <af:selectOneChoice value="#{row.bindings.RatingSubId.inputValue}"
                                      label="#{row.bindings.RatingSubId.label}"
                                      required="#{bindings.IndustryRatinEOView1.hints.RatingSubId.mandatory}"
                                      shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingSubId.tooltip}"
                                      id="soc1" partialTriggers="soc2">
                    <f:selectItems value="#{row.bindings.RatingSubId.items}"
                                   id="si1"/>
                  </af:selectOneChoice>
                </af:column>
                <af:column sortProperty="Place" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.Place.label}"
                           id="c4">
                  <af:inputText value="#{row.bindings.Place.inputValue}"
                                label="#{bindings.IndustryRatinEOView1.hints.Place.label}"
                                required="#{bindings.IndustryRatinEOView1.hints.Place.mandatory}"
                                columns="#{bindings.IndustryRatinEOView1.hints.Place.displayWidth}"
                                maximumLength="#{bindings.IndustryRatinEOView1.hints.Place.precision}"
                                shortDesc="#{bindings.IndustryRatinEOView1.hints.Place.tooltip}"
                                id="it3">
                    <f:validator binding="#{row.bindings.Place.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="RatingDesc" filterable="true"
                           sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingDesc.label}"
                           id="c3">
                  <af:inputText value="#{row.bindings.RatingDesc.inputValue}"
                                label="#{bindings.IndustryRatinEOView1.hints.RatingDesc.label}"
                                required="#{bindings.IndustryRatinEOView1.hints.RatingDesc.mandatory}"
                                columns="#{bindings.IndustryRatinEOView1.hints.RatingDesc.displayWidth}"
                                maximumLength="#{bindings.IndustryRatinEOView1.hints.RatingDesc.precision}"
                                shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingDesc.tooltip}"
                                id="it4">
                    <f:validator binding="#{row.bindings.RatingDesc.validator}"/>
                  </af:inputText>
                </af:column>
              </af:table>
            </af:panelBox>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>

    Hi,
    Need to set partialSubmit true for CreateInsert and partialTrigger attribute for Commit button(Select Createinsert button for partialTrigger )

  • Bouton MODE not Enable

    Please i need a help, I try to recovery the password of One AP Aironet 1200 series (AIR-AP1231G-E-K9) but the bouton mode is not Enable, so can you help me , 
    Note: i already try to press esc when the flash is loading but i no think is happen
    The system has been encountered an error initializing
    ethernet port. You may need to check hardware
    The system is ignoring the error and continuing boot.
    If you interrupt the system boot process, the following
    commands will reinitialize ethernet, tftp, and finish
    loading the operating system software:
        ether_init
        tftp_init
        boot
    button pressed for 15 seconds
    process_config_image_recovery Failure
    Mode-Button not enabled
    Loading "flash:/c1200-k9w7-mx.123-8.JA2/c1200-k9w7-mx.123-8.JA2"...############################################################################

    button pressed for 15 seconds
    process_config_image_recovery Failure
    Mode-Button not enabled
    Loading "flash:/c1200-k9w7-mx.123-8.JA2/c1200-k9w7-mx.123-
    I see this message when i try the first option and for the second it's not possible because i have not the the password.

  • Some of the options not enabled when cursor is placed on it.Eg:Ask a question in this screen Only in full screen mode it is enabled

    On a normal screen some of the functions are not enabled when cursor is placed on it.For example,in rediffmail the folders,settings, sign out, functions are not enabled in normal screen when cursor is placed on it.On full screen mode these are enabled.

    Have you got anything like addblockers or script blockers installed which may cause this problem ?
    Ensure you have javascript enabled
    * when you post in this forum do you see the formatting icons above where you type your message: ['''B'''] & [''i''] (The icons will not be seen with javascript disabled, or totally blocked)
    * use '''Firefox Button -> Options -> | Content | -> [] Enable javascript ''' (check / tick the box)
    * You appear to be '''using XP''' and menus may differ, by default it will start '''Tools -> Options''' instead of Firefox button

  • Spatial Query across schemas. one version enabled table another not -Hanged

    Hi,
    I am executing a PL/sql procedure where a Spatial query run across two schemas. One table(in x schema) is version enabled and second table(in y schema) is Unversioned. Add to that complexity I am running the procedure from third user logon. I think I have enough previleges, as I won't get any error message.
    But, Procedure worked fine when there is no table is version enabled. It started giving problem when one table got version enabled.
    I have tried by setting " DBMS_WM.Gotoworkspace('LIVE');" before running spatial query. But still no luck, process just hangs on the spatial query.
    I tried by using physical name of the Table (table1_LT) which is making it to work. But, as per Workspace manager guide, applications, programs should NOT use, this physical tables(because it is not the correct way on versioned table).
    1. How can I hint to my query, to use a table from only live version?
    2. Why Query is hanging forever (even tried by leaving it over night....)
    Normally it used to take one or two minutes(before versioning..)
    I have posted it Workspace manager forum, But No Luck (people seems to be shy away after seeing "Spatial query" )
    Any help is highly appriciated

    Hi,
    I will need to know more details about the specific query you are performing. So, please do the following:
    1. list the actual query that you are using
    2. generate an explain plan of the query both before and after the table was version enabled. use @?/rdbms/admin/utlxpls or anything that generates the predicate information.
    3. also, give any pertinent details about the table(size of the table, number of rows expected to be returned, column types in the table, etc).
    Based on that, I will see if I can suggest a possible hint that may be able to improve the performance of your query.
    Regards,
    Ben

  • Windows XP Mode - Could not enable integration features

    Hello!  Let me start off with saying that I'm not very computer savvy, so please be gentle!  :) 
    So here my problem.  I have scoured forums all morning looking for a solution and have tried many things and nothing has worked yet.  I have Windows 7 Pro.  I use the Windows VM to run in XP mode so my small business programs will
    operate correctly.  This morning VM would not open.  I click to open Windows VM, it take unusually long to attempt to open.  After 5 or so minutes error message - Could not enable integration features with details stating .  It gives me
    an option to retry or continue.  When I hit retry, it does so but the ending result is the same error message.  When I click continue it states the operation has failed - the VM is not running. 
    What I HAVE tried-
    -Reboot
    -Clicked start>windows virtual pc>open windows virtual pc>right click settings
              - From this point I have tried to shut down from the close option as well as uncheck enable integration features at start up. Status is in Hibernation and has not changed. 
    Your help will be greatly appreciated.  Thank You 

    Bob, I have read as much as I can find on this problem (Enabling Integration Features and having it remain enabled), and your responses are the most straight forward, complete and seem to have helped a number of others. So, I'm adding to this discussion,
    instead of starting a new discussion, so that I can get YOUR response.  
    I am running Windows 7 Professional on a Dell Precision M6500 laptop with an Intel Core i7 processor and 8 Gb of memory.  When I first setup the laptop I installed Windows Virtual PC and XP Mode, after downloading from the Microsoft.com
    website.  While the installation went without an error, getting to use it was a major, and long problem.  I have one (very) old planner software app that I've been using since the mid 1980s. Being somewhat stubborn, I refused to change to a newer
    app. So, I installed the app under XP Mode (it doesn't run under Windows 7) and it worked fine.  I then tried to setup the printer and the Guest PCs drives (some USB).  I followed the Microsoft instructions and suggestions I found in forums. 
    I finally gave up and called and paid for Microsoft tech support.  Many weeks and we finally got it working - was able to print to my wireless printer from XP Mode and was able to backup my data to the Host PCs USB drives (I make three copies of the data
    on a daily basis, so I actually have 21 copies of the data after a week).  When we got it working I never had a problem with Enabling Integration Features, before it would disable Integration Features after I enabled them, repeatedly.  Then a Windows
    7 upgrade hung - 8 hours and the PC hadn't shut down.  I powered off the PC and then powered back up.  I got a blue screen error about CPU being too hot and the PC shut down. It was no hotter than usual. Powered up again and all seemed fine, until
    I went to start XP Mode and my planner.  XP Mode was trashed, wouldn't start.  Tried to reinstall and still had the same problem.  So, another call to Microsoft Tech support and another fee. Interestingly, the fellow that I worked with this
    time as a level higher and knew the first tech I worked with.  A few days and XP Mode was back running and the environment was actually as it had been when the PC crashed (the VHD file was still there and had my original environment - settings, programs,
    printer and drive mappings - all in place, this file is in the same location as the VSV file).
    Long winded background to my current, repeated problem. Integration Features will no longer stay enabled.  While I don't recall a "crash" or "hung" PC, my notes are all in that planner app in XP Mode and I can't get to it.  So,
    I uninstalled VPC and XPM and reinstalled from scratch. Reinstalled my planner app, configured and tested my printer and host drives (didn't map them, just access them from My Computer).  Suddenly (as I said, I can't recall anything going wrong to trigger
    the repeat of this problem) Integration Features will not enable.  I've deleted the VSV file and the problem still exists. Just "Shutdown" XP Mode and 50 Windows XP updates were installed.  Then installed 48 updates. It worked for one afternoon and
    evening. Booting the laptop this morning and Integration Features again is unstable. One more Windows update was installed.  Then I followed your suggested steps:
    Delete the" Windows XP Mode.vsv" file in the folder
    C:\users\[your user name]\appdata\microsoft\Windows Virtual PC\Virtual Machines.
    That should then allow XP Mode to start correctly.
    Have you uninstalled, rebooted XP, and reinstalled the Integration Components?  All of this occurs in XP Mode not on Win7.
    1. Uninstall the Integration Components in XP Mode from Add/remove programs
    2. Reboot XP Mode
    3. Reinstall the Integration Components in XP Mode from WVPC menu.
    The laptop is also in the same Workgroup as the Host PC and all the other PCs on my LAN.
    Any suggestions?
    Where can I find the following folders from XP Mode on the Host PC:
    C:\Documents and Settings\All users\Documents
    C:\Documents and Settings\XPMUser\My Documents
    I created folders in both with the backed up data and programs from my planner app and would like to have access to them from the Host PC.
    I'm just about at the point of abandoning XP Mode and looking for an alternative Virtual Machine app, just using Outlook, or getting the Outlook app from the original software provider of my planner app.  All of these options are less
    than ideal, but Microsoft's XP Mode has also become less than ideal.
    TIA
    Neil Cook

  • Virtual XP Mode Asks for Password after "Could not enable Integration features

    With Win7 64 bit professional as the main OS I installed the VM XP Mode several years ago and occasionally when XP is booting up, it asks for a password for the username XPM User. I have never setup passwords for Win 7 or for XP so that the PC simply boots
    up into first the Win 7 and then I can choose to boot straight into XP if I wish. On the occasions that XP asks for a password, I have simply closed down and rebooted successfully. Over the past two days I have received a dialog box telling me that the integration
    features could not be enabled and on closing that dialog box, I am being asked for a password - which does not exist! As a result, I cannot access the personal finance application that I 've been using for the past 15 years. This is the only application I
    run on XP and is the reason the virtual machine is in use.
    I read through the existing posts on "could not enable integration features" and none seem to offer much of a solution to me. There is no .vsv file.
    How do I access the files that are stored for use with XP?
    How can I create a password that XP will accept?

    Hi,
    When finding the .vsv file, have you unchecked the show hidden files option? Go Control Panel | Folder Options | View and uncheck the option to "hide extensions of known file types" and also enable showing hidden files and folders.  The file type is
    Virtual Machine Saved State. If it exists, please delete it and restart the XPmode.
    Regarding the password issue, have you checked those two threads?
    the integration features could not be enabled
    Removed XP Mode password in Windows 7 and now cant login
    The suggestions is to enter safe mode and make a password reset OR reinstall the intergration features. Please take a check with more suggestions offerred by the folks here.
    If the above is not working, then we may consider to backup important files with XPM VHD file via Disk management, and then reinstall Windows XP mode.
    Reference:
    Creating Virtual Hard Disks
    Best regards
    Michael Shao
    TechNet Community Support

  • Flash back table not enabled

    Hello!
    I'm executing this statement but it doesn't work
    FLASHBACK TABLE TABLE
    TO TIMESTAMP (SYSTIMESTAMP - INTERVAL '10' minute);
    I got this message:
    "ORA-00439: feature not enabled: Flashback Table"
    What can I do?
    Thanks in advance

    Hello Daniel,
    here's an official list from Oracle: (representaion is not so perfect), but I hope you can see Flashback features are included in 10G Enterprise Edition and Personal Edition, Flashback query (I think, this includes FLASHBACK DROP) is included in all editions.
    Option                10G 10G 10G 10G Notes
              Stand. Stand. Entrp. Pers.
         Edit. Edit. Edit. Edit.
         One
    Oracle Flashback     N     N     Y     Y     Oracle Flashback Table
    features                              Oracle Flashback Database
                                  Oracle Flashback
                                       Transaction Query.
    Flashback Query      Y      Y      Y      Y      Allows data to be queried
                                       from a point in the past.

  • XP Mode starts up with "Could not enable integration features" and loads with a blank screen.

    The XP Mode virtual machine comes up with a big blue screen with no programs loaded after the "could not enable integration features" dialog box.  How to recover? 

    Hi,
    As this thread has been quiet for a while, we assume that the issue has been resolved. At this time, we will mark it as ‘Answered’ as the previous steps
    should be helpful for many similar scenarios. If the issue still persists, please feel free to reply this post directly so we will be notified to follow it up. You can also choose to unmark the answer as you wish.
    BTW, we’d love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar problems. Thanks for
    your understanding and efforts.
    Alex Zhao
    TechNet
    Subscriber Support in forum.
    If you have any feedback on our support, please contact
    [email protected]
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • [iPhone] Not hiding cell accessories when table is in editing mode

    I've got a UITableView, and I want the cells to show disclosure indicators when the table is in editing mode... is there a way to do this? I've implemented this line
    - (UITableViewCellAccessoryType)tableView:(UITableView *)aTableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
    return UITableViewCellAccessoryDisclosureIndicator;
    but the accessories are still hidden. Is there a property of the table I'm missing somewhere?
    Thanks!

    You need to set
    cell.hidesAccessoryWhenEditing = NO;
    for the cell(s) you want in your
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    Andreas

  • Loaded dump from 12.5.4 to 15.7, Error 622 & Tables/Views not found

    Hi all,
    I am getting desperate trying to fix that issue. I had to import a dump from an ASE 12.5.4 into a new database on an ASE 15.7. I therefore enabled the compatibility mode server-wide and then proceeded to the load which seems to have performed correctly. The database seems well imported, and I can access most of the tables/views/procedures (from my C# application), but a procedure is giving me troubles.
    I am getting this error while executing a given procedure :
    Error: 622, Severity: 20, State: 1
    Opentable was passed a varno of 52. Object 'temp worktable' in database 'tempdb' already has that session descriptor in use. This occured while opening object id -1245236 in database id 2.
    I realised this was caused by a view which is used in this procedure but which is weird is that the error is not thrown when running the SQL code itself, out of the procedure context.
    I am using Toad for Sybase as a client, and realised I cannot access the data tab of the concerned view, Toad gives me the same error. So I cannot execute this view while it performs without any trouble on  the original server (production server which runs ASE 12.5.4).
    I also realised, when trying to execute some pieces of the query individually that I get warnings about unfound tables (and that I should use sp_help to fix the problem). Although, the tables actually exists and I can access their data.
    I have tried so many things and still cannot fix this problem. I've used 'upgrade_object', 'sp_recompile' on all tables, 'dbcc reindex' on all tables.
    Would you have any idea where the problem could come from? Thank you very much

    Thank you for your reply.
    Good to know that enabling compatibility mode before or after loading the load doesn't have any effect.
    I didn't drop/recreate all the SP and views but I can tell you I recreated a similar view and it causes the same issue.
    I had a look at your link yes. I have run 'dbcc upgrade_object' several times already, on the view and the procedures calling the view, and it won't solve anything.
    I've seen a similar post about the problem I have when executing the code itself of the view in a "normal" adhoc query (errors saying the tables are not found) : SAP Sybase Forums - ASE - Backup and Recovery - PRoblem after restore - Object does not exist.
    Could it be the same problem for me?
    Although I've tried splitting the SQL query and executing the parts individually and it works without any trouble. Problem is when the 2 parts of the view are put together. It may be something that was possible with ASE 12.5.4 but not with 15.7 and that compatiblity mode doesn't solve. My view consists of an union a two selects where both have left joins, case when then else, not in and a final group by (adding an order by doesn't help, as I tried).
    PS : I don't have access to the production server where the dump is actually from (but I could if it is really necessary)

  • Cannot retrieve table metadata - Table does not exist: ODP source 0WRKCNT_CATG_TEXT does not exist

    Hi, when i able to import the 0WRKCNT_CATG_TEXT extractor into source system i am getting the above bug Cannot retrieve table metadata - Table does not exist: ODP source <0WRKCNT_CATG_TEXT> does not exist, i have been checked in RSA5 T code to check the object is active or not, its active and its available in ROOSATTR table with enabled mode,but still its showing the error, can anyone help on this ..

    Hi Airings,
    'ORA-00942: table or view does not exist'
    According to the error message, it seems that the migrating table or view does not exist in the database, or SSMA does not have access to it. To troubleshoot the issue, please check the following things.
     1. Verify that if the spelling of the table or view name is correct.
     2. If the table or view exists but is in a different schema from the current schema where the SQL is executing (in other word, the table doesn’t own by you, but owned by other user), the ORA-00942 error will return too. Resolve this by
    explicitly reference the table or view by specifying the schema name (schema_name.table_name).
    3. SSMA queries some additional catalog tables that you may not have permission to, please make sure that you grant the account permission to
     read sys.mlog$. For more details, please review this similar thread:
    Bug in SSMA For Oracle 6.0 for non-dba Oracle user.
    Reference:
    ORA-00942 Table or View Does Not Exist Oracle Error
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Base table is not getting updated

    Hi friends,
    am trying to update the attribute18 from the per_vacancies table by adding 1 to it
    when am running the concurrent program it is not updating the table
    what might be the reason
    this is my code
    CREATE OR REPLACE PACKAGE BODY apps.update_vacancy_pkg
    IS
    PROCEDURE update_vacancy_prc (p_err_buf OUT VARCHAR2, p_ret_code OUT NUMBER)
    IS
    l_object_version_number per_vacancies.object_version_number%TYPE;
    l_vacancy_id per_vacancies.vacancy_id%TYPE;
    l_inv_pos_grade_warning BOOLEAN;
    l_inv_job_grade_warning BOOLEAN;
    l_validate NUMBER := 0;
    l_assignment_changed NUMBER;
    l_return_status VARCHAR2 (240);
    l_openings VARCHAR2 (240);
    l_err_msg VARCHAR2 (200);
    l_vac_id per_vacancies.vacancy_id%TYPE;
    l_attr VARCHAR2 (100);
    l_attr1 VARCHAR2 (100);
    l_attr2 VARCHAR2 (100);
    l_attr3 VARCHAR2 (100);
    l_attr4 VARCHAR2 (100);
    BEGIN
    BEGIN
    SELECT object_version_number, attribute7, vacancy_id
    INTO l_object_version_number, l_openings, l_vac_id
    FROM per_vacancies
    WHERE vacancy_id IN (SELECT MAX (vacancy_id)
    FROM per_vacancies);
    EXCEPTION
    WHEN OTHERS
    THEN
    l_vac_id := 0;
    l_openings := 0;
    END;
    BEGIN
    SELECT MAX (attribute18)
    INTO l_attr
    FROM per_vacancies;
    SELECT (REGEXP_SUBSTR (l_attr, '.*C'))
    INTO l_attr1
    FROM DUAL;
    SELECT REGEXP_REPLACE (l_attr, '^.*C(.+)$', '\1')
    INTO l_attr2
    FROM DUAL;
    SELECT TO_NUMBER (l_attr2) + 1
    INTO l_attr3
    FROM DUAL;
    SELECT l_attr1 || l_attr3
    INTO l_attr4
    FROM DUAL;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_attr4 := 0;
    END;
    l_object_version_number := 0;
    l_assignment_changed := 0;
    l_return_status := 0;
    per_vacancy_swi.update_vacancy
    (p_validate => l_validate,
    p_effective_date => SYSDATE,
    p_vacancy_id => l_vac_id,
    p_object_version_number => l_object_version_number,
    p_number_of_openings => l_openings,
    p_budget_measurement_value => l_openings,
    p_attribute18 => l_attr4,
    p_assignment_changed => l_assignment_changed,
    p_return_status => l_return_status
    COMMIT;
    fnd_file.put_line (fnd_file.LOG, 'Executed Vacancy' || l_vac_id);
    fnd_file.put_line (fnd_file.LOG,
    'Assignment chaged = ' || l_assignment_changed
    fnd_file.put_line (fnd_file.LOG, 'Return Status = ' || l_return_status);
    fnd_file.put_line (fnd_file.LOG, 'l_attr4= ' || l_attr4);
    END;
    END;
    it is hsowing in the log file with 1 added to the attribute18
    but the table is not getting updated
    can some one of you suggest a solution pls
    thanks
    Edited by: 776317 on Apr 27, 2011 9:15 PM
    Edited by: 776317 on Apr 27, 2011 10:01 PM

    but how come the seeded api has this
    PROCEDURE update_vacancy
    (p_validate in number default hr_api.g_false_num
    ,p_effective_date in date
    ,p_vacancy_id in number
    ,p_attribute17 in varchar2 default hr_api.g_varchar2
    ,p_attribute18 in varchar2 default hr_api.g_varchar2
    .);Enable trace/debug, this may give you an idea about the data which is not saved.
    Thanks,
    Hussein

Maybe you are looking for

  • I can no longer get to my e-mail from MY pc computer.

    I can no longer get my e-mail from (MY) PC.  This started happening about a week ago.  I have Win 7 Pro,  IE 9, Icloud 2.1.1.3, and I normally use Thunderbird instead of Outlook.  TB says problem with loging in to server.  I then tried Icloud.com, ca

  • Can you set textRolloverColor and textSelectedColor for a DataGrid via styleFunction?

    Ok so I have a DataGrid with a default row text color set. I use the styleFunction to change the text color of a row if a certain condition is met by returning the new color. However, I would also like the textRolloverColor and textSelectedColor for

  • Bind Data directly in Component in case of BEx?

    Hi Everyone, As per SAP tutorials, we can bind the data of universe query directly into Canvas Component means without the use of spreadsheet. But Can we bind the data of BEx query directly into component in dashboard 4.0?? Please suggest your commen

  • Checking status of a file

    Hi Guys, How do I know if a file is still open? Thanks..

  • Unable to send myself a test picture or message using MMS

    11-01-2009 02:01 PM I have a 8820 and my provider is t-mobile.  I have been trying for a month now to figure how to send myself a test picture and message to verify that MMS is working.  I have had several different phone models from other companies