Component configurator issue - Account assignment tab for SC in SRM 7.0

Hello Experts,
  We have to disable some fields from account assignment tab of SC. We have identified the webdynpro application as /SAPSRM/WDC_UI_DO_ACC. We started the component configurator /SAPSRM/WDCC_ACC_DEF_SC and under the view V_DO_ACCOUNTING made the fields "DISTR_INDICATOR" and "COPY_TO_CLIP" as invisible.
  The problem is that these fields are still visible in the account assignment tab of the shopping cart.
  Do we need to do any other follow-up activity to disable the fields? Please guide.
Thanks & Regards,
Sarath

An easier way to hide the two elements for you is to enhance the view "V_DO_ACCOUNTING" and remove the drop down and the button. Save and activate the enhancement.

Similar Messages

  • Account Assignment tab in VA01

    Experts,
    The Account Assignment tab for a SO header shows the Cost Center field when an Order Reason is maintained and this is done through config. Is there a way to display the Cost Center field in Account Assignment tab without having to depend on the Order reason field?
    NW

    Please through some more light on that.
    As per my under standing you want to populate the Value from one field to another field.
    If is it so you can do that with the help of good ABAPer who can populate the value from one Location to another Z-Location.

  • 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.

  • In service order Issu:No account assignment found for this service process

    Issue:No account assignment found for this service process
    An error has occurred in the system RT1400LS while copying the document
    Message no. CRM_ORDER_MISC 020
    Diagnosis
    Errors have occured while transferring the document into another system. Remove the error messages from the enclosed log.
    Transmission log
    No account assignment found for this service process (Notification E CRM_SRV_LOG_EXT_OLTP 008)
    While we created the service order as a fallow up document of the quotation system unable to create the PR. System showing the above error in the service order.
    We created the service order with same items directly not as fallow up document to quotation PR created with out any fail.
    As per my analyses above error because system unable to find out the Internal order to create the PR hence we created service order as a fallow up document of the service quotation.
    Revert require data to understand the issue more.
    Best Regards,
    Prakesh

     Dear Gurus,
    Thanks for your update. we checked as per your suggestion but the issue is PR is not determining the IO while creating the PR.
    We used the different item cat in quotation and service order system generating the PR, But our Clint want to use the same item cat in the both service order and quotation.
    If we created the quotation after that service order with the service line item and spare part line item system creating the IO (internal order) but PR not generating.
    Please help me in this scenario what should we do.
    Best Regards,
    Prakesh.

  • Where to configure Account Assignment Category for WBS Settlement Rule?

    Hi,
    I would like to know where is the Account Assignment Category for WBS settlement rule (FXA, CTR, G/L, WBS)  being configured. (SPRO Path)
    Currently when I go to our settlement rule creation screen I can only see WBS and FXA, I need to add MAT (Material)
    Thanks!
    Regards,
    Vivian

    Hi Shrikant,
    Do you mean in my CJ02 WBS Settlement Rule creation screen, I cannnot put MAT as account assignment category?
    Does it mean that WBS element CANNOT be settled to material? and we can only settle PM order to material?
    Thanks!
    Regards,
    Vivian

  • Need a Userexit for ME51N, ME52N to access data in Account Assignment Tab

    Hi,
    I am currently using Enhancement MEREQ001, EXIT_SAPLMEREQ_005 to check line item data and display an error message.   That works fine.   My need now is to access the Order Number entered under the Account Assignment tab.
    The import parameter IM_DATA_NEW does not contain this info.   Can anyone please let me know if there is an exit that can be used to access the order number from the screen?
    Thank-you,
    Priscilla LeMay

    First of All, you have to get the information about item, so yo have to call the next method:
    DATA: lv_acc_list TYPE mmpur_accounting_list.
    CALL METHOD im_req_item->if_acct_container_mm~get_items
          RECEIVING
            re_items = lv_acc_list.
    Secondly you must do loop to this table, and call another method for get the information about Account Assigment:
    data: lv_model TYPE REF TO if_accounting_model_mm,
       LOOP AT lv_acc_list INTO ls_acc.
          lv_model = ls_acc-model.
          CALL METHOD lv_model->get_exkn
            RECEIVING
              re_exkn = lv_exkn.
    In variable lv_exkn you have the values.
    I hope it runs ok.

  • Field selection for Account Assignment Tab in PR

    I set up my own field selection key where only storage location can be changed after release.
    But when I do the test, I found that not only the storage location field but also all the fields in Account Assignment Tab can be changed!!!  (Like cost center, profit center and GL account etc)
    So, please help me to control the fields in Account Assignment Tab. I can't find related setting.
    Thanks a lot.

    You guys misunderstood.
    Here's my business flow:
    I enter PR with account assignment K, input cost center and then save.
    After PR is released, there's only storage location can be changed.
    So I set up my own field seletion key in which I set storage location as optional, and other fields as display.
    But when I use ME52N to check my released PR, not only storage location but also all the fields in Account Assignment Tab can be changed!
    I can't find the corresbonding setting for cost center or GL account in "Define Screen Layout at Document Level".
    I can't use OME9 either, because once I set cost center as display, I have no change to enter even if I use ME51N.
    Sorry I didn't make myself clear enough. Hope you understand now and please help me to solve it. Thanks a lot.

  • How to Grey out cost center column in me22n screen(Account assignment tab)

    Hi All,
    I have tried many ways to do grey  out cost center column in account assignment tab of ME22N.
    i have created implementation for this class and method. 
    Class:CL_TABLE_VIEW_MM_2
    Method:PBO_TC_LINE
    Below is the my code snippet.Kindly let me know any suggestions.
    data:  l_tc type char100.
    data:  l_tabix type i.
         l_tc = '(SAPLMEACCTVI)DYN_1000TC-COLS'.
    FIELD-SYMBOLS:<fs_tcdata> type any TABLE,
                    <fs_wa> type any ,
                    <fs_lwa> type any,
                    <fs_screen> type any,
                    <fs_input> type any,
                    <fs_active> type any,
                    <fs_output> type any.
    *data:fs_wa type SCXTAB_COLUMN_IT.
       ASSIGN (l_tc) TO <fs_tcdata>.
       LOOP AT <fs_tcdata> ASSIGNING <fs_wa>.
          l_tabix = sy-tabix.
        ASSIGN COMPONENT 'INVISIBLE' OF STRUCTURE <fs_wa> TO <fs_lwa>.
           ASSIGN COMPONENT 'SCREEN-NAME' OF STRUCTURE <fs_wa> TO <fs_screen>.
           ASSIGN COMPONENT 'SCREEN-INPUT' OF STRUCTURE <fs_wa> TO <fs_input>.
           ASSIGN COMPONENT 'SCREEN-ACTIVE' OF STRUCTURE <fs_wa> TO <fs_active>.
           ASSIGN COMPONENT 'SCREEN-OUTPUT' OF STRUCTURE <fs_wa> TO <fs_output>.
           IF <fs_lwa> = space.
             CASE <fs_screen>.
                WHEN 'MEACCT1000-KOSTL'.
                 <fs_input>     = 0.
                 ENDCASE.
                 endif.
                 ENDLOOP.
    Regards,
    Hiriyappa

    As I can't see any complicated scenario in your requirement. So I suggest you can achieve this by simple standard configuration.
    Go to OME9, double click on the Account assignment category and make the field as Display.
    Then check in your PO.
    But I doubt, your requirement can not be simple like that.
    So either you didn't know the settings or your requirement is different or you are just trying to learn that can it be possible via coding.
    Let us know the appropriate reason for set it as display.

  • Account assignment tab  not available in ME51N

    hello,
    can any one replay in purchase requisition account assignment tab is not there
    pls let me know how i have to configure it.
    rk

    Hi,
    It could be an authorization issue then. Can you please check in the IMG the following menu path:                                                                               
    IMG                                                                         
    Materials Management -> Purchasing -> Purchase Requisition ->               
    Set Up Authorization Check for G/L Accounts.                                                                               
    Materials Management -> Purchasing -> Purchase Order ->                     
    Set Up Authorization Check for G/L Accounts.                                                                               
    Documentation IMG:                                                                               
    "Set Up Authorization Check for G/L Accounts                                
    In this step, you set up the authorization check for G/L accounts in the    
    case of purchase requisitions.                                                                               
    You can determine whether or not the authorization check is to be active    
    for each company code.                                                                               
    If the check is active, each time a G/L account is entered in a purchase    
    requisition, the system checks whether the user has the posting"                                                                               
    Please check whether the authorisation group in the account code            
    (transaction FS02, the field is on the 'Control data' tab, technical        
    name is BEGRU) is setup.                                                    
    When a account assigned purchase requisition is created, the system         
    checks for object F_BKPF_BES with values from the BEGRU and activity 01.    
    This controls users to  enter an account assignment when they          
    create a purchase requisition.
    I hope it helps.
    Regards,
    Edit

  • How to keep the WBS & Order in account assignment tab of SD contract item?

    Hi Experts,
    If I remove the plant from the shipping tab in the contract item (the contract type is WV), I will be able to enter the WBS or Order in accounting assignment tab. However, if I enter the plant (in order to determine the tax in pricing), the WBS and Order are disappered and there is one new settlement rule button showed up.
    Do you know any configuration could keep the WBS and order in the accounting assigment tab even the plant is there.
    Thanks in advance!
    Norman

    Hi Chandra,
    Thanks for your answer. However, I even added the plant in the WBS, the tax (we use tax jurisdiction) still could not be determined.
    The problem is that SAP changes the account assignment tab screen (it suppresses the WBS and Order fields, but addes settlement rule) with the plant in the shipping tab. Do you know how to keep the same account assignment tab screen with the plant in the shipping tab?
    Thanks,
    Norman

  • Adding f4 help to wbs element field in account assignment tab of me21n

    My requirment is to create f4 help for wbs element field in account assignment tab of me21n,
    I have to pick wbs elements according to plant and storage location assigned in item overview of purchase order.
    for that i have created a ztable. and use it in f4 code,  or help me if any  other suggestion u have.
    thanks,
    Amol.

    Try to use screen-exit for assigning the serach help. There is one screen exit for PO ..
    Check the enhancement - MM06E005 ,
    Create project in cmod and use this enhancement.
    use the PROCESS ON VALUE-REQUEST event and  use FM 'F4IF_INT_TABLE_VALUE_REQUEST'
    hope this will resolve the issue.
    anya

  • In Milestone billing WBS elet field not visible in Account assignment tab

    Hi Gurus,
    Could you pls let me know how to make WBS element field to display in Account assignment tab (Item details of Sales order).
    During Milestone billing in Billing plan tab WBS element is getting displayed where in for Account assignment tab it is not.
    But for TAD (Service) and TAX(non stock) this WBS element field is viewable in Account assignment tab.
    Pls suggest me if any transaction variants are required for this or not? Or else pls provide solution to sort out this issue.
    Thanks in advance
    regards....Divakaran

    Hi Divakar,
    refer this thread
    wbs field in account assignment

  • Defalting Account assignment category for PRs

    Hi,
    How do I configure to have automatically default a u201CAccount assignment categoryu201D depending on PR document type, so the user cannot change/enter Account assignment categoryu201D .
    For example if the PR type is u201CService PRu201D, all line items must have the u201CAccount assignment categoryu201D as u2018Ku2019 and if the PR type is u201CCapital PRu201D the   u201CAccount assignment categoryu201D must always be u2018Au2019

    Hi there,
    There is no direct way to link document type and account assignment category.
    But you can try this which is close.
    --> One is through Personal setting in PO screen.
    Can be done at Personal Setting TAB in application toolbar( extreme right side) in the PO (ME21N) screen.
    Click default value
    PO header , enter your PO document type &
    PO item, enter acc. ***. Cat. K
    & Save.
    The other way is controlling through the item category, maintain only one account assignment category for your item category in SPRO > Materials Management > Purchasing > Account Assignment > Define combination of item category/account assignment category.
    Regards,
    Senthil

  • Profit Segment in Account Assignment Tab of MIGO?

    Hi,
    Why is profit segment showing up in the account assignment tab when I am trying to post the goods receipt for a purchase order through MIGO? The material is a drop ship.
    I am not maintaining profit center fields in the material master.
    Please help me with this question.
    Thanks,
    Ketan

    Hello Ketan,
    I am also facing more or less the same issue where I am getting the following:
    When I try to post goods receipt for a direct shipment, I receive the error: Inconsistency between a document field and profitability segment number.
    I noticed that in the account assignment tab of MIGO,  there is a field/section for Profit segment and I belive this is causing the problem. We have never maintained profit center so I am wondering where it came from.
    Did you solve your issue?
    Regards,
    Puja

  • Sales order number not appears  in account assignment tab

    Hi,
    User raised PO for third party and account assignment category.But ,Sales order number  and its item not appear in account assignment tab.
    Can anybody help me.
    Lucky.

    Hi Lucky,
    Z Account assignment is not in standard SAP it is customized, u have to check the settings in SPRO->MM->PURCHASING->ACCT ASSIGNMENT-> ITEM CATEGORIES as well u have to know why this is customized, since there is deviation from standard i'm really not able to locate the issue. this is purely based on the requirement done, if it is as per standard SAP sales order number will definitely show in acct assingment tab view.
    Thanks for your inputs on this issue.
    Regards
    Rang

Maybe you are looking for