Overhead Calculation not display

Hi,
Please tell me while I do Overhead Calculation through KGI2, inspite of successful posting I cannot find overhead calculation figure which has posted to GL accounts. There is no errors, update successful and I click the icon to get the result but it does not shows line items. As per our scenario we use sales order costing. In sales order level costing is calculated and overhead shows properly as Material overhead, Admin overhead, production overhead ans Sales and Distribution overhead as configured in Cost componenet layout and cost sheet. In costing sheet Material cost is maintained under base as Total Cost. So overhead should calculated on Total cost of Material cost but it calculates on Variable cost. In KP26 I have tested both either fixed and variable cost price. Still it calculate on Variable cost inspite of cost sheet base is maintained on Total Cost. We use % Overhead calculation.
After sales order we prepared production order and final confirmation is made on production order's quantity issued. After that while I run 4 cycle which are Overhad calculation, WIP calculation, variance calculaton and settlment of production order then in first step I found Overhead calculation output does not appear. Even I cannot find any error also. What is the reason ?
Best Regards,
Samrat Roy

Dear,
Check your origin group & material unit of mesaurement is same.
some time in costing sheet origin group is maintain in different unit & for materail it's maitain in other unit of mesaurement.
You can see unit of measure for material in Additional data - unit of measure.
Check BOM component material unit also.
Check same  unit of measure is maintain in KZS2
I hope above will useful.
GOPAN

