A material document was posted to a Profit Center that didn't exist yet

Material document 4900876825 posted to profit center
P102925892 on 1/26/07.  According to the master data record it wasn't created
until 1/31/07.  This caused an FDM issue.
How is this possible?
There is an  include program in FI_DOCUMENT_PROJECT which calls the  function module  Z_GET_PDC_PLANT. Apparently,  this function module does not contain any logic for checking if whether the "formulated" profit center is valid or not (or the FM did not use function KE_PROFIT_CENTER_CHECK to validate profit center).

Good luck, Apple tends to treat suggestions as their own property, though

Similar Messages

  • MATERIAL DOCUMENTS FOR POSTING DATE TCODE ?

    HI ALL,
    CAN SOMEBODY GIVE ME THE MATERIAL
    DOCUMENTS FOR POSTING DATE TRANSACTION CODE.
    THANKS,
    KSR

    Hi all,
    For dispaly of Material Document we have Transaction Code : MB03,
    this with the Document No & Year,
    like wise for dispaly of Material Document for a date range i want to know the Tranasction Code.
    Thanks

  • Document posted with wrong profit center

    Hi guru,
    I posted a FI document but I wrong the profit center. The profit center is PC dummy but I want that the posting is on another profit center. My client doesn't want to create a PC document for correct this mistake.
    Is there any way for assign the cost on exact profit center? Is there any way to repost this cost from dummy to true profit center?
    Thanks in advance
    Regards

    Hi,
    Either you should reverse the FI document and create it with a right profit centre or make internal PCA document. There is no other way of correcting it.
    Regards,
    Eli

  • Automatic Posting accounts are posting to Dummy Profit center....

    Hi experts....
    We are configured New GL
    Generally we are creating Customer Invoice (T. Code: VA02) and
    Vendor Invoice (T Code. MIRO) for WBS Element only. While posting the
    customer/Vendor Invoice System is not checking that CO Object (WBS
    Element) in main line item (Sales/GRIR) as well as Automatic Account
    assignment setting (T. code: OKB9). System is showing the Error. If
    that G/L Account is not a cost element then system is posting to DUMMY
    Profit Center in place profit center assign to that WBS Element
    Requirement:
    We need to post tax and Customer/Vendor line items in document
    against WBS Element which should be picked up from Sales/GRIR Line Item
    of the same document. If there is no CO Object (WBS Element/Cost
    Center) in Sales/GRIR line item in document then based on Automatic
    Account assignment configuration (Valuation Area is Mandatory) system
    has to post to Cost Center/Profit Center
    We are not maintained any derivation rule of PC & Edit Constants for Nonassigned Processes in New gl config. then also system posting to Dummy PC only.
    We can delete that dummy?
    or any configuration changes needs for it. plz give me ur valuable suggestions
    Please Do needful
    Thanks
    Bhagiradha

    Hi,
    You have to maintain Dummy profit center, it is mandatorily for configuring profit center accounting . If u have not maintain Default profit center to that cost element, it will directly flow to Dummy Profit center. Better to maintain default profit center and u cannot delete  the Dummy profit center.
    Regards,
    Sreekanth

  • Accumulated Depreciation Posted to Dummy Profit Center

    HI,
    At the time of Depreciation Posting Accumulated Depreciarion is posting to dummy profit center.
    We areworking on ECC 6 , EHP4 with  document splitting activate.
    Please help to solve the isssue.
    Regards,
    Pravin Joshi

    Hi Pravin,
    Go to Transaction code ACSET, and against KOSTL, in Transaction Type field assign * and in Account Assignment Type enter "Depreciation Run" and tick the check box Acct Assignment at the end.
    This will not post to Dummy profit Center.
    Regards,
    SAPFICO
    Edited by: SAPFICO on Mar 7, 2011 4:37 PM

  • Need cost of materials of plant to be posted to different profit center

    hi,
    when we create a maintenance order in plant maintenance module, profit center is getting defaulted from the cost center assigned to main work center, all the material costs are psoted to this profit center, but my requirement is cost of materials of specific plant should be posted to different profit center. is there any way i can do this.
    thanks

    Dear Monica,
    One way is to maintain the entries in a ztable for material and cost center relation and implement a proper BAdi/Enhancement.
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Hope this will help.
    Regards,
    Naveen.

  • Transaction from production order always post into dummy profit center

    Dear SAP experts,
    I have problem with profit center.
    I have material master "A1" and "A1B1". The process is "A1" is raw material for making "A1B1".
    The CO team forgot to entry the profit center field in both of material in their material master.
    So when there are posting " material consumed " and "good receipt" in production order,PL account "material consumed" (happen when good issue to production order) and PL account "production output" (happen when good receipt from same production order) are mapping to dummy profit center.
    This because of the CO team forgot to entry the profit center field in both of material in their material master, so ssystem post to dummy profit center.
    So I change both of the material masters and entry the profit center field (so it's not blank).
    But when the PP team make new production order and post the same transaction, it still post into dummy profit center (the profit center that I entry in material master is not read by system).
    Even when the PP team create new material with the same spesification,entry the profit center field and run the same transaction, the dummy still posted by system.
    How to solve this problem?
    Kindly help me please.
    regards

    Hi Anu
    After maintaining the PC in the mat master, create a new Prod order w/o copying from the Old Prod Order...
    Once you maintain PC in A1B1 - It should update the Prod Order of A1B1 as well
    br, Ajay M

  • Prevent documets getting posted to DUMMY profit center for

    Hi All,
    During posting of accounting documents (for eg: In T-code F-02), we need to prevent documents getting posted to dummy profit-centers when I post documents with cost-centers which are un-assigned to any profit center (T-Code KS02). Instead we need to bring in to the profit-center posted by the user. We have PCA activated.
    We have tried to achieve with a substitution along with an user-exit (T-code: GGB1). But the user-exit is getting invoked only after the assignment of Dummy profit-center and is overwriting my profit center. Is this approach right? FYI, the substitution is done at the Financial Accounting/ Line-item level.
    Kindly enlighten me with your solutions.
    Thanks and Regards,
    Gnanasambanthan.V

    At my company, we have profit center as a required field on the cost center master - so when posting to a cost center, there is always a profit center.
    However, if requiring a profit center on the cost center master is not an option in your case, then I'm wondering if it would work to set up a validation to check that the profit center on a posting is not the dummy.
    Regards,
    Shannon

  • Posting to a profit center on a vendor line item

    We want to post to a profit center on a vendor line item for incoming Accounts Payable invoices.  When we use posting key 31, the profit center field is not displayed at all.  Is there a way to open the field to post to it?

    Posting to sub ledger accounts, i.e. vendors and customers cant have a profit or a cost center directly posted to it.
    If you want to post to a specif PC or CC in a Vendor or Customer posting you need to do this via a GL account, P&L.
    So for a vendor invoice you credit the vendor and debit COGS, and in the COGS account you assign a Cost Center.
    If you are using the new GL, the Profit Center will be derived from the postings made to the GL account.
    Please note whatever settings you make in terms of FSG and PK, you will never be able to post directly to a PC or CC on a Vendor line item.
    Hope this helps.
    Award points if useful.

  • Partner profit center 855013 does not exist for 8/27/2008

    Hi FI Guys,
    Iam basically MM guy,i need some help on this FI issue.Could you please help any body please.
    Based on the user issue below,i found that thevalid profit center was maintaining in Material master and the G/L account was may not be assigned to G/L account.
    please reply step by step.
    issue from user:
    Iu2019m trying to obsolete some material using MB1A, movement type 951 and the disposal account # 13560002, but after I enter all the information and try to save it I get the following message at the bottom of the screen: u201Cpartner profit center 855013 does not exist for 8/27/2008u201D.
    Thanks&Regards,
    Babu
    09930154536

    Dear Babu,
    The Profit Center of the selected material has expired validity. Just extend the validity through KE52 and press the button 'extend the validity period' to current year. I think that your problem will be solved.
    Trust this helps much!
    Cheers,
    Ashok SINGH

  • The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.

    I am experiencing this error with one of our cluster environment. Can anyone help me in this issue.
    The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.
    Thanks,
    Venu S.
    Venugopal S ----------------------------------------------------------- Please click the Mark as Answer button if a post solves your problem!

    Hi Venu S,
    Based on my research, you might encounter a known issue, please try the hotfix in this KB:
    http://support.microsoft.com/kb/928385
    Meanwhile since there is less information about this issue, before further investigation, please provide us the following information:
    The version of Windows Server you are using
    The result of SELECT @@VERSION
    The scenario when you get this error
    If anything is unclear, please let me know.
    Regards,
    Tom Li

  • On file open: "This document contains JavaScript code for a widget that no longer exists."

    I had an existing, functional datepicker in a web page.
    Recently I downloaded the UI Datepicker in the Widget Browser and installed it in DW CS5. Now every time I load the file that calls the datepicker that I added myself, a warning opens with the following text:
    This document contains JavaScript code for a widget that no longer exists. If you don't remove the code, the browser might display JavaScript errors when loading the page. Would you like Dreamweaver to find all instances of this code for you?
    Widget: $("#reservDateBegin").datepicker();
    Widget: $("#reservDateEnd").datepicker();
    Clicking "Yes" opens the file and shows the search box at the bottom of the window with [current document] in File and $("#reservDateEnd").datepicker(); in Matched Text. Clicking "No" just opens the file.
    The error is wrong, since installing the widget is what caused the error in the first place!
    How can I get DW to stop showing this message?
    Thanks for any help.

    I do understand you're trying to be helpful. I was just hoping providing the relevant code snippets would be sufficient so I didn't have to take the time to provide a "cleaned" version of the files and upload those to a public-safe location.
    Zabeth69 wrote: If you don't understand what 'code at the bottom of the page' means, you have not used one of those systems. I don't know what causes the error code to come up (besides removing a Spry widget, I mean). So if it doesn't apply to you, ignore it.
    This is exactly my point: I haven't used any of the DW "systems". I've always manually coded in DW, so I can't have removed a Spry widget in the first place. It wasn't until I installed the Widget using the Widget Browser that I started getting the error (I don't mean adding the datepicker widget to the code using the DW Insert menu - I mean installing the Widget into DW itself). Ignoring such an erroneous/incorrect error seems kind of silly, since every time I open the file I get the error message.
    Anyway, as requested, the following are links to the contactUsCleaned.php page, and the php included headerCleaned.php file. Since these use php includes to complete the rendered HTML, they won't look right in the browser, but as you know viewing the source will show the relevant html, javascript, and jquery code. I didn't see any way to upload the files in this forum, which, due to the php code, would be preferable to see exactly what my code looks like...
    http://www.eventidewebdesign.com/public/contactUsCleaned.php
    http://www.eventidewebdesign.com/public/headerCleaned.php
    The footer.php file the contactUs page includes is simply a set of HTML links to the pages on the site, copyright info, and the Google Analytics script. There is no other code in the footer.php file.

  • Profit Center 990612 does not exist in Company Code XYZ

    Dear Friends,
    During the time of posting through t.code F-02 than system is showing the below error :-
    Message no Z1008
    The Profit Center entered does not exist in this company code.
    Enter the correct profiot center which belongs to this company code.
    To search for profit center by comapny code, use matchcode type
    'Z' - Profit Center by company code and name.
    Please advice.
    Thanks & Regards,
    Pankaj

    Hi Pankaj
    This message is a Z message, which means your own creation
    Go to OB28 and check where have you written the Validation step to check this
    Also, check if the PC exists in that comp code or not
    br, Ajay M

  • Can't open MMC - An attempt was made to reference a token that does not exist

    I have a Windows 7 Pro, x64 - I'm trying to open the MMC and I get the error:
    An attempt was made to reference a token that does not exist.
    Ok, I open a cmd prompt (elevated), goto the \windows\system32 dir and run the command:
    For /F %s in (‘dir /b *.dll’) do regsvr32 /s %s
    And I just get "the system cannot find the file 'dir.
    I have no idea what this means.  Many others who have ran that command have had success (from looking at other forums).  Just my luck - it doesn't work.
    What do you think could be wrong here?

    For /F %s in (‘dir /b *.dll’) do regsvr32 /s %s
    And I just get "the system cannot find the file 'dir.
    I have no idea what this means.
    It means you have a bug in your script and because of the bug the script tried to look for a file named "dir".
    So what's the /F for in the script?
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • An Attempt was made to reference a token that does not exist - SAPB1 8.8

    Dear All,
    System throws an error message as "An Attempt was made to reference a token that does not exist" while connecting Add-on in Client system in SAP Business 8.8 version
    Please do the needful
    Thanks & Regards
    Venkatesh N

    Hi Venkatesh N,
    Are you got any solution for this issue?
    I also face a same problem with you. I got the a reply is "Reinstall the application".
    But this is not the main solution for the problem.
    If you got any solution, hope you can share with me.
    Thank you.
    regards,
    Sheon

Maybe you are looking for

  • I can no longer print from Firefox ie my emails etc.

    I cannot print emails anymore and I have to print other things from web searches with no results. Paper just feeds straight through the printer and print previews are blank. I can print pdfs etc from my documents and did print from internet explorer

  • [JCO.ServerThread-1] ERROR  SERVER-EXCEPTION - [null,null,null,] com.sap.mw

    When we execute a SAP transaction through xMII, xMII server is brought down. I looked in the cms.log file and found this: <b><i><i>2007-10-16 11:07:23,355 [JCO.ServerThread-1] ERROR  SERVER-EXCEPTION - [null,null,null,] com.sap.mw.jco.JCO$Exception:

  • I have tried every instruction re getting Java to work and it still won't.

    This is a new computer and I'm adding what I had on my former computer. I need Java to do the puzzles I like. I've followed instructions in the article about this using the tools. I've done everything you suggest. It still blocks the application. I a

  • Which computer and why?

    Looking to buy a new computer that will mainly be used for PS CS4 (perhaps CS5), Lightroom and some videoediting. No games that demand heavy graphics acceleration or stuff like that but I want CS4/CS5 to run smooth and without problems. I´ve been loo

  • How can we disable keyboard shortcuts on webpages?

    I am using the add-on firemacs, which allows us to edit text with emacs key-bindings. The problem is: some key-bindings (set by firemacs) are overwritten at several webpages (e.g. Evernote and StackExchange). For example, Ctrl-b moves normally the te