Freight Unit Building rule isn't used when FWO is automatically created via PI

a freight unit building rule is created and attached to the forwarding order configuration , When forwarding order is created manually , Freight unit building rule is picked up automatically , and freight units are created based on such definition.
When Forwarding order is created via PI , the freight unit building rule isn't picked , I need it to be picked in all cases.

Hello,
You can check your condition /SCMTMS/FWO_TYPE and check, which  type FWO was generated by PI. If you have more than 1 type.
Maybe you FUBR was assigned in FWO type 2 and PI creates FWO type 1 (Standard selection).
Could you check this?
Best regards,
Vicente Picard

Similar Messages

  • How to notifiy to a user when Euipment is automatically created?

    Dear All,
    How to notifiy to a user when Euipment is automatically created when an asset is created in AS01. I am an Abapper who needs to use a workflow to send the mail to the user to notify the same. If anyone has configured the same , then kindly guide me.
    Regards,
    Fawaz

    You can try using Powershell
    [Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices")
    $SSASServerName = "servername"
    $SSASDB = "database"
    $SSASServer = New-Object Microsoft.AnalysisServices.Server
    $SSASServer.Connect($SSASServerName)
    $SSASDatabase = $SSASServer.Databases.Item($SSASDB)
    $SSASDatabase.Roles | select Role,Members,CreatedTimestamp | where {$_.CreatedTimestamp -gt (Get-Date).AddMinutes(-60)}
    --Prashanth

  • No Centry in CDHDR when Cost Center is created via Idoc

    Hi All,
    Whenever a cost center is created via an Idoc the corresponding entry is not maintained in CDHDR table.
    Whereas if I use Tcode ks01 to create Cost Center (ie via screen) then there is an entry to CDHDR table.
    I tried debugging the FM  IDOC_INPUT_COSTCENTER .
    Here in PERFORM write_ale_cp_via_cd tables LT_CSKS,
    there is a call to CALL FUNCTION 'IDOC_CD_WRITE_CHECK,
    here ld_active is always initial.
    If I set this as X while debugging then I do have my entry in CDHDR table.
    Can anyone let me know the significance of this ld_active and why is it not set to X initially.
    As it is important for me to have entry in CDHDR because I need to trigger an event as a cost center is added.
    Kindly advice.
    Regards,
    Sweta

    Sweta,
    The same problem has lingered with me for awhile now.  Finally, I have a solution.
    The controlling area needs to be configured for master data distribution.  Take a look at the view V_TKA01_ALE to confirm that the controlling area(s) that you are working with have a logical system(TKA01-LOGSYSTEM) and distribution method(TKA01-ALEMT) set up.  These fields are checked in the IDOC_CD_WRITE_CHECK function module.  If they are blank, no change documents are created.
    Hope this helps.
    Brad

  • Camera RAW 6.2 sharpening isn't used when open with Photoshop CS5.

    Greetings,
    Lately I've noticed when I sharpen a photo in Camera RAW 6.2, that sharpening isn't carried over when I open it in Photoshop CS5.  It doesn't mater if I open or open as a Smart Object.
    Also, I don't know weather this is associated or not, some adjustments don't appear to take effect.  Color or detail adjustments don't seem to take affect.
    W. Kirk Crawford
    Tularosa, New Mexico

    Read this link and see if it give you any insight.   http://forums.adobe.com/thread/742042?tstart=0

  • Index isn't used when specifying IS NULL

    Hello,
    I'm using Oracle 10.2.0.4. When I run this statement, the explain plan shows that a composite index is used which is expected.
    select * from isis.cour_off where orga_# = 4
    However, when I run the following statement, the explain plan shows FULL TABLE SCAN:
    select * from isis.cour_off where orga_# IS NULL
    Is this to be expected? If so, then why?

    Centinul wrote:
    If I had to wager a guess it's probably because the OP is selecting all the columns anyways so it's probably more efficient to use multi-block reads to retrieve the entire rows from the table. However, that's hard to say without data.Not really. It is not data what drives optimizer to use index or not in the first stage. In case of single column index main question is: is column NULLable? But, as you noted, OP has composite index . Therefore, question "is column NULLable" transforms into are all index columns NULLable? If they are - index can't be used no matter what, since it is possible table has rows where all index columns are NULL and therefore there will be no index entry for such row. If at least one index column is NOT NULL, index can be (doesn't mean will be) used:
    SQL> create table tbl
      2  as
      3  select level id,case mod(level,1000) when 0 then to_number(null) else level end val from dual connect by level <= 100000;
    Table created.
    SQL> create index tbl_idx on tbl(val,id);
    Index created.
    SQL> exec dbms_stats.gather_table_stats('SCOTT','TBL');
    PL/SQL procedure successfully completed.
    SQL> explain plan for select * from tbl where val is null;
    Explained.
    SQL> @?\rdbms\admin\utlxpls
    PLAN_TABLE_OUTPUT
    Plan hash value: 2144214008
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |   100 |   900 |    53   (8)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL| TBL  |   100 |   900 |    53   (8)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter("VAL" IS NULL)
    13 rows selected.
    SQL> alter table tbl modify id not null;
    Table altered.
    SQL> explain plan for select * from tbl where val is null;
    Explained.
    SQL> @?\rdbms\admin\utlxpls
    PLAN_TABLE_OUTPUT
    Plan hash value: 2817369304
    | Id  | Operation        | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT |         |   100 |   900 |     2   (0)| 00:00:01 |
    |*  1 |  INDEX RANGE SCAN| TBL_IDX |   100 |   900 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - access("VAL" IS NULL)
    13 rows selected.
    SQL> As you can see, even though column ID did not have any NULL values index wasn't used since potentially ID can be null. As soon as column ID was set to NOT NULL optimizer started using index.
    SY.

  • How do I know which Location is being used when set to Automatic

    I have two Locations set up called Home and Music Room. I've selected Automatic in Network Prefernces so my Mac picks the appropriate one.
    Home location - Wi-Fi (1st in the Service order), Ethernet (2nd in the Service order although I'll only be using Wi-Fi with this location)
    Music Room location - Ethernet (1st in the Service order), Wi-Fi (2nd in the Service order)
    So right now, for example, I'm in my music room so I want it to be using the Music Room location and Ethernet but I don't know what it's actually using. In Network preferences, Automatic is shown as the Location, Wi-Fi is at the top, and both Wi-Fi and Ethernet say 'Connected'. If I click on Ethernet to see the details, it does say in the Status area, "Ethernet is currently active and has the IP address 192.168.1.74" so does this mean Ethernet is the one being used?
    Thanks.

    There is no need to have 2 personal keychains. To make your life simpler combine them.
    the login keychain is standard so it is best to keep that. Open the keychain access application, select your named keychain click on any of the keychain entries in the main window then press command +a to select them all then drag them onto your login keychain. You will be prompted to enter the password for your named keychain.
    Then when you have successfully moved them to your login keychain make sure that is set as the default keychain and then you can delete the other keychain. Please not do not delete any of the system keychains.

  • How to automatically build freight unit?

    Hi guys,
    I'm learning SAP TM, playing around feight unit.
    But I'm not clear about the whole picture here.
    In fwo type customizing, I can check the "Automatic Freight Unit Building"  flag and assign a default FUBR.
    But how the system is going to automatically build the freight unit of a FWO?
    And in FUBR creation, I'll specify some strategies and quantity stuff. There's not a field where I can specify which FU type to use.
    So how is FWO, FUBR and FU type linked together?
    I tried to create a fwo, but there's no fu built. what's the preconditions for the system to build FU automatically?

    Hi Aaron,
    When the FWO saving, it would build the freight unit auotmatically.
    The filed "Document Type" in FUBR is used to specify the FU type.
    So the FWO build the FU base on the FUBR which maintain in the FWO type.
    Useful link for FUBR :
    http://help.sap.com/saphelp_tm80/helpdata/en/5a/6749c4614f46e2a12160c775ff19de/frameset.htm
    Best Regards
    Clark Huang

  • Assert condition failed when saving freight unit planning in transportation cockpit

    Hi all,
    I can successful complete Transportation Proposal and Optimizer Planning for freight Unit in Transportation cockpit. But when I am trying to save the freight Unit in Transportation cockpit, system is giving me dump "ERROR: The ASSERT condition was violated. (termination: RABAX_STATE)"
    ST22 showing  /SCMTMS/CL_BUFVAR_DISPATCHER==CP      Assertion failed
    Details of Active calls/Event in ST22
    35 METHOD       /SCMTMS/CL_BUFVAR_DISPATCHER==CP    /SCMTMS/CL_BUFVAR_DISPATCHER==CM005   116
        /SCMTMS/CL_BUFVAR_DISPATCHER=>/BOBF/IF_FRW_BUFFER~MODIFY
    34 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM00K  1173
        /BOBF/CL_FRW=>DO_MODIFY
    33 METHOD       /BOBF/CL_FRW_INT_ACCESS=======CP    /BOBF/CL_FRW_INT_ACCESS=======CM002    45
        /BOBF/CL_FRW_INT_ACCESS=>END_MODIFY
    32 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM00E   861
        /BOBF/CL_FRW=>DO_DETERMINATIONS
    31 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM01C   274
        /BOBF/CL_FRW=>/BOBF/IF_FRW_SERVICE_LAYER~FINALIZE
    30 METHOD       /BOBF/CL_LIB_DELEGATION_BOPF==CP    /BOBF/CL_LIB_DELEGATION_BOPF==CM00E    12
        /BOBF/CL_LIB_DELEGATION_BOPF=>/BOBF/IF_FRW_DELEGATION~FINALIZE
    29 METHOD       /SCMTMS/CL_BUFVAR_DODELEGATIONCP    /SCMTMS/CL_BUFVAR_DODELEGATIONCM004     6
        /SCMTMS/CL_BUFVAR_DODELEGATION=>/BOBF/IF_FRW_DELEGATION~FINALIZE
    28 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM01C   246
        /BOBF/CL_FRW=>/BOBF/IF_FRW_SERVICE_LAYER~FINALIZE
    27 METHOD       /BOBF/CL_TRA_SERVICE_MGR======CP    /BOBF/CL_TRA_SERVICE_MGR======CM00P    23
        /BOBF/CL_TRA_SERVICE_MGR=>/BOBF/IF_TRA_SERV_MGR_TRANSACT~FINALIZE
    26 METHOD       /BOBF/CL_TRA_TRANSACTION_MGR==CP    /BOBF/CL_TRA_TRANSACTION_MGR==CM001    60
        /BOBF/CL_TRA_TRANSACTION_MGR=>FINALIZE
    25 METHOD       /BOBF/CL_TRA_TRANSACTION_MGR==CP    /BOBF/CL_TRA_TRANSACTION_MGR==CM00S    63
        /BOBF/CL_TRA_TRANSACTION_MGR=>/BOBF/IF_TRA_TRANSACTION_MGR~SAVE
    24 METHOD       /BOFU/CL_FBI_CONTROLLER_NEW===CP    /BOFU/CL_FBI_CONTROLLER_NEW===CM00D    22
        /BOFU/CL_FBI_CONTROLLER_NEW=>IWCI_IF_FPM_TRANSACTION~SAVE
    23 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00L    63
        /SCMTMS/CL_UI_CONTROLLER_PLN=>SAVE_PLANNING
    22 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00N    41
        /SCMTMS/CL_UI_CONTROLLER_PLN=>HANDLE_ACTIONS
    21 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00A    16
        /SCMTMS/CL_UI_CONTROLLER_PLN=>IWCI_IF_FPM_APP_CONTROLLER~AFTER_PROCESS_EVENT
    20 METHOD       /1BCWDY/03N7LCDLX3EFC4K580SF==CP    /1BCWDY/B_03N7LCDLX3EFC4K580YR        689
        CL_COMPONENTCONTROLLER_CTR=>AFTER_PROCESS_EVENT
        Web Dynpro Component          /BOFU/WDC_FBI_CONTROLLER
        Controller                    COMPONENTCONTROLLER
    19 METHOD       /1BCWDY/03N7LCDLX3EFC4K580SF==CP    /1BCWDY/B_03N7LCDLX3EFC4K580YR        119
        CLF_COMPONENTCONTROLLER_CTR=>IWCI_IF_FPM_APP_CONTROLLER~AFTER_PROCESS_EVENT
        Web Dynpro Component          /BOFU/WDC_FBI_CONTROLLER
        Controller                    COMPONENTCONTROLLER
    18 METHOD       CL_FPM========================CP    CL_FPM========================CM00G   101
        CL_FPM=>CALL_UIBB_PROCESS_EVENT
    17 METHOD       CL_FPM========================CP    CL_FPM========================CM005    46
        CL_FPM=>PROCESS_EVENT
    16 METHOD       CL_FPM========================CP    CL_FPM========================CM00C    33
        CL_FPM=>RUN_EVENT_LOOP
    15 METHOD       CL_FPM========================CP    CL_FPM========================CM002     5
        CL_FPM=>IF_FPM~RAISE_EVENT
    14 METHOD       /1BCWDY/03N7LCDLX3EFC3O22W8A==CP    /1BCWDY/B_03N7LCDLX3EFC3O22XGJ       1412
         CL_PAGE_HEADER_CTR=>ONACTIONACTION
         Web Dynpro Component          FPM_OVP_COMPONENT
         Controller                    PAGE_HEADER
      13 METHOD       /1BCWDY/03N7LCDLX3EFC3O22W8A==CP    /1BCWDY/B_03N7LCDLX3EFC3O22XGJ        581
         CLF_PAGE_HEADER_CTR=>IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER
         Web Dynpro Component          FPM_OVP_COMPONENT
         Controller                    PAGE_HEADER
      12 METHOD       CL_WDR_DELEGATING_VIEW========CP    CL_WDR_DELEGATING_VIEW========CM006     6
         CL_WDR_DELEGATING_VIEW=>INVOKE_EVENTHANDLER
      11 METHOD       CL_WDR_ACTION=================CP    CL_WDR_ACTION=================CM00A    38
         CL_WDR_ACTION=>IF_WDR_ACTION~FIRE
      10 METHOD       CL_WDR_WINDOW_PHASE_MODEL=====CP    CL_WDR_WINDOW_PHASE_MODEL=====CM00U    95
         CL_WDR_WINDOW_PHASE_MODEL=>DO_HANDLE_ACTION_EVENTS
       9 METHOD       CL_WDR_WINDOW_PHASE_MODEL=====CP    CL_WDR_WINDOW_PHASE_MODEL=====CM002    95
         CL_WDR_WINDOW_PHASE_MODEL=>PROCESS_REQUEST
       8 METHOD       CL_WDR_WINDOW=================CP    CL_WDR_WINDOW=================CM00V    12
         CL_WDR_WINDOW=>PROCESS_REQUEST
       7 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00I    77
         CL_WDR_MAIN_TASK=>EXECUTE
       6 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00U     6
         CL_WDR_MAIN_TASK=>IF_WDR_RUNTIME~EXECUTE
       5 METHOD       CL_WDR_CLIENT_ABSTRACT_HTTP===CP    CL_WDR_CLIENT_ABSTRACT_HTTP===CM01C   114
         CL_WDR_CLIENT_ABSTRACT_HTTP=>HANDLE_REQUEST
       4 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00J    85
         CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST
       3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM00I   627
         CL_HTTP_SERVER=>EXECUTE_REQUEST
       2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                     1218
         HTTP_DISPATCH_REQUEST
       1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
         %_HTTP_START
    Any help will be appreciated
    Thanks and regards
    Shambhu Sarkar

    Hi Shambhu,
          When i see the assert,i feel there is some problem at the determination. Whether you have implemented any custom determination of your own? 
          No issues, Place the break-point at the assert and check the call stack and find the which determination is that?
    Thanks,
    Dinesh

  • When does delivery gets created?

    Hello,    
    I've a issue in generating deliveries for certain kind of sub-contracting materials. We were not able to generate deliveries for those materials no more.
    It was working fine till now. Recently we have upgraded our system and this problem is occuring after that is what I heard from Functional but I seriously don't trust that statement because if that is case it should stop delivering every materials of that kind but that is not the case.
    When does delivery gets created via FM GN_DELIVERY_CREATE.
    At what point it create the delivery?
    If any had experienced the similar kind of issue earlier please suggest me the solution.
    Thanks in advance.
    Regards,
    Rajkumar M.

    Hi,
    The SAPSQL_ARRAY_INSERT_DUPREC error is not bothering me much.
    My worry is once "Enter batch" error message comes, I am not interested to create the delivery any more.
    So I come out of the transaction by pressing return key.
    Now when I press return key, system gives me the delivery number, this should not be the case as message given was an error message.
    If I go to the SE16N, I could see the delivery number in database.
    Also system prompts me to save the delivery which I am not interested to do, just I want to come out after error message.
    What could be the reason, I don't know. Ever after error message system gives you the delivery.
    Which is very strange.
    Any input is apprecited,
    Regards,
    Dipak

  • MAXL - using multiple Dimension build rules in single script...

    I seem to be having problems running multiple Dimension build rules in a single MAXL script, is this a known problem or just an issue that I'm having? The build rules independently work as designed but when joined into a single script the script hangs...
    So, this is a 2 part question...
    1) Does MAXL not play nice when using multiple Dimension load rules in a single script?
    2) Do I need to run the build rules independent of each other?
    Also, is there some type of refresh/update on the cube that you can use in the script and would it be necessary...?
    Thanks for any light you can shed on the issue.
    Adam,

    I've written multiple dimension build statements as a part of 1 long MaxL statement. I'm executing this MaxL via a shell script (that replaces the variables such as username, password, servername, file path etc.) I've not seen any issues doing so.
    However, I've noted that, number of imports statements in 1 single MaxL command does not bode well for more than *60* import statements at once. So, if you're using more than 60 source files to build your dimensions, please consider breaking up your MaxL into multiple statements.
    Note: All but last of the import statements have 'deferred' re-structure specified. It speeds up the build process.

  • Hey guys i was wondering if i could downgrade my iphone 5 from ios 7.1.1 to 7.0.6 or .0.4 i have 7.0.6 and .0.4 shsh blobs but when i try to build a custom ipsw using ifaith it loads and never stop loading is there any way to downgrade to older ios 7 ?

    Hey guys i was wondering if i could downgrade my iphone 5 from ios 7.1.1 to 7.0.6 or .0.4 i have 7.0.6 and .0.4 shsh blobs but when i try to build a custom ipsw using ifaith it loads and never stop loading is there any way to downgrade to older ios 7 ?

    No, you cannot downgrade your iOS device. That's not supported by Apple.

  • AIR 3.8.0.440 / iOS: build fails with "ld: -pie can only be used when targeting iOS 4.2 or later"

    With AIR 3.8.0.440, iOS build with "adt -package -target ipa-ad-hoc" fails with a linker error:
    ld: -pie can only be used when targeting iOS 4.2 or later
    What's the correct option to suppress this error or does it need a fix for adt?
    In the app.xml,
    <key>MinimumOSVersion</key>
                <string>5.0</string>
    is already present in the iPhone InfoAdditions section.
    (Building the same app with AIR 3.8.0.370 is fine)

    Hi,
    Can you make sure that both your old ane and new ane are not present in your extensions directory.
    Also, how are you zipping/unzipping the ANE?
    If you are on a Mac, try these steps on the terminal:
    1) Create a new temp directory, say temp (mkdir temp)
    2) cd temp
    3) Copy the ane you need to make changes to into this directory.
    4) unzip nameofane.ane
    5) rm nameofane.ane
    6) Make changes to the platform.xml file using a text editor or vim
    7) cd to the temp directory again, (if you are now elsewhere)
    8) zip -r nameofane.ane .
    9) Copy the ane file created into your extensions directory, where you have placed the other extensions and then, package the IPA using adt.
    If you are on Win,
    1) Rename the .ane to .zip
    2) Extract the contents of .zip
    3) Make changes to platform.xml and save it.
    4) Go back to the directory where you extracted the files, select all the folders/files and right click to zip them back.
    5) Rename the .zip to .ane and then, package the IPA.
    It should work.

  • I have used still photos to make a Quick Time movie using FCE.  The DVD made using i-DVD looks somewhat grainy and the motion isn't smooth when played on my TV.  Other DVD's I have made play much better and I am wondering if the problem is my Quick Time m

    I have used still photos to make a Quick Time movie using FCE.  The DVD made using i-DVD looks somewhat grainy and the motion isn’t smooth when played on my TV.  Other DVD’s I have made play much better and I am wondering if the problem is my Quick Time movie settings.  The Dimensions and size of the problem movie are 1920X1080 and 584 MB respectively, while the movies that play better  have Dimensions of 853X480 and are about 1.3 GB in size.  Is this the source of my problem and how do I change things for the better. 

    Are you exporting to QuickTime Movie, or to QuickTime Conversion?   For iDVD, you need to export to QuickTime Movie.   Exporting to QT Conversion will kill the quality if you are moving the video from FCE to iDVD.
    The file size per se makes no difference.
    What size (pixel dimensions) are the photos that you put into your 1920x1080 sequence?  Also, exactly what are the sequence properties ... is it 1920x1080i60 ... or i50?  In North America it should be i60.
    853X480 is an odd frame size.  Where are you seeing this number?  It would appear to be DV-NTSC, which has a frame size of 720x480.  Your 1920x1080 frame size would not be DV-NTSC, it would be Apple Intermediate Codec.   DV and AIC will look different, for sure.
    Also, your quality setting in iDVD can affect the final video.  You may want to check that also (in iDVD Preferences > Projects).  Set it to Professional Quality if at all possible.

  • CIO-API: Configuration beeing used when updating rules

    Hi,
    We're currently facing some issues when using the CIO-API to open an exisiting configuration, modify it and then save it again:
    Since we had some minor issues in one of our configurator-extension-rules I changed that rule, updated it in configurator developer, tested it and published the new model to our testing environment. When opening "open" configurations from within order management, my new rules apply. However when using the CIO-API to access an exisiting model, the API still uses the old Model and the old extension-rules.
    My API-Access is as follows:
    CIO cio = new CIO();
    ConfigParameters cp = new ConfigParameters(configHeaderId, configRevNumber);
    Configuration config = cio.startConfiguration(cp, pCpContext);
    //to some modifications
    config.save();
    cio.closeConfiguration(config);
    When I modify this by adding "cp.setRestoreModelId( 281280);" before starting Configuration, my new model is used. However I don't understand why this is necessary and why this is contrary to what happens in order management.
    Could someone clarify how exactly this is working? And: What happens when saving my model using the API? Does it always stay on the "old" level or does it get migrated when explicitly setting the latest restoremodelid on open or are there other circumstances when it's getting 'migrated'?
    And is there an easy way to always use the latest modelId? For now I'd do the following select-statement:
    select newpub.modelid from cz_model_publications oldpub, cz_model_publications newpub,cz_config_hdrs czh
    where czh.config_hdr_id=123708240 and czh.config_rev_nbr=1
    and oldpub.model_id=czh.component_id
    and newpub.top_item_id=oldpub.top_item_id
    and newpub.deleted_flag=0
    But this seems a bit ugly?
    We have no effective-dates or usages on our model if this is of any interest.
    Regards,
    Johannes

    trol how it is restored/relaunched
    1) config_model_lookup_date:-      Date to look up the publication for the configuration Model
    For restored configuration: the saved value of effective_date(cz_config_hdrs), or SYSDATE, as determined by RestoredConfigDefaultModelLookupDate in CZ_DB_SETTINGS
    Don't be surprised if you don't find RestoredConfigDefaultModelLookupDate in the table
    2) config_effective_date:- The date used to filter effective nodes and rules
    For restored(your case) effectie_date(cz_config_hdrs) that was saved is used as default. We can change this using settings
    Now when we launch from OM the above are derived and sent as input parameters(based on your settings). If you want how your isntance is deriving let me know
    For CIO unless you pass default are used.
    Infact when in my code I used the below always to set it explicitly.
    ConfigParameters cp = new ConfigParameters(latestModelId);
    java.util.Calendar modelLookupDate = Calendar.getInstance();
    cp.setModelLookupDate(modelLookupDate);
    --you can add setEffectiveDate to be safe
    Since you explicity set the restoremodelid that is taking care of it. But genereally the same can be achived by setting date parameters.          
    If you have any questions around this area you can reach me directly.

  • What Runtime is Flash Builder using when running or debugging an AIR application?

    I just updated my AIR runtime to 3.0 and noticed that my AIR application doesn't work anymore (my logfile reports an Uncaught Error #1508). So I tried to debug it with Flash Builder, but when I run it there, everything works just fine. So I uninstalled the AIR runtime completely but noticed that I can execute my AIR app within Flash Builder still just fine. So the AIR runtime used within Flash Builder seems to be a different one than the systemwide installed AIR runtime. How Do I chose within Flash Builder which runtime to use and how do I update this runtime?

    When you use Flash Builder, it uses the copy of the AIR SDK that is inside the Flex SDK. This has a complete AIR runtime that is used for debugging. You can choose which AIR runtime to use by switching to a Flex SDK that has a different version of AIR. You can update any Flex SDK by copying the new AIR SDK into it, replacing any existing AIR files. (On a Mac there are some gotcha's here because copied folders are replaced not combined.)

Maybe you are looking for

  • Holiday Entitlement in Oracle HRMS

    Hi, Please could anyone point me in the direction of the DB table(s) where an employees annual leave entitlement is recorded in Oracle HRMS? Thanks

  • Free Drum Loops for you to play with

    Hey all: In the holiday spirit of giving back to the community, etc., etc., I thought maybe you all would enjoy some badass drum loops to play around with in Soundtrack Pro (my all-time favorite Apple program). So here goes: This is a zip file contai

  • Can't view my list of saved passwords

    Since updating to version 4.0.1, when I go to Tools, Options, Security, Saved Passwords, the list only shows the new passwords I've created since the update. My older passwords are working - at least at the sites I've used since the update so why can

  • How do I recover photos from time machine

    I am trying to recover photos from a time machine with a different MAC, running 10.5.8 (same as old one) I can only see the back up of my second Mac not the first.

  • SAP BI Design Approach for Multi value attribute

    Hi All, I have a requirement for an object say 0MATERIAL which is having around 20 multi value attribute.(e.g. color) I understand I can not add this attribute i.e. COLOR to master data attribute as the 0MATRIAL as this is the key and can not hold mo