Hi gurus .....PO item tab account asignment tab

please advice only  MM(material management)  tables having fields item details account asignment tab field sales order and material data tab  field mfr part no.
thanks...Harsh ........
Edited by: harsh.p on Jun 1, 2011 9:10 AM

Please use table EKKN to see account assignment , sales order etc on Purchase order

Similar Messages

  • Change the Profit Center in Sales Order line item's Account assignment tab

    Hi Gurus,
    I need to change the Profit Center at Sales order Line item in Account Assignment Tab. Currently  The Profit center is coming from Material Master for the Line Item's Material as default but I have to change / overwrite  that.
    Can any body provide me how can i achive that means
    Any User exits, substitution or any thing ?
    I tried MV45AFZZ but i am not able to find out the right place where I can change COBL-PRCTR.
    Sony

    Hi
    There is perform which moves the values to VBAP field.
    This PRCTR field is stored in VBAP (i.e., SO line item table)
    USEREXIT_MOVE_FIELD_TO_VBAP
    Hope it works.
    VVR

  • Table Control Variant For ME21N - Item level - account assignment tab.

    Dear All,
    I want to change Table Control Screen that is in Me21n(Service PO)>Item level> Account Assignment  tab -> Table control.
    In that table control i want to add one column Name is OrderNo(AUFNR) ,but system is not changing the table control.
    When i m going to change table control scrren in ---> Condition tab its working fine but not for above case.
    Please guide me to solve this issue.
    Regards,
    Sanket.

    Please provide the solution.
    Regards,
    Sanket.

  • Sales Analysis Item Tab Function Not Showing Orders Dollars

    Hello Gurus of SAP B1.
    This pertains to SAP B1 SP 00 PL 16 Version 8.8. 
    While doing the Sales Analysis function under Sales A/R > Sales Reports > Sales Analysis > Item Tab, the system does not report on the dollars for the day when I select "Orders" or "Delivery Notes'.  The system does display the proper dollars when I select "Invoices" on the "Item" Tab. 
    And the "Invoices" and "Orders" and "Delivery Notes" buttons display correct dollars on the other tabs for Customer and Sales Employee...so why not on the "Items" tab???
    Does anyone know why this might be happening and/or how to fix this???
    Thanks in Advnace - Zal

    Thanks for the quick reply Gordon - hope things are continuing to go well in your new endeavors &;-D
    Well that is really strange that items is handled that way - I have created SQL to get the results but I always like to balance out to what SAP B1 is reporting.  My SQL detail and grand totals are fine by Customer and I have been able to reconcile in that manner, but wanted to reconcile by items also.  I am certain I have done it before in SAP 2007A...
    Has there been a change to the item/sales order table in Version 8.8???
    Take care my FFF - Zal

  • Excise Item tab in Material Document

    Dear Gurus,
    How to make the Excise Item tab viewable for while Displaying the material document
    Thanks in advance

    Even I am also facing same probelm that is when we are processing the MIGO I get the Excise tab but when I display the same document system is not displaying excise tab. for this I am alternatively checking part II in J1IEX transaction. I thing by applying this note it should show the excise tab.
    Vinay:If you have applied this patch please let us know the result
    If there is any more inputs please provide
    Thanks
    Dhananjaya
    Edited by: Dhananjayappa E on Jan 13, 2009 5:04 PM

  • Regarding GL item tab in MIRO transaction

    Hi
    I am working on MIRO transaction.
    In GL Item tab, if we enter Account number it has to be
    checked with ZMMTABLE and display error if not available.
    In Ztable we have company code, account number(SAKNR) and ZFLG as key.
    need to fetch by key.
    How to fetch company code and account number from screen?
    I am using BADI INVOICE_UPDATE, CHANGE_AT_SAVE method.
    WHen i clic save button in MIRO transaction, the BADI is not triggered.
    I have implementation active and made break point too.
    I tried displaying invoice document in MIRO , changed the amount and clicked save button. but BADI is not triggered
    Can you tell me how to debug bad? i put break point in BADI method and opened session then execute MIRO.
    Pls advice how to go with.
    Regards
    Chandra
    Edited by: princeck on Sep 20, 2011 3:14 PM
    Edited by: princeck on Sep 20, 2011 4:11 PM

    Hi
    I want to access GL item tab account number from MIRO transaction to BADIINVOICE_BADI Method CHANGE_AT_SAVE. I entered the account number in GL account tnumber tab. but parameter TI_RBCO_NEW-BUKRS & TI_RBCO_OLD-BUKRS values are empty inside BADI method.
    Can you suggest me how to find this.
    Regards
    Chandra
    Edited by: princeck on Oct 3, 2011 2:32 PM

  • Adding a new field extension on CRM Order Item tab in the web shop order

    Hi CRM E-Commerce Gurus,
    I want to add a extension field on any web site product such as "zz...." in order to use this data in order's item tab. What shoul I do on J2EE Stack-.jsp method and ABAP Stack at the BADI implementations.
    Could you please help me in order to add a new field extension on CRM Order Item tab in the web shop order ?
    Thanks,
    Kind Regards,
    Fahrettin

    Hi Arshi,
    We have could not find any java action class such as Maintainb2csaveorderaction in config.xml folder and also there is no available threads and clue on SDN, google etc. Therefore we are got stucked on this issue. In SAP_ISA_60 Development and Extension Guide of SAP E-Commerce there is no sample java action class code such as Maintainb2csaveorderaction but some ABAP codes are available for the extension structure.
    Do you suggest any java action class such as Maintainb2csaveorderaction codes like in your B2B scenarios etc.?
    ls_header is a local structure with header data
      ls_extension-ref_guid = ls_header-guid.   
      ls_extension-alt_handle = ls_header-handle.
    extension are name value pairs
      ls_extension-name = u2018Z_CUSTOMER1u2019          u2018 name
      ls_extension-value = ls_header-zcustomer1. u2018 value
      APPEND ls_extension to extension_header_out
    now adding extensions to the items
      LOOP AT lt_items INTO ls_item.
        ls_extension-ref_guid = ls_item-guid.
        ls_extension-alt_handle = ls_item-handle.
        ls_extension-name = u2018Z_CUSTOMER2u2019          u2018name
        ls_extension-value = ls_item-zcustomer2.   u2018value
        APPEND ls_extension to extension_item_out 
      ENDLOOP.
    ls_header is a local structure with header data
      LOOP AT extension_header_in INTO ls_extension.
    check the name to find the according field
          IF ls_extension-name = u2018Z_CUSTOMER1u2019.
            ls_header-zcustomer1 = ls_extension-value.
          ENDIF.
      ENDLOOP.
    sort the extension table by ref_guid and handle to obtain a better access
    with binary search.
      SORT extension_item_in BY ref_guid, alt_handle.
      LOOP AT lt_items INTO ls_item.
    find the starting point for a loop over extensions
    use guid and handle as one logical key to access the extension
        READ TABLE extension_item_in
          WITH KEY ref_guid = ls_item-guid
                   alt_handle = ls_item-handle
                   BINARY SEARCH.
        IF SY-SUBRC = 0.
          LOOP AT extension_item_in INTO ls_extension
            FROM SY-TABIX.
    check, if the entry is relevant
            IF NOT    ls_extension-ref_guid = ls_item-guid
               OR NOT ls_extension-alt_handle = ls_item-handle.
               BREAK.
            ENDIF.  
            IF ls_extension-key = u2018Z_CUSTOMER2u2019.
              ls_item-zcustomer2 = ls_extension-value.
            ENDIF.
          ENDLOOP.
        ENDIF.     
      ENDLOOP.
    Thanks
    Kind Regards,
    Fahrettin

  • Recent items tab is locked

    I changed users on my ibook. I imported the appleworks preferences and user data from the old user to the new.
    Now when I open Appleworks the Recent Items tab in Starting points has a paddle lock icon. I assume that I cannot add or delete items to this Tab. Any way to unlock it?
    The other problem I'm having in the new user account is that I cannot save a document anyplace in the new user window. When I try to save a new document to the desktop, I get an error message that says volume not found.
    I can save just fine in my administrator account and its recent items tab has no lock icon.
    All suggestions appreciated.
    Waring

    Hi Waring,
    Welcome to Apple Discussions and the AppleWorks forum.
    This is probably a permissions issue—your current User account doesn't have read-write permission for the folder holding Recent Items.
    In the Finder, go to HD > username > Documents > Appleworks User Data > Starting Points > Recent Items.
    Click on the folder, then press command-I to Get Info.
    Show Details in the Owner and Permissions section of the Get Info window, then set all three menus to Read and Write. This may require an admin password, or may need to be done from your Admin account.
    Regards,
    Barry

  • Assets instead of Raw material at Excise item tab

    Hi,
    While Poting GR for assets (and capturing&posting Excise inv.along with GR), system showing <b>raw material</b> type at  excise item tab at detail data. How to get Assets instead of Raw material?
    Regards,
    Sattuj

    HI,
    If you have ordered an Asset against a materaial master (with account assignment A), then check the material master type if it is Raw Material.
    Check the Excise Entries, if there is entry for 50% hold of Excise credit, then system is posting the GRN against asset only.
    Regards,
    Prashant Kolhatkar

  • Change description of the Excise item tab in MIGO

    Hi,
    We have upgraded R3 4.7 to ECC 6.0 now we required in MIGO transaction Excise Item tab Indicator for Material type we need to change the description of this as RAW MATERIAL to INPUT MATERIAL and Consumable to Capital Goods which is in R3 4.7
    Please suggest me any config.
    Thanks
    Shital D

    Hi,
    The above material type showing in MIGO screen, as you already declared the material under which material category in J1ID & so then value flowing.
    You can not change here  &  you have few options to declared the material under which material categories.
    You can keep all raw material as raw material & Consumable as asset.
    But if your business needed very much, Just have a discuss with ABAPer for your requirement.
    Regards,
    Biju K

  • Sales Analysis Item Tab Displays Zero Dollars for "Orders"

    This pertains to SAP B1 SP 00 PL 16 Version 8.8.
    While doing the Sales Analysis function under Sales A/R > Sales Reports > Sales Analysis > Item Tab, the system does not report on the dollars for the day when I select "Orders" or "Delivery Notes'. The system does display the proper dollars when I select "Invoices" on the "Item" Tab.
    And the "Invoices" and "Orders" and "Delivery Notes" buttons display correct dollars on the other tabs for Customer and Sales Employee...so why not on the "Items" tab???  Strange that a button would be displayed which does not work...
    Does anyone know why this might be happening and/or how to fix this???
    Does SAP plan on fixing this in any upcoming patch levels???
    Regards - Zal
    Responses received from SAP B1 Core Forum:
    Sales Analysis Item Tab Function Not Showing Orders Dollars

    Thanks for the quick reply Gordon - hope things are continuing to go well in your new endeavors &;-D
    Well that is really strange that items is handled that way - I have created SQL to get the results but I always like to balance out to what SAP B1 is reporting.  My SQL detail and grand totals are fine by Customer and I have been able to reconcile in that manner, but wanted to reconcile by items also.  I am certain I have done it before in SAP 2007A...
    Has there been a change to the item/sales order table in Version 8.8???
    Take care my FFF - Zal

  • Query to mimic the items tab of the Sales Analysis report.

    Hi there,
    I'm currently looking to create a query that mimics the behaviour of the Sales Analysis report in B1. The items tab of the Sales Analysis report provides all the data I require - the only issue is that I would like to merge this data with some other data regarding current on hand stock quantities etc. and therefore I would like to be able to pull out the query behind the Sales Analysis report.
    I'm assuming this cannot be done and therefore I'm attempting to build a query to replicate the results. The query needs to show Item No, Item Description, Quantity Sold, Sales Amt (in system currency), Gross Profit and Gross Profit % for items within a given period.
    If this can be done relatively easily, can the query then be modified to show all items (including items that haven't sold in the date range) merely with '0' for Quantity Sold, Sales Amt etc. if the item hasn't been sold in the period, and the appropriate figures if each of these columns if the item has sold. I assume some kind of CASE statement can be used to generate this.
    So the query needs to show Item No, Item Description, Current quantity in stock, Quantity Sold, Sales Amt (in system currency), Gross Profit and Gross Profit % for all items within a given date range.
    I hope you can assist me with this problem.
    Thanks
    Grant.

    Hi,
    Thanks Gordon that was exactly what I needed.
    I've been trying to add some additional columns to the query but I'm experiencing some errors and I can't quite tell why.
    Basically, here's the code from another working query I have which I wish to merge into the query you've suggested above:
    SELECT T0.[ItemCode],
    T0.[ItemName],
    T3.[ItmsGrpNam],
    T4.[Name] AS [Sub-Category],
    T5.[Name] AS [Sub-Sub-Category],
    T0.[CardCode] AS [Pref Supplier],
    T6.[FirmName] AS [Brand],
    T0.[U_Range],
    T0.[OnHand],
    CASE WHEN T0.[StockValue] = 0 THEN 0 ELSE T0.[StockValue] END AS [StockValue],
    T1.[Price] AS [PBK GBP Price],
    CASE WHEN T0.[OnHand] = 0 THEN T0.[LastPurPrc] ELSE T0.[StockValue]/T0.[OnHand] END AS [Ave Cost],
    CASE WHEN T0.[OnHand] = 0 THEN T1.[Price]-T0.[LastPurPrc] ELSE CASE WHEN T0.[OnHand] > 0 THEN T1.[Price]-T0.[StockValue]/T0.[OnHand] END END AS [Margin],
    CASE WHEN T0.[OnHand] = 0 AND T0.[LastPurPrc] = 0 THEN 0 ELSE CASE WHEN T0.[OnHand] > 0 AND (T0.[StockValue]/T0.[OnHand]) = 0 THEN 0 ELSE CASE WHEN T0.[OnHand] = 0 THEN (T1.[Price]-T0.[LastPurPrc])/T1.[Price]*100 ELSE CASE WHEN T0.[OnHand] > 0 THEN (T1.[Price]-T0.[StockValue]/T0.[OnHand])/T1.[Price]*100 END END END END AS [Margin %],
    T0.[LastPurPrc]
    FROM [dbo].[OITM]  T0 INNER JOIN [dbo].[ITM1]  T1 ON T0.ItemCode = T1.ItemCode INNER JOIN [dbo].[OITB]  T3 ON T0.ItmsGrpCod = T3.ItmsGrpCod LEFT OUTER JOIN [dbo].[@U_SUBCATEGORY]  T4 ON T0.U_Subcategory = T4.Code LEFT OUTER JOIN [dbo].[@U_SUBSUBCATEGORY]  T5 ON T0.U_SubSubCategory = T5.Code INNER JOIN OMRC T6 ON T0.FirmCode = T6.FirmCode
    WHERE T0.[OnHand] >= 0 and T0.U_Range not in ('E','X')  
    ORDER BY T0.[ItemCode]
    Essentially I just wish to add the fields which are specified in the query above, but not in the query you've already suggested:
    SELECT T0.ItemCode,
    Max(T0.ItemName),
    Max(IsNull(T0.OnHand,0)) 'In Stock',
    SUM(IsNull(T1.Quantity,0)) 'Quantity',
    Sum(IsNull(T1.LineTotal,0)) 'Sales Amt',
    SUM(IsNull(T1.GrssProfit,0)) 'Gross Profit',
    Case WHEN Sum(Isnull(T1.LineTotal,0)) = 0 THEN 0 ELSE
    SUM(IsNUll(T1.GrssProfit,0))/Sum(Isnull(T1.LineTotal,0)) * 100 END 'Gross Profit %'
    FROM dbo.OITM T0
    LEFT JOIN dbo.INV1 T1 ON T1.ItemCode=T0.ItemCode
    LEFT JOIN dbo.OINV T2 ON T2.DocEntry=T1.DocEntry AND T2.DocDate Between [%0] AND [%1]
    GROUP BY T0.ItemCode
    I was hoping it would be fairly straight forward but so far I've had limited success.
    What am I missing here?
    Thanks in advance!

  • ITEM tab in the Approval Process overview IN srm 7.0 AND EP 7.1

    Hi Friends,
    I am working in SRM 7.0 with EP 7.1..
    1 . I have to remove 'ITEM' tab in the approval process overview screen which is apprearing in Portal. approval process overview screen will be appeared when 'Display / Edit Agents' Button in the Header level of the Shopping cart screen.
    2 . Remove Approval Process overview tab in the detail screen of the shopping cart.
    Any idea
    John.

    Hi Masayuki,
       Thank you for your quik reply.
      can you please explain little bit more on this..
    2. tab
    Easy way is right click, User Setting -> Hide Tab. or User Setting -> More.. Remove display tab
    I tried this option but this is each user setting , Can we make this centerlized?
    or
    Go to SE80 Webdynpro and change the visible property.
    I know the webdynpro for this tab but to change this visible property do I need have access key( Core modification ) or any other way to do such as enhancement spot?
    John.
    Edited by: John peter on Jul 10, 2009 11:16 AM

  • ITEM tab in the Approval Process overview

    Hi Friends,
        I am working in SRM 7.0 with EP 7.1..
        1 .  I have to remove 'ITEM' tab in the approval process overview screen. approval process overview screen will be appeared when 'Display / Edit Agents' Button in the Header level of the Shopping cart screen.
       2 .  Remove  Approval Process overview tab in the detail screen of the shopping cart.
       Any idea
    John.

    Hi Masayuki,
       Thank you for your quik reply.
      can you please explain little bit more on this..
    2. tab
    Easy way is right click, User Setting -> Hide Tab. or User Setting -> More.. Remove display tab
    I tried this option but this is each user setting , Can we make this centerlized?
    or
    Go to SE80 Webdynpro and change the visible property.
    I know the webdynpro for this tab but to change this visible property do I need have access key( Core modification ) or any other way to do such as enhancement spot?
    John.
    Edited by: John peter on Jul 10, 2009 11:16 AM

  • Cancelling the GR the excise item tab is not coming after flagging the OK

    Hi SAP Experts,
    there is one subcon PO for excisable material for depot, after its GR it have been posted from j1iex.
    Now there is a requirement to cancel the excise posting for which first of all its GRN should be cancel.
    But while cancelling the GR the excise item tab is not coming after flagging the OK.
    This problem is there only for the depot, for other plant Im able to cancel for subcon PO.
    Thanks & Regards,
    Anisha Sinha

    still not cleared

Maybe you are looking for