Problems with different charm correction scenarios (UC)

Hi!
We tested some ugent-correction scenario.
Scenario 1:
In our scenario we have a development which was imported in QA with RC=8.
Then we went back to development and crated a second transport request in which we did correct the error.
While importing the second time both transport request have been imported in QA.
But unfortunately the development was not activated with the new version in QA.
We do find the old version activated in QA and in version history the new modif has been there, but not activated.
Why does the activation not have been done automatically in QA?
Scenario 2:
We do have some developments which normally should be imported with "unconditional mode".
How can we do that with ugent-corrections within charm?
Scenario 3:
Transport is imported in QA.
How can I reimport the transport request again?
Thanks for your help in advance.
Regards,
Alex
Edited by: Alexander Barth on Nov 30, 2009 7:00 PM
Edited by: Alexander Barth on Nov 30, 2009 7:00 PM

Hello Alexander,
the answer to Scenario 1 is probaly not really related to Change Req Management, please try to import these 2 transports using STMS in the satellite system, you will probably get the same result.
Scenario 2: We assign the change document (UC) to an IT operator, which is executing the import it manually and the reassign the document back to the Tester/Developer.
Best Regards,
Holger

Similar Messages

  • Problem with different resultset with same data and same query in Oracle 8.1.7 and 9i

    Hello,
    I have been using this query in oracle 8.1.7
    SELECT
    ID,
    AREA_NO
    FROM MANAGER_AREA MGR
    WHERE COMPANY_ID = :id AND
    (:value < (SELECT COUNT(ROWID)
    FROM MANAGER_WORK MW
    WHERE MW.AREA_ID = MGR.ID AND
    (MW.END_WORK IS NULL OR MW.END_WORK >= SYSDATE)))
    order by AREA_NO;
    In the above query I want to see rows from MANAGER_AREA table depending upon date criteria in the table MANAGER_WORK and also upon the parameter :value i.e if I pass a value as 0 I get to see records for which their is atleast 1 record in MANAGER_WORK with the date criteria and if I pass -1 then I get all the records because minimum value that count(*) would give is 0. The resultset was as expected in 8.1.7.
    A couple of days back I installed PERSONAL 9i to test for testing the basic functionality of our program with the same data. This query fails and irrespective whether I pass -1 or 0 it returns me same dataset which I would have got in case if I pass 0.
    I do not know whether this is a bug that has got introduced in 9i. Can anybody help me with this problem. It would be difficult for me to change the parameter send to this query as the Query is called from many different places.
    Thanks in advance
    Amol.

    I cannot use a Group by and a having statement over here. The problem with 'Group by' and 'having' clause is If I have to make a join between the two tables. When I use join then I get only rows that are linked to each other in the table.
    If I use outer join to solve that problem then I have to take in consideration the other date condition. My previous query use to virtually discard the corelated query result by using -1 as the value. This will not happen in the join query.
    Amol.

  • Problem with different calendars under Mountain Lion

    I upgraded recently from Snow Leopard to Mountain Lion and experiencing an annoying problem with the calendars "On My Mac" (I am using a MacBook Pro from mid 2009). With iCal under Snow Leopard I had seven calendars - Meetings, Performances, Family, etc. with different colors. After the switch to Mountain Lion these categories aren't maintained properly. Four of them have been seemingly merged into two, so that for example an event can't be categorized as "Family" but gets shifted automatically to "Meetings" (both calendars stay checked in the editing panel, but only one "sticks"). So I have three  calendars I can use and a four I can't.
    If I try to add a new calendar it appears in the list, but no event can be assigned to it.
    Is there a limit to the number of calendars one can have?
    I don't use iCloud, so there is no issue there.
    I have one Google calendar (a work schedule I have subscribed to ) which also works with no problems.
    Any ideas?

    Same problem when reseted  the PRAM.
    I read some Chinese Web , Many people got the same problem after upgrade to mountain lion
    you can see the locked icon show in the bottom left conner even my card is unlock
    I can read but can not delete any Photos
    http://i83.photobucket.com/albums/j286/2cktang/OSX/ScreenShot2013-03-11at23227AM .png
    you can see the locked icon show in the bottom left conner
    But I can edit everything in my Harddisk
    http://i83.photobucket.com/albums/j286/2cktang/OSX/ScreenShot2013-03-11at23235AM .png
    External Hard Disk no locked icon show in the bottom left conner
    http://i83.photobucket.com/albums/j286/2cktang/OSX/ScreenShot2013-03-11at23220AM .png

  • Problem with different versions of Page Headers

    Gurus, I have a strange problem. I need to have different Page Header format for first page and another format for the rest of the pages. So as suggested in the forums, I did the page setup for Header and Footer with “different first page” option in MS Word. This is not working. I am still seeing the First Page Header format on all the pages. I checked the RTF, there is no section break or any other special breaks in there.
    Any idea why it is not working ?. I can send the Word doc and XML input files.
    Thanks
    Sub

    Is there some way to attach the RTF template and XML input here?.

  • Problem with different execution paths in hierarchical query

    Hello,
    I have problems with the following query:
    SELECT DISTINCT P.ID FROM PRODUCTELEMENTIMPL P WHERE ( ( LABEL = 'SomeLabel' AND PRODUCTELEMENTTYPE = 'SomeText' AND ( STATE = 'created' OR STATE = 'stored' OR STATE = 'archived' OR STATE = 'archivedRestored' ) ) ) START WITH P.ID = 42 CONNECT BY PRIOR P.ID = P.PARENT
    We have two databases (an Oracle 10g XE and Oracle10g Enterprise). In the XE Database the query is executed very fast, but in the main installation it takes minutes. If I "explain" the query I get two different execution paths:
    The fast:
    ID      PARENT_ID      LEVEL      SQL      Kosten      Anzahl Zeilen
    0      -      1      SELECT STATEMENT      20      49
    1      0      2      HASH UNIQUE      20      49
    2      1      3      FILTER      -      -
    3      2      4      CONNECT BY WITH FILTERING      -      -
    4      3      5      TABLE ACCESS BY INDEX ROWID PRODUCTELEMENTIMPL (TABLE)      -      -
    5      4      6      INDEX UNIQUE SCAN SYS_C0072201 (INDEX (UNIQUE))      2      1
    6      3      5      NESTED LOOPS      -      -
    7      6      6      BUFFER SORT      -      -
    8      7      7      CONNECT BY PUMP      -      -
    9      6      6      TABLE ACCESS BY INDEX ROWID PRODUCTELEMENTIMPL (TABLE)      19      49
    10      9      7      INDEX RANGE SCAN PRODUCTELEMENTIMPL_IDX1 (INDEX)      3      49
    11      3      5      TABLE ACCESS FULL PRODUCTELEMENTIMPL (TABLE)      19      49
    Slow:
    ID PARENT_ID LEVEL SQL Kosten Anzahl Zeilen
    0 1 SELECT STATEMENT 1 1
    1 0 2 HASH UNIQUE 1 1
    2 1 3 FILTER
    3 2 4 CONNECT BY WITHOUT FILTERING
    4 3 5 TABLE ACCESS BY INDEX ROW 3 1
    ID PRODUCTELEMENTIMPL (TABLE)
    5 4 6 INDEX UNIQUE SCAN SYS_C0 2 1
    020528 (INDEX (UNIQUE))
    6 3 5 TABLE ACCESS FULL PRODUCT 6628 1100613
    ELEMENTIMPL (TABLE)
    Any ideas how to avoid this full table scan?
    bye
    Roland Spatzenegger

    Hello,
    thank you for your replies. The indices and table schemas are the "same", but only the content for the tables was mirrored.
    We made some tests with dropping and/or analyzing the tables, but it didn't change anything.
    The main problem is that the query takes 33s in the productive environment for searching in a couple of rows. At the moment it's faster to make
    SELECT DISTINCT P.ID, P.STATE FROM PRODUCTELEMENTIMPL P WHERE ( ( LABEL = 'SomeLabel' AND PRODUCTELEMENTTYPE = 'SomeText' ) ) START WITH P.ID = 42 CONNECT BY PRIOR P.ID = P.PARENT
    and to test in the application if the state-values match ;-)
    If I add the hint /*+ no_filtering */ in the test environment, I get the same "slow" execution path as in the production environment. So the question is, what prevents the filtering in "connect by"?
    (I think in the fast version it filters only the results of the hierarchical query, in the slow version it first filters the whole table and joins/merge it with the hierachical result).
    bye
    Roland Spatzenegger

  • Problem with Webservice - XI - JDBC scenario

    Hi Experts,
    When I have tried to test the Webservice -> XI -> JDBC scenario with the mention address, I am getting the below error.
    <b>Address :</b> http://<Host>:50100/XISOAPAdapter/MessageServlet?channel=:WEB_SERVICE:SOAP_CC&version=3.0&Sender.Service=WEB_SERVICE&Interface=http%3A%2F%2Fatl.com%2Ftar%5EMI_Outbound
    <b>Error:</b>
    <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                             <context>XIAdapter</context>
                             <code>RecoverableException</code>
                             <text><![CDATA[
    com.sap.aii.af.ra.ms.api.RecoverableException: com.sap.aii.af.ra.ms.api.DeliveryException: Application:EXCEPTION_DURING_EXECUTE:
         at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:919)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl3.process(ModuleLocalLocalObjectImpl3.java:103)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:258)
    JDBC Part works fine only problem with the SOAP sender side. Any suggestion please..
    Regards
    Sara
    Message was edited by:
            Sara D

    Hi,
    As per Bhavesh & Krishna's suggestion, I have changed the JDBC Data type. Now I could able to see the SXMB_MONI error too.
    Latest error:
    When I have tried to test the scenario using xmlApy, I am getting the below error.
    <b>RWB error:</b>
    2007-06-21 03:04:24 Success Receiver JDBC adapter: processing started; QoS required: BestEffort
    2007-06-21 03:04:24 Success JDBC adapter receiver channel DB_CC: processing started; party  , service DB_SERVICE
    2007-06-21 03:04:24 Error Unable to execute statement for table or stored procedure. 'Address' (Structure 'STATEMENT') due to java.sql.SQLException: FATAL ERROR document format: structure 'STATEMENT', no key element found
    <b>xmlSpy Error:</b>
                   <context>XIAdapter</context>
                             <code>RecoverableException</code>
                             <text><![CDATA[
    com.sap.aii.af.ra.ms.api.RecoverableException: com.sap.aii.af.ra.ms.api.DeliveryException: XIAdapterFramework:GENERAL:com.sap.aii.af.ra.ms.api.DeliveryException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'Address' (structure 'STATEMENT'): java.sql.SQLException: FATAL ERROR document format: structure 'STATEMENT', no key element found
         at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:919)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl3.process(ModuleLocalLocalObjectImpl3.java:103)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:258)
    I have mapped the EmpId in the mapping as well as in the DB the EmpId is Primary Key. Could you please tell me,what I am missing here?
    Regards
    Sara
    Message was edited by:
            Sara D

  • LR4 Beta...another problem with using Lens Correction

    Not sure if it's me or the beta. I'm trying to do a lens correction on a file that was edited in CS5. The photos were taken in 2009/10. They are importing as Process 2012.
    I'm using the Lens Correction in manual. About 15 seconds after I start using the sliders, my LR stops working and I have to close the program (white outs the screen with the note saying the program has to be closed).
    I do know there can be problems with a beat so I wanted to post this problem in case it is a bug in the system.

    I have the same probem if I try to push the scale slider down below about 87%.  It is quite annoying when it keeps happening on the same photo. It's not something I use a lot but it can be necessary with tall buildings when the correction pushes the top out of the frame.
    JW

  • Problem with different Labview platform

    Maybe this issue must be address to NI.
    I have this library calling a register DLL. The purpose of the library is to convert a type of movie file from hard drive(*.mcf type) to image stream then to show and eventualy to save it.
    The DLL is designed by NAC camera designer, which is a high speed camera. The code is based on properties, methodes and events from DLL.
    Code works well in Labview 8.6.1, in Labview 11.0.1, Labview 12.0f3. Unfortunately code does not work in Labview 11.0.1f2 which happens to be the one I am developing my applications.
    I will post the code developed by NI Japan (camera also is designed in Japan) and the mcf file as well as the DLL which must be registered.
    The code is compiled in 8.6.1.
    Register first the dll then open the NAC MCFF Control_E.vi.
    Brows the mcf file
    Press Open button
    Slide the frames one by one for showing the images content of the mcf.
    If you want to open under other labview then 8.6.1 then copy the folder and run a mass compile under that version then open the same top vi.
    Please, show me what is different for different versions of labview then in my version does not work.
    Than you,
    Virginia
    Solved!
    Go to Solution.

    Just because it doesn't crash does not mean automatically that everything is alright. You just might be unlucky that the memory corruption does not happen in a vital part of the LabVIEW memory.
    Now, when loading your LLB in LabVIEW on my machine, the first indication that something is wrong would be the error message that C:\Windows\System32\gdi32.dll could not be found. And indeed this is a system DLL that should never be referenced by the full path but simply by the DLL name alone. So change the Library Name or Path in the CLN inside the nac_NI_BitmapRead.vi to just "gdi32.dll" (without quotes). And when you are at it, change the first parameter to be a pointer sized integer too, since this IS a pointer.
    Now look in the configuration dialog in the Function tab a bit further down and notice that the Calling convention is set to C. 99% of all Windows userspace APIs are really stdcall under Win32 and fastcall under Win64. A "bug" in LabVIEW versions before 2009 attempted to automatically fix wrong calling conventions from C to stdcall, based on certain naming attributes of the actually exported function in the DLL (and no, LabVIEW does not show those decorated names but the human readable name). The problem with this fix was that it did not allow for calling (admittingly seldom but nevertheless possible configurations) of DLL functions that happen to follow this naming scheme but were explicitedly declared cdecl by the programmer.
    Try it and tell us if that will help.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • There are two separate login problems, with different solutions

    I have just spent a couple of hours fixing a 24in iMac that kept rejecting the account login after installing Leopard. (login with correct password goes to blue screen then back to loginscreen)
    I went through the Apple tech doc that had you logging in as a single user (Cmd-s) and it did not work.
    What did work for me was an archive and install of Leopard.
    It seems that anyone with a new iMac that installed the recent imac update is having this problem. For those people, archive and install seems to work.
    http://discussions.apple.com/thread.jspa?threadID=1214059&tstart=0
    For other people, the single-user instructions seem to work.
    http://discussions.apple.com/thread.jspa?threadID=1202129&tstart=0
    hope this helps
    cheers
    bruce

    > When working with word, documents or emails in the middle of a sequence
    > the picture or window suddenly is yanked off the screen to the right.
    Microsoft Word?  What version and service pack?
    Microsoft Office 2011 SP2 includes Word version 14.2.2.  Some Office 2011 updates addressed problems with Lion.

  • PM8M-V compatibility problems with different rams?

    hi, can anyone help? i'm having problems with two rams...as one is a geil 512 DDR3200 ram and the other a kingston 256 DDR3200 ram. problem is the first boot is ok as bios detects both rams...but after shutting down and restarting again, the system only detects the 256ram... but if i only put the 512, its ok on its on. if the 256, its ok on its own too...but if both, the it won't boot up or sometimes if i'm lucky it only detects the 256 if both is in...any suggestions?
    RIG:
    P4 3.2Ghz
    Geil 512 DDR3200
    Kingston 256 DDR3200
    SATA II Western Digital 120GB

    sadly with only 2 dimms...it doesn't really work...so how? sigh...i don't think the seller will allow a change don't they?
    P/s oh ya i happen to notice that ya kingston ram is at 380mhz? err in my bios its only at a auto mood of 200mhz...is that ok?

  • Problems with different received message from sql function

    Hello all!
    I have a little problem with my BPEL process. I call a sql function that returns a string. In this string I have a xml. The returned message can be something like:
    <error><id>id_error</id><message>descr_error</message></error>
    or
    <comm>
    <header>
    children tags
    </header>
    <body>
    children tags
    </body>
    </comm>
    As you see, I can receive two types of messages. Of course, the process transforms string -> xml.
    Depending on the type, the process must choose between two flows.
    My questions are: what should be the solution(the steps) to determine what type of message the function returns? In my project, where should I define the same message types in order to assignate them to a variable? In a xsd?
    Thanks in advance!!

    seems like you could solve this with a <pick>. Take a look at the section "One Request, One of Two Possible Responses" in chapter 13 of the bpel developer guide.

  • Problems with different versions of ColdFusio

    Hello There
    I installed CF8 using the multiserver option and also
    deployed CF7 on the same JRun without checking to create a service.
    I also downloaded the latest version of the Java SDK (1.4.2_15) and
    installed on my machine. I created a different jvm.config file
    (jvm_cfmx7.config) in my JRun bin directory pointing to this new
    JVM JRE's directory.
    I also created a new Windows Service using jrunsvc without a
    problem. My only issue here is that when i try to start this
    service (through Windows Services) it doesn't start and returns me
    an error saying only to contact the manufactured.
    Please, any help will be much appreciated.
    Thanks
    Alvaro Costa

    You could just install each one, copy the dir, uninstall, create a batch file with the appropriate paths to the copied directory and then run using the batch files.
    (Note of course that Java itself isn't responsible for correctly running itself. Rather it is up to the developer/company to create a product that recognizes that it is not the sole product in the universe and thus behaves correctly.)

  • Problem with getting order correct after importing a cd.

    Has anyone had any problems after importing a cd in to their itunes with the order of the songs not appearing correctly. Even after I double checked to make sure everything was matched up perfectly with the spelling, the tracks appear in the wrong order still. Cany anyone help me out???
    Message was edited by: mikebreeze116

    Try clicking on one of the column headings to sort the playlist. I'm not in front of my Mac right now, don't recall which column provided the correct sort information.
    http://docs.info.apple.com/article.html?path=iTunesMac/7.3/en/560x.html

  • Problem with printing the correct "ical" pages.

    G'day
    I have only recently started using "iCal", on the cloud, having upgraded my laptops to "Lion" and my iPhone to "5", so that I have NOT experienced any of the "syncing" problems of which I have read elsewhere.
    BUT, I do have an irritating problem, the solution to which, being a long-term Mac user, should be obvious.
    The problem stems fronm the fact that I am located on the east coast of Australia, and my laptops know this.
    The first, really daft, thing that I did was to create a whole lot of iCal entries, in iCloud, without noticing that the default timezone was "Pacific".
    So, OK, I fixed that by going into my ID on iCloud and changing the timezone, and then editing every single event that I had entered at that point in time.
    So, I then thought that I had beaten the beast, because I had only been printing "Weekly" calendars, which were OK.
    Today, I decided to print some "daily" calendars, and the system WILL NOT PRINT THE CORRECT DATE.
    My iCal entries are mainly to do with a trip that that starts on 1st August this year. I bring up iCal on the Mac, go to the print page, select 01 Aug 2012, and it prints 31 July 2012.
    This happens whether I tick the "Timezone" preference in iCal on the Mac, or not.
    What else should I do?
    Dave the Desperate

    Hi Srikanth,
    In the second page you can insert a command to set it to goto page 3,and an additional event in the command (only after the end of main window).
    As soon as the main window ends in the second page...u will get the third and rest of the pages.
    Keep the goto next page in PAge 1 as Page2
    and in Page 2 as Page 2.

  • Problem with comments displaying correctly

    I have a comments section for a report card im doing in crystal reports but it displays the specific person's comments when i type their id in on the last page and doesnt display any other persons comments but that persons and its not even after their report card on the second page like it should be.
    I know this is dotnet but im using visual studio 2010 crystal reports version.
    Here is my file im sharing but you have to just change the server address and username/password to the nearest infinite campus near you to test out fully instead of just looking at the design:
    https://docs.google.com/open?id=0B4qxDt8GTSTZMGE2Yjk5ZjYtZjU5YS00M2IwLWIyMjYtMGVkOGY5MTk5Zjdj
    Edited by: jeffman2 on Dec 7, 2011 3:25 PM
    Edited by: jeffman2 on Dec 7, 2011 3:26 PM
    Edited by: jeffman2 on Dec 7, 2011 3:26 PM

    Hello,
    You still have not explained what the problem is other than I think you should be seeing more than one persons comments? Is that correct?
    And I'm only saying that because of the SQL you posted:
    SELECT c.name AS Course, i.lastname','i.firstname AS Teacher, t.name AS Term,
    MIN(CASE WHEN gt.taskid = 115 THEN gs.comments END) AS Q1,
    MIN(CASE WHEN gt.taskid = 116THEN gs.comments END) AS Q2,
    MIN(CASE WHEN gt.taskid = 9 THEN gs.comments END) AS Q3,
    MIN(CASE WHEN gt.taskid = 117 THEN gs.comments END) AS Q4
    I think either your SQL is wrong so try playing with that outside of CR first or it maybe because your subreport is not linked on the Student ID so the subreport can't get all of the comments....
    Sit back and assume we don't know your database or you report layout and then describe step by step what it is you are trying to get help on and what you are seeing. Then describe what you results should be and look like...
    The reason for the suggestion to get a support case is because none of your info is clear. You are assuming we know what your DB and how your data is linked and what you are trying to get to. As Ludek indicated, don't use real data then there is no NDA issues.
    Don
    What you should do is post your design question to the Report Design forum. At this point this is not a .NET SDK question/issue.
    Good luck
    Don
    Edited by: Don Williams on Dec 14, 2011 1:14 PM

Maybe you are looking for

  • No tax item exists for tax code O0 in a G/L account item.

    while posting the credit memo  for sales return accounting document is not created. its shows the error as No tax item exists for tax code O0 in a G/L account item. plz help me in solving the issue

  • What to do if my pc is too slow for Flash CS6? may i try (and find) older version?

    Hi all I tried the trial version of flash CS6 but my computer is too slow (less than 2 GB of RAM available) and I 'm not able to use it. i need it to make animated cartoons and I do not need to code in order to do it .. What do you recommend me, plea

  • Can u change the Standard definition of the badi.

    Hi , We have a Badi definition FAGL_COFI_ACDOC_MOD which is used for FI postings. Here in definition filter value is specified on MANDT field, which happens to be client specifc.. Now my requirement is country specific...so i can change the existing

  • Where can i find table display option in BI 7?

    We have Table display option  in query designer for 3.5 version and where can i see table  display option in BI 7 query designer?Can any one help me in this.

  • Capabilities of my Computer?

    I need help determining the capabilities of my 10 year old Power Mac G-4. It was apparently a transitional time when I purchased the unit, and depending on the type of motherboard I have, will apparently determine whether I am able to: 1. Boot from a