Opportunity closing date analysis - target field empty

Hi Experts,
In CRM 2007, interactive reporteing the Closing Date Analysis report does not show the targets entered in Quota Planning.
I have entered quota for several sales man, also I entered opportunities for them.
The expected sales volumn is calculated and shown in the report. But the target from the quota plannign is not reflected.
Can anybody give me an advise, what to do / what could be missing?
Best regards,
Cristina

Hi Robert,
I am working with best practises. Sales Director can assign object for subordinary organization.
Best regards,
Cristina

Similar Messages

  • Opportunity Closing Date - Upon Status Change, Retain Existing Closing Date

    Hello,
    When an Opportunity is set to Won or Cancelled, the system automatically updates the Closing Date to today's date (i.e., the date in which the Opportunity was changed to Won or Cancelled).
    Does anyone know how to override this functionality?  The requirement is to retain the existing Closing Date, and to NOT automatically set the Closing Date to today's date.
    I cannot seem to find anything in config to override this functionality.  I'm guessing I'll need to implement a BADI - just not sure which one...
    Thanks,
    Matt

    Prasenjit,
    Thanks for the reply, I more than appreciate it!  Per your recommendation, after some debgging, I was able to locate the event :-).  I have awarded you points!
    In case anyone comes across this issue, here's how I resolved it:
    In T-Code CRMV_EVENT, for Transaction Category BUS2000111 (i.e., Opty), Object Name STATUS, Event AFTER_CHANGE, and Attribute I1005, I specified my custom Function Module ZCRM_OPPORT_H_EXPECTEND_CMPD, which is simply a copy of the out-of-box Function Module CRM_OPPORT_H_EXPECTEND_CMPD_EC.
    In my custom FM, I simply commented out the code that defaults the EXPECT_END date to today's date.
    In addition, I had to make the following entry in table CRMC_FUNC_ASSIGN:
    FUNC_NAM = ZCRM_OPPORT_H_EXPECTEND_CMPD
    FUNCTION = CRM_OPPORT_H
    An entry is required in table CRMC_FUNC_ASSIGN in order for t-code CRMV_EVENT to recognize the custom Function Module.
    Thanks!

  • Variance analysis with InfoSource 2LIS_04_ARBPL - Target fields empty

    Hi Experts,
    I want to run a variance analysis for production orders in BW.
    The Confirmed activites (ISM01-3) are filled in the DataSource 2LIS_04_ARBPL , but all the fields "Target qty/act.typ (ZMNG1-3)" are empty.
    Do anyone know, how to these fields are filled?
    Thanks.
    A. Morhardt

    Check the following things:
    1.  Go to tcode: OPL5 and select the Order type for which you want to load data and Select the Details button.Ensure that the four indicators (Update, Header, Item and Operation) are chosen.
    2.  Have you filled the Set up table ??
    SPRO
    Integration with Other mySAP.com Components  Data Transfer to the SAP Business Information Warehouse  Settings for Application-Specific DataSources (PI)  Logistics  Managing Extract Structures  Initialization  Filling in the Setup Table  Application-Specific Setup of Statistical Data  Perform setup u2013 Production  (Choose the activity: Statistical Setup: Shop Floor Information System)
    Cheers,
    Neel.

  • Source selection derived from target field Cons Chart of Accts is empty

    Dear,
    When I run the LDS, The system issues this error message :
    "Source selection derived from target field Cons Chart of Accts is empty"
    Although, mapping of Cons Chart of Accts   in LDS for this method is defined as constant value.
    I can't load data from raw data cube. What can be the reason ?
    Thanks,

    Source selection derived from target field Cons Chart of Accts is empty
    Message no. UCT8257
    Diagnosis
    The system derives the source selection from the selection for target field Cons Chart of Accts. The resulting source selection is empty.
    System Response
    The system cannot read any source data.
    Procedure
    Examine the mapping rule for field Cons Chart of Accts. Make sure that the inversion of the mapping rule does not produce an empty selection or lead to conflicting values.

  • Closed Date populated once saved new opportunity

    Hi all,
    I have a situation here where when I change a "Status" field value to Won / Lost, the "Reason for Won / Lost" field will become mandatory field.
    Then when I save the opportunity, the "Closed Date" field will be auto populated to the current date.
    May I know how do I achieve this?
    Thanks and appreciate for help
    Regards,
    Anson

    Hi !
    You'll have to do 2 different things :
    1 - For the "Closed Date" field, you'll have to create a workflow rule on opportunity, the trigger event is before modified record saved. The condition will be like this :
    *([<SalesStage>]="Close/Won" OR [<SalesStage>]="Close/Lost") AND PRE('<SalesStage>')<>[<SalesStage>]*
    And the action of this workflow is to update the field Closed Date with the value Today(). Don't forget to check the box Overwrite Existing Values.
    2 - For the "Reason for Won / Lost" field, you'll have to modify the Sales Process. If you're using the standard sales process, I hardly recommend to create custom one in order not to modify the standard one. This will help if you want to get back to the standard, or if you wan't to know how the standard is. And this advice concern every standard thing in OnDemand (Roles, Profiles, Layouts, ...).
    Go to Admin >>> Data Rule & Assignment >>> Sales Processes. There you can create your own.
    Then go on the Sales stage "Close/Lost", and here you can define the fields you wan't to be mandatory, in the Additional Required Fields section.
    Hope this will help, feel free to ask more !
    Max

  • End Routine - populating Target Field based on Master Data

    Hi,
    I have an issue with my End Routine in BI 7.0. The scenario is as follows....
    The Target-Fields ZSALES_OFFICE , 0SALES_CHANNEL etc. are being mapped 1:1 from their respective source fields. In addition to these target fields I have a target field 0SALESORG which I need to populate based on the values from 0COMP_CODE which is an attribute of ZSALES_OFFICE. The values of 0COMP_CODE are 9000, 9001, 9002 and 9003 respectively. The end routine condition needs to be implemented as follows...
    For every 0COMP_CODE which has value 9000, 0SALESORG should be populated with the value "EAST". Similarly for every 0COMP_CODE which has value 9001, 0SALESORG should be populated with the value "WEST",  for every 0COMP_CODE which has value 9002, 0SALESORG should be populated with the value "NORTH" and  for every 0COMP_CODE which has value 9003, 0SALESORG should be populated with the value "SOUTH". I tried the following code but it doesnt seem to work. Could you pls help!!
    Thanks,
    SD
    DATA: it_tab4 TYPE TABLE OF /BIC/PZF31SALOFF,
              wa_tab4 TYPE /BIC/PZF31SALOFF.
        SELECT *
          FROM /BIC/PZF31SALOFF
        INTO CORRESPONDING FIELDS OF TABLE it_tab4.
        sort it_tab4 by /BIC/ZF31SALOFF.
        LOOP AT RESULT_PACKAGE
          INTO <result_fields>.
          read table it_tab4
          with key /BIC/ZF31SALOFF = <result_fields>-/BIC/ZF31SALOFF
          into wa_tab4
          binary search.
          if sy-subrc eq 0.
            CASE wa_tab4-comp_code.
              WHEN '9000'.
                <result_fields>-salesorg = 'EAST'.
              WHEN '9100'.
                <result_fields>-salesorg = 'WEST'.
              WHEN '9200'.
                <result_fields>-salesorg = 'NORTH'.
              WHEN '9300'.
                <result_fields>-salesorg = 'SOUTH'.
              MODIFY it_tab4 FROM wa_tab4.
            ENDCASE.
          endif.
        ENDLOOP.

    Replace your select statement ,
    SELECT *
    FROM /BIC/PZF31SALOFF
    INTO CORRESPONDING FIELDS OF TABLE it_tab4.
    instead of selecting all the fields , pick only the fields which are required.(one good performance improvement)
    SELECT    /BIC/PZF31SALOFF  comp_code
    FROM /BIC/PZF31SALOFF
    INTO CORRESPONDING FIELDS OF TABLE it_tab4.
    Remove the line below , this is not required
    MODIFY it_tab4 FROM wa_tab4.

  • Getting "Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452)" error after upgradating to siebel Open UI 8.1.1.11

    Hello Team,
    We have upgraded from Siebel 8.1.1.3 to Siebel Open UI  8.1.1.11.
    But after up-gradation we are getting the below error in   "My Account Opportunity" View.
    We detected an Error which may have occurred for one or more of the following reasons:
    Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452).
    Thanks,
    Tirupati Nanda
    Mob:-9742404115

    Hello Team,
    We have upgraded from Siebel 8.1.1.3 to Siebel Open UI  8.1.1.11.
    But after up-gradation we are getting the below error in   "My Account Opportunity" View.
    We detected an Error which may have occurred for one or more of the following reasons:
    Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452).
    Thanks,
    Tirupati Nanda
    Mob:-9742404115

  • Process Order Cost Analysis Target and Actual Quantity Missing

    This is related to Process order costing .
    Issue : Before activating  Material Update field in Costing view 1 of Material master , we have created few process orders and Delivered .
    Hence cost analysis shows Actual and target cost fields  Empty in COST ANALYSIS  report of  order  . After Updating field in Material master , New Process orders are calculated with Actual and Target cost .
    Solution needed : How to do Actual and Target cost estimation back in cost analysis report  for old process orders which are created before Material Update field ?

    You have deleted the Component in the BoM.
    Then you have created a production order, check if the start date of this order is after the date change in the BoM..... Can be that the component stills exists in the order ? Have you tried deleting the compoent in the order BoM ?

  • Issue in Due date analysis report S_ALR_87012168

    Hi Friends,
    We have a strange issue regarding due date analysis report (S_ALR_87012168)...
    When i execute this report it displays different amounts in "Not Due" column under 0-30 bucket. In 0-30 bucket, under not due column it shows 10,000 and under total open items column it shows 15,000. How it is possible?
    Thanks to everyone
    Anifi

    Hi,
    This has been closed due to Local and Document currency prob...
    Thanks

  • Manual input for Date offset Buckets in Due date analysis 0FIAR_C03

    Hi Experts,
    I have a requirement where i need to provide a manual input selection to fill offset values of dates for due date analysis.
    For example, current standard report 0FIAR_C03_Q0005 provides data with buckets of 0 days, 1-30 days, 31-60 and so on. Instead of this we need to define this bucket as manual input field and based on that the due date report should fetch the data like as if a user enters 7, 14, 21, 28 and so on till last option as 999 in 6 to eight variables provided than the report should come in buckets of 0-7, 8-14, 15-21 and so on.
    How can i achieve this with BEx.
    -Kushal

    I'm considering you are running this report on a daily basis. Under this assumption, you may create a Key Date Varaible in BEx Query Designer. SAP BEx offers a very useful concept called Key Date. Purpose of Key Date is to execute your report as of today's date (sy-datum) based on a variable. You may create variables also on 'Key Date' & use this variable as subsequent your offsets in the row/col structure. This gives you a better leverage from ABAP side. For such bucket scenarios, your defined variable will give you option to choose input date which can be customized to choose sy-datum as the current date.
    There's no necessity for user to define bucket limits for each level. As per the statements, its obvious the values are multiple of ZOFFSET (The offset provided by users). We can use a simple Customer Exit Variable. We need to first capture the value of ZOFFSET:7. Using CMOD, we can write the custom exit returning a value which gives the bucket range. Another input also must be passed to the exit program to capture 'How many lines you need to process/iterate?'. Say, you create a small formula variable to capture the # of slabs: ZSLABS.  I've just written a basic skeleton. Pls. incorporate your requirements as necessary.
    CASE I_VNAM
    WHEN 'XXXX'.     
         IF I_STEP=2 +(i.e.after popup!)+
              READ TABLE I_T_VAR_RANGE INTO L_S_RANGE WITH KEY VNAM='ZOFFSET'.
    FOR (ZTEMP_I=0; Z_TEMP_1 <= ZSLABS; ZTEMP_I++)
         IF SYSUBRC=0
              CLEAR L_S_RANGE.
              L_S_RANGE-LOW = LOC_VAR_RANGE-LOW(8).      +This is YYYYMMDD+
                        ZOFF_PREV = L_S_RANGE-LOW + 1.
              ZOFFSET = ZOFFSET * ZTEMP_I.
                   IF(ZOFFSET) IS INITIAL.     
                        L_ST_RANGE-HIGH = SY-DATUM.
                        L_S_RANGE-LOW+6(2) = ZOFFSET.          +Just filter only DD from YYYYMMDD+
                   ELSE     
                        L_ST_RANGE-HIGH = ZOFF_PREV.
                        L_S_RANGE-LOW+6(2) = ZOFFSET.
                   ENDIF.               
              L_S_RANGE-SIGN='I'.
              L_S_RANGE-OPT ='B'.
              APPPEND L_S_RANGE TO E_T_RANGE.
    END FOR +(Not sure about For loops; but you may similar logic using normal do/while loops too...)+     
    ENDCASE
    There may be a few errors in code. Pls. review them & let me know your comments. 
    Typos regretted. Thanks!
    Edited by: Arun Bala G on Oct 16, 2010 12:44 AM

  • S_ALR_87012168 - Due Date Analysis for Open Items - How to add a column?

    Hello,
       I am trying to add a characteristic to the output of this report. I am trying to add the Reference field from BKPF to the list of available characteristics to choose from. It is available in the dynamic selections list so the field should be available in the program, I am just not sure how to get it onto the char. list.
    S_ALR_87012168 - Due Date Analysis for Open Items
    Any help would be greatly appreciated!

    Sorry but had to go in a different direction...
    Thanks!

  • S_ALR_87012168 - Due Date Analysis for Open Items - Add Characteristics?

    Hello,
    I am trying to add a characteristic to the output of this report. I am trying to add the Reference field from BKPF to the list of available characteristics to choose from. It is available in the dynamic selections list so the field should be available in the program, I am just not sure how to get it onto the char. list.
    S_ALR_87012168 - Due Date Analysis for Open Items - SAP delivered Report Painter report.
    Any help would be greatly appreciated!

    Try:
    Go to -> Line items
    You can change the display variant there to include the reference.
    Rob

  • Error message in Opportunity for dates

    Hi,
    I am facing a problem in finding the reason why an error message is coming.
    We have an opportunity and there is a validation stating that Start date shoudl not be greater than closing date.    I have checked the opportunity it carries correct values.  I have Start date is lower than closing date but even then I am getting an error on opportunity stading that Closing date is less than start date.  I have checked the badi I have kept the break point in all the place where ever this message is getting fine but no were it is getting stopped.   But even then I am getting this error message.
    Please help me .
    How to remove this error.
    Thanks
    naveen

    Resolved

  • Error when trying to set a date type edit field

    Hi all
    I have an edit text field in a form which is bounded to a date type
    database field using dbDataSource.
    When i try to set the edit text field value with Today's date by code.
    I recieve an error message that the value which
    i'm trying to set is not legal. the  error number is [131-183].
    I use the following code to set the edit field:
    If oEditText.Value.Trim = String.Empty Then
                Dim strDate As String
                Dim sboBob As SAPbobsCOM.SBObob =
                 oCompany.GetBusinessObjec(SAPbobsCOM.BoObjectTypes.BoBridge)
                 rs = sboBob.Format_DateToString(Microsoft.VisualBasic.Today)
               strDate = rs.Fields.Item(0).Value.ToString().Trim()
    Try 
           oEditText.Value = strDate
    Catch ex As Exception
        SBO_Application.MessageBox("error setting
    current date: " & ex.Message)
    End Try
    End If
    My question is how can i set the edit field with a valid value?

    Hi!
    When writing to EditText.Value you must always use the B1 "DB-Format" as String.
    The following examples are assuming (it's a must!) that the EditText-Fields are bound to a corrosponding DataSource (Type Date, Price etc...)
    MyDateEditTxt.Value="20080207"
    MyPriceEditTxt.Value="1341.79"
    The best of it: It's Windows and SBO-GUI-Language independent.
    EditText.String must always be written with the format of the actual Language of the SBO-GUI, which can be changed by the user....
    You may also have a look at my statements regarding these problems near the end of this thread:
    [How to pass date value to an UDF;
    Cheers,
    Roland

  • Forcing Creation of Target Field

    Hi,
    I want 2 force the creation of target field C in my Message Mapping.:
    So, if A exist and not empty, map A to C,
    if not, map B to C.
    The problem is, if i have a not existing field on left side, the right side wont be created. But I want C to be created in any way.
    Regards,
    Udo

    There must be a hundred threads that deal with this subject already.
    http://help.sap.com/saphelp_crm60/helpdata/en/45/ff8980cbb709eee10000000a1553f6/frameset.htm
    /people/gregor.wolf3/blog/2006/07/22/create-run-and-analyze-an-e-mail-campaign-with-a-survey-part-1
    /people/gregor.wolf3/blog/2006/05/11/advanced-campaign-automation-in-mysap-crm-40-teaser

Maybe you are looking for