Similar Messages

  • Overhead calculation not happening after using Overhead key and orgin group

    overhead calculation not happening after using Overhead key and orgin group.
    There was a runtime error earlier related to u201Cdefine credit u201C IMG node under costing sheet component and we have applied SAP note 769946 and that error was gone out of the way
    We want to apply/add Overhead to SFG/FG materials.
    We are using PP order with PCC(product cost collector) as the cost object , i.e costing by period.(system ECC 6)
    But our problem is with material standard cost estimate process.
    We have assigned overhead keys to the percentage rates in costing sheet for material standard costing and assigned the origin groups to the credits of costing sheet. But after running the cost estimate overhead is not taking into account for standard cost calculation.
    In the define credit entry table key field is valid to date strangly and actually system should allow one than one entry with same valid to date and same sec.Cost element(type-41) for different cost centers.
    But if we without using overhead key and origin group, the entire cost in that supporting cost center will come to all materials (SFG/FG) and we can not distinguish between different product materials(SFG /FG).
    We have checked all things as mentined below.
    Firstly that the correct costing sheet is assigned to the valuation
    variant.
    That the costing sheet is entered for the appropriate material type:
    Finished and semi finished or material components.
    All of the above can be checked and verified via transaction OKKN.
    In addition make sure that the base value maintained is present in the
    costing, for example the base may include an Origin group, is that
    origin group part of the materials being costed?
    Similarly if the base is found and values exist how is the overhead
    rate of the costing sheet set up, is it valid etc.
    And finally do a similar check for the credit.
    we doubt this as a programm error...
    So, request all experts to have ur feedback..

    Dear,
    Check your origin group & material unit of mesaurement is same.
    some time in costing sheet origin group is maintain in different unit & for materail it's maitain in other unit of mesaurement.
    You can see unit of measure for material in Additional data - unit of measure.
    Check BOM component material unit also.
    Check same  unit of measure is maintain in KZS2
    I hope above will useful.
    GOPAN

  • Overhead calculation not happening after using orgin group.

    overhead calculation not happening after using orgin group.
    There was a runtime error earlier related to u201Cdefine credit u201C IMG node under costing sheet component and we have applied SAP note 769946 and that error was gone out of the way
    We want to apply/add Overhead to SFG/FG materials.
    We are using PP order with PCC(product cost collector) as the cost object , i.e costing by period.(system ECC 6)
    But our problem is with material standard cost estimate process.
    We have assigned overhead keys to the percentage rates in costing sheet for material standard costing and assigned the origin groups to the credits of costing sheet. But after running the cost estimate overhead is not taking into account for standard cost calculation.
    In the define credit entry table key field is valid to date strangly and actually system should allow one than one entry with same valid to date and same sec.Cost element(type-41) for different cost centers.
    But if we without using overhead key and origin group, the entire cost in that supporting cost center will come to all materials (SFG/FG) and we can not distinguish between different product materials(SFG /FG).
    We have checked all things as mentined below.
    Firstly that the correct costing sheet is assigned to the valuation
    variant.
    That the costing sheet is entered for the appropriate material type:
    Finished and semi finished or material components.
    All of the above can be checked and verified via transaction OKKN.
    In addition make sure that the base value maintained is present in the
    costing, for example the base may include an Origin group, is that
    origin group part of the materials being costed?
    Similarly if the base is found and values exist how is the overhead
    rate of the costing sheet set up, is it valid etc.
    And finally do a similar check for the credit.
    we doubt this as a programm error...
    So, request all experts to have ur feedback..

    Dear,
    Check your origin group & material unit of mesaurement is same.
    some time in costing sheet origin group is maintain in different unit & for materail it's maitain in other unit of mesaurement.
    You can see unit of measure for material in Additional data - unit of measure.
    Check BOM component material unit also.
    Check same  unit of measure is maintain in KZS2
    I hope above will useful.
    GOPAN

  • Calculated member not displaying

    I have a calculated member that has a case statement with many many when clauses. I have included a part of the code below. But when a member doesn't exists in the "Beginning Buildings" calculated member doesn't appear in the cube as a measure.
    If I comment out the lines where the member doesn't exists then I can see the calculated member in the cube.
    So on the code below if I comment out the first when clause that has [FEB Estimate] in the Edition dimension I can see the calculated member in the cube. The Edition dimension doesn't have this member anymore but since is in a CASE statement it should
    not find it still display the member.
    CREATE MEMBER CURRENTCUBE.[Measures].[Beginning Buildings]
    AS
    case
    when [Dim Edition].[Editions].CurrentMember is [Dim Edition].[Editions].[Qtr].&[FEB Estimate]&[1]
    then SUM([Dim Edition].[Editions].[Month].&[Year12 Actuals]&[4]&[12], [Measures].[base Buildings In Inventory])
    when [Dim Edition].[Editions].CurrentMember is [Dim Edition].[Versions].[Qtr].&[Year13 Budget]&[1]
    then SUM([Dim Edition].[Editions].[Month].&[Year12 Actuals]&[4]&[12], [Measures].[base Buildings In Inventory])
    else
    SUM([Dim Edition].[Editions].Prevmember, [Measures].[base Buildings In Inventory])
    end
    FORMAT_STRING
    = "#,##0",
    VISIBLE
    = 1, DISPLAY_FOLDER = 'Building';

    maybe I didn't explain it clearly but say I have this
    case
    when [Dim
    Edition].[Editions].CurrentMember
    is [Dim Edition].[Editions].[Qtr].&[FEB
    Estimate]&[1]
    then SUM([Dim
    Edition].[Editions].[Month].&[Year12
    Actuals]&[4]&[12],
    [Measures].[base
    Buildings In Inventory])
    when [Dim
    Edition].[Editions].CurrentMember
    is [Dim Edition].[Versions].[Qtr].&[Year13
    Budget]&[1]
    then SUM([Dim
    Edition].[Editions].[Month].&[Year12
    Actuals]&[4]&[12],
    [Measures].[base
    Buildings In Inventory])
    else
    SUM([Dim Edition].[Editions].Prevmember,
    [Measures].[base
    Buildings In Inventory])
    end
    the calculated measure doesn't this play
    but if I have this
    case
    when [Dim
    Edition].[Editions].CurrentMember
    is [Dim Edition].[Editions].[Qtr].&[FEB
    Estimate]&[1]
    then SUM([Dim
    Edition].[Editions].[Month].&[Year12
    Actuals]&[4]&[12],
    [Measures].[base
    Buildings In Inventory])
    else
    SUM([Dim Edition].[Editions].Prevmember,
    [Measures].[base
    Buildings In Inventory])
    end
    the calculated measure displays.
    Why is that?
    I have another cube that has the same type of case statement and it displays even though some case statements are not meet.

  • Hidden Sort - Order by calculation that is not displayed

    Hi,
    I want to sort by the absolute value of a column, but do NOT want to display that absolute value. Rod West mentioned a 'hidden sort' in a previous post, but I can't find any way to do it.
    Is it possible? If it matters, the column in question is a calculation itself - the sum of 2 other columns.
    The worksheet is in Discoverer Desktop 10.1.2.
    Thanks in advance,
    Dawn

    Hey Dawn.
    The concept of the crosstab is that you cannot sort on a data column as you are presenting a 3d look at the data. So unlike a table, you may be seeing records from all over the table (ie: not concurrent records, etc.) and it's therefore more difficult (well it is for me anyway).
    So, first of all, if you want it to be a xtab, then fine.
    But you mentioned that if it was a table, then you are getting several lines for each customer - one for each order or return.
    So, if using a table - which will be easier for what you want to do IMO, let's see if you can rework it for that.
    Suppose for the first column you had the customer id.
    Then for the second column you wanted to display just the month for the data.
    Then for the third column, you had the total dollar order amount for that customer for the month. So for that item, could you not just display 'total dollar amount SUM'?
    Then for the fouth column, similarly could you not just display 'final sales amount SUM'.
    Then create a calculation on the fourth column such as: ABS(final sales amount SUM). But make sure the calculation is checked off to not display it.
    Then in the SORT, could you not sort by the calculation (hidden), month (GROUP SORT) and customer id (GROUP SORT),
    Something like that should be what it sounds like you're trying to accomplish.
    Makes sense?
    Russ

  • 'Calculated Result' (profit/loss) is not displayed in BW query (NW04s)

    The hierachy for financial statement item (0GLACCEXT) contains the folowing nodes:
    -> Stocholder's Equity
    > Profit/Loss current year
    > Calculated profit (0COA/0BSRESULT-)
    > Calculated profit
    > Calculated loss
    > Calculated loss (0COA/0BSRESULT+)
    When I run a balance sheet query against virtual cube 0FIGL_V11, I don't get any data for nodes 'Calculated profit' & 'Calculated loss'.

    Dear gurus,
    I am searching to solve the same issue you Raynald reported...
    Unfortunately, despite the 0BAL_DEPEND information correctly updated, this note  0COA/0BSRESULT+) does not appear.
    Everything looks OK on the configuration side...Anyone has an idea what could cause the calculation not to be done ?
    PY

  • Fixed base overhead calculation on output quantity

    Dear Guru's
    I want to calculate the overhead @ fixed rate on the basis of output quantity of finished goods.
    For the said purpose, I am using quantity based overhead calculation in SPRO. The overhead rate "C110" is being used with dependency D010 (Overhead Type/Overhead Key). Here i have maintained the fixed amount per tonne basis with overhead key "SAP1".
    I have maintained the overhead key SAP1 in material master's. But still it's not calculating and not displaying anything in the line items. Also to my surprise, no error is displayed at the time of production order and standard cost estimate.
    Please help me on the above issue.
    A detailed help stating what possible errors I may have done would be helpful.
    Thanks,
    Sumit

    Hi
    Lets assume you choose Output (KG) to absorb the overhead
    1. You need to create an Activity Type called PRDOVH and assign it in the PP Work center... Assign the cost element of this act type to a separate cost component in OKTZ
    2. While creating the Routing, the Activity Qty = Operation Qty for this Act Type... i.e. If you are creating routing for 100 Units, specify the Act Qty for PRDOVH as 100...
    3. The Formula in the work center will be fully variable for this Act Type.. i.e. the Act Qty should change in proportion to the Qty Confirmed....
    4. The PP Guys will confirm the operation in PP... This Act Type will also get confirmed along with it
    5. Now calculate Act Price KSII as usual and run revaluation... From this point onwards, follow the normla procedure which you follow in month end
    br, Ajay M

  • Cost Sheet is not displaying condition values

    Hello All,
    When i am running the transaction code KGI2.
    System is calculating the Overhead values and updating the Actual Overhead cost for the Oder but it is not  displaying the values in the Cost Sheet, when we select Dialog display check box.
    Can any one help me out. do  have to do some thing in the Configuration to get this values displayed in the Dialog Display feild.
    Best Regards.
    Ravi

    Hi,
    First define the Costing sheet in SPRO
    Click new entries and select  define Costing sheet with Description
    Now select the costing sheet and double click on the Costing sheet rows, now click new entries
    enter row ,overhead  ,description and save
    Click Check to check the costing sheet
    Assign costing sheet to your Production order..Enter in the assigned costing sheet,r the overhead that have overhead key
    Assign overhead key to the overhead group
    Regards,
    Raj

  • Overhead is not getting updated in the production order

    Hi all,
    I am running actual overhead calculation with KGI2.
    But the overheads are not getting updated in the order.
    Order contains relevant overhead key also.
    What could be the possible causes?
    SmanS

    Arun/ Suleman,
    Thank you for your reply.
    I have maintained the % in the costing sheet against the 'Overhead rate' but I didn't get the secondary cost element.
    Request you to elaborate it further & explain me how to maintain the same.
    Also I will be thankful to you, if you could explain me the exact process of loading the overhead on the order i.e. how it loads the overhead form the cost center to order? What happens to the total cost which was lying on the cost center etc, in details.
    Mean while I had maintained the required values in costing sheet in KZS2.
    Maintained the % against material overhead rate as well as manufacturing overhead rate.
    Maintained the credit values for the overhead rate.
    Maintained the calculation base values also.
    Now while overhead calculation with KGI2, I am getting two errors as follows,
    1. S:K5:162 E02 20090831
    2. Error CREDIT_SEGMENTS_ADD COIOB NOT FOUND for object
    I can not figure out the reason.
    SmanS
    Edited by: SAP PP Consultant on Aug 10, 2009 6:47 AM

  • ALV grid is not displaying few fields of final internal table of type DMBTR

    hello frnds,
    i am displaying 10 fields in ALV grid using field catalog.
    among them five fields are currency fields on which i doing some arithematic operations. but all these fields are not getting displayed in alv grid.
    here is my code....
    declaring final strucutre to generate report
    TYPES:BEGIN OF ty_final,
              gjahr   TYPE gjahr,       " Year
              wwert   TYPE wwert_d,     " Traslation date
              bukrs   TYPE bukrs,       " company code
              hkont   TYPE hkont,       " General ledger account
              txt20   TYPE txt20_skat,  " Account name
              belnr   TYPE belnr_d,     " Purchase order number
              shkzg   TYPE shkzg,       " Dt/Cr indicator
              dmbtr1   TYPE dmbtr,       " Ammount in local currency
              v_alc   TYPE dmbtr,       " Ammount in local currency
              wrbtr   TYPE wrbtr,       " Ammount in foreign currency
              ebeln   TYPE ebeln,       " Purchase order number
              ebelp   TYPE ebelp,       " Item number
              matnr   TYPE matnr,       " Material number
              menge   TYPE menge_d,     " Qunatity
              meins   TYPE meins,       " Unit of measure
              stprs   TYPE stprs,       " Std material master
              v_iv    TYPE dmbtr,       " Invoice value
              pswsl   TYPE pswsl,       " Currency
              v_erc   TYPE dmbtr,       " Exchange rate calculated
              v_op    TYPE dmbtr,       " Order price
              v_uos   TYPE dmbtr,       " Unit order to stock
              v_io    TYPE dmbtr,       " Invoice to order
              v_uv    TYPE dmbtr,       " Unit value
              v_t     TYPE dmbtr,       " Total
              v_d     TYPE dmbtr,       " Differecne
              netpr   TYPE bprei,       " Net price in purchasing document
              v_total TYPE dmbtr,       " Total
              v_os    TYPE dmbtr,       " Order to stock
              v_ito   TYPE dmbtr,       " Invoice to order
              saknr   TYPE saknr,       " G/L account number
           END OF ty_final.
    FORM move_data.
      IF NOT i_bseg[] IS INITIAL.
        LOOP AT i_bseg INTO wa_bseg.
          wa_final-gjahr  = wa_bseg-gjahr.
          wa_final-bukrs  = wa_bseg-bukrs.
          wa_final-hkont  = wa_bseg-hkont.
          wa_final-belnr  = wa_bseg-belnr.
          wa_final-shkzg  = wa_bseg-shkzg.
          wa_final-wrbtr  = wa_bseg-wrbtr.
          wa_final-ebeln  = wa_bseg-ebeln.
          wa_final-ebelp  = wa_bseg-ebelp.
          wa_final-matnr  = wa_bseg-matnr.
          wa_final-menge  = wa_bseg-menge.
          wa_final-meins  = wa_bseg-meins.
          wa_final-pswsl  = wa_bseg-pswsl.
          wa_final-dmbtr1  = wa_bseg-dmbtr.
          wa_final-saknr  = wa_bseg-saknr.
          wa_final-v_total = wa_bseg-dmbtr.
          READ TABLE i_bkpf INTO wa_bkpf WITH KEY bukrs = wa_bseg-bukrs.
          IF sy-subrc = 0.
            wa_final-wwert = wa_bkpf-wwert.
          ENDIF.
         CLEAR wa_bkpf.
          READ TABLE i_mbew INTO wa_mbew WITH KEY matnr = wa_bseg-matnr.
          IF sy-subrc = 0.
            wa_final-stprs = wa_mbew-stprs.
          ENDIF.
         CLEAR wa_mbew.
          READ TABLE i_ekpo INTO wa_ekpo WITH KEY ebeln = wa_bseg-ebeln.
          IF sy-subrc = 0.
            wa_final-netpr = wa_ekpo-netpr.
          ENDIF.
         CLEAR wa_ekpo.
          READ TABLE i_skat INTO wa_skat WITH KEY saknr = wa_bseg-saknr.
          IF sy-subrc = 0.
            wa_final-txt20 = wa_skat-txt20.
          ENDIF.
    calculating output values
          IF wa_bseg-shkzg = 'H'.
            wa_final-v_alc = -1 * wa_bseg-dmbtr.
          ELSEIF wa_bseg-shkzg = 'S'.
            wa_final-v_alc = 1 * wa_bseg-dmbtr.
          ENDIF.
         DATA : l_c_v_alc TYPE p DECIMALS 2,
         l_c_v_iv TYPE p DECIMALS 2.
         l_c_v_alc = wa_final-v_alc.
          IF wa_bseg-menge NE 0.
            wa_final-v_iv = wa_bseg-dmbtr / wa_bseg-menge.
          ENDIF.
          IF wa_bseg-dmbtr NE 0.
            wa_final-v_erc  = wa_bseg-wrbtr   / wa_final-dmbtr1.
          ENDIF.
          IF wa_final-v_erc NE 0.
            wa_final-v_op   = wa_ekpo-netpr   / wa_final-v_erc.
          ENDIF.
          wa_final-v_uos  = wa_mbew-stprs   - wa_final-v_op.
          wa_final-v_io   = wa_final-v_iv   + wa_final-v_uos.
          wa_final-v_uv   = wa_final-v_uos  + wa_final-v_io.
          wa_final-v_t    = wa_final-v_uv   + wa_bseg-menge.
          wa_final-v_d    = wa_final-v_t    - wa_final-v_alc.
          wa_final-v_os   = wa_final-v_uos  * wa_bseg-menge.
          wa_final-v_ito  = wa_final-v_io   * wa_bseg-menge.
          CLEAR wa_bseg.
          APPEND wa_final TO i_final.
          CLEAR wa_final.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "data_retrieval
    *&      Form  build_fieldcat
          text
    -->  p1        text
    <--  p2        text
    FORM build_fieldcat.
      CLEAR wa_fieldcat.
    *  TYPES : v_alc TYPE dmbtr. "curr. " decimal 2.
    DATA: l_c_v_alc TYPE p DECIMALS 2,
    l_c_v_iv TYPE p DECIMALS 2 .
    l_c_v_alc = v_alc.
    l_c_v_iv = v_iv.
    Constant Declarations.
      CONSTANTS:
                l_c_gjahr(5)   TYPE c VALUE 'GJAHR',      " Year
                l_c_wwert(5)   TYPE c VALUE 'WWERT',      " Traslation date
                l_c_bukrs(5)   TYPE c VALUE 'BUKRS',      " company code
                l_c_hkont(5)   TYPE c VALUE 'HKONT',      " General ledger account
                l_c_txt20(10)  TYPE c VALUE 'TXT20',      " Account name
                l_c_belnr(5)   TYPE c VALUE 'BELNR',      " Doc number
                l_c_shkzg(5)   TYPE c VALUE 'SHKZG',      " Dt/Cr indicator
                l_c_dmbtr(5)   TYPE c VALUE 'DMBTR1',      " Ammount in local currency
               " l_c_v_alc      TYPE c VALUE 'V_ALC',      " Ammount in local currency
                l_c_wrbtr(5)   TYPE c VALUE 'WRBTR',      " Ammount in foreign currency
                l_c_ebeln(5)   TYPE c VALUE 'EBELN',      " Purchase order number
                l_c_ebelp(5)   TYPE c VALUE 'EBELP',      " Item number
                l_c_matnr(5)   TYPE c VALUE 'MATNR',      " Material number
                l_c_menge(7)   TYPE c VALUE 'MENGE',      " Qunatity
                l_c_meins(5)   TYPE c VALUE 'MEINS',      " Unit of measure
                l_c_stprs(5)   TYPE c VALUE 'STPRS',      " Std material master
               " l_c_v_iv(4)    TYPE c VALUE 'V_IV',           " Invoice value
                l_c_pswsl(5)   TYPE c VALUE 'PSWSL',      " Currency
                l_c_v_erc(5)   TYPE c VALUE 'V_ERC',      " Exchange rate calculated
                l_c_v_op(4)    TYPE c VALUE 'V_OP',       " Order price
                l_c_v_uos(5)   TYPE c VALUE 'V_UOS',      " Unit order to stock
                l_c_v_io(4)    TYPE c VALUE 'V_IO',       " Invoice to order
                l_c_v_uv(4)    TYPE c VALUE 'V_UV',       " Unit value
                l_c_v_t(3)     TYPE c VALUE 'V_T',        " Total
                l_c_v_d(3)     TYPE c VALUE 'V_D',        " Differecne
                l_c_netpr(5)   TYPE c VALUE 'NETPR',      " Net price in purchasing document
                l_c_v_total(7) TYPE c VALUE 'V_TOTAL',    " Total
                l_c_v_os(4)    TYPE c VALUE 'V_OS',      " Order to stock
                l_c_v_ito(5)   TYPE c VALUE 'V_ITO',      " Invoice to order
                l_c_saknr(5)   TYPE c VALUE 'SAKNR',      " G/L account number
                l_c_i_final(7) TYPE c VALUE 'I_FINAL'.    " Final internal table
    Fieldcat for fiscal year
      wa_fieldcat-col_pos   =  1.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_gjahr.
      wa_fieldcat-seltext_m = text-007.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Translation date
      wa_fieldcat-col_pos   =  2.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_wwert.
      wa_fieldcat-seltext_m = text-008.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Company code
      wa_fieldcat-col_pos   =  3.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_bukrs.
      wa_fieldcat-seltext_m = text-009.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for General ledger account
      wa_fieldcat-col_pos   =  4.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_hkont.
      wa_fieldcat-seltext_m = text-010.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Account name
      wa_fieldcat-col_pos   =  5.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_txt20.
      wa_fieldcat-seltext_m = text-011.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Doc number
      wa_fieldcat-col_pos   =  6.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_belnr.
      wa_fieldcat-seltext_m = text-012.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Dt/Cr indicator
      wa_fieldcat-col_pos   =  7.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_shkzg.
      wa_fieldcat-seltext_m = text-013.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Ammount in local currency
      wa_fieldcat-col_pos   =  8.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = 'DMBTR1'.
      wa_fieldcat-seltext_m = text-014.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Ammount in local currency
      wa_fieldcat-col_pos   =  9.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = 'V_ALC'.
      wa_fieldcat-seltext_m = text-015.
      wa_fieldcat-ref_fieldname = 'DMBTR'.
    wa_fieldcat-no_sign   = 'X'.
    wa_fieldcat-do_sum    =  c_x.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Ammount in foreign currency
      wa_fieldcat-col_pos   =  10.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_wrbtr.
      wa_fieldcat-seltext_m = text-016.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Purchse order number
      wa_fieldcat-col_pos   =  11.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_ebeln.
      wa_fieldcat-seltext_m = text-017.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Item No
      wa_fieldcat-col_pos   =  12.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_ebelp.
      wa_fieldcat-seltext_m = text-018.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Material number
      wa_fieldcat-col_pos   =  13.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_matnr.
      wa_fieldcat-seltext_m = text-019.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Qunatity
      wa_fieldcat-col_pos   =  14.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_menge.
      wa_fieldcat-seltext_m = text-020.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Unit of measure
      wa_fieldcat-col_pos   =  15.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_meins.
      wa_fieldcat-seltext_m = text-021.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Std material master
      wa_fieldcat-col_pos   =  16.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_stprs.
      wa_fieldcat-seltext_m = text-022.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Invoice value,
      wa_fieldcat-col_pos   =  17.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = 'V_IV'.
      wa_fieldcat-seltext_m = text-023.
      wa_fieldcat-ref_fieldname = 'DMBTR'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Currency
      wa_fieldcat-col_pos   =  18.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_pswsl.
      wa_fieldcat-seltext_m = text-024.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Exchange rate calculated
      wa_fieldcat-col_pos   =  19.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = 'V_ERC'.
      wa_fieldcat-seltext_m = text-025.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Order price
      wa_fieldcat-col_pos   =  20.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_op.
      wa_fieldcat-seltext_m = text-026.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Unit order to stock
      wa_fieldcat-col_pos   =  21.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_uos.
      wa_fieldcat-seltext_m = text-027.
      wa_fieldcat-do_sum    = c_x.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Invoice to order
      wa_fieldcat-col_pos   =  22.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_io.
      wa_fieldcat-seltext_m = text-028.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Unit value
      wa_fieldcat-col_pos   =  23.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_uv.
      wa_fieldcat-seltext_m = text-029.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Total
      wa_fieldcat-col_pos   =  24.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_t.
      wa_fieldcat-seltext_m = text-030.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Difference
      wa_fieldcat-col_pos   =  25.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_d.
      wa_fieldcat-seltext_m = text-031.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Net Price in Purchasing Document
      wa_fieldcat-col_pos   =  26.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_netpr.
      wa_fieldcat-seltext_m = text-032.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Total
      wa_fieldcat-col_pos   =  27.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_total.
      wa_fieldcat-seltext_m = text-033.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Order to stock
      wa_fieldcat-col_pos   =  28.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_os.
      wa_fieldcat-seltext_m = text-034.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Fieldcat for Invoice to order
      wa_fieldcat-col_pos   =  29.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_v_ito.
      wa_fieldcat-seltext_m = text-035.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    fieldcat for invoice to order
      wa_fieldcat-col_pos   =  30.
      wa_fieldcat-tabname   = l_c_i_final.
      wa_fieldcat-fieldname = l_c_saknr.
      wa_fieldcat-seltext_m = text-035.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    ENDFORM.                    "build_fieldcat

    Hi romanch,
    defining the field catalog you must reference all currency fields to the respective currency key field (type CUKY).
    <alv_fieldcat>-cfieldname         = 'HWAER'.
    This is sample for alv output of a currency field. The alv structure has a field HWAER which carries the currency key, e.g. USD or so.
    Obviously you do not provide a cutrrency key for your values. If they are initial (zero), ALV will not display them as 0,00 but leave the field empty if the reference too currency key is not established.
    If you define a DDIC structure for the ALV output this refernce is enforced. You can pass the DDIC structure name to the ALV and don not have to create the field catalog manually.
    Regards,
    Clemens

  • TDS line items are not Display in FB60

    Hi Experts,
    when in simulate a document in  T code- FB60. the TDS amount is calculated properly . DR , Cr is ok but the Line item of the TDS is not displayed.  when i post the document and open in FB03 all line items are dispalyed with TDS Line items also.. Proper Tax code of payment and invoice is attached.
    why not shown in FB60 when simulating a document??

    Hi
    If in FB60 you want to simulate tax items also, click on simulate from menu, you will be able to see the required details. If you click on simulate icon, it will not be visible.
    Regards
    Sanil Bhandari
    <a href="http://www.vcq.biz/">nature wallpapers</a>, <a href="http://www.utorrent.name/">utorrent</a>f in FB60

  • Excise tab is not displaying in migo

    Hi,
    for one material, purchase order has done. when i am going to do migo against purchase order, the excise invoice & excise items tab is not displaying.
    note:- for all other materials(purchase order), excise tab is displaying.
    could you please solve this problem.
    thanks/regards
    vish

    Hi,
    Check the problem with repect to the material,
    Check if the Tax % is assigned properly for the combination of tht material. check J1ID,
    Is in the PO the excise amount calculated? Check the condition records?
    Thanks & Regards
    Kiran

  • Excise Duty, Cess and Secondary Cess not displaying in J1IIN

    Dear Frnds,
    I need a solution for Excise Duty, Cess and Secondary Cess not displaying in J1IIN ( WHILE EXCISE ) but in  Invoice it is calculated correctly., ( ie., i need CENVAT Posted, not utilized
    after excise invoice generated )
    kindly suggest me...
    Thanks & Regards
    T.Arulvanan

    HI.
    Plz check the forllowing settings,
    IMG - Logistic General - Tax on Goods Mvt - India -  Basic Settings -
    1. Maintain Excise Registrations -
           Check Proper Indicator for Cess and other settings.
    2. Maintain Company Code Settings
    3. Maintain Plant Settings
    4. Maintain Excise Groups
    5. Maintain Series Groups
    6. Maintain Excise Duty Indicators
    -- Determination of Excise Duty
    7. Select Tax Calculation Procedure
    --Condition-Based Excise Determination
    8. Define Tax code and assign it to company code
    Properly maintiain fallowing settings and try again..
    Prashant

  • Cost center planning for overhead calculation

    Gurus,
    I have a doubt regarding the cost center planning for overhead calculation.
    My scenario is:
    There is a service cost center from which a certain percentage I want to allocate to the products as overhead. Now while doing so I have created a cost center and a cost element of type 43 (internal activity allocation). This cost element is the base for overhead calculation. Also I have created one cost element of type 41 (overhead rates). I have defined the credit (of cost sheet) with the cost element of type 41 and the cost center as mentioned.
       Now I am facing a problem while planning the cost center with cost element type 43 through KP06.The system is throwing the error message: 'Cost element xxxx can only be used for activity input'. My understanding is we must carry out the planning for the cost center to allocate a certain percentage to the product cost estimate. If I am not allowed to use the cost element of type 43 to plan, what should I use for the planning?
    Request your suggestion.
    Thanks in advance!
    Snigdho.

    Hi
    Since you mentioned catg 43 cost element, I thought you are using Activuty Type
    To apply overhead on the product during CK11N, you need not plan any value on the cost center... The values planned in the cost center can not be used as a BASE in your costing sheet....
    It goes like this
    1. Your cost estimate has BOM + Routing
    2. So, the cost elements that you would see during CK11N, can be broadly classified into 3 types
    a. Primary cost ele - Material Consumption accounts for BOM components
    b. Secondary cost ele (Catg 43) - If you use any actvity type in the routing
    c. Secondary cost ele (Catg 41) - These cost elements are parasites... They need some basis to calculate the overhead value... That basis can be either the (a) or (b) above.....
    I think, what you are planning to do is Plan Primary cost ele in a cost center and trying to use the same as the Basis.. That wont work!
    What you need to do is
    a. PLan the values in the cost center, say, 100,000 USD
    b. Absorb it on the basis of 2.a or 2.b
    If 2.b is not applicable in your case, since you are not using activity types, then 2.a is the Only option left for you
    Hope it is clear....
    Regards
    Ajay M

  • Target costs not displayed in process order

    Hi,
    We have set up a small PI scenario. The issue we are facing is that the target costs are not displayed in the order. Actual costs appear after confirmation, but target costs appear as zero.
    We have maintianed cost relevancy in work centers, defined valid activity types, maintianed price in material master for all components and also run the standard cost estimate and released it.
    Please let us know what we are missing and why this error could be happening?
    Thanks in advance,
    Ashok

    Target costs are populated when you do the goods receipt. System will search for the released standard cost estimate and then apply that for each material component. If these 2 conditions are passed, then you will get target cost in order,
    You need to define the following,
    1. Variance Key - Transaction "OKV1"
    2. Assign that to Plant using "OKVW"
    3. Define Variance Variant using "OKVG"
    4. Define Valuation variant for WIP/Scrap calculation using "SPRO"
    5. Define target cost version by assiging sl no 3 & 4 and also how the cost calculation should be used.
    Once this activities are completed, execute production/process order and then after goods movement and some confirmations process Variance using "KKS2" as a period end activities.
    Edited by: sarin toms on Dec 2, 2008 2:26 PM

