Aggregated phase in phase out profile

I am facing one issue while running forecasting for phase in phase out profile at aggregated or base pack level.
I have a scenario in which consider base pack level is "A" and under this bas pack are product codes "B", "C" & "D"
I have assigned phase out profile for product "D" as it is being phase out after certain months and I am executing forecast at pack size level which is "A." After running the forecast I get message from system that "maximum number of periods has been processed which is 52 and phase in phase out profile can not be executed".
However if I execute the forecasting at product level it carries out the forecast. and runs the phase out profile.
In the settings for life cycle planning transaction in basic settings I have checked aggregated phase in phase out profile for life cycle planning
Please inform how this can be resolved.

Hi Jignesh,
Did you check the spool list after batch job run, to see if  Phase in/out is appled to the material for which life cycle is assingned. Also I would advice to go and double check all setting is dates are defined correctly etc.
I would presume you might have done all these, if you still have the issue check notes 1222953 and 1223746 and apply. This should resolve your issue.
REgards
siva

Similar Messages

  • Tracing Phase out Profile

    Hi All,
    Just a quick question...
    is it possible to trace phase out profile i.e (transaction MSDP_FCST1)
    I just wanted to know who has created the phase in/out profile?
    Thanks and best Regards
    Kusum.

    I would suggest moving towards ODI. DIM is basically the Informatica ETL tool and should have similar features / complexity as ODI.
    I have personally used EPM Architect and it mostly works -- the mostly is the gotcha. When something goes awry it can be difficult to troubleshoot and may also result in loss of data. The more complex your application the more likely you run into issues. If I recall maximum formula size for EPMA is 2048 bytes -- planning supports 8192 bytes natively; there is an open defect/enhancement to resolve this.
    If you do go down the route of EPM Architect ensure you are patched to the latest patch levels which can be obtained through Metalink3.oracle.com using your support ID.
    Good Luck,
    -John

  • Abt  Like, Phase-In and Phase-Out profiles

    Hi,
        Can some1 explain me what is<b> Like, Phase-In and Phase-Out profiles</b>?
    What is it's good for?
    Thanks in advance.
    Best Regards,
    Siva.

    Hi Sivaprakash.
    Like modelling (including phase in/phase out) is primarily used for introduction of new products and is normally called Lifecycle Planning:
    Example:
    Suppose you are introducing SKU2 to replace SKU1.
    You want to forecast demand for SKU2 but there is no history for this new product.
    You could use a Like profile to use the history of SKU1 to forecast demand for SKU2.
    You could use a phase-in profile to model the build of demand of SKU2 from zero up the forecast demand (it is very unlikely that demand will go from 0 to 100% of forecast from day one)
    Similarly, you could use a phase out profile for SKU1 to model the fall of demand from 100% forecast to zero.
    All together, the transition of demand from one product (SKU1) to a replacement product (SKU2) can be fully modelled using these profiles.
    This is all quite well documented in <a href="http://help.sap.com/saphelp_scm50/helpdata/en/8f/9d6937089c2556e10000009b38f889/frameset.htm">help.sap.com - lifecycle planning</a>
    Hope this helps.
    Mark
    Message was edited by:
            percx

  • Phase-in/phase-out profiles  data extraction to SAP BW

    Hi All,
    I am working on extracting Phase-in/phase-out profiles data from APO to BW for reporting purposes. I came across a table
    /SAPAPO/FCST_LC1 in APO system which has this data and the Idea is to use Generic data source on top of this table and extract it to BW.
    But i am looking out for any possibility of this being done using any standard data source. I need pointers from anyone who have worked on extracting this data.
    Is there any standard datasource , planning object , BAPI on this?
    Any help is appreciated.
    Thanks,
    Satish

    Hi,
    The datasource 2LIS_17_I0NOTIF - Notifications needs to be installed from RSA5 and activate in RSA6 in R/3 side.
    You should be able to see green lights in LBWE in R/3 side.
    Then, in BW side, RSA1>Install from Content> Cube
    Hence, your Cube with entire dataflow will be installed and activated in BW system.
    To load data, you have to fill setup tables in R/3 side and init with data transfer in BW side. This will bring all the history data and your subsequent delta will be regularized in BW.
    Regards,
    Suman

  • Netflix movie resolution phases in and out of high and low.

    When I'm watching a netflix movie even with WiFi the resolution phases in and out of high and low resolution. Does anyone know what is causing this?

    Yes, you download speed is changing. If the download speed is not great enough for HD it reverts to SD.

  • Using Get Data From Aggregation event class in SQL Profiler - SSAS 2012

    Hi,
    I'd like to understand better the use of the Get data from aggregation event class in SQL Profiler to monitor a MDX query and which info provide. Fe, does it return the MDX query? Is it possible to use this event class in order to monitor MDX query vs a
    Tabular model?
    In the TechNet documentation, this event class is handled briefly.
    Thanks

    Hi pscorca,
    This event is raised when the storage engine reads data from an aggregation, it may have a negative impact on performance when turned on. If you need to monitor SSAS instance status, we can also use dynamic management view:
    Use Dynamic Management Views (DMVs) to Monitor Analysis Services:
    http://msdn.microsoft.com/en-us/library/hh230820.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • Is there any function module that brings out profile planner

    Hello experts,
    Is there any function module that brings out profile planner (I want to set planner profile as u201CSAP800u201D. I am using 7KE1 transaction.
    Example: I know, the FM - K_KOKRS_SET_BATCHINPUT will set the controlling area to 'CTIC' for the entire batch input process.
    Thanks in advance.

    look at these fms..
    CACS_PROFILE_PARTNER_READ
    CACS_PROFILE_SHOW

  • Multiple columns are specified in an aggregated expression containing an outer reference...

    Hi guys, probably I am still sleeping, but why in the first select I retrieve 0 as bb and in the second I retrieve
    Multiple columns are specified in an aggregated expression containing an outer reference. If an expression being aggregated contains an outer reference, then that outer reference must be the only column referenced in the expression.
    create table car (N_state varchar(20), city varchar (20), cars int) insert into car values('California', 'Los Angeles',1000), ('Ohio', 'Columbus', 300), ('Texas', 'Austin',400), ('Florida', 'Miami',800), ('Florida', 'Orlando',200)
    with cte as ( select *, (select sum(cars) from car) as bb from car) select *, cars, bb, cars/bb as cc from cte
    select *, (select sum(case when c1.N_state=c2.N_state then cars else 0 end) from car c2) as bb from car c1
    Many Thanks

    The 0s are due to implicit conversion as operands are of type int
    Modifying it as below will wok fine
    ;with cte as ( select *, (select sum(cars) from car) as bb
    from car) select *, cars, bb, cars*1.0/bb as cc from cte
    Now for second part you need to write query as below
    select *, sum(cars) over (partition by N_state) as bb from car c1
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Will server push out profile changes without a FQDN?

    Setting up Server on OS X 10.9. I do not have a FQDN on my network (using networkname.lan). Will server still be able to push out profile manager changes to iOS devices if they are outside of the network? Inside the network? I'm not sure how Apple push works.
    I need to enforce policies on iOS devices.

    Your server needs rock-solid DNS, with a proper FQDN available all over the internet, and the server must be accessible from outside your private intranet.  Without it, your client devices will not reliably be able to check with the server for updates.
    You don't need it for client devices but you do need it for the server.  Get that sorted out and things will work better.

  • Read spreadsheet file for Analog Out Profile using DAQmx

    I am trying to read a .txt file in, then output the Analog out profile (Daqmx) vs. time.  The first column is time is (ms) in .001 sec increments.  The second column is the Analog out voltage I want to output.  I want to read the profile in, and ouput the a Analog out voltage incrementing in .001 sec intervals (or whatever the time increments are in the .txt file).  The problem I am having is, it reads in the whole file and outputs it in a fraction of a sec, instead of incrementing by the time.  I attached a screen shot of what I have.  Any help would be great. Thanks 
    Attachments:
    screen shot read.jpg ‏75 KB

    You are reading the timing but not doing anything with it. You've specified Analog Wfm 1Chan NSamp for the DAQmx Write but you did not create the waveform data type. Use the Build Waveform function on the Waveform palette and wire in your array to the Y (waveform component) input and the time interval to the dt input.
    Message Edited by Dennis Knutson on 04-06-2006 08:56 AM
    Attachments:
    Build Waveform.JPG ‏6 KB

  • Error in KMC installation. waiting 1800 seconds at 2nd phase and errors out

    Hi,
    I am installing KMC and on 2nd phase "Deploy Content Mangement and Collaboration Components " it hangs stating
    Portal Configuration upgrade (66 of 69 done.0 with warning Time elapsed
    <Number> seconds. waiting....... ".
    Note 779699 referred. In the file cf_installation.report there are no
    two lines. it has only one line. Please help..
    Thanks

    Hi Tony,
    you should adjust the timeout parameters and do a redeployment again, in order to fix this problem.
    Have you checked the two SAPNotes mentioned in your note (779699): Note: 769859 (About the parameter: PingReplyTimeout)
    and Note: 752049 (About the parameter: AdditionalLoadTimeOut)???
    You might experience problems seeing the second Note so I paste the important paragraph here:
    a) ATTENTION : Duration of configmerge
    By starting the engine after deployment a CM configmerge is initiated as part of the upgrade
    process.
    Depending on the hardware the configmerge may take 15min up to 2h.
    Do NOT restart the servlet engine before you're absolutely sure that the config merge has
    finished.
    Wait till the portal is back on its own.
    View the status of the configmerge in the latest config.*.trc file, located in
    ..usrsap<j2ee instance>clusterserver.
    The status of the merge process is also written to the error.log available under:
    ..usrsap<j2ee instance>clusterservermanagerconsole_logs
    Wait for this entry in processing the upgrade 41 out of 41 : "The upload sequence is now
    complete, all the upgrades have been performed."
    b) ATTENTION : Beware of Timeout definition for SAP J2EE
    Be sure that the J2EE engine is not stopped due to a timeout definition during the merge.
    This would cause an undefined status of the system. Toavoid this, set parameter
    AdditionalLoadTimeout=10800 (in seconds) to an appropiate value for that upgrade
    (..usrsapxxj2eej2ee_00 clusterservermanagerssettingsServiceManager.properties).
    Additional timeout parameter since J2EE PL 22
    This AdditionalLoadTimeout parameter needs also to be set in ServiceManager.properties
    for state (..usrsapxxj2eej2ee_00 clusterstatemanagerssettingsServiceManager.properties).
    The configtool can also be used for checking and setting these parameters.
    If server node is started by the r3startup service of the dispatcher
    Set the r3startup to manual and call any "go" directly.
    Troubleshooting a timeout
    If run already into timeout and stucked on certain stage of config- merge it's usually
    sufficient to adjust timeout parameters and choose SDM option 'Redeploy' and do another
    deploymenent and subsequent configmerge, normaly this keeps the system in a valid state.
    Hope this helps,
    Robert

  • Errors in PHASE DIFFEX phase during the CRM 6.0 upg from CRM 5.0

    Hello,
    I am in the process of upgading our CRM systems from CRM 5.0 version to
    CRM 6.0 and having issues at the PHASE DIFFEXPADDE during the upgrade
    right after the DB_ACTION_LOWQ1 phase and ADJUSTCHK being the previous
    phase.
    We are currently at CRM 5.0 dual stack system on Linux X86_64 SLES9 and
    DB - Oracle 10.2.0.2.
    I was able to finish the PREPARE phases on both ABAP & JAVA stacks
    successfully.
    The phase DIFFEXPADDE is failing with a error message in the
    DIFFEXPA.ELG which I have mentioned below. I am also attching few other
    related logs for your reference in the attached zip file
    (DIFFEXPA_logs.rar)
    DIFFEXPA.LOG
    UpgDialog.log
    SAPECCI700.C15
    TP00.ECO
    SAPup.log
    "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ADD ON OBJECTS (DATA)-Export ERRORS and RETURN CODE in SAPECCI700.<SID>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    2EETW190 "INDX" "WFMFC_INDTOR_GRP 01 " has no active
    version.
    Long text:
    Cause
    You have tried to export a Dictionary object that has no active
    version. The reason for this probably is that the author of the DD object has forgotten to activate it.
    System Response
    The transport request is not released.
    What to do
    Activate the Dictionary object and repeat the export.
    2EETP200 Export with errors, request will not be imported
    Long text:
    Cause
    The export was finished with errors or terminated (return code >=
    8).
    System Response
    The request is not imported. Instead it is set back to "can be
    changed"
    in the source system.
    What to do
    The export log contains remarks concerning the reason for the
    incorrect
    export. Correct the error and repeat the export.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ADD ON OBJECTS (DATA)-Export ERRORS and RETURN CODE in SAPECCI701.C15
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ADD ON OBJECTS (DATA)-Export ERRORS and RETURN CODE in SAPECCI702.C15
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    I am stuck at this step and unable to move forward until I get past
    this error. Please let me know how do I proceed and if you have any
    more questions.
    Would appreciate your early help!
    Thanks in advance!

    I was able to get past this issue by logging in to the client 000 and
    activate the object WFMFC_INDTOR_GRP from transaction SE11.
    Dictionary Object --> Activate from the menu bar. Gave me few warnings
    but did not error out.
    Hence went past the phase and the upgrade is progressing as of now.
    However, can you please confirm if this is a correct fix or do you want
    me to do anything different since I have not reached the MODPROF_TRANS
    phase yet.
    Thanks

  • Phase listener phase invoking doubts?

    hi experts,
    i wrote a method named x in Application module it return will some string. i expose that method on client interface.
    i invoked the method x using methodaction in my jsff.
    ok fine.
    i had jsff presented inside bounded TF
    in my jsff i had some panel tabbed. while clicking the jsff the method which i wrote was to be executed.
    public class x implements PhaseListener {
           public void beforePhase(PhaseEvent phaseEvent) {
            System.out.println("Before Phase");
            if (phaseEvent.getPhaseId() == PhaseId.RENDER_RESPONSE)
            BindingContainer bindings = getBindings();
            OperationBinding oper = bindings.getOperationBinding("Scheme");
            Object result = oper.execute();
            System.out.println("result" + result);
            if(result.equals("P"))
                advReqFlag.setDisabled(false);
                AdfFacesContext.getCurrentInstance().addPartialTarget(advReqFlag);
    }but it always return null pointer.
    if wrote in after phase no more exception but never executed
    error is self explanatory. but i unabled ? how can i fix this?
    Before Phase
    <UIViewRoot> <notifyPhaseListeners> Exception
    javax.el.ELException: java.lang.NullPointerException
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at javax.faces.component.UIViewRoot.notifyPhaseListeners(UIViewRoot.java:608)
         at javax.faces.component.UIViewRoot.notifyBefore(UIViewRoot.java:510)
         at javax.faces.component.UIViewRoot.encodeBegin(UIViewRoot.java:564)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:928)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:800)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:294)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:214)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.NullPointerException
         at com.rits.suplr.view.Listeners.PrintPage.beforePhase(PrintPage.java:79)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         ... 52 more
    <UIViewRoot> <notifyPhaseListeners> Exception while processing expression #{PrintPage.beforePhase} for attribute beforePhase.

    ok coming to your line.,
    this am method.
    public String Scheme()
            HrmBustripCntrlVOImpl vo1 = (HrmBustripCntrlVOImpl)this.getHrmBustripCntrl1();
            Row row1 = vo1.first();
            System.out.println("Scheme:" + row1.getAttribute("HbtrcScheme"));
            return (String)row1.getAttribute("HbtrcScheme");
        }in my jsff one the panel tabbed
    <af:selectBooleanCheckbox value="#{bindings.BtrAdvReqFlag.inputValue}"
                                                  label="Advance Req."
                                                  shortDesc="#{bindings.BtrAdvReqFlag.hints.tooltip}"
                                                  id="sbc1"
                                                  autoSubmit="true"
                                                  disabled="#{bindings.Scheme.execute eq 'P' ? true : false}"/> //herecheckbox is not disabling. i dont know is this right way to disabling some of the component based on some condition while jsff renders?
    -- edited lately
    is there additional things have to be added.

  • How to find out profile optoins value for user from database?

    I have PA debug enabled for a particular user in my ebusiness suite environment. I need to find out for what user is it enabled.
    FND_PROFILE_OPTIONS shows that its enabled for user and responsibility level. But I am not able to find out for which user/responsibility is it enabled, as this only shows flags.
    Can someone please tell me what table/view I need to check for that.

    Hi;
    Please see:
    How To Check If a Profile Option Is Set In Oracle Application [ID 470102.1]
    How to list E-Business Suite Profile Option values for all levels using SQLPlus [ID 201945.1]
    How to Search all of the Profile Options for a Specific Value [ID 282382.1]
    Regard
    Helios

  • Spooling out profile that are not being used

    hi guys,
    is there anyway to spool out those profile that are not in used or assigned to any username or roles?

    flaskvacuum wrote:
    hi guys,
    is there anyway to spool out those profile that are not in used or assigned to any username or roles?
    SQL> CREATE PROFILE test LIMIT
      2     FAILED_LOGIN_ATTEMPTS 5
      3     PASSWORD_LIFE_TIME 60
      4     PASSWORD_REUSE_TIME 60
      5     PASSWORD_REUSE_MAX 5
      6     PASSWORD_VERIFY_FUNCTION null
      7     PASSWORD_LOCK_TIME 1/24
      8     PASSWORD_GRACE_TIME 10;
    Profile created.
    -- Created but not assigned --
    SQL> select distinct profile from dba_profiles where profile not in (select profile from dba_users);
    PROFILE
    TEST
    SQL>

Maybe you are looking for