Change selection criteria or check allowance for marking

Hi,
I have executed the costing in CK11N and saved the result. The costing run was successful without any error.
When I want to Mark the cost in CK24, I am getting the below error. Kindly help to resolve this issue.
Change selection criteria or check allowance for marking
Message no. CKCC140
Diagnosis
No data was selected for marking.
Possible causes:
There is insufficient data in the selection screen to select the required cost estimates.
The organizational measure was not carried out, or it was issued with a different costing variant to that of the cost estimates ( Marking Allowance).
All the cost estimates contain errors.
The cost estimates have already been marked or released.
For detailed information, call up the log.
thanks and regards
Murugesan

Dear Murugesan,
First ensure in CK11N,you have saved the cost estimate without any error,the signal showing with green colour.
Then in CK24,first take a test run for marking and then without the check box for test run.
Before Executing this T Code for marking,click on marking allowance and ensure for the period,company code and the same
costing variant and costing version,it shows green colour which indicates alloed for marking and release,otherwise,just click on
your company code,enter the costing variant and costing version and save the datas.
This should be done only once during the period begining.
Once after doing this,ensure you have complete authorization for marking and release.
Check and revert back.
Regards
Mangalraj.S

Similar Messages

  • How to change Selection Criteria for a Business Content Data Source

    Hi Experts
    I am extracting data using 0CO_OM_CCA_9 Datasource. I would like to be able to select a range of Company Code (BUKRS) to pull in, but I cannot find a way to make certain fields available as selection criteria. When I go into "Change DataSource", I can unselect fields, and even select certain fields, but the option for most is grayed out.
    How can I make this field available as selection criteria in Infopackage?
    Thanks for the help.

    Its not that simple to enable a new selection for a Business Content Datasource, if its not already provided by SAP. Enabling new fields for selection should be accompanied by corresponding extractor code changes to process those field selections and use those selections throughout the extraction process.
    Solution for your problem would be create a custom extractor with all the logic of standard extractor (function module BWOMD_GET_CTRCSTA1 for 0CO_OM_CCA_9) and extra logic to process the new fields for selection.
    Hope it helps!

  • Change Selection criteria for existing report in Report painter

    Hi Experts,
    We are on 4.7, using report painter for getting reports for Cost center & Profit Center. For one of the report we have selection criteria as Cost center and cost center group, but now user want us to add new selection field as Cost element and cost element Group to same report. We have tried all the options from GR32 ->Edit-> General Selection, but we don't find cost element in Key figure listed there.
    Please let us know how can we add the new field to selection criteria. We also would like to know is this is possible with existing report  to add new fields or not? Is that we need to create new report for this?
    Thanks in advance..
    Shilpa

    Shilpa-
    In my opinion the best way to troubleshoot issues like this is to go to SAP delivered standard reports and see how they are setup. For example, in your case you want to add cost element and cost element group to your report. There is one standard report from SAP - Transaction :S_ALR_87013611 which has both cost center, cost center group and cost element, cost element group in the selection criteria. You can look how this report is set up, and maintain your report in a similar fashion. Atleast this way, it will give you an idea.
    Go to transaction code GRR3 and under library look for report "1SIP-001". By double clicking on the row, you will see how it is maintained.
    Hope this helps.
    Shail

  • BADI Impl. VB_BD_SELECTION to change selection criteria in batch det.

    Hye,
    I need to use the BADI VB_BD_SELECTION in order to change the selection criteria to be used during batch determination
    For this purpose  method RESTRICT_CONF_CHARS has been implemented.
    But I didn't find any documentation explaining how to manage this one:
    as result the characteristic record is deleted from the selection criteria instead of updating it with a new value specified in the structure CT_CONFIG-ATWRT.
    For example:
    in the strategy  we have the value car1 = A.
    If BADI is off than the system in production order uses right this criteria to determine the batches.
    If BADI is on than we want to define new criteria to find batches with the characteristic car1 = B but the system deletes car1 from  selection criteria.
    Thanks
    Anna

    Hi Anna,
    I have the same problem for another customer project.
    The big problem is I didn't found any documentation or an class example for that BAdI.
    Please help us.
    Thank you

  • Changing Selection Criteria in Current DataSources

    I am pulling in financial information from BSEG into BW.  BSEG is a massive table with a lot more information than I care to pull in for my purposes.  I would like to be able to select a range of GL Accounts to pull in, but I cannot find a way to make certain fields available as selection criteria.  When I go into "Change DataSource", I can unselect fields, and even select certain fields, but the option for most is grayed out. 
    How can I make other fields available as selection criteria? 
    Thanks for the help.
    Sean

    Hi Sean,
    this is pure brutal code....
    SELECT SINGLE * FROM ROOSFIELD
    WHERE OLTPSOURCE = ZBW_BSEG AND
          OBJVERS    = 'A'      AND
          FIELD      = GREYFIELD.
    IF SY-SUBRC = 0.
      ROOSFIELD-SELECTION = 'X'.
      MODIFY ROOSFIELD.
    ENDIF.
    Sean, test this solution to verify if the selection you done works effectivly...
    Hope this helps.
    Bye,
    Roberto
    (remember to click on the star as way to thank !!!)

  • Selection Criteria in Check/Payment Lot configuration

    Hi Gurus,
    I need help in populating the values in "Selection Category 1,2,3" fields.
    While configuring the Payment /Check/Credit card lots, the selection criteria (BP,CA and DOC) values are not populating to select the values.
    The pre selection fields are empty, I would like to know how to populate them so that I can select them while configuring the lots.
    Thanks,

    William, Thanks for the solution.
    Actually the values (BP,CA,OPEBL) are not defined in "Open Item Management> Specify Selection Categories". 
    After adding the "BP,CA and Doc no fields in open item category, now the selection category is pre populating.

  • Custom Action to change selected column's Background color for a table in CEWP

    I have a OOTB CEWP. When I insert a table to this, I would like to see a context menu that would give me an option to change the selected cell's/row's/table's properties like cell padding/cell spacing/background color etc.
    How can this be achieved using SP2013 ribbon's custom actions. It would be great if we could add all these properties on a separate contextual tab when row/cell/table is selected.
    Rajasekar A.C

    Hi,
    If the table in Content Editor Web Part, we don’t need to use SharePoint Ribbon to achieve it.
    We can insert some input button and use jQuery to change the table tr/td background color.
    The code like this:
    <style type="text/css">
    .highlight {
    background-color: red;
    </style>
    <script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function () {
    $("#TableID tr").click(function () {
    $(this).toggleClass("highlight");
    </script>
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Selection criteria from table PLMZ for component allocation

    Hello All,
    I need to produce a report for the componenet allocation, my issue is after knowing that i hve to fetch data from plmz, i m stuck,
    reason is when i select entries from plmz with criteria plnnr and plnty it gives me more entries then those found when i do a ca03, can anyone please guide, wat i m looking for is exact number of entries and then the material and bom info, please point me to the right direction,
    thnaks,
    Hitesh

    Hi Hitesh,
    As Mr.Prasobh u have to join MAPL-PLMZ-PLPO tabls with matarial, Plant combination where LOEKZ is not equal X
    For BOM ITEM , Name u have to add to More table STPO, MAKT. The flow is as follows,
    1.First u can start with MAPL.
    input Field: MATNR - your Header  Material
                     WERKS -  your BOM plant
    Outfield for Next Table. PLNTY,PLNNR,PLNAL,LOEKZ (Not equal X).
    2. TABLE: PLMZ
        Input Field:  PLNTY,PLNNR,PLNAL,LOEKZ,WERKS ( from previous tables)
        output Field :  STLTY,STLNR,STLKN, PLNFL.
    3. Table: PLPO
         Input Field:  PLNTY,PLNNR,PLNAL,LOEKZ,WERKS.
       output field :VORNR,MEINH,BMSCH,
    4.Table: STPO
        Input Field:STLTY,STLNR,STLKN  (From table PLMZ )
        output field: IDNRK,POSNR,POSTP.
    5.Table MAKT.
        Input Field: IDNRK
         output field : MAKTX.
    what i have given is a flow to fetch the data.  Try it with  abab`rs  to develop report.
    i hope the above tables give  most of fields which you need   in  ca03 (com all view).
    plz reward point all of them if u found usefull.
    regards
    r.pradeep

  • Change in which values are allowed for Product Ads conditions?

    Hi,
    According to https://msdn.microsoft.com/en-US/library/bing-ads-product-ads-guide.aspx#conditions, the following Product Ads condition values are allowed:
    New
    Used
    Refurbished
    Remanufactured
    Collectable
    Open Box
    But, around 3/14, all by the top three stopped working. I don't see any information about this in release notes. Can someone clarify if this is a temporary problem or permanent spec change.
    Thanks,
    Hans

    Hi NMU,
    I am not aware about SAP BW, can you try the following :
    --If the report saved in SAP BW then delete the report and save a report which is reflecting your changes.
    --Also try to create a new parameter with Country1 and add three countries and try to save the report.  If that is working then remove the Country paramenter (old) from the report.
    Thanks,
    Sastry

  • RFIDITSR00:Selection criteria for MM invoices in IDITSR_SELECT_V

    Dear Gurus,
    Could you kindly share with us how you were able to manage the customising settings in IDITSR_SELECT_V for S03CCR report.
    The customising setting we made are: included Purchases account 6XXXXXXX in IDITSR_SELECT_V for reporting category S03CCR and while executing the report:excluded BE ,entered keydate,selected vendors(GL and customer not selected)
    The customising was working  fine when we raise an FI invoice and included the Purchases account 6XXXXXX in our customising(IDITSR_SELECT_V) and selected vendors on the selection screen while executing the report.
    However, this selection criteria is not working for MM invoices.
    For ex:We included the Purchases account 6XXXXXXX in out customising and while executing the report we selected All vendors and "did not select GL accounts" and the output doesnt show this good receipt.
    I can understand the logic as while Goods receipt the entry is
    Debit Purchases A/c
    Credit GR/IR A/c
    and as in our selection while executing the report we selected only vendors this entry is not been shown in the report.
    and while Invoice receipt the entry is
    Debit GR/IR A/c
    Creidt Vendor A/C
    Though we have vendor line here we do not have the Purchases a/c (6XXXXXXX)as counterpart debit and the invoice doesnt get included in the report.
    I tried adding the GR/IR account 4XXXXXXXXX in the customising of IDITSR_SELECT_V but that didnt help either and while executing the report selected GL accounts instead of vendors,in this case the transaction is included in the report but the country ISO code is always coming as BE.
    Could you kindly advice how you were able to generate the report to include the open items from MM in the S03CCR reporting category.
    Many thanks in advance.
    Prasad

    Hi Vee,
    The provided code did help and I have the following code now which works fine.
    $('input[name=f01]').change( function() {
      if ($(this).is(':checked')) {
        index_of_this = $('[name=f01]').index(this);
        for (i=0;i<index_of_this;i++) {
          if (!$('[name=f01]:eq('+i+')').attr('checked')) {
            $(this).attr('checked',false);
            alert('Check the sequence of invoices to be paid. Invoices should be one after another and you can not pay one Invoice before paying the one that is preceded');
           return false;
      else
      $('[name=f01]').checked = true
    alert('Check the sequence of invoices to be paid. Invoices should be one after another and you can not pay one Invoice before paying the one that is preceded');
      return false;
      setSelectedInvoiceValues ()
    setSelectedInvoiceValues ()Additionally I would like to add
    Assume that checkbox 1,2,3,4,5 is checked, then what happens when 3 is unchecked ? User should not be allowed to uncheck 3 unless 4 and 5 are unchecked.I have tried to handle this part in the else { } but it is not totally correct.
    I am not able to un-check the last checked which should be allowed.
    Also the following does not work in Mozilla Firefox but does in Internet Explorer.
    $('[name=f01]').checked = true
    Please help
    Thanks & Regards
    Arif Khadas
    Edited by: Arif Khadas on May 23, 2011 12:05 PM

  • How can I change the default cookie-preference dialog-button to "allow for session" instead of "allow?"

    When the cookie preference is set to "ask every time" the default button (highlighted & selected when I hit return or enter) is "allow." Can I change the default button to "allow for session" so I don't have to use the mouse to select it?

    Here's the cookie preference dialog box (click picture below)

  • KE28 - Selection Criteria and Processing

    Hello Expert,
    we  will need, when we are executing transacction ke28 that  it runs  this process  excluding some products or
    this does not consider some records
    I review some recomendations but I dont found one solution.
    1.   http://scn.sap.com/thread/607526
    2.   http://scn.sap.com/thread/1887453
    3.   http://scn.sap.com/thread/1707542
    4.   Example: Selection Criteria and Processing Instructions - Profitability Analysis (COPA) - SAP Library
    5.   77476 - Information: top-down planning
    6.   1928710 - KE28 enhancements (this note oss not apply in SAP ECC 6.0)
    7.   1933479 - KE28: Enhancements (this note oss not apply in SAP ECC 6.0)
    I try explain:
    Actual data:
    From period 001.2014
    Record type 1.
    Reference data
    From period 001.2014
    Version
    Record type Z, B.
    1.     Top-Down Distribution:Processing Instruccions
    Int this point it cant use options (DLvl and Sum) when it use range because:
    This processing rule is not allowed for the characteristic
    Procedure
    Select either "Retain" or "Copy to" for characteristics for which you have specified characteristic values.
    For characteristic that you want to summarize or distribute ("Summarize" or "Distribution level" button), you must enter an asterisk (*) on the "Selection Criteria" screen.
    => In this case, it use optios CPY.
    2.     Selection Criteria (Characteristic)
             => In this case here, it consider characteristic values and excluding values.
    Finally:   it not get good result because it not distribute.!!
    Then, ¿is it possible excluding records from derivation rule?
    ¿is there any exit in COPA for ke28?
    For example ¿is it possible excluding  records from  exit COPA0001 ?
    All your recomendations w ill be w elcome.
    Many thanks for your support and recomendations.
    Best regards,

    Dear Sap Expert,
    All your recomendations will be welcome.
    I try  explain the following scenary:
    This is actual data real (Record type Z, B from COPA)  and it has only version 0. 
    Not plan and  it does not use planning layouts or reports.
    Example:
    Client
    Material
    Product
    Sub Line
    C1
    M1
    P1
    L1
    C2
    M1
    P1
    L1
    C3
    M3
    P2
    L2
    C4
    M4
    P3
    L3
    C5
    M5
    P4
    L4 (Excluding this records or Line)
    C5
    M6
    P5
    L4 (Excluding this records or Line)
    The following entries are made on the screen 'Selection criteria':
    Characteristic       Characteristic value
    Society CO                      *
    Material                            *
    Product                            *
    Client                                *
    Sub líneas                     L1,L2,L3
    The following entries are made on the screen 'Processing rules':
    Characteristic
    Distribution level
    Transfer
    Summarize
    Society CO
    X
    Material
    X
    Product
    X
    Client
    X
    Sub líneas
    X
    When we run trasacction ke28 then  the result is not good because it does not distribute nothing.
    But
    when we change “selection criteria”
    Characteristic      characteristic value:
    Sub línea                *
    The result is ok and distribute!
    ¿How does we  exclude some records?
    Could you explain better this distribution using only transaction ke28, please? or Could you give me other note oss about distribution KE28, please?
    Many thanks for your support and recomendations.
    Best regards,
    a

  • Selection criteria problem

    Hello folks,
                       I am facing one problem .when I don’t give any selection criteria  my program searches for blank records in respective table for that criteria and blank records are not there so sy-subrc is not coming as 0, But this should not happen in this way , rather program should display all records because that selection criteria is blank. To overcome this issue each time I am checking whether that selection criteria is blank or not. If that  criteria is blank I will simply exclude condition for selection from  database table and criteria is there on selection screen I have to select for accordingly. <b>Is there any other way to get all data from database table for particular column if I don’t give any value for that column on selection screen</b>?

    Hi nirad,
    1. SELECT-OPTIONS  vs parameter
    2. This problem happens in parameter.
    3. In select-options,
       even if we give blank (do not enter anything)
       and bcos we use
       IN abc
       sql,
      the system understand and gives
       ALL records.
    4. So u can use SELECT-OPTIONS (instead of parametes)
       and use IN sql
    5. Other wise
       make your paramters OBLIGATORY.
    6. Or else, as u have already used,
        use IF conditions for sql.
    7. There is no other way !
    regards,
    amit m.
    Message was edited by: Amit Mittal

  • Error message : No order corresponds to selection criteria

    Hi,
       I am using T code CN24N for scheduling networks for a project and entering Project as the input.
    But I am getting the error:
    No order corresponds to selection criteria
    networks are there for the selected Project.
    Can anyone tell me the possible reason for this?
    Regards,
    B P Singh

    Hi,
    Specify the Project & Network for the project in selection creteria & select the option as only selected network & excute the transaction.
    Regards,
    Raj

  • Help Query selection criteria

    Hi all experts,
    I have a problem making my selection criteria on this query for the user to input the numbers 1 to 10 variables
    is there anything that can help me to resolve this
    I have tried many times but it just does not work
    Query me this:
    SELECT
    T1.[DocEntry], T0.[CardCode], T0.[CardName], T0.[DocDate], T1.[ItemCode], T1.[Dscription], T1.[Price], T2.[LastPurPrc]T1.[NumPerMsr] AS 'Last Purchase Price', (T1.[Price] -  (T2.[LastPurPrc]T1.[NumPerMsr])) AS 'Variance', (((T1.[Price] - (T2.[LastPurPrc]T1.[NumPerMsr]))/(T2.[LastPurPrc]T1.[NumPerMsr]))*100) AS 'Variance%', T3.[SlpName]
    FROM
    OPCH T0  INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OSLP T3 ON T0.SlpCode = T3.SlpCode
    WHERE
    (T2.[LastPurPrc] > 0) AND Month(T0.[DocDate]) = Month(Getdate()) AND Year(T0.[Docdate]) = Year(Getdate()) AND ((((T1.[PriceBefDi] - (T2.[LastPurPrc]T1.[NumPerMsr]))/(T2.[LastPurPrc]T1.[NumPerMsr]))*100) Between >= '[%0]'AND <= '[%1]')
    Thanks

    Try this:
    SELECT
    T1.DocEntry, T0.CardCode, T0.CardName, T0.DocDate,
    T1.ItemCode, T1.Dscription, T1.Price,
    T2.LastPurPrc*T1.NumPerMsr AS 'Last Purchase Price',
    (T1.Price - (T2.LastPurPrc*T1.NumPerMsr)) AS 'Variance',
    (((T1.Price - (T2.LastPurPrc*T1.NumPerMsr))/(T2.LastPurPrc*T1.NumPerMsr))*100) AS 'Variance%',
    T3.SlpName
    FROM
    OPCH T0 INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
    INNER JOIN OSLP T3 ON T0.SlpCode = T3.SlpCode
    WHERE
    (T2.LastPurPrc > 0) AND Month(T0.DocDate) = Month(Getdate())
    AND Year(T0.Docdate) = Year(Getdate())
    AND ((((T1.PriceBefDi - (T2.LastPurPrc*T1.NumPerMsr))/(T2.LastPurPrc*T1.NumPerMsr))*100)
    Between  [%0] AND  [%1])

Maybe you are looking for

  • 12THOUSAND TRACKS CORRUPTED ON 80GB CLASSIC IPOD DUE TO CORRUPTION OF COMPUTER, HOW CAN I GET MY MUSIC OFF MY IPOD WITHOUT LOSING IT, PLEASE ANYONE

    HI, APPLE 80GB CLASSIC IPOD ITUNES MUSIC CORRUPTED WITH OLD DELETED MUSIC IPOD IS INTACT, NOT SYN WITH ITUNES SINCE CORRUPTION 1. HOW DO I DELETE MUSIC OFF IPOD (OVER 12 THOUSAND TRACKS) DO NOT WANT THEM TO SIT ON HARD DRIVE TO RESTORE ONTO IPOD 2. I

  • External HD not detected

    Hi, my dog ate the original power cable that came with Touro Desk 2TB (external HD). I had to buy another power cable, but this time was a generic. The external HD is turning on fine, but iMac is not detecting it. I hope it's because of the new power

  • Nokia lumia 610 shutdown problem

    Sorry if that's not the right place to create the discussion, but doesn't know where else... Before near 1-2 hours, my phone started shutting down automatically. I'm turned it on and it shutted down again. Before near 5 minutes i resetted it... but i

  • Regarding dropdown box on selection screen

    Hi Abapers, I am facing a problem in handling dropdown box. please suggest . My Problem description below. There is one Text field and other is one dropdown box on the selection screen. Now When user enter the Prod Order number and press enter then a

  • Is there any plan to for usb 9234 to support hardware trigger?

    We expect to provide our low cost modal testing solution based on NI usb-9234 and ModalVIEW software. Hardware trigger is needed when using usb 9234 to perform impact testing. Message Edited by Troglodyte on 07-11-2008 10:44 PM