Plant  and Material data in New GL

Currently, we are implementing ECC6 New GL and BW management reporting. The requirement is to report all inventory related costs and COGS by plant code.
The profit center structure (model) is not supporting the plant view.
Is there anyway to populate the plant and material code in the ne GL FAGLFLEXT table. The reporting is done in BW and currently SAP provides standard extractor for the new GL summary table.
SAP documentation says it's possible to add ZZ customer fields like plant and material to the new GL table.
Anyone in SAP community have experience with addition of customer fields to new GL table. If YES, how did you solve the configuration issue? Any help is appreciated.
Thanks
Krishna Bhat

Hi Kishan,
Plant is avaialable as 'standard' field for additional field in FAGLFLEXT. It's added as ZZWERKS but you don't have to create coding block field. The field can be added by trx.FAGL_GINS.
Note 923687 gives the example about material field.
Br, Kyoko

Similar Messages

  • How to  find the Open sale orders till date for  given plant and material ?

    Hi experts,
                     I have a requirement to calculate the open sale orders for a given plant and material. I have tried in VA05 wherein i can get only for the material and sales area combination. From the document nos obtained from VA05 i can then find the plant. But my question is how do i get the output of VA05 into my progra. (can i use submit for a module pool report ).
    Also if ther is some other standard table or Function module to find the open sale orders till a given date ,it will be even more helpful....in which case i can drop the VA05 route.
    Kindly help
    Thanks in advance
    Ashwin

    Hi Ashwin,
        You can use SAP Tables VBAK and VBUP to get to know if the document is complete or not.
       VBUK-GBSTK is the field that will give you the status of the Sales Order .
      VBUK is used at header level , whereas VBUP is used for Item level.
      So in your case what I would do is :
      Get the Sales Orders that satisy the plant and material criteria from VBAP table , take this Sales Document numbers and go to VBUK or VBUP table to get the Sales Order Status. 
       If I need to find the open quantity as well I will link to VBFA table based on the document number.
      Reward if helpful.
    Thanks,
    Imran

  • Collect in an internal table with keys plant and material

    Hi ,
    I have an output internal table with material , plant and var quantitites .
    I would like to use Collect statement and sum the quantities but do it by plant and material .
    How do I specify that i want to do it on plant or material ?
    Thanks !

    hi here is an example like urs..
    DATA: BEGIN OF seats,
            carrid TYPE sflight-carrid,
            connid TYPE sflight-connid,
            seatsocc TYPE sflight-seatsocc,
          END OF seats.
    DATA seats_tab LIKE HASHED TABLE OF seats
                   WITH UNIQUE KEY carrid connid.
    SELECT carrid connid seatsocc
           FROM sflight
           INTO seats.
      COLLECT seats INTO seats_tab.
    ENDSELECT.
    check for help..
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/collect.htm
    regards,
    venkat

  • Function Module to get PO details based on Plant and PO date

    Hi
    1. Is there any Function Module to get PO details based on Plant and PO date?
    2. Is there any Function Module to get Material document details based on PO number?
    Thanks
    Narendra

    hi,
    check these standard reports.
    ME2L - By vendor
    ME2M - By material
    MSRV3 - By service
    ME2K - By account assignment
    ME2C - By material group
    ME2B - By tracking number
    ME2N - By PO number
    ME2W - By supplying plant
    also chck this func module.
    REPL_LIST_PURCHASE_ORDER_READ
    reward if hlpful.

  • Validate plant and material on selection screen

    Hi all,
    I want to validate plant and material on selection screen. More over I need to validate the combination of that also (i.e plant based materials). Individually I made the validations, but combination I didn’t get it.
    For your information both are select-options, please reply me if you have an idea. The table to get the relationship is KEKO. I have the below code for parameters, but I require code for select options.
    SELECT MATNR WERKS FROM KEKO UP TO 1 ROWS
    INTO (KEKO-MATNR, KEKO-WERKS)
    WHERE MATNR = P_MATNR AND
    WERKS = P_WERKS.
    IF SY-SUBRC <> 0.
    MESSAGE E023 WITH 'COST ESTIMATE NOT FOUND FOR '
    P_MATNR P_WERKS 'COMBINATION'.
    ENDIF.
    ENDSELECT.
    <b>Note: I need to calidate on KEKO only..</b>
    Surely I will reward you.
    Thanks in Advance,
    Raghu.

    Hi rag ,
    The following code will works .... i have practically used in my report.
    Local data declaration
      DATA: l_material TYPE matnr.
    Validation check for material
      IF s_matnr IS NOT INITIAL.
        SELECT matnr          "material
          FROM mara
            UP TO 1 ROWS
          INTO l_material
         WHERE matnr IN s_matnr.
        ENDSELECT.
        IF l_material IS INITIAL .
        Invalid material entered .
          MESSAGE e136.
        ELSEIF s_mawerk IS NOT INITIAL.
          CLEAR l_material .
        Validation check for material exists in plant
          SELECT  matnr        "material
            FROM marc
            UP TO 1 ROWS
            INTO l_material
           WHERE matnr  IN s_matnr
             AND werks IN s_mawerk.
          ENDSELECT.
          IF sy-subrc NE 0 .
          Invalid material entered for the plant.
            MESSAGE e130.
          ENDIF .
        ENDIF.
      ENDIF.

  • Quickest method - Plant and due date to o/s PO and SA items

    Due to volumes, performance is an issue for a Z report. Ideas on quickest method to get to outstanding PO items and SA Delivery Schedule items due on given dates for a single Plant. There are other search criteria but I don't believe these will be tightly specified and Plant and due date (at EKET or EKES level, as applicable) are the prime ones.
    Thanks,
    Nick
    Moderator message: please do not cross-post, one thread only per problem.
    Edited by: Thomas Zloch on Jun 9, 2011 11:02 AM

    OK. I've found a solution... which works if a customer never indicates different delivery dates on a same Sale Order.
    As you can see in the system information view, the field described as "Del. date" in the Sale Order lines is named <b>ShipDate</b> !
    So I simply use a FormatedSearch to change its content according to the Sale Order Document Due Date and the customer location.

  • Quick method - Plant and due date to outstanding PO / SA DS items

    Due to volumes, performance is an issue for a Z report.  Ideas on quickest method to get to outstanding PO items and SA Delivery Schedule items due on given dates for a single Plant.  There are other search criteria but I don't believe these will be tightly specified and Plant and due date (at EKET or EKES level, as applicable) are the prime ones.
    Thanks,
    Nick

    Hi Veera,
    I am using XI 3.0 TO SRM 5.0.
    If you would like to ask me anything more please do.
    Waiting for your reply.

  • Validate plant and material on selection screen with select-options

    Hi all,
    I want to validate plant and material on selection screen. More over I need to validate the combination of that also (i.e plant based materials). Individually I made the validations, but combination I didn’t get it.
    For your information both are select-options, please reply me if you have an idea. The table to get the relationship is KEKO. <b>I have the below code for parameters, but I require code for select options.</b>
    SELECT MATNR WERKS FROM KEKO UP TO 1 ROWS
    INTO (KEKO-MATNR, KEKO-WERKS)
    WHERE MATNR = P_MATNR AND
    WERKS = P_WERKS.
    IF SY-SUBRC <> 0.
    MESSAGE E023 WITH 'COST ESTIMATE NOT FOUND FOR '
    P_MATNR P_WERKS 'COMBINATION'.
    ENDIF.
    ENDSELECT.
    Surely I will reward you.
    Thanks in Advance,
    Raghu.

    Raghu,
    You can't validate on select-options, MARC will have N to 1 relation between Material and plant.
    You can do one thing, keep material as select-option and plant as parameter, now you can validate the materials on plant level.
    Reward if this helps,
    Satish

  • Report to transport vendors for a plant and material type

    Hi Guys ..
    Is there any report fwhere is can download all the vendors for a particular Plant and type of material.
    Thanks for your support

    Hello Vivek,
    I have checked these tables but my issue is to get the list of Material numbers in the table along with a field for Class type.
    So this does not happen in these tables.
    However thank you for the tables given
    Regards
    Mahesh

  • How to transfer iPhone apps and their data to new MacBook Pro?

    I just got the new Retina Macbook Pro. Before, I synced my iPhone with my iMac. Now I want to sync my iphone with my new RMBP instead. I transfered my music and applications to the new Mac. My music syncs to my iPhone just fine, however, if I click to check to sync my iPhone applications to this computer then a warning message pops up saying all my existing apps and data will be deleted. I aready clicked transfer purchases to my new Mac, so all my apps are already on the computer.
    But how do I get my apps to sync with my new Mac, without deleting all my apps data?

    Follow steps 1 ~ 9 here:
    https://discussions.apple.com/docs/DOC-3141

  • Invoice verification for G/L account according to plant and material

    Hello,
    In MIRO I need to post a value against a G/L account, and need to connect it to a material and plant.
    These fields appear in the table settings of table ACGL_ITEM, which is the table for the fields of the G/L account tab, but the lengths of these two fields are 0.
    I've added the fields to the layout that I want to use in the G/L account tab, but because they have 0 length, they do not appear in the layout.
    Does anyone know how I can add them to the G/L account tab, and also see them?
    Thanks,
    Sivan

    Hi
    You need to activate direct postings in the below customization
    spro>MM>Logistics invoice verification>incoming invoice->Activate direct postings to GL accounts and material accounts.
    Inside you need to activate both
    Regards
    Antony

  • Backing up and restoring data to new cucm server

    Our publisher server went down.I have back up for the device.Cisco have send me the new CUCM server.Is there is any possible method i can restore the back during the installation or do i have to start installation from the scratch and after completing only i can restore the data.
    Sent from Cisco Technical Support iPhone App

    You install CUCM, THEN, you can restore a backup.
    HTH
    java
    if this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • Move DPM Server and Disk Data to New Server

    What would be the best way to move my current DPM 2012 R2 to a completely new server with all new disks for storage. The data disk are not locally attached storage, but drives physically in the new server and old server. I read the article about moving
    the database but am not sure about the migration of the data. How do I get the data from the old server to the new server when not using an external drive array.
    Thanks

    What would be the best way to move my current DPM 2012 R2 to a completely new server with all new disks for storage. The data disk are not locally attached storage, but drives physically in the new server and old server. I read the article about moving
    the database but am not sure about the migration of the data. How do I get the data from the old server to the new server when not using an external drive array.
    Thanks
    Hi,
    On your new server get DPM installed, make sure your disks with your replica's from the old server are in the new server, restore the DPM DB and then run dpmsync. Once DPM is operational you can move the data to the new disks. You can use a GUI tool by Michael
    Seidl to move the replicas to the new disks. Here is the link:
    https://gallery.technet.microsoft.com/Migrate-DPM-Disk-or-dea8d4e9
    My Blog | www.buchatech.com | www.systemcenterportal.com
    If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer". This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion
    in a test environment before implementing!

  • Changing internal hard disc on MBP and moving data into new one

    I have recently taken my MBP into service.
    The mother board is dead.
    My hard drive is ok (thank God!)
    I have taken the drive out and backing it up while my MBP is in service.
    I wish to buy a replacement 500GB drive for the MBP and give this to Apple when they have replaced my motherboard.
    Can I copy all the data from my current 250GB into the new drive?
    Even Apps, library and Snow Leopard system etc, like clone the 250 to the 500?
    Will everything from Snow Leopard system to Apps work?
    If so, how do I do this given that the new 500GB drive will be installed into the MBP?
    My 250GB has in a new external shell with USB port.
    If this is doable, this will save me a lot of time and I can start work again.
    Also I get an extra 250gb of free space from the new 500gb drive which will be my virtual space for Photoshop.
    Cal

    Dear friend,
    There is (or there was) also a solution (I don't know exactly what is your situation)
    wich is to make a complete Time Machine backup of your disk to an external drive,
    and then, after installing your hard drive, to start with Apple Install DVD and choose
    (NOT to install) the "Restore from Time Machine backup" in the Utilities.
    You will *not loose* any byte, any preference, nor anything else. It works very well.
    But perhaps can't you do that. Good luck !
    Kind regards
    Olivier Herrbach

  • Report with plant and expenditure data.

    My clients requirement is as below.
    Need a report from Plant maintenence of the total spend per plant for 2007
    Report columns should be:
    Plant Name  -- Dollar Spend
    can any one suggest any one table or a combination from which i can pull the data?

    Hii..
    I can give you some idea how to give such kind of report.
    you can extract data from bseg giving all the g/l's of expenditure with the plant on the input screen u can give Plant & FY.the logic would be as soon as the user enter the input data the zreport reads amount posted to all the g/ls for that particular FY for that particular plant.
    Hope it will help you.
    Regards,
    Aakash

Maybe you are looking for

  • Internet and a onboard lan in asus m2n-mx se

    Hi! Recently I have changed my motherboard to an asus m2n-mx se, wich have lan onboard... My previous motherboard had lan onboard too (asus a7v600-x), and I have used it with dhcp without problems... But now, I am trying to use dhcp and is not workin

  • HT1495 When I try to open iTunes on my PC it it's locked and won't open?

    When I try to open iTunes on my PC it it's locked and won't open?

  • ABAP Query - Differences in generated code after upgrade

    Hi all, We have upgraded to ECC 6. from 4.6C. We are experiencing differences between the behaviour of some queries in different systems. This can be as subtle as some of the output parameters not appearing on the selection screen (such as the option

  • Can't connect one but I connect the other. Help!!

    I have 2 Macbooks in my household. One of them connects to the internet just fine. One of them will not. It can connect to any other router but NOT this one. Airport recognizes the router, and even shows it as available. But for whatever reason it ju

  • Servlets and Jbuilder

    although I am writing a right code in the Jbuilder that has to do with servlets I am getting this error: "Hello.java": Error #: 750 : initialization error: com.borland.compiler.symtab.LoadError: class file has wrong version 48.0 Could someone tell me