Which project does my CR belong to?

Hi
Apologies is this seems like a really stupid question however ....
Where can I see which project a Change Request belongs to?  In the work centre for "project" I can see a list of changes however I have a CR that I raised that is not listed - where can I find which project it has become assigned to?
Also this list in the work center is not very convinient to use - is there a report/other screen where I can see the project that a CR is assigned to?
Thanks in advance
Marina

Hi Marina,
your second post is correct. There is no link between a Change Request and a Solman Project.
This means that for example you could possibly have for one Change Request (SDCR) more than one Change Documents (SDMJ) that would be linked to 2 different Solman Projects or at least 2 different maintenance cycles (M...) with 2 different go live date.
If I remember well standard customizing allows only one change document per change request but with easy specific custo you can change that !
Another way of doing reporting on those links is directly using Solman transaction (no workcenter) like /n/tmwflow/trmo or /n/tmwflow/proj or /n/tmwflow/reporting (If I remember well)
Hope this helps !
Regards
Khalil

Similar Messages

  • To which module does sap biw belong?

    i want to know to which module does sap biw belog. and also i want to know the list of all modules and details of all of them. please give me an information.

    Hi,
    Please check this for SAP modules overview.
    http://www.thespot4sap.com/Articles/SAP_Modules.asp
    Regards.

  • To which application does business area belong?

    Hi,
    Report owners are defined by category (right now I am not taking into account users) . We can have an owner GL or AP etc. In other words, if the owner of a report is GL it would then make it obvious that the report belongs to the General Ledger group.
    However, the GL owner is defined in the same table as all other users. We would like a LOV of just the general categories and I can't think of a way to separate them from the rest of the users. For now, I defined the LOV using an sql select with " Select ...from dual...UNION .... ". Of course that means that if we should add a new owner then the owner must also be added to the LOV select.
    In the Oracle application, when defining a responsibility, there is an application to which the responsibility belongs, e.g. General Ledger. We are trying to find a similiar definition for the Business Areas.
    In our company there is more than one Business Area for General Ledger. Is there anything that links those BAs to GL? I don't see it in the eul5_bas table.
    The purpose of all this is so that we can have a report which can extract information from all reports of a specific area, for instance all GL reports.
    I would like to know if this is even possible.
    Thank you.
    Leah

    I am able to get the all the owners. It is an issue of weeding out only around 10 specific owners. I did that manually by selecting in the sql the owners that were " in (GL,AP....)". It all works fine. However, it was an issue of what if in the future another owner is added (we just recently added PN), and then having to remember that we have to manually go into the script to add PN.
    My boss brought up the issue that in the Oracle application all responsibilities belong to a group, isn't there something like that with the business areas. I just wanted to confirm that that is not the case with discoverer, and that is really what you confirmed. Furthermore, I felt that even if those specific owners or business areas were attached to an appication GL,AP etc., it would still be a problem because we would then have to limit the applications to those that we are interested in. We then return to manually limiting the select.
    In summary, you confirmed what I thought was the case, and I very much appreciate your responses.
    Tamir, thanks very much once again for your help.
    Leah

  • Which area does my phone belong to ?

    Hi, I have got a Nokia N95 8GB and I just googledmy product code but couldnt find any specific region for it. My product code is 0557631.
    Any help is appreciated.

    possibly india found this on a post elsewhere
    SV on 22 November 2007:
    my N95 8GB (bought in India) has the product code 0557631

  • How to find "To which role does a user belong"?

    Hi experts,
    I am very new to portal.
    In the starting phase only, i got stuck at one issue.
    I am developing a custom java application for finding user details.
    Here we want to display user role in a iview but not other information, i tried to assign user admin role for finding the role but, client says its not the way, we cant assign full permission to end user.
    Please suggest me the best way earliest.
    Thanks in advance
    <Kamlesh>

    Dear Kamlesh,
    Always Please try it on yourself first, then ask for code.
    I dont have a handy code, but check if this helps you:
        IRole myRole= null;
        try {
            myRole= getSingleRole("<ROLE_ID>", false);
        } catch (UMException e) {
            response.write(
                "Error getting role: " + e.getLocalizedMessage());
        if (user.isMemberOfRole(myRole.getUniqueID(), true))
            response.write(" IS a <ROLE_DESCRIPTION>");
        else
            response.write(" IS NOT a <ROLE_DESCRIPTION>");
    regards
    -Kedar Kulkarni

  • Which user exit belongs to which project

    hello,
    1) imagine I have got the user exit name
       EXIT_SAPMV45A_003 and now I want to find out
       to which project this user exit belongs.
       How can I obtain this information
    2) Is it possible to deactivate only one
       or designated user exit instaed of the
       whole project
    Ilhan

    Hi,
    Herewith i am sending the sample coding for the report which will help to u can find through whatever transaction codes are having how many user exits are there and through that u can run that user exits and u can go to any transaction code.
    *& Report  YMS_USEREXITTEST                                            *
    REPORT  YMS_USEREXITTEST no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
    select single * from tadir where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir where pname = tstc-pgmna.
    select single * from enlfdir where funcname = tfdir-funcname.
    select single * from tadir where pgmid = 'R3TR' and object = 'FUGR' and obj_name eq enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    select * from tadir into table jtab where pgmid = 'R3TR' and object = 'SMOD' and devclass = v_devclass.
    select single * from tstct where sprsl eq sy-langu and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(95) sy-uline.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    write:/(95) sy-uline.
    loop at jtab.
    select single * from modsapt where sprsl = sy-langu and name = jtab-obj_name.
    format color col_normal intensified off.
    write:/1 sy-vline,
    2 jtab-obj_name hotspot on,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    endloop.
    write:/(95) sy-uline.
    describe table jtab.
    skip.
    format color col_total intensified on.
    write:/ 'No of Exits:' , sy-tfill.
    else.
    format color col_negative intensified on.
    write:/(95) 'No User Exit exists'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(95) 'Transaction Code Does Not Exist'.
    endif.
    at line-selection.
    get cursor field field1.
    check field1(4) eq 'JTAB'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    -End of Program-
    Thanks,
    Shankar

  • Which module(s) does nipxirmu.dll belong to?

    NI-PAL Service Manager is throwing an error each time I boot Windows (WinXP SP2).  I believe the error message points to nipxirmu.dll as the problem.  Based on previous discussion in this forum, it seems like the prescription is to remove the offending module and then re-install.  But which module does this DLL belong to?
    Thanks,
    Nick
    "You keep using that word. I do not think it means what you think it means." - Inigo Montoya

    Hi Nick,
    The nipxirmu.dll belongs to the DAQmx driver so you might have to reinstall NI-DAQmx. The latest version is DAQmx 8.0.1 and can the downloaded from this link.
    Sometimes is possible that the file that got corrupted is located under the Data folder in C:\Program Files\National Instruments\MAX. You can try deleting this folder before uninstalling DAQmx. Keep in mind that deleting this folder will erase any tasks or board names you had created in MAX. In order to delete the Data folder you have to stop the "nimxs.exe" from the Task Manager Processes. If this doesn't fix your problem, then you'll have uninstall/reinstall DAQmx. (Inconceivable!)
    Good luck,
    Tica T
    Applications Engineer

  • Open Other Project - Does Not Function

    Hello -
    We are finishing a CBT lesson in Cap 3 which includes 29
    seperate projects. At the end of each project the student is
    presented a button to take them to the next project, i.e. "Open
    Other Project".
    Here lies the issue, we have set this button to "Open other
    project" and "Open URL or file". In both case the next project does
    not open. The user is taken to an internet search page. We set up
    the button "On Success" feature using the Captivate Help files
    where it instructs you to remove all of the system paths and just
    use the project or file names. Also confirmed button settings in
    Advanced Interaction.
    We are publishing our projects in .exe formats. This isuue is
    present when we preview it using the preview feature and from the
    .exe products.
    What are we doing wrong, any ideas?

    Hi again
    I just conducted a brief test using a Button object and the
    exact file names you listed. Things worked as expected on my end.
    This is actually good news, as it suggests Captivate 3 isn't to
    blame. Instead, something is wonky with your project(s).
    One thing that strikes me here is that you say you are seeing
    a Web Browser open. This suggests your button is programmed to
    "Open URL or File" and not "Open other project". You may wish to
    double check that. If you examine it and it already says "Open
    other project", you may wish to delete that button and insert a new
    one. Maybe somehow it became corrupt and is retaining the Open URL
    or File setting and not respecting the Open other project setting.
    Cheers... Rick

  • Project does not contain a valid connection problem

    I am using JDeveloper 10.1.3.2.0 and have checked out code that was in CVS. I tried to put the code under an Application and Project, but when I do the check out, the Application Navigator shows it at the Application level. Within that Application, there are two projects. When I do a Make on either project, I get the error that The Business Component Project does not contain a valid connection. Double clicking on the error send me to the corresponding .jpx file which contains this:
    <?xml version='1.0' encoding='ISO-8859-1' ?>
    <!DOCTYPE JboProject SYSTEM "jbo_03_01.dtd">
    <JboProject
    Name="ViewController"
    SeparateXMLFiles="true"
    PackageName="" >
    <DesignTime>
    <Attr Name="_ejbPackage" Value="false" />
    <Attr Name="_NamedConnection" Value="Fred" />
    <Attr Name="_version" Value="10.1.3.36.73" />
    <Attr Name="_jprName" Value="../ViewController.jpr" />
    </DesignTime>
    </JboProject>
    Does anyone know what connection needs to be set up? I wonder if part of the problem is how the CVS check out is working, but I can't seem to get it under an application.
    I'd appreciate any help!

    Hello.,
    Thank you so much for the responses! That was the problem. I had defined a database connection, but the name was not the same as what was in the jpx file. The error is now gone. :)
    Thanks again!

  • 9.3.1 Migration Utility gives "Project does not exists" error in log

    In preparation for using Hyperion Reporting and Analysis 9.3.1, I have installed the following on a Linux test server:
    --Oracle App Server 10.1.3
    --Oracle Database 10g XE
    --Hyperion shared services 9.3.1
    --Hyperion UI Services 9.3.1
    --Hyperion SQR Production Reporting 9.3.1
    --Hyperion Reporting and Analysis, Financial Reporting 9.3.1
    Everything is up and running and I created a new user account in Shared Services to administer the system, and attempted to give it full access by provisioning it with all the available roles. I received an error message stating
    "+OracleJSP: An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param debug_mode to "true" to see the complete exception message.+"
    I'm investigating that now, but the roles seemed to be assigned to the user anyway.
    When attempting to migrate from HPSu 8.5.2 to Reporting and Analysis 9.3.1 using the 9.3.1 Linux x86 Migration Utility (V11333-01 from edelivery.oracle.com), I get the following error message in a test migration:
    The migration process has been failed on 'User Defined Roles' migration step*
    I set the log level to debug and looked it over and here are the error details:
    +\[09 16 10:49:29,080] \[ERROR ] The migration process has been failed on 'User Defined Roles' migration step+
    +\[09 16 10:49:29,081] \[ERROR ] com.hyperion.interop.lib.OperationFailedException: Project does not exists by this id '%201252935352214.11'.+
    com.hyperion.pmt.migrator.common.CommonException
    at com.hyperion.pmt.migrator.userprovision.tool.MigrationManagerImpl.doAssignDefaultGroup(MigrationManagerImpl.java:864)
    at com.hyperion.pmt.migrator.userprovision.tool.MigrationManagerImpl.startMigration(MigrationManagerImpl.java:751)
    at com.hyperion.pmt.migrator.userprovision.ui.panels.MigrationPanel$ProcessRunner.run(MigrationPanel.java:304)
    Caused by: com.hyperion.interop.lib.OperationFailedException: Project does not exists by this id '%201252935352214.11'.
    at com.hyperion.interop.lib.helper.AdminProjectHelper.getProjectNameByID(Unknown Source)
    at com.hyperion.interop.lib.CMSClient.getProjectNameByID(Unknown Source)
    at com.hyperion.pmt.migrator.userprovision.tool.MigrationManagerImpl.getDefaultGroupBundle(MigrationManagerImpl.java:824)
    at com.hyperion.pmt.migrator.userprovision.tool.MigrationManagerImpl.doAssignDefaultGroup(MigrationManagerImpl.java:861)
    +... 2 more+
    We've only one user-defined role in the source system that I don't think is giving us this issue, it is inactivated and "User Roles" was not one of the selected objects to migrate.
    I would like to try taking the role completely out of the source system if possible, preferably through SQL applied to the V8 tables or through the SDK.
    The error looks like it lies in the migration task following the user role provisioning, doAssignDefaultGroup* and is caused by getProjectNameByID*
    The steps I have taken (for sanity sake) so far are:
    --I've removed all associations with this user defined role in the source system (users, groups, and roles) using the administrative interface on the web.
    --I've unchecked 'User Defined Roles' on the list objects to migrate from the source to target systems in the Migration Utility, but I still get the error.
    It looks like it is trying to provision a user defined role in the target system, but it is not finding a default project by the id in the error message.
    Are there any Shared Services steps in the target system that need to be taken besides creating a manager type user to use as a log in for the Migration Tool?

    I turned on the jsp debug init-param for the system for more information about the error. I get the following:
    Request URI:/interop/jsp/css/CSSTemplate.jsp
    Exception:
    OracleJSP:oracle.jsp.parse.JspParseException: /jsp/css/provisionSummary.jsp: Line # 119, <bean:define id="appId" name="appName" property="key"/>
    Error: Tag attempted to define a bean which already exists: appId
    When I attempt to provision the user I created for administrative purposes, Ialso see the following:
    --from the file SharedServices_Metadata.log I see the error:
    +2009-09-18 15:55:32,399 \[AJPRequestHandler-HTTPThreadGroup-6\] ERROR com.hyperion.eie.common.cms.CMSFacade - org.apache.slide.structure.ObjectNotFoundException: No object found at /users/admin+
    --from SharedServices_Admin.log
    +2009-09-17 14:49:20,583 \[Thread-13\] ERROR com.hyperion.cas.server.CASAppRegistrationHandler.loadApplicationsFromCMS(CASAppRegistrationHandler.java:430) - AuthorizationException occured when loading applications : Refer log in debug mode for details+
    How does one set these logs into debug mode ?

  • HT4059 Which format does ibooks use?

    Which format does ibooks use?

    if you follow iLife's intended workflow, I don't see any of the huzzle you mention (?)....:
    a) iM is for miniDV.. it copies (=lossless transfer) from miniDV... there's no conversion, as long as you use SD, not HiDef.. and it is NOT intended to import 'foreign' containers as avi...
    b) as long as the iM project is located in the 'Movies' folder, there's no export/conversion/whatever... needed. iDVD detects any content there automatically, with a snap of a click ...
    c) to create a standard videoDVD, there HAS to be a time consuming encoding process, 'cause these standards asks for muxxed mpeg2.. = computation... and, with your help (=maintain system, keep min. 20GB free on system disk, size of your wallet for purchasing überMac etc), this process is fast. plus, using the themes, or using a self-created theme gives your DVDs a professional touch ...
    Plan B)
    get any HDD/DVD standalone corder (I'm using one...); import from camera, the encoding & burning process is on such machines hardware accelerated.. it creates a DVD of a 90min movie in less than 5min .. (import, for sure, in realtime...); plus those devices offers rural editing options.. the DVD menus are ugly..

  • How can I tell which catalog a missing image belongs to?

    How can I tell which catalog a missing image belongs to?
    Beating a dead horse.....Everytime I need "missing images" in LR4.2, I cannot access them, even though I am looking right at the location they presntly occupy because thye image is ALREADY IN ANOTHER CATALOG.
    HOW frustrating is this...going on 8 months now. But I need the images and I suppose I could just go back and reprocess 10,000 images that are missing in my collections but I have tried many solutions offered over the months that are just impractical.
    So Now I want to approach this thing from the other direction...
    If let's say one image is already associated with another catalog that houses that collection, ( and the collection is important because it has the edits), i want to go to that catalog instead.
    How do I do this?
    Any Ideas?

    So Now I want to approach this thing from the other direction...
    If let's say one image is already associated with another catalog that houses that collection, ( and the collection is important because it has the edits), i want to go to that catalog instead.
    How do I do this?
    It sounds as if you have been using separate catalogs for sets of images which are in separate folders. Perhaps you have had good reason to do that. But I would now make three linked observations:
    It seems that you are now more able to both find, and distinguish, things via a folder structure - rather than via whatever classification of different catalogs you may have thought were going to be helpful to you
    accordingly, having these mutiple catalogs is now getting in your way
    using folders works just the same inside one big catalog, as it does inside each of two smaller catalogs.
    The solution to the first two, IMO, is to merge your separate catalogs into one catalog. Then the third will kick in. You can still keep the current separate catalogs for archive or reference purposes, but the "Import from Another Catalog" function will MERGE copies of all their contents into a combined, larger catalog that you can use going forward. (The images and folders themselves, do not change in any way when you do this.)
    If you wish to track which catalog each image is currently inside, you could apply some kind of keyword across all images in that catalog, before carrying out the merge. However, it sounds to me as if your folder arrangement currently mirrors the different catalogs in some way anyway - and will continue to convey the same information once combined.
    Lightroom is designed to be able to work with large numbers of images more or less the same as with small numbers; and this has been anecdotally confirmed in many cases. AFAICT the main performance  issue is not  the size of the database, but the size and nature of the image data involved and the complexity of things you do with that, per image, also the ability of your computer system to carry these operations out, per image. (Another overall productivity issue is: do you need to keep navigating to and opening different catalogs; or... not!)
    Even if you merge catalogs and then change your mind about all or some of that, you can either: retain and go back to the previous un-merged catalogs - or: to preserve further work done since merging, you can use Export as Catalog to copy out a certain highlighted set of images. Then you can Remove what you wish from the main catalog - using the exact same means of identifying which images require this - for example, the image set you have only just exported to a new catalog will still be highlighted inside the source catalog.
    RP

  • Microsoft Project does not open; Even after enabling the project from Options - Addins - enable the Disabled file in the Manage options.

    Dear experts
    I have two issues for which I seek help.
    1. My Microsoft project does not open, hangs, no matter how many times I disable the Options -> Addins -> enable the Disabled file in the Manage options.
    I also copied the file and tried. It has no previous versions. Any advice
    I plan to open this in 2013 version of Project later but I really need your advice.
    Regards

    Hi Protocoder,
    If I understand well, this is a 2013 mpp file that you want to open with Ms Project 2013? Then you get Project hang? Are you using Project Server as well or just the standalone MS Project version?
    Can you reproduce this issue with other files or just this file?
    Your file might be corrupted, try this
    method, export the file as XML and saving it back as mpp.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • To what class does this method belong?

    If one sees in the documentation something like
    - (retType *) text1:(Type1 *)aType1 text2:(Type2 *)aType2;
    then to what class does this method belong? I do not see in the Objective-C documentation any way that one can tell without the 'context' in which the method is declared or defined. This makes reading the documentation very difficult (for me). What you see is not what you get. There is stuff missing.
    In my world there is no difficulty in determining the class to which a method belongs. It is stated explicitly in the method name. For example:
    PROCEDURE (self: MyClass) methodName (arg1: Type1; arg2: Type2);
    and one sees that 'methodName' belongs to 'MyClass'.
    In Objective-C how does one know the class to which a method belongs? Is it only determined by context, that is, by the fact that it is within the @implementation section or that it is within the @interface section? If that is the case then I would think that in documentation one should always be required to assert something like:
    <<MyClass>> -(retType *) text1:(Type1 *)aType1 ...
    -Doug Danforth

    PeeJay2,
    I think I now have the distinctions needed but still have a question about what you said. But first here is my current understanding. A "method" is by definition bound to *at least* one class whereas a "message" need not be bound to any class. Hence one can send any message to any class and it will either be handled or ignored. A message looks like a method signature (and maybe one but is not constrained to be one).
    The difference between C++ and Objective-C is that in C++ method calls are not messages sent to a receiver. They are just calls of the method for the dynamically bound object. That method must be syntactically correct at compile time whereas messages need not be syntactically correct for any receiver. At least that is my current understanding.
    Now my question. You state that "casting the receiver of a message will in no way alter the flow of the code". I attempted to test this with a simple program but ran into a problem (see my new posting "Multiple classes in one file?").
    Assume the following
    @class Child : Parent
    Child *child = [[Child alloc] init];
    Parent *parent = [[Parent alloc] init];
    Parent *bar;
    bar = child;
    [bar doSomething]; // (C) call to child's doSomething method?
    [(Parent *)bar doSomething]; // (P) call to parent's doSomething method?
    You comment seems to say that both case (C) and (P) give the same result. If they do then which result is it the parent's or the child's method (assuming that the child has indeed reimplemented the parent's method)? Have I understood you correctly?
    -Doug Danforth

  • Which codecs does iMovie for iPad support?

    I have videos from a Canon Powershot camera which are in 1280 × 720, H.264, Linear PCM. I can import these videos to iMovie on iPad but when I open iMovie it does not show the files.
    I have also tried to import the videos via iTunes Movie Sync. I can play the video on the iPad but can not import it to a new project in iMovie.
    Which codecs does iMovie for iPad support? If I can play the movie on iPad, it should be possible to edit it?
    Where do I find the codecs supported by iMovie for iPad?

    iMovie was made to edit video shot on iOS devices; there is no support list, it was made to edit iOS video.
    This allows iMovie to be stable (or should make it stable as the case may be).
    That said, you are importing the video wrong, and may be in luck with your video.
    The File sharing pane is just for importing iMovieiOS projects.
    iMovie cannot edit video in the Movies app.
    iMovie edits video that can be seen in the photos app.
    So you need to import it via the photos tab, as you would photos.
    The other option is using the camera connect kit.
    If you can see the video in the Photos app, it is highly likely that you can edit it.
    But be warned that using non-iOS sourced video can make iMovie very buggy and flakey.
    Avid for iPad is made to edit more formats and might be a better choice if you have trouble.

Maybe you are looking for