Maybe you are looking for

  • THANK YOU - b-noir, dmitry, &c.  Got it working so far...

    First off an ENORMOUS THANK YOU to everyone who's been suggesting fixes for the problems with iTunes 5..... not least Dmitry Byk and others too numerous to mention - but especially b-noir ! b My system : Windows PC with XP Home Edition, Service pack

  • Expression Builder: convert string to number

    Hi all, I'm having trouble building a field validation rule for bank account numbers. The numbers have 12 positions, so I cannot use a string or text number. The validation rule to be implemented is that the last two digits are calculated based on th

  • Green screen function in imovie 10.0

    Hello Everybody, in older imovie editions you could unlock advance settings in imovie and then use green screen function for videos. But now in my new imovie 10.0 i don't find advance settings and so i could not use this function for my videos. Could

  • Add a URL attachment to invoice

    Hi We are using SRM 4. We want to attach to the invoice a URL link (instead of attaching a document). Is there a way to do it? Thanks Doron

  • Lost Disc -- Need Adobe Acrobat 8 Professional -- Downloadable?

    Greetings All, I have a registered copy of Adobe Acrobat 8 Professional and somehow I managed to muck things up when I was transferring my programs to my new MacBook Pro. Now, it doesn't work: complaining of missing components (plugins). I haven't be