APO DP Unable to save negative forecast values

Hi,
We are not able to generate negative statistical forecast in our system in the background or in the foreground. When the system is supposed to generate negative values, we receive the message "Forecast will be negative". Our business requirement is to allow negative values to be generated.
I am using SCM7 EHP2. All key figures allow negative values to be entered, we did manual test entering data in the data view then saving -xx in cells and it works well. When background jobs are ran, the messages that are supposed to allow negative values are checked.
Any ideas?
Thanks,

Hi Maxence,
I have had a similar requirement to see negative forecast.
Anyway, it seems it is a standard DP behaviour. Take a look this note.
1745808 - Negative forecast values set to zero
According to this note, If you do not want to set negatve forecast value to zero, you have to modify the standard program to set the global parameter GV_NEGATIVE_FORECAST in class  /SAPAPO/CL_PE_FCS_SERVICE with value 'X'.
Best Regards,
Mariano

Similar Messages

  • Setting Negative Forecast Values to Zero

    In 7.0 we used a option - Setting Negative Forecast Values to Zero.
    But after upgrade to 7.3 this option is missing and I can find any information about this.
    Can we open the option in 7.3?
    Anatoly

    Hi,
    thanks for your reply.
    mls qos
    interface GigabitEthernet3/34
    description *** DATA VLAN 35 - VOICE VLAN 34 ***
    switchport
    switchport trunk native vlan 36
    switchport trunk allowed vlan 34,36
    switchport mode trunk
    mls qos trust dscp
    no cdp enable
    spanning-tree portfast trunk
    If i don't include the global 'mls qos' command then the voice packets keep the dscp 46 value.  If I add the mls qos command this causes the switch to set the dscp values to zero.
    Thanks again 
    ps.  there are some other mls commands on the switch... i don't know if these could interfere but they were already on there so i'm reluctant to remove them..

  • PowerShell - Unable to save Default Column Values

    I have created a document library (A) in a Team Site. I have created 2 folders (B and C) inside the document library. I have added a content type to the library. The Content Type contains 2 columns rmName and rmKey (both internal names). I want to set
    a column level default on the column rmKey for folder B only. I tried the following code and this does not set the default:
    $web = Get-SPWeb "http://abc:39325/sites/COSC"
    $list = $web.Lists["A"]
    $defaults = New-Object -TypeName Microsoft.Office.DocumentManagement.MetadataDefaults -ArgumentList $list
    $folder = $web.GetFolder("sites/COSC/A/B")
    $defaults.SetFieldDefault($folder, "rmKey", "Default Value")
    $defaults.Update()
    I tried replacing $folder with $list.RootFolder. This works, but it sets the default on the Library and both Folders instead of only folder B.
    $web = Get-SPWeb "http://abc:39325/sites/COSC"
    $list = $web.Lists["A"]
    $defaults = New-Object -TypeName Microsoft.Office.DocumentManagement.MetadataDefaults -ArgumentList $list
    $defaults.SetFieldDefault($list.RootFolder, "rmKey", "Default Value")
    $defaults.Update()
    What am I doing wrong in the first script? I feel there is something wrong in $folder. I tried using the Guid of "B" as weel as recursion to get folder but was not able to set the default value on "B". 

    I was able to get it to work by changing the way I get $folder
    $defaults = New-Object -TypeName Microsoft.Office.DocumentManagement.MetadataDefaults -ArgumentList $list
    $folder = $list.RootFolder.SubFolders["B"]
    $defaults.SetFieldDefault($folder, "rmKey", "Default Value")
    $defaults.Update()

  • Unable to save lookup field data in SharePoint 2013 online list

    Dear Support,
    I had successfully created provider hosted app and deployed on SharePoint 2013 online site, in my project I created orderservice.asmx.cs web service and write a code for save record on SharePoint
    2013 online list as I mentioned below and calling on App1.js file.
    But I am unable to save lookup field value as mentioned below code
    Customer is a lookup field I want to save data in SharePoint 2013 online list( Order)where I had successfully
    inserted text field  data (Title &
    Special_x0020_Instruction).
    i am getting error as mentioned below
    500 Internal Server Error {"Message":"Invalid web service call, missing value for parameter: \u0027Title1\u0027.","StackTrace":"   at System.Web.Script.Services.WebServiceMethodData.CallMethod(Object target, IDictionary`2
    parameters)\r\n   at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams(Object target, IDictionary`2 parameters)\r\n   at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData,
    IDictionary`2 rawParams)\r\n   at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}
    Please let me know the code how to insert lookup field value (Customer)
    in SharePoint online list.
    OrderService.asmx.cs
    Public
    int InsertOrder (Order
    orderRecord)
                pwd.MakeReadOnly();
                clientContext.Credentials =
    new
    SharePointOnlineCredentials (myUserName, pwd);
    try
                  Web
    oWeb = clientContext.Web;
    ListCollection lists = oWeb.Lists;
    List oOrderlist = clientContext.Web.Lists.GetByTitle("Order");
                    clientContext.Load<ListCollection>(lists);
                    clientContext.Load<List>(oOrderlist);
                    ListItemCreationInformation
    itemCreateInfo = new                 ListItemCreationInformation();
    ListItem oListItem = oOrderlist.AddItem(itemCreateInfo);
                    oListItem["Title"]
    = Title;                        listItem["Special_x0020_Instruction"]
    = orderRecord.Instruction;
                        listItem ["Customer"]
    = orderRecord.CustomerId;
                        listItem.Update();
                        clientContext.ExecuteQuery();
    return 1;
    catch
    return -1;
    App1.JS
    $("#Save").click(function
    debugger;
    var OrderProfile = $('#orderprofile').val();
    var CustomerId = $('#exCustomerlist').jqxComboBox('getItem',
    $('#exCustomerlist').val());
    //var Instruction = $('#instruction').val();
            alert(OrderProfile);
            alert(CustomerId);
    var obj = {
    'Title': OrderProfile,
    'Customer': CustomerId }
            $.ajax({
                url:
    "OrderService.asmx/InsertOrder",
                type:
    "POST",
                dataType:
    "json",
                data: JSON.stringify(obj),
                contentType:
    "application/json; charset=utf-8",
                beforeSend:
    function (XMLHttpRequest) {
    //Specifying this header ensures that the results will be returned as JSON.
                    XMLHttpRequest.setRequestHeader("Accept",
    "application/json");
                success:
    function (response) {
                    $(".errMsg ul").remove();
    var myObject = response.d;
                    alert(myObject);
                error:
    function (response) {
                    alert(response.status +
    ' ' + response.statusText +
    ' ' + response.responseText);
    Regards,
    Akhilesh

    Hi Alex Brassington,
    Thanks for your reply.
    I am having the Site Administrator Permission of the public site.
    I am having the permission of Company Administrator of that site but still unable to find
    Device Channel on Site Setting. still I gave the user full control from Site Permission but nothing is happening.
    What should I do next?

  • Negative forecast release to snp

    Hi,
    we have a requirement to be able to release negative forecast values from dp to snp, i tried this out using the standard transaction sapapo/mc90 but whenever i release negative forecast values it zeroes it out in snp. Though we get a message that negative forecast values zeroed out.
    Is it possible to release negative forecast values to dp, if yes how?
    Thanks

    As far as i know, You cant release negative forecasts into SNP by MC92
    This converts the Time series to Order Series Data. There cant be a negative Forecast in SNP . Forecast is already a negative requirement. So a negative forecast is the equivalent of a reciept
    Why do you need negative forecast in SNP. If its for display purposes use TSCOPY and copy to a time series KF in SNP planning area.
    Else, using some mechanism, Filter out the Negative forecasts and make it absolute values and pass it on to SNP as Planned orders instead of Forecasts (you can change the order type when you release forecast from FA to something that is planned orders) you can pass the non-negative as forecast.

  • Negative Forecasts appearing in APO-DP

    Negative forecasts appearing in APO-DP against some brand/packs.Any reasons why????

    Hello Kailesh,
    Sometimes the planning book doesn't show what is saved in livecache. This is especially true when you have some default macros which gets executed when you load data. The default macros will run and therefore the planning book will show the result of the macro computation and not exactly what is saved in livecache. For example, if you have a macro in one planning book which computes the Net Forecast = Stat + Adjustments. Every time this planning book is run Net Forecast gets computed and also gets saved when the user clicks the save button.  Now, imagine what will happen if stat or adjustments gets changed somewhere else (e.g. thru another planning book or thru stat forecasting). When you go the first planning book in display mode, you will see that the data for Net Forecast looks "correct". However, this is not what is saved in livecache.
    I suggest you try to check out your data using a planning book with no macros. You can also check out using RSA3 using the export datasource of your planning area. Both of these methods will show you what data was really saved in livecache.

  • ABAP report to display material wise forecasted value in sap APO

    Hi All,
    I want to create a ABAP report in which i want to display the forecasted values of the material from the planning book.
    Could anyone please help me with the information with any database table or the function module or any other source to get the forecasted value against the key figure ZCONSTR form the planning book data.
    It's very urgent.....Awaiting your reply.
    Edited by: Komal Bhutada on Jul 22, 2011 5:50 PM

    Hi,
    You can more details from transaction BAPI->Supply Chain Management ->Advanced Planning and Optimization ->PlanningBookAPS ->GetDetail2 .Here you can find input parameter and in detail documentation.
    Regards,
    Sunitha

  • Function that zero out negative forecast in APO DP (SCM 4.0)

    Hi,
      I tried to look for a thread about the above function but I have no luck.  Would you kindly share a light if you have come accross negative number being generated automatically? (no macro is set up for negating forecast)
    This is the note that I would found from SAP help, but there is no actual direction to get it.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/d5e13ffb118f15e10000000a155106/frameset.htm
    Thanks
    Anita

    it depends on the forecast strategy used....negative forecasts are automatically made zero by most strategies
    some forecast strategy will generate negative forecasts ( am not sure which of them do).. but in that case you can use a macro to make it zero
    I did not understand if you wanted Negative forecast or you want to zero out the negative ones
    pl check link... http://help.sap.com/saphelp_nw04/helpdata/en/a4/42e03fc2269615e10000000a155106/content.htm
    SCM 5.0 has Planning area parameters that will enable you to not allow non-sero numbers in KF

  • Unable to save the ALV layout variant and display of selection screen on F4

    Hi All,
    The end user wants to directly select the layout variant (SLIS_VARI). I have used the following code to display the layout variant on selection screen. But, I am unable to save the variant on ALV. Whenever I am trying to select the layout variants (by doing F4 on selection screen) its displaying "No Layout found".
    Following is the code for displaying layout variant:
    PARAMETERS: p_var TYPE slis_vari.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_var.
      PERFORM f4_variant CHANGING p_var.
    FORM f4_variant  CHANGING c_variant TYPE slis_vari.
      DATA: ls_variant TYPE disvariant,
                l_exit     TYPE char1.
      ls_variant-report = sy-repid.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant = ls_variant
          i_save     = 'A'
        IMPORTING
          e_exit     = l_exit
          es_variant = ls_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 2.
        MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF l_exit EQ space.
          c_variant = ls_variant-variant.
        ENDIF.
      ENDIF.
    ENDFORM.                    " f4_variant
    and following is the code for displaying the ALV:
    FORM edition_alv.
      ws_variant2 = ls_variant.
    * Call ALV editor in list mode
      IF p_list = 'X'.
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program      = ws_extract1-report
            i_callback_user_command = ws_user_command
            is_layout               = ws_layout
            it_fieldcat             = wt_fieldcat
            it_sort                 = wt_sort
            i_save                  = 'A'
            is_variant              = ws_variant2
            it_events               = wt_events[]
          TABLES
            t_outtab                = wt_edition.
    * Call ALV editor in grid mode
      ELSE.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program      = ws_extract1-report
            i_callback_user_command = ws_user_command
            it_fieldcat             = wt_fieldcat
            it_sort                 = wt_sort
            i_save                  = 'A'
            is_variant              = ws_variant2
            it_events               = wt_events[]
          TABLES
            t_outtab                = wt_edition.
      ENDIF.
    ENDFORM.  
    I am not sure whats going wrong, but I am unable to save variants.
    Please help.
    Thanks,
    Vishal.

    The F4 will display you the existing layouts only. So you need to save the layout first & then execute the report again & check if you are getting F4 values for that field.
    The Layout needs to get stored with variant.
    Regards,
    Mahesh

  • Unable to save data entered in editable field of IW37N output

    Hi Gurus,
    I have made one of the fields in IW37N ALV output as editable using exit IWOC0004. When I enter the values in the field, I am unable to save the data to the order. The orders are getting successfully released but the values entered are not saved in database. Please help.
    Thanks,
    Pramod.V

    Discovered that the problem was with the Adobe version. Updated version to 8.1.1 and installed  Active X control software and things started working.

  • Unable to save document as (Flash CS5 - BUG - OSX)

    I have upgraded my CS4 to CS5 on MAC OSX and i'm having problems saving new and existing fla files. It doesnt always do it but it's very anoying when you have done some work and are unable to save it.
    I get this message:
    unable to save document as (file name)
    please try saving to a different filename or location.
    even if i try to save as to a different location i get the same message, this ONLY happens in flash CS5 and does not do it on any other application or even flash CS4. To put it bluntly i am absolutely furious with this and when you pay this amount of money should not get this hassle for such a simple action.
    I have tried phoneing the adobe support line and it's a joke, you can't even understand the operator to even get anywhere and i just gave up having to repeat myself and asking them to repeat themselves.
    I would be grateful if someone out there knows an answer to this or have a contact email for adobe support that i can email them direct. As a flash developer it's critical i can get on with my work without worrying if my work will even save.
    Thanks in advance.
    UPDATE: I can save files in CS5 as CS4 documents but not as CS5, this is so annoying.

    I am having this same issue with Window 7 Professional 64 bit.
    It seems I can reproduce it pretty reliably but have only seen it since I started working with trying to import and export runtime shared font libraries.
    I create a new fla
    I create a font asset in the library and set it to import and specify a relative path to the shared swf.
    I save and test my swf and it works.
    I go back into the font asset and change the location of the font swf to another relative path (this file is loaded into a shell so the raltive path will change).
    After changing that import path I can no longer save the file even if I revert back to the previous value.
    I have repeated this process a couple of times.

  • How to configure for the give senario where we from APO demand planning, we provide baseline forecast into TPM

    Hello Guru's,
    Request for information on smart documentation on the integration between Trade Promotion Management and SCM-Demand Planning from an architecture perspective how to configure for the give senario where we from APO demand planning, we provide baseline forecast into TPM and from TPM promotions values can be considered in to APO demand planning: can anybody give me some insight on it.
    Thanks in advance.
    Kumar

    Hi Praveen
    There are several ways you can connect a DP system to a TPM. How are your interfaces and systems setup?
    Option1:
    Extract the baseline from APO to a BW cube, extract the data out of BW, may be using infospokes/open hub and pass it on to TPM.
    2. Have a custom program written in APO-DP to extract the selected keyfigure data at the aggregation level into an interface or a .txt file into APO directory and use some data transfer service such as EDI to take this data and send to TPM.
    In my experience it is simple to define an integration process. The much larger and complicated aspects are the date adjustments and the aggregation levels.
    Date adjustments:
    Understand the basis of the data in APO and TPM. APO is usually at the requested delivery date or material availability date ( when the customer like a store wants the product). However TPMs are usually at the consumption date ( when an end customer like you and me but from store shelf). Depending on the product and business style this can mean several days difference. Let's say it is 25 days on average, you need to add 25 days to APO base line date to get the TPM consumption date.
    Aggregation level:
    This can be product or customer. If the planning in DP is at product sku level and the TPM is at packs or brand level, you need to aggregate the data up before loading to TPM. The same with customer.
    To me the most complex part of the integration is to understand and transform the data in a meaningful way and a strategy to sustain this integration by keeping both DP and TPM in sync in terms of master data. Also important to have a process for identifying exceptions and failures. you send baseline from DP to TPM and if it fails, how do you know? how do you trouble shoot?
    Hope these help.

  • Oracle SQL Developer 1.5.5 Unable to save file

    I edit content of a column in a table I get this when trying to save change:
    Unable to save TABLE ... ("Failed to save changes").
    This error disappear when I do the same task in Oracle SQL Developer 1.1.3.
    Please help me!

    when I run:
    UPDATE "OWNFTS"."BONGDATHAMSO"
    SET LTDKQURL = 'http://soccernet.espn.go.com/fixtures?league=ita.1&cc=4716'
    WHERE ROWID = 'AAASBeAAGAAAAEgAAH' AND ORA_ROWSCN = '4238785';
    commit;
    from SQL Worksheet, there's "Enter Substitution Variable" window inform me to enter something in a textbox beside "CC:" label.
    Clicking "OK" or "Cancel" on this window with or without filling textbox has the same result:
    +0 rows updated+
    commit succeeded.
    AND the command which was cutting ORA_ROWSCN predicate:
    UPDATE "OWNFTS"."BONGDATHAMSO"
    SET LTDKQURL = 'http://soccernet.espn.go.com/fixtures?league=ita.1&cc=4716'
    WHERE ROWID = 'AAASBeAAGAAAAEgAAH';
    commit;
    fired the same " window
    but:
    +1 rows updated+
    +commit succeeded.+
    AND after refresh Table, I couldn't see the new value.
    Edited by: user11193632 on Aug 5, 2009 7:30 PM

  • Negative Planned Values in CJ40

    Dear Guru's,
    i am getting negative planned values in CJ40 against Order/Network column. I am unable to find the root of this value.
    Here i am using the network costing, BOM's and MRP run process. So can any one tell me how to find the root of that negative cost plan value.
    Reagrds,
    Rao.

    Hi Rao,
    Could you please perform the below steps?
    1. Execute the transaction CJEN for the affected project
    2. Execute the report BPDIST0 in SE38 for the affected project
    Should the problem still persists, please implement the report ZAIMPLDL
    from the attached note 887864.
    1. Execute the report ZAIMPLDL for the project
    2. Then execute CJEN and BPDIST0 again.
    Regards,
    Enrique

  • Unable to save a downloaded movie.."not enough movie data available"

    I downloaded the HD version of Sigur Ros - Heima from the Quicktime HD gallery page. Beautiful. I wanted to save it to view again later....the computer chugs, process bar crawls, and then stops saving with message "Unable to save movie..not enough movie data avilable"
    I tried downloading and savinmg the 480p version on my laptop with no problem..it "flattenedf" it and saved and plays back no problem. (G4 PB, 1.25 ghz, 512 ram)
    The computer having the problem is the one I turned on today for the first time, MacPro 2.67 ghz 5gb ram.
    Any ideas why this will not save? the whole movie must be in RAM and should be able to be saved to disk in a flash...
    thanks!
    marten

    That error says the same as the event log:
    "Action start 11:49:28: CcmCheckFreeDiskSpace.
    MSI (s) (38:F4) [11:49:28:274]: Product: Application Web Service -- There is not enough available disk space on  to complete this operation. Installation requires at least 10MB free disk space.
    There is not enough available disk space on  to complete this operation. Installation requires at least 10MB free disk space.
    Action ended 11:49:28: CcmCheckFreeDiskSpace. Return value 3.
    Action ended 11:49:28: INSTALL. Return value 3."

Maybe you are looking for

  • How do I use serial port read and show text, but not have it scroll off screen?

    I am new-ish/returning amateur user of Labview and I am trying to edit the example VI "Advanced serial write and read VI" that is part of dev suite 2012.  I need to use the string box to show ALL text received from serial port, always appending and o

  • Warning icon on Engineer to Relational Model screen

    Engineer to Relational Mode l shows warning icon on Attributes, Entities and Logical labels. I don't see the reason. Do you know what this warning icon is about and how to tackle it? Thanks, Prakash

  • Multi touch screen monitors

    I presently have a HP Z620 with 4 monitors (2 video cards).  The monitors are beginning to get a bit old and unreliable as they were originally purchased for my previous PC. I am running win 8.1 Pro. Is it possible to run 4 touch screen monitors with

  • Distributing client/server forms app

    Hi I am distributing a client/server forms/reports app that calls stored database procedures. Does anyone have information on best-practice for version-control/distribution of upgrades etc? What is a good model to follow? At the moment I am using CVS

  • Oracle parameter change

    Hi Friends, We have to change the parameter db_cache_size in our oracle 10g database. What is the unit (kb, mb or gb) of value to be assigned. We have to increase it upto 16gb currently it is 8 gb. What are the precaution should be taken to change th