Passivation - how to preserve VO sortBy & queryMode?

Hello,
I'm working on an app to award scholarships to students... using JDeveloper 11.1.1.2 in an XP environment. I have three main EO-based view objects: one for students and two for awards (student vo is master, award vo's are detail). On my page, I use a dynamic region in a popup to create new rows in the two awarding VO's, then return to the main page which displays a table bound to the student VO so the user can review the data before committing.
When the dynamic region popup closes, a Java method is called to programmatically add a new sortBy clause to the student VO, and change the queryMode to scan entity rows. This works fine under normal conditions, but in testing performance during passivation I noticed that after returning from the dynamic region popup the new awards aren't shown, and my table isn't being sorted. If I commit the controlling AM, the temporary rows show up - so they must still exist in the EO cache.
I'm assuming that in passivation I'm losing the reference to the query mode and sortBy clause because they've been set programmatically.. is there a way to ensure these options are persisted through passivation?
Thanks!

Correct - the VO's Tuning -> Passivate State option is still set (Including All Transient Values is set too, as I do have a transient attribute which can be set in the UI, and I'm sure it's being passivated and restored correctly).
My popup dynamic region is implemented based on the pattern: http://www.oracle.com/technology/products/adf/patterns/11.1.1.0.2/popupregionpattern.pdf. Specifically, I'm setting my query mode and sortBy clause in the regionNavigated method which is called. The code in PopupDynamicRegion.java is currently:
DCIteratorBinding finalistIter = this.getIterBinding("FinalistsBySchlrAppAyForOrg1Iterator");
FinalistsBySchlrAppAyForOrgImpl finalistsVo = (FinalistsBySchlrAppAyForOrgImpl)finalistIter.getViewObject();
finalistsVo.setQueryMode(finalistsVo.QUERY_MODE_SCAN_ENTITY_ROWS);
finalistsVo.executeQuery();
for(Number num : setOfIds) {
finalistsVo.getRow(new Key(new Object[]{num})).setAttribute("Selected", true);
finalistsVo.setSortBy("Selected desc");
finalistsVo.setQueryMode(finalistsVo.QUERY_MODE_SCAN_VIEW_ROWS);
finalistsVo.executeQuery();
I'm currently executing twice because when I do the first entity_row query I'm losing reference to my transient attribute (Selected, which I need to sort by and thus preserve). I've tried using vo.addQueryMode to OR the entity and view modes together but I still was losing that transient attribute. Now that I'm thinking about it though, when I did test the addQueryMode method I didn't re-select my students with that for : each loop... maybe they're being lost when I'm in the dynamic region popup...?
Also, I was doing some optimization work and noticed that my query is being executed again after this method ends.. because my table has a partial trigger on the popup, I assume. The student VO seems to be correct while within the regionNavigated method, after executing the queries programmatically.. so maybe it's that later query that's blowing it away, and I just need to set up the query modes in the regionNavigated method, without executing them, and let the component refreshing take care of re-querying..? Maybe I'll take off the partial trigger on the table and just manually refresh it with an addPartialTarget call.. hmm
I did notice, however, in the Fusion guide that sortBy is NOT mentioned as a passivated component. SortBy is an in-memory sort according to the API, vs. the actual database query's order by clause, so maybe it just can't be passivated? I'm using sortBy instead of Order By because I was getting errors when I tried to use setOrderBy... but maybe I'll just have to resolve those issues..
Anyway, you've given me some ideas on new directions to try... thank you for your support!

Similar Messages

  • How to preserve manually maintained Hierachy?

    Gurus,
    How to preserve manually maintained Hierachy in parenth1. We are maintaining some much data manually for BPC only with hierarchy. Problem is every time when we load the hierarchy from BW system the manually maintained hierarchy gets wiped out.
    We don't want to maintain BPC only hierarchy as seperate parenth2. I read this article Understanding how to Preserve Manually maintained Alternate Hierarchies with the new BPC Data Manager Package to Load from BW Hierarchies but this is maintaining as seperate parenth2 or 3.
    Please suggest.
    Thanks.

    Hi,
    You can not maintain the hierarchy in BPC and load from BW, it will be wiped out every time.
    What we did was that we created a new custom hierarchy in BW with the extra nodes.
    Andy

  • How to preserve database user details before cloning

    Hi Experts,
    How to preserve database user details before cloning,
    I am cloning the test database with the prod database, so my concern is how to preserve the users details which they have in TEST database( like roles, privilges, profiles , passwords, etc.....). Because that all gone after cloning from PROD.
    Thanks
    Sam

    use the following script to take the backup of roles,pwd & other  details of DEV . after cloning  execute the scripts back in DEV to restore the old values....
    set head off
    set lines 200
    set pages 9999
    col owner for a20
    col db_link for a30
    col username for a15
    col host for a40
    col created for a12
    spool db_details.lst
    select * from global_name;
    select * from dba_db_links;
    select name from v$controlfile;
    select member from v$logfile;
    select file_name from dba_data_files;
    select file_name from dba_temp_files;
    spool off
    spool create_db_links.lst
    select 'create DATABASE LINK '||owner#||'.'||NAME|| ' connect to '|| userid || ' identified by '|| password || ' using '||''''|| host ||''''||'; ' FROM sys.link$ order by owner#;
    select username,user_id from dba_users where user_id in (select distinct owner# from link$);
    spool off
    spool alter_user.lst
    select ' alter user '||username||' identified by values ' || chr(39)||password||chr(39) || ';' from dba_users;
    spool off
    Set verify off
    Set space 0
    set feedback off;
    set echo off;
    set pages 1000;
    set lines 150;
    spool create_synonym.sql
    Select 'CREATE SYNONYM '||owner||'.'||synonym_name||' FOR '||table_owner||'.'||table_name||'@'||db_link||';' from dba_synonyms where db_link is not null and table_owner is not null;
    Select 'CREATE SYNONYM '||owner||'.'||synonym_name||' FOR '||table_name||'@'||db_link||';' from dba_synonyms where db_link is not null and table_owner is null;
    spool off;
    Spool profile.sql
    select ' alter user '||username||' profile '||PROFILE||';' from dba_users;
    spool off

  • How to preserve my chained backtrace

    Hi friends,
    This is a peculiar problem where in the websphere created stub file for my stateless session ejb is creating a
    copy of my app's exception(which has chained backtraces due to exception chaining)[i believe that it is doing this for
    portability purposes] and setting those backtraces to null, so that by the time i catch this exception in the web tier, i
    have no stack trace!
    In the stub file for my stateless session ejb auto-generated by websphere 5.1, inside the business method,
    Also, am using Local Communication, so the else gets executed.
    //if remote communication with ejbs,
    if (!Util.isLocal(this)) {
    else //if local communication with ejbs
    try {
    //some exception occurs...
    } catch (Throwable ex) {
    //The throwable "ex" which is being used to make a copy has chained tracebacks.
    //But now, the below statement is creating a copy of "ex" with all the tracebacks being set to null in the chain!
              Throwable exCopy = (Throwable)Util.copyObject(ex,_orb());
    if (exCopy instanceof myappException) {
    throw (myappException)exCopy; // throwing the copy with the tracebacks set to null to the web tier!
    throw Util.wrapException(exCopy);
    } finally {
    servantpostinvoke(so);
    //Inside the business implementation class for my stateless session ejb,
    public mybusinessmethod () throws myappException{
    try {
              //some exception occurs....          
    } catch (Exception e) {
                   throw new myappException(e);
    So, how to preserve my backtraces from being set to null by websphere's generated stub files and pass them to the web-tier??
    thanks a lot

    so um I'm moving my files from my computer to my mybook. And i unintentionally removed itunes in the process....so how do i recover all my music and playlists. I have a lot of music and for some reason i have a lot of duplicates. And i do not feel like sitting at my computer for 6 hours deleting every single duplicate and recreating all my playlists. Or do i have to it this way? any help would be great thanks.

  • How to preserve battery life ~ used to last all day, now it runs out by lunchtime

    How to preserve battery life ~ used to last all day, now it runs out by lunchtime

    I would advise updating to iOS 7. It might improve your battery and the bugs are worked out by now.
    If not wanting to update because of the new look, here are some tips:
    -Turn off bluetooth when not needed.
    -Connect to wifi and turn off cellular data when possible.
    -When not around wifi, turn wifi off.
    -Keep your screen at around 50% brightness.
    -Disbale certain apps or features in Settings<Privacy<Location Services if they are not necessary.
    -Close out of apps in the multitasking bar.
    -Enable airplane mode when you plan on not using your phone for a while.
    Hopefully these tips help you. If your battery does eventually get too bad, you can get it changed out by apple. If youve had your device for under a year, you can take it into an Apple store and theyll give you a new phone in return. Have a good night and good luck!

  • How to preserve or embedded history in photo when exporting?

    Does anyone know how to preserve a photo develop history when exporting to new folder so that editing can continue?

    Thanks Jim and DJ - perhaps my process needs to change. I use a folder structure within each photo shoot.  Capture (for all raw files) - Master (for working photos that are being edited / developed) - and finally an Output folder for photos being printed or posted to web etc. I export to each. I understand that you can always go back to the original raw capture or any point in the history but sometimes I want to compare different editions of develop settings for an image against each other while preserving both. When using a copy of an image the develop settings only start at time of copy and likewise when using an exported image the history starts from the export going forward
    What I want to do is take photos from the various Master folders that have develop changes to them and move or copy them to another folder; as example a "2015 Art Show folder" for an upcoming photo exhibit etc. and then do additional develop changes specific for the Art Show  - being able to see the previous develop settings would be useful during this edit phase and you could continue to work in the one folder without needing to hunt around to numerous folders all over Lightroom
    I hope that explains what I am trying to do, I appreciate any ideas you may have
    Thanks,
    Paul

  • How to preserve old dtd when using writetofile method

    Hi,
    I have one doubt.How to preserve the dtd of xmlfile before parsing it with the xml parser for pl/sql ,write this saved dtd to the document object and use to writofile method of the dom object.If this is possible then can anyone ,please give me suggestions.
    I illustrate the situation ,given below is the dtd of the file before parsing :-
    <!DOCTYPE family [
    <!ELEMENT family (member*)>
    <!ATTLIST family lastname CDATA #REQUIRED>
    <!ELEMENT member (#PCDATA)>
    <!ATTLIST member memberid ID #REQUIRED>
    <!ATTLIST member dad IDREF #IMPLIED>
    <!ATTLIST member mom IDREF #IMPLIED>
    ]>
    After parsing and using the writetofile method ,the dtd present below is the changed dtd of the new xml file.
    <!DOCTYPE family [
    <!ELEMENT member ANY>
    <!ATTLIST member memberid ID >
    ]>
    Can anyone say how to stop this.Any help would be great
    Regards
    gopal

    Hi, Kiran,
    As the others have said, the only way ^1^ to get the result set in any particular order is to use an ORDER BY clause.
    Here's the general way to do that in SQL in case of a UNION:
    WITH  union_results     AS
         select 'a' AS txt, 1 AS sort_key from DUAL
        union
         select 'd',        2             from DUAL
        union
         select 'b',        3           from DUAL
        union
         select 'c',        4           from dual
    SELECT    txt
    FROM       union_results
    ORDER BY  sort_key
    ;In SQL, you can only ORDER BY expressions that arei n the SELECT clause, so to avoid displaying sort_key, the sub-query is necessary. A lot of people don't use pure SQL for this; they have their front end hide the sort_key column. In SQL*Plus, for example, you can say COLUMN sort_key NOPRINT.
    ^1^ There is one exception, which does NOT apply to this case, or most others. CONNECT BY, even without ORDER BY, does impose a partial ordering.

  • Exif info desappears after postprocessing in ps cs5. How to preserve it

    The exif info desappears after postprocessing in ps cs5. How to preserve it ?

    Photoshop and other programs can strip meta-data including EXIF data frome images for example save for web and devices has that as an option. You can use that option to make files a little smaler and keep prying eyes from being able to see your meta.  If you edit a image file stripped of metadata and and save a PSD file it will not have EXIF data.  Stitching programs may also save PSD files without Exif data for even if all the image stitched were shot using the same setting their exif data would not be the same the time stamps would at least differ.  PSD file may also be created form a new document that have images placed or pasted into it. Photoshop would not create Exif data for open new document and pasteing an image from the clipboard content would not have exif data. If you placed in images into your new document their Smart Object layer many have EXIF data if you double click on the smart object Photoshop will open the embedded object in Photoshop.  So the question you need to answer is did the PSD file ever have EXIF data. How was the PSD file created in the first place.
    Why is your question in a scripting forum not the Photoshop Windows/Mac foums. Also Photoshop can be used to change images size and I do not beleive it would change any EXIF data to reflect that the image's size has been changed. Or is that what your verifying that the current images pixel size is the same as the exif pixel size. But then canvas could have been so there would ba a border around an image the may or may not have been resized.  What is it that you are trying to verify?

  • How to Preserve Colors

    I have a set of photos taken of different color objects illuminated by different types of lights at night along with a photo of each object in daylight.  Color temp of the lights ranged from 2000K to 6000k. I want to show the difference in color rendering between the different light sources.  I don't want to "improve" the photos -- just show the color distortion as it was -- that's the point.  Photos were taken on a Nikon D50 SLR in raw with auto white balance.
    My question is:  I've used "as shot" white balance when importing into Photoshop.  Is that correct?  I'm concerned that the white balance computed by the camera will be used and will distort the original colors.

    I'm looking to render whites (and several other colors) at the same distorted color captured by the camera due to differences in the spectral composition of the light used for the scene
    There is no such thing as "preserving the colors" but "reproducing the colors", because the camera's way of recording the image is different from what you get at the end (already the thread title How to Preserve Colors showed this misconception).
    The pixels of a camera with Bayer type sensor are often described as "red", "green" and "blue". This is comfortable, but incorrect; the pixels should be called Rgb, Grb, Brg, i.e. "mainly red, somewhat green, somewhat blue", the other one "mainly green, somewhat red, somewhat blue" and the third one is "mainly blue, somewhat red, somewhat green".
    Let's see an example created with your camera (the sample is from Imaging Resources). We concentrate on the red, green and blue patches of the color checker card. The captures show a crop from the raw, i.e. undemosaiced, non-WBd image. The first capture shows the image in "composite color" mode: the "red" pixel value was used for the R component of RGB, the "blue" pixel value for the B component, and the average of the two "green" pixels became the G component.
    The patches appear blue, green and red, more or less. But how are they really? The following captures show only the red, the green and the blue components. If a patch were red, then the green and blue component would be null (black in the display), likewise with the green and blue. Is that so?
    It is obvious, that the "natural" color component is the strongest, but the others are far from being black.
    The next issue is, that this appearance does not depend only on the color of the object and on the illumination, but on the sensor (on the filters over the sensels) as well. Look at the same patch under the same illumination, created by the D90. It is close, but not identical to the D60:
    Again, all the above was without white balancing.
    If you want to show, how the D60 (but only the D60!) records a scenery under a givel illumination, you have to use a neutral white balance. First, create such a template shot. The easiest way (though not all cameras like this) is to make a shot of something, which totally clips, like the cloudy sky or a white sheet, at least three stops overexposed (do NOT shoot the sun). Then use this image for setting the custom WB in the camera and select "custom WB" for the demo shot. Now the colors are not adjusted to the illumination.
    This is still far from what the camera captured, but somewhat closer. If you want to see really the captured data, use Rawnalyze (free): http://www.cryptobola.com/PhotoBola/Rawnalyze.htm
    Gabor

  • How to preserve the column headings from my playlist when I transfer the list as WAV files to a flash drive?

    I have digitized several old vinyls as WAV files and have them in my MacBook Pro in an iTunes playlist. I have arranged the list under the column headings of "Grouping", "Name", "Time", "Artist", "Album" and "Genre". When I copy the files to a flash drive by drag-and-drop, none of the headings except "Name" show up. How to preserve all of the column headings when copying the file to an external device?  Thanks - RC@gnv.

    I have the same issue when trying to sync from iTunes 11 on my MacBook to my iPhone 4 iOS6.1. I blindly did the iOS upgrade to 6.1 (more fool me) and since then have not been able to use my phone as an iPod.
    I have tried restoreing it, I ve tried restoring it to a new phone but it hasn't worked for me.
    The sync starts and the capacity bar in iTunes shows capacity including and music or films etc that are to be included in the sync and then iTunes stops the sync and nothing has been transfered. As with your experience the music is shown in iTunes under Music, under Devices as greyed out with the syncing icon (dotted circle) to the left of it.
    When I try to include photos in the sync, I also get an error msg stating the connection to the iPhone has been lost. I am trying to do the sync vis USB, so I dont why I get this error.
    I can of course download any music I've bought from Apple from my iCloud to my phone but I want to be able to put any music I want on to it like I could before on iOS5.

  • LR 4 AVCHD support - how to preserve quality for future use?

    I was excited to see that LR 4 would support the AVCHD format, but I've run into a bit of a Catch-22.  I have a Panasonic Lumix GH2 that records very good video in AVCHD format, and previous to LR 4 I've had to use Final Cut Pro to import the video files from the SD card, which can be hard to remember to do (a dumb problem, but a real one).  So with LR 4 being able to import and work with AVCHD files, it's a step forward, but the question becomes how to preserve maximum qualtiy of the files for future, possibly professional, use.
    AVCHD is of course a compressed format, and so is h.264.  When I saw that one can export from LR 4 in "Original" format, I assumed it would be possible to establish a workflow wherein the files could be imported from the card into LR 4, then, if desired, exported (using "Original" format) and imported into Final Cut in Apple Pro Res format (minimal compression) for instance.
    But the problem is that Final Cut doesn't see anything valid in the directory structure that LR creates in its export process, whereas it does see valid files when it's pointed to the original files on the card.  Is it a simple problem of directory sturcture?
    I think there should be more professional export options for AVCHD files, such as Apple Pro Res, or an uncompressed format.  At the very least, there should be a simple and obvious workflow in which LR imports the files and, in copying the files from the card, creates the directory structure that apps such as Final Cut need in order to see the video files.
    Thanks

    Hi,
    DSS has inbuilt functionalities to compare the transactions against the in built rules.If the transactions take place not in accordance with the in-built rules,it is treated as a "violation" and is reporetd.
    Virsa is an example of DSS tool.Here you can build rules for access and process ;constantly compare the actuals Vs the rules;report the violations.
    In SAP R3 for example,the T/code:pfcg is tailored for access control,while the invoice parking [f-63] is tailored for process control.Using VIRSA,you can address to risks involved both,namely,access and process control.This is an example of how DSS can help in Risk integration.
    In these tools,we have an Engine for building the rules-based on this we build the rules.These rules are stored in a table.when a transaction-for which we have built a rule - takes place,the system compares the rules VS actuals.The inconsistencies if any are reported as violations.
    Hope this helps.
    Regards,
    Ramesh

  • How to preserve data when converting a Standard DSO into a Write Optimized

    Hi,
    I'm looking for proven strategies for preserving data when converting a standard DSO into a write optimized DSO. The data has to be dropped before the new DSO is transported into the environment.
    1. The DSO is currently in synch with a cube,
    2. The PSA does not have all the data which is in the DSO.
    3. Data volume is incredibly high for a full reload from ECC, so we'd like to avoid that option.
    Appreciate any help!

    Hi Gregg,
    have you considered just deleting the data? I know that sounds simple, but it might be a valid solution.
    If the DSO is just receiving new data (e.g. FI documents), you can continue to deliver a logically correct delta to the cube.
    Should that not be possible and you really want all data that you currently have in your DSO1 in the write optimized future of it, then how about this:
    - Create a new DSO2 same structure as DSO1
    - Load all data into that
    - Delete all data from your DSO1 and import the transport to make it write optimized
    - Load all data back into you now write optimized DSO1 from DSO2
    The problem you have then, is that all data that you have already loaded into your cube is due to be delivered as a delta from DSO1 again.
    Depending on your transformation / update rules that might or might not be a problem.
    Best,
    Ralf

  • Custom HTML importer/exporter, how to preserve HTML id, class, style

    I need to implement a custom XHTML importer/exporter and CSSFormatResolver.
    If I for example have a p-element: <p id="p1" class="xyz" style="margin:0.7em; color:#3300FF">lorem ipsum</p>
    How do I map the HTML attributes: id, class and style in order to preserve them in the ParagraphElement in order to use them during the custom CSS cascade process and for custom HTML export purposes (the exporter needs to spit out <p id="p1" class="xyz" style="margin:0.7em;  color:#3300FF">lorem ipsum</p> again.
    1. is this mapping correct or will this interfere with internal TLF formatting:
    HTML attribute
    ParagraphElement property
    id
    id
    class
    styleName
    style
    userStyles
    2. What is the purpose of FlowElement.coreStyles (where are those styles applied)?
    3. What is the actual purpose of FlowElement.userStyles, are those styles just for non TLF (end developer custom) purposes or does TLF use them at any point to set the element format properties?
    4. Any other pointers or related (non flex framwork) examples are welcome
    Thanks.
    Cheers, Benny

    Your mapping looks correct to me for id and styleName.
    I think what you are saying about style mapping to userStyles is correct.  Yes userStyles is an object of key value pairs holding all the non-TLF styles for a FlowElement.  coreStyles holds all the TLF styles for a FlowElement. TLF does use userStyles itself for the linkHoverFormat, linkActiveFormat and linkNormalFormat styles.
    Setting FlowElement.userStyles TLF will replace the current set of userStyles with those in the supplied Object.  That Object will be treated as a dictionary of stylenames and values.
    Normally I'd expect you'd use the FlowElement.setStyle API which figures out if a particular style belongs to coreStyles or userStyles and then sets the new style appropriately without changing the others.
    Richard

  • How to preserve mixed case in Data Dictionary

    Hi,
    I am very new to Oracle, please excuse in advance for silly questions.
    Using Oracle 9i R2, SQL Developer 1.51.5440.
    I don't know if it's Oracle DB or The SQL Developer tool, but the names of the object I create are all transformed in uppercase. Table name, column names, procedure names all are displayed in uppercase. And yet I make sure when I created them to use carefully mixed case to improve readability. Example: ProductID, MyTable, etc.
    I've gone over the options of SQL Developer, but I didn't see any option to turn off the automatic uppercase. Some objects still remains in mixed case, for example the content of a procedure still looks like when I typed it.
    Is there a way to get the object names to be displayed exactly as I created them?
    Thanks in advance.

    Ok, now I see, make senses that everybody keeps using uppercase. I have tried this:
    CREATE TABLE "MyTable" ("Col1" number not null, "Col2" varchar2(20) not null)
    And indeed, even SELECT * FROM MyTable would not work, I have to reference the table by SELECT * FROM "MyTable"
    FYI, in SQL Server, object names are case-insensitive. The name saved in the data dictionary is exactly how you type them. In the queries, constraints, indexes, etc., you can reference to the object name by any case. I find this way more convenient.
    One more question, in the current schema I am working on, where all object names are uppercase. How come I can still make a query with any case?
    For example if I type in SQL Developer: SELECT ProdUCTID, PrOduCTNaMe FROM T_proDuCT ;
    The query executes OK although I'd expect Oracle would complain about table not found. So are the following rules correct?
    1. If the object name was saved with double quote, Oracle will preserve the case and the object should always be referenced WITH double quote and the exact case.
    2. If the object name was save without double quote, Oracle will uppercase the name and the object can be reference by any case.

  • ADF FACES: how to preserve the sort criteria for an af:table

    How can I preserve the sort criteria on an af:table across page invocations? I've searched all through the forum and I don't see anything on this topic.
    I simply want the sort criteria (from when the user clicks on a column header) to be remembered across multiple uses of the page. I know that the control handles this itself for multiple invocations of the same page (like when you page through the table). But I need to preserve the sort order so I can install it again when someone leaves the page and then returns to it.
    I've tried various attempts using a SortListener to record the sort criteria, but I can't figure out how to reinstall the criteria without generating exceptions from the table control.
    Any pointers on how to do this would be greatly appreciated.
    Thanks.
    Larry.

    Ok, I've solved the problems with the odd behavior by always creating a new model when the table data changes and copying the sort criteria into the new model, like this:
            // Construct our own CollectionModel from this result set
            if(_model == null) {
                // Construct the initial data model and set the starting sort criteria
                ListDataModel m = new ListDataModel(results);
                _model = new SortableModel(m);
                // Set the sort criteria to last name
                ArrayList criteria = new ArrayList();
                criteria.add(new SortCriterion("lastName", true));
                _model.setSortCriteria(criteria);
            } else {
                // Construct a new model so the table "sees" the change
                ListDataModel m = new ListDataModel(results);
                SortableModel sm = new SortableModel(m);
                sm.setSortCriteria(_model.getSortCriteria());
                _model = sm;
            }But, I end up with one final thing that doesn't work. In the "then" clause above, I try to set the initial sort criteria for the table - it has no effect. When the table is rendered, it is not sorted in any way.
    How can I specify an initial sort order for the table? Why is it ignoring the sort criteria on the model?
    Thanks.

Maybe you are looking for

  • Snapshot Inventory Management with Cummulative key figures

    Experts, We are implementing the snapshot model in parallel with the Daily cube. When trying to create the update rules from 2LIS_03_BX, we get a warning message saying 2lis_03_bx is setup for noncummulatives only followed by an error stating that th

  • PLM 7 and Netweaver Enterprise Search

    We installed PLM 7.0. We also had an existing TREX server and we set that up to do indexing in ABAP. Now we have a requirement to use PLM UI on the portal and we need the search results to display there. All the docs I have read are basically saying

  • Can't update to Lion 10.7.1!

    I have an iMac 24-inch Mid 2007 Processor 2.4 GHz Intel Core 2 Duo Memory 3 GB 667 MHz DDR2 SDRAM Graphics  ATI Radeon HD 2600 Pro 256 MB Software  Mac OS X Lion 10.7 (11A511) So i got mac os x lion 10.7 2 weeks back and it was and now it say softwar

  • Can't Choose Songs With Media Sync

    I see my iTunes playlists in Media Sync but it won't allow me to select any of them, (won't let me check any boxes). Any advice would be appreciated. Thanks!

  • UCCX CDA Workflow Configuraiton Option

    Dear Support, I am using UCCX 5.0(1) and using the built in Cisco Desktop Administrator ver 5.0 Build 6.4. I don't find the Work Flow Configuration.Please find the attached Screenshot. Regards, Vaijanath