How to distinguish the PRs triggered by the Project

Dear all expert,
could you help me on the following issue?
i create a project in CJ20N, i use internal activity and external activity.
the materials to be procured are assgined to the internal activity, i release the project, run project MRP and the PRs for materials generated.
as for the external activity, i use it to generate the service PR to be procured from outside.
therefore, there are two kinds of PRs in the project.
as far as i know, the PR No are generated automatically.
but i want to find a way to tell they are two kinds PR, for example, from PR No or other way.
can you give me some help on suggestions?
thanks a lot.
Judy

To add to Gokul's Comments, in ME5J if you put item category as D, you will get only service related PRs.
or you can filter for service related PRs after executing the report.

Similar Messages

  • How to delete the project  version RELEASED.

    System is below:
    " Project 1522DJ110001 version RELEASED already exists
    Message no. CJ016
    Diagnosis
    A Version RELEASED already exists for project 1522DJ110001.
    System Response
    Processing stopped. "
        but in the system , there are no  "Project 1522DJ110001". so the user can't create the project "1522DJ110001".
        how to delete the Project 1522DJ110001 version RELEASED ?
    Please explain me all the steps to be required.
    Thanks in advance!

    Hi Harish,
    When I select Delete Project Version from Extras menu in CN41, its asking session number and version.
    In session number no serch help is avialble. I am keeping it blank and seleting RELEASED in version.
    After pressing enter I am getting an error Project Version RELEASED cannot be deleted??
    Let me the exact steps to deleted the Project Version.
    Thanks and Regards,
    Atul R. Rajmane

  • How to find the Project and wbs Element System Status

    Hi all,
      How to find the Project and wbs Element System Status.
      We can find the system status in the CJ20n transaction but I want the table and field name where it is stored.
    Regards
    Raghavendra

    Hi,
    try table <b>jest</b> with key = prps-objnr
    Andreas

  • How to get the project path ?

    In my servlet, how do I get the project path ?
    I have the following dir structure :
    Web_App
      + build
        lib
      + nbproject
      + src
        test
      + web ( index.jsp , my.jsp , my.html )
        + Dir_Docs ( my file : ABC.txt ) My Servlet is :
    public class My_Servlet extends HttpServlet
      public void init(ServletConfig config) throws ServletException
        super.init(config);
      public void destroy() { }
      protected void processRequest(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException
        response.setContentType("text/html");
        PrintWriter out=response.getWriter();
        out.println(System.getProperty("user.dir"));   
    }What I got was : C:/apache-tomcat-6.0.14/bin/
    How to get the project path ? Which is : C:/Web_App/ ?

    Yes, config.getServletContext().getRealPath("index.jsp"); got the job done !
    Thanks.

  • How to achieve the project is obligatory entry when creating transport requ

    Hello
    How to achieve the project is obligatory entry when creating transport request

    In T-code SE03, under Administration -> Display/Change Request Attributes
    Select "SAP_CTS_PROJECT" and hit the change button and then change the value of "Default for All Clients" to Mandatory
    Hope this helps.
    Thanks,
    Naveed

  • I started editing a project on FCPX Trial. Does anyone know how I transfer the project to the 'purchased' FCPX now that I've bought it? Thanks.

    I started editing a project on the trial version of FCPX. I just purchased the 'real' version.  Does anyone know how I transfer the project to the 'purchased' FCPX now that I've bought it? Thanks.

    Joshink wrote:
    Thank you, Rus! Safe to assume it will be churning awhile, as it's been doing?
    I wouldn't expect it to take long at all.
    Is it an extremely large library with a lot of media copied to it?

  • How to change the project type of inprogress project

    How to change the project type of in-progress project, The project type is Testing and need to change it to basic project plan.

    Another way is to click on the top right button of the project center ribbon, after selecting the project. Note that this way works for one project at a time whereas toon's reply works for bulk edit.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, MCP |

  • How to know the project number through milestone number ?

    Hi Expert,
    How to know the project number through milestone number ?
    BR / Shubin

    Hi,
    I am not sure if there is any standard report which will have Milestone in the selection screen, before executing the report. However you can give a range of projects in CN53N/CN53 and check which milestones are associated with which project.
    Best Regards,
    Gokul

  • How to distinguish the type of trigger DML operation?

    I want to log all changes to some table (inserts, updates and deletes). Before every change I want to insert the values to the log table along with operation type and sysdate.
    I want to do it in one trigger, but I don't know how to read the type of operation? I could do it with three triggers, each for insert, update and delete, but this would be easier.
    create trigger emp_trig after insert or update or delete on emp
    for each row
    begin
      insert into emp_log values(
      :new.empno, :new.ename,
      __operation__, sysdate);
    end;Thanks in advance
    Viliam

    In case you had an ID, which is assigned automagically on emp, this could also be written like this:
    create trigger emp_trig
    after insert or update or delete on emp
    for each row
    begin
    insert into emp_log values(
    :new.empno, :new.ename,
    decode(nvl(:old.id,-1),-1,'Insert',decode(nvl(:new.id,-1),-1,'Delete','Update')), sysdate);
    end;
    ..where -1 is a value you do not expect to be propagated ever in id column. Also, :new.empno and :new.enmae will be null if the dml being executed is a delete statement.

  • How to distinguish the ABAP Code in include program into different TRs

    Hello Friends,
      In our current project, two teams are working on the developments.  One team is for LES related developements and another team is for billing related developments.  As part of developments, same programs are sharing by two teams, example -
    Include - MV45AFZZ, the userexits in include are using by both the teams for their developments
    Now the issue was, since the same program is using by both the teams, and during program activation , system automatically includes the code in both the team TRs.  This was causing issue while testing and transport to other testing systems, since billing project is going live in next year and LES in coming november
    Hence, we need to understand how we can differentiate the code which should not impact with other TRs.
    Many thanks for your inputs
    Best Regards,
    Goutham

    Thanks all for the quick reply..
    I would like to brief more clear...
    In current project, Team 1 is working for Logistics developments, Team 2 is for Billing developments.  As part of project plan, Logistics is going live this november
    When two teams are working on the same include, Team 1 is activated the changes then the task is updated in their TR, later when Team 2 has made changes in the same inlcude then the task was includeded in their TR.    Now the problem facing was, Team 2 has developed statements like COMMIT  WAIT WORK  and also BAPI call etc... and these statements are causing performance issues and some other problems......
    Recently Logistics related TRs are moved to testing system for testing, in that all the development TRs are moved into testing system and also code related to Billing project (Team2)  as well.... when we cross check the reason then it was identified that the same include is using by both the teams for the development.    Now we need distinguish the code specific to team whcih should not impact other...
    Hope my explanation clear the criticality of the problem
    Thanks
    Best Regards,
    Goutham

  • Quiz failure, how to stop the project from continuing

    If the user fails the quiz I don't want them to be able to proceed b/c for the ones that passed I have created a certificate. I have my quiz settings under the Pass or Fail "If passing grade" - Go to the next slide. "If failing grade: - Send email to... on the drop down the Continue playing project is not checked. But when I tested it out, it does continue playing the project when the user fails. Should I set the Action upon failure to No Action? Other solutions?

    ashorsley,
    One thing you can do is set it such that if the user fails the quiz, then it jumps to a slide you have created.  The slide can simply say "Thank you" or "Sorry, you did not pass" and include any further instructions the learner might need.  Say whatever you want.  Either way, you then set your Project end options to Close the Program.  So it looks like this:
    For instance:
    Slide 26:  last question slide in the quiz          Properties:  On slide exit: Go to next slide
    Slide 27:  Results of the quiz slide                 Properties:  On slide exit: Go to next slide
    Slide 28:  "Congratulation you passed!"          Properties:  On slide exit: Jump to slide 30
    Slide 29:  "Sorry, you did not pass."               Properties: On slide exit: Jump to slide 30
    Slide 30:  Thank you.                                   Properties:  On slide exit: No action
    In Publish/Preferences/Quiz/Pass or Fail, set the following:
    If passing grade: Jump to slide 28
    If failing grade:    Jump to slide 29
    In Publish/Preferences/Project/Start and End, set the following:
    Project end options:   Action:  Close Project
    That should do it if I understood your problem correctly.  It has worked for me.
    WARNING: In Publish/Preferences/Quiz/Settings if you have set Required to Pass Required - the user must pass this quiz to continue, then this solution will not work.  Set it to Required - the user must take this quiz to continue, then it should work fine.
    Good luck.  Let us know how this solution works.  Any more questions, feel free to ask.
    Take care,
    Jorge G.

  • How to get the project name in workspace in eclipse?

    Hi,
    I want to get the file in the project in the workspace when eclipse is run time.
    But I don't know how to get?
    Thanks in advance!

    Hi,
    It is a plug-in project.
    I open two eclipse environments.
    one is main environment.
    the other is run time eclipse environment.
    In run time eclipse environment, I have a project.
    In the main environment, I want to access the file in the project in run time eclipse environment.
    How to do it?
    Thanks!

  • How can install the Project Server on my special intranet network?

    I want to work with my colleagues in Project Server 2013 on our special server. that server isn't connect to internet. can we use the Project Server on wetwork? and how can install it?

    Hello,
    As Ben already stated, download all of the software required and copy to the servers, also include the prerequisites:
    http://blogs.technet.com/b/meamcs/archive/2012/12/26/install-and-download-sharepoint-2013-prerequisites-offline-manually.aspx
    http://blogs.technet.com/b/cjrawson/archive/2014/04/06/offline_2d00_sharepoint2013sp1_2d00_prerequisites_2d00_server2012r2.aspx
    Also probably worth reviewing / carrying out the steps below:
    http://blogs.msdn.com/b/chaun/archive/2014/05/01/best-practices-for-crl-checking-on-sharepoint-servers.aspx
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP | Downloads

  • Live-set: how to stitch the PROJECTS together

    How can i put the projects behind each other with their own settings (including automation etc) in a way that it will keep all the tracks just like in individual state. Is it possible somehow to do that? i need it for live performance

    Logic isn't really designed to have multiple songs with their own automation and mixer data in the same project.
    You can do it, but it requires a lot of tedious work to copy songs and data into a new project, and reassign onto new audio objects and so forth.
    Unless you really need to, I would consider bouncing out stems including the automation, and just bring these necessary tracks into a new project as plain audio files - this will be much cleaner, more efficient and easier to work with...

  • How to deploy the project into my weblogic Application Server?

    How do I deploy the project into my weblogic Application Server? Should it be fine if I copy the project folder to the AS root?
    Also, How should i invoke the Context sensitive help from Javascript assuming project  deployed to Weblogic AS.
    I am using Robohelp 10.
    Thanks in advance.

    Hi,
    You generate the help and then you copy the generated output to the server.
    For context sensitivity, which output are you using? Try the following
    pages for more info:
    http://www.grainge.org/pages/authoring/calling_webhelp/calling_webhelp.htm
    http://www.wvanweelden.eu/article-category/context-sensitivity
    Greet,
    Willam

Maybe you are looking for

  • Content tab for a fact table

    Hi Please , help me in knowing the use of content tab for a fact table in the repository in OBIEE. Thanks.

  • Terminal Problems - Can't open a new full size window

    When I open Terminal, I get a tiny little corner of a window that shows only the Red Close window button. All new windows open the same way. I can't enlarge the window by dragging or menu commands. The Terminal is basically worthless in this state. I

  • Web Gallery duplicating photos

    I seem to have a consistent problem of photo duplicating themselves when I add new photos to a Web Gallery. The duplications don't show up on the actual Web gallery but are present within iPhoto, for example iPhoto says there are 96 images and the We

  • Archiving stops with no reason

    Hi, I'm trying to enable archiving on a XE database: 1. Change from 2 redo log groups to 3 adding one and change the size to 100M each file. 2. Enable archiving. Shutdown Mount alter database archivelog Open Shutdown Startup Until this point all went

  • Java-SQL Query, Its Urgent.....................

    hi, my problem is that i want to get data from the oracle database(SQL) and then put it into a JTABLE. The data seems to come correctly into the ResultSet rs Object, but i dont know how to put the data from the rs Object into the JTable. Please reply