LTP based on project

Hi
Here is project based planning. So all requirements come from a WBS element. Now my client  wants Long term planning. The user will enter previously executed project no/WBS element as input field. On LTP mrp run, system should propose earliest completion date of the project by considering the existing capacity load from the running project & cost of the project. They are not ready to use PIR since project no/WBS element is the reference object to them. Is it possible? If so pls guide.
Thanks & regds

closed

Similar Messages

  • Report to get WBS elements based on Project Type

    Dear Experts,
    Is there any report exists in Project Systems to get WBS elements based on Project Types.
    This we can check in the table PRPS-PRART.
    But i need to know the availability of T Code.
    Thanks in advance.
    Regards,
    Srinivasareddy Y

    Hi,
    If its a one time requirement using CN43N might help in meeting the requirement. However, first it has to be executed for a certain range of projects and then the layout will have to be changed accordingly. Instead of doing this if a custom report is developed with the input parameter as "Project Type" it would make it much more easier. You can even have the F4 search option for the input parameter. Doing this will help if the report is going to be used frequently in the future.
    Take your call and proceed accordingly.
    Regards,
    Gokul

  • Is there standard report to check actual (GR) based on project/ WBS

    Hi All,
    Is there any standard report to check actual based on project / wbs. At the moment i know the tcode CJ74.
    Is there any other report ?
    Thank you.
    Best Regards,
    Denis Evitanto

    Hi,
    Report (S_ALR_87013542) is most effective report for projects as planned cost / actual cost / Project profitability will be obtained from there.
    Planed cost of the project will be obtained from the report. E.g. if you are doing project costing through Cost elements, in the mentioned report, all the cost planned through various Cost elements will be obtained. After posting actual cost to project, there can be comparison of planned cost Vs actual cost.
    Hope this will help you.
    Best Regards,
    Rakesh Pradhan

  • To find Manager id based on Project id

    Hi ABAPers,
                       This is kishore. I am new to ABAP-HR
    Can any one tell me the logic based on Project-id (of its type HRP1001-OBJID) to find the Manager id, Manager Name, Manager Email.
    I know the logic find name and mail-id, but I need Manger id of corresponding Project.
    Any one having working knowledge on PS module I hope they have good idea about this
    Please help me in the format of sample code or Function Modules.
    Thanks In advance
    Kishore kumar

    Hi
               Actually projectid and their relation objectid avialble in
    PROJ table .But Based on that how to find corresponding
    project manager id.I hope i give clear information to u.
    regards,
    kishore.

  • Newbie looking for maven-based web projects

    I'm looking looking for maven-based web projects so I could learn how to orginize and configure code and configuration files respectively. Thx in advance.

    Tones of good material exists at the Maven2 site:
    http://maven.apache.org/
    Another very good place where to find information:
    http://www.sonatype.com/book/
    To search for free jars (very useful)
    http://www.mvnrepository.com/search.html
    It is kind of difficult to start, but it worth the effort.
    I cannot imagine to start a project without Maven + Continuum

  • Repot based on Project type

    Hi Experts,
    Is there any std. report in ps basing on project type?
    i have searched. But i could not find the same in PS STD Reports.
    pl. suggest.
    Regards,

    Thank you very much for the suggestion.
    It is worked.
    Regards

  • Separating logs in OSB based on project - is this possible?

    Hi,
    I'm using OSB 11.1.1.3.0 and I'd like log messages generated from the log action to go to a different log file based on OSB project. I've found messages on the forum that discuss this, for example:
    alsb logging
    These posts only explain how to log messages from ALL OSB projects in a domain to a SINGLE log file, which I already have working using a LogFilter, but I'd like to take it a step further and log messages to a different log file depending on the specific project where the log action was invoked.
    I want to use a method that involves LogFilters rather than explicit OSB Reporting or File business services, to keep it unobtrusive from the perspective of the application developer.
    I've checked the output of the LogRecord methods and I don't see anything that will let me get a handle on the specific project a log originates from, but I've noticed that at the start of each log message information is logged inside [], for example:
    [raiseEvent Operation, raiseEvent Operation_request, stage1, REQUEST]
    This looks promising but unfortunately it doesn't always contain the OSB project name (sometimes it does, but not in this example).
    So my questions are:
    1. Has anyone successfully split logs based on OSB project using the WLS/JDK logging system?
    2. Is there a way to specify what is logged in the [] at the start of each log message?
    Any help is much appreciated.
    Thanks,
    Jason

    It has been done in a previous client by the then BEA in a different manner. Instead of using any java callouts or log4j code within osb, that task has been shifted to a weblogic startup class. So this is how it works:
    At OSB
    Use Log action to record log messages. Put appropriate annotation based on the project to categorize the log messages into different files later.
    Example: Log : Request Message Processed succesfully. Annotation: OSB_LOG: <Project_Name> Severity: Info. Note Annotation has 2 parts : a hard coded OSB_LOG and a variable +<Project_Name> part+
    This log message gets recorded in the manged server log file as : Info: OSB_LOG:<Project_Name> Request Message Processed successfully
    At WLS
    You have to configure the logging settings of the server so that this log message reaches the domain logger. For e.g. server should be configured to broadcast to domain logger at severity info and above if you want to get the above message
    Startup class
    This startup class will be deployed to the admin server. What it does is in the startup method gets the domain logger and registers a custom handler to it. The custom handler is implemented to inspect each LogRecord it gets from domain logger to check for the presence of hard coded string (OSB_LOG) . If the record has this string then it understands this log record has come from OSB application and not from any WLS subsystem and hence this message is important to it. Next step is to determine the logger name by getting the <Project_Name> from the Log Record. It creates a new logger with the same name as that of Project_Name and logs the message with the same severity as in the original message.
    One key advantage of this is that is if your OSB is deployed to a cluster, you will get log messages from all managed servers for that particular project ( or a proxy service) at one location.

  • Using filter in PAPI-WS to search instances based on project variables

    Hi All
    I wanted to search the BPM instances from my external application. Used PAP-WS to do that.
    To be precise, I was using the filterbean, and have set the process scope, status scope, and the variable on which I want to filter.
    However, I noticed that if the variable specified in the filter is a 'project' variable instead of the 'instance' variable for the process, then BPM does not
    search the instances and throws an exception.
    The code works fine if the variable in filterbean is an instance variable in the process.
    Is it possible to search for the processes based on the values of project variables?
    Below is the code snippet and the exception details.
    Code snipppet:
    PapiWebService port = initializePapiWS(participantId); //private method, dont bother about this
    ProcessIdSetBean b = new ProcessIdSetBean();
    List<String> processids = b.getProcessIds();
    processids.add("/MYPROCESS");
    FilterBean fb = new FilterBean();
    SearchScopeBean ssb = new SearchScopeBean();
    ssb.setParticipantScope(ParticipantScope.ALL);
    ssb.setStatusScope(StatusScope.ALL);
    fb.setSearchScope(ssb);
    List<FilterAttributeBean> fabList = fb.getAttributes();
    FilterAttributeBean fab =new FilterAttributeBean();
    fab.setVariableId("messageNo");
    fab.setComparison(Comparison.IS);
    fab.setValue("123");
    fab.setIsParametric(false);
    fabList.add(fab);
    InstanceInfoBeanList iabl = null;
    try{
    iabl = port.processesGetInstancesByFilter(b, fb);
    catch (OperationException_Exception ex)
    Exception:
    An exception occurred while executing a transaction. Details:
    An error occurred while accesing the database.
    Detail:SQL statement: 'unknown'
    Caused by: Syntax error: Encountered "null" at line 1, column 575.
    fuego.transaction.DatabaseException: An error occurred while accesing the database.
    Detail:SQL statement: 'unknown'
         at fuego.server.persistence.jdbc.JdbcProcessInstancePersMgr.getInstancesByFilter(JdbcProcessInstancePersMgr.java:527)
         at fuego.server.persistence.Persistence.getInstancesByFilter(Persistence.java:329)
         at fuego.server.ProcessInstanceManager.getInstancesByFilter(ProcessInstanceManager.java:132)
         at fuego.server.AbstractProcessBean$34.execute(AbstractProcessBean.java:1666)
         at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:304)
         at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:470)
         at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:551)
         at fuego.transaction.TransactionAction.start(TransactionAction.java:212)
         at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:123)
         at fuego.server.execution.DefaultEngineExecution.executeWithoutComponentImmediate(DefaultEngineExecution.java:199)
         at fuego.server.execution.EngineExecution.executeWithoutComponentImmediate(EngineExecution.java:95)
         at fuego.server.AbstractProcessBean.getInstancesByFilter(AbstractProcessBean.java:1660)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.lang.JavaClass.invokeMethod(JavaClass.java:1410)
         at fuego.lang.JavaObject.invoke(JavaObject.java:227)
         at fuego.component.Message.process(Message.java:585)
         at fuego.component.ExecutionThread.processMessage(ExecutionThread.java:780)
         at fuego.component.ExecutionThread.processBatch(ExecutionThread.java:755)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:142)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:134)
         at fuego.fengine.FEngineProcessBean.processBatch(FEngineProcessBean.java:244)
         at fuego.component.ExecutionThread.work(ExecutionThread.java:839)
         at fuego.component.ExecutionThread.run(ExecutionThread.java:408)

    Hi Mikael,
    Thank you for your input. Sorry for my delayed response, I was not alerted that anyone had replied. Anyway, the code you show above, as far as I know, will sort the results by a formula, but not limit results to that formula. For now we've temporarily settled
    on this approach of sorting by distance as this still gives value to the end user. We can also write some JavaScript to display the distance for each item using the longitude and latitude values for each item.
    In my mind that query above needs something similar to "between dates" (i.e. Range) syntax whereas we would need "within a geolocation distance".
    I admit that my knowledge of refiners is not great so I might just need to spend some time with them to understand this all better but at the moment I still don't see how you limit the result set. You could limit the results in JavaScript after the search
    has run (i.e. hide items that aren't within the given distance) but this would break the interaction with the other refiners on the page, especially if they are displaying counts (that are based on the original query). Unless there is an event
    we can hook into and filter the search results as a last step before they (and the refiners) are rendered on the page?
    Thanks for your input,
    James.

  • Project Manufacturing just to stock material based on Projects

    Hello Dina / Experts,
    I am in situation where customer is in Real estate business using construction of properties and giving it on rentals or sell.
    Customer has a unique requirment to stock the material related to constructions based on the projects. I guess only project manufacturing can fulfill this requirment Am I correct? But does it advisable to iimplement project manufacturing only for this requirment? Is there any other cost effective approch to fulfill this requirement?
    Does there any white paper available on Oracle Project Manufacturing Functionality and setups avaialbe with you or NET?
    Please help.
    Thanks
    Edited by: oracle_samba on Mar 8, 2013 1:15 AM

    Hi
    when Customer wants to stock material and correspond to project, ideal scenario is to use Project manufacturing and perform PJM setups
    refer for setups Oracle Project Manufacturing setups
    with regards to construction project manufacturing setups are minimal, it is pretty clean with cost effective and control if you use Project manufacturing and Project costing
    Thanks
    Krishna

  • Is it possible to have "Condition based custom project field entry in project detail page"

    Hello All,
    In PWA, In Project details page, when we add Displayed Project fields into the Project Information page, Is it possible that I have a custom enterprise field and based on its selection, I can choose the other field in that page.
    I mean, say i have a Custom field in project page as 'Hardware' which has a lookup of say :
    CD
    DVD
    Flash Drive
    External HDD
    Cloud etc.,
    Then when a user selects any one of these. then the below appearing options will be based on this selection. 
    Say user selects cloud, then the next project field should be like Public, Private or Hybrid. Which is not same when user selects other fields.
    I did not find any OOB solution for this. So can anyone please guide me how can I achieve this in PWA, so that these fields may be used as enterprise custom fields, which can be later used for Reporting purposes.
    Thanks,
    Shanky

    Hello,
    You could adopt this no code out of the box option approach:
    http://psbehindthescene.blogspot.co.uk/2014/04/cascading-custom-fields.html
    Or potentially look at adding JavaScript code to the page to do this programmatically - not looked at doing this but it should be possible.
    Another option might be Fluent Pros Auto Complete Manager - this might offer this functionality but I have never used it:
    http://www.fluentpro.com/productsautocomplete.html
    Paul 
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP | Downloads

  • Automator- Workflow for time worked based on project #

    Hello All,
    Trying to use automator to automatically do this workflow:
              I receive email that lists a project number as well as other info but proj. number is most important.
         I do the work etc..,
    Then generate an email sending an invoice for my time worked and other details based on that project number to ONE emaiil address; thus my invoice for payment.
    Goal:
              Thus keep track of which projects I have completed and sent an invoice for...
    Can anyone get me started. I don't see how to get automator to pull that project number out of that email message to begin.
    Thanks,
    Al

    Hi Al,
    No expert here, but see if you can modify this Applescript to extract it...
    http://macscripter.net/viewtopic.php?id=29554

  • How do you export a file based a project to Avid?

    We're trying to set up a completely file based workflow shooting on Sony xdcam.
    I have Premiere Pro CS6 in the office and I want to use it to make a rough assembly before spending serious money at at facility house.
    The idea is to dump all the rushes into the raid here and work on them for a couple of days, then take a drive with the media and timeline on it to the edit house.
    All my local edit houses use Avid.
    Following the instructions on this site I created an AAF. I can make the avid see the timeline but it can not link it to the media on the drive.
    Any ideas? I'd love to make this work. 

    To burn a DVD with iDVD from the latest version of iMovie, you have to export the movie using the Export button and select 480p as the size. Open iDVD and start a new project, then drag that exported movie file into the iDVD menu window, avoiding any drop zones you see.

  • Problem during Template based new Project Creation

    Dear Sir,
    I have created a Project Mask as TW-X-XXXX-0-0-0 . Subsequently I created a Template TW-X-XX99 also .
    For creating a new Project (using CJ20n) with a copy option based upon the Template project ,  I had given new Project as TW-A-RS10 .   
    Here in the newly created Project , the various WBS appearing are as TW-A-XX99-1 , TW-A-XX99-2 . However  We desire that these WBS must have appeared as TW-A-RS10-1 , TW-A-RS10-2 .
    Kindly guide us as what steps we should follow to resolve this problem pl .
    Rgds
    B V Mittal

    Hi,
    Now you can proceed in the following way.
    Step 1: Tr.Code:CJ91
                Create the Project Template as Level-1 as TW-X-XX99
                                                                 Level-2.1 as TW-X-XX99-1
                                                                 Level-2.2 as TW-X-XX99-2.
            Once you save the Project, release it to create your operative project by using it.
    Step 2:Now Create your Operative Project By using above template.
                1.Goto CJ01, then enter the following inputs.
                2.project def. : TW-A-RS10
                3.Project Profile: As required-mandatory
    In Template Section give the following Template Info:
                4.Std. project def.:  TW-X-XX99
                5.Enter.
                6.Now you can entered into project Definition screen.
                7.Click on WBS Icon on the header.Now you will entered into WBS Element hierarchy Screen.
             8.Here select all WBS elements.
                9.Click on Replace button on the header.
                10.you can get the popup, here you can enter the following information.
                   search:X
                   replace with:A
                11.click on Enter button on the popup.
                  again repeate the same process to replace XX99 by RS10,
              Click on Replace button,
              Search :XX99
              Replace with : RS10
              Click on Replace button on the popup.
             12.Now for all wbs elements have modified as "TW-A-RS10" and you can see as you expected
                                           Level-1 as TW-A-RS10
                                                                Level-2.1 as TW-A-RS10-1
                                                                Level-2.2 as TW-A-RS10-2.
    13.Click on "check" button on the header.
    14.click on "Include" button on the header.
    15.Save it.

  • Report based on project codes

    Dear all,
    I have a number of projects in our system with different codes and I would like to produce a report with the various Business Partners (BPs) with their different account balances displayed as per the various projects.
    This is very important because a BP can have more than one project code assigned to them .
    I have tried the Query Generator but this is not working for me since the query generates aggregated values of account balances rather than separated balances as per a specific project code.
    Any help will be appreciated.
    Regards,
    Davis M Onsakia

    Hi
    Please Check if the following solution work for u
    in SAP B1 2007 PL 08
    In most of financial  report there is a tab named expansion press it cheek the project code and  select the project code or range of project code and also BP  u will get transaction related only to the selected BP and selected  project Code .
    please let me know if it works
    I will help you if it does not work .
    Avtar Singh

  • Authorization based on project code

    Hi All
    Can we base our authorizations on the basis of project code. Can a user be authorize for a project so that user cant see orher project's information.
    Thanx in advance

    Unfortunately this is not a case in SB1. You have to find a workaround, like queries, on authorizations or use documents ownership or develop something.

Maybe you are looking for

  • How to get 2 Dates of a specific day From a Pay period

    Hi I have a date range (Pay period). now from the start date i Need to find out both Dates of a specific day of that Pay period. For Example If i know the date range is 01/06/2007 to  01/19/2007 Then I need to know what are the dates for both Saturda

  • No picture on isight - just green

    Hello could someone help me? My isight was working fine, but now when i open photo booth i simply get a plain green background and no image; If i take a picture, the picture is also a blank green photo. It was working fine until a about 2 days ago? W

  • Error code 42110 why? and how do I solve it?

    Can anyone help keep getting error message 42110 download incomplete.. Why does it keep doing this and how ca I fix it? Many thanx

  • Unlaunch a Site

    I developed a site for a Studio/Gallery using Muse, with the intention of hosting it with one of my five  Business Catalyst sites. After I launched the site, I discovered that there a several issues  that makes Adobe BC a bad choice for hosting throu

  • HT201272 i did not get "fruit ninja HD" after i pay

    order number:MHDYMFJTVF I did not get "fruit ninjaHD" after I paid on yesterday. fruit ninjaHD still ask me to pay$2.99 when I receive a recipt today. now,I don't want this app, can I apply a refund for this?