PR-Account Assignment Q G/L field is disabled.

Hi All,
At the moment when purchase requisitions are generated by the WBS element,Account assignment Q, in the Account assignment tab of the requisition, i see G/L account field being determined from the valuation class in Material master (stock account) and OBYC setting and the G/L field is disabled.I have the requirement to change the G/L account no that is being pulled by OBYC configuration.
Please advice is there any standard way to make the G/L field editable in PR or we go for an Enhancement?
With Regards
Sarvesh Vashist
Edited by: Sarvesh Vashist on Nov 3, 2009 2:35 PM

Hi
I dont think there is possibility to change the account assignment data in PO/PR which is coming from Project System Module. What ever the changes you wanted to do same you should do it at WBS/ Network/ Material component level only, not in MM directly.
Same rule applicable to certain fields say quantity etc in PR which are created automatically from material requirement planning run through PS.
Changing in OME9 settings will help you to permenantly change the account assignment settings but not for transaction wise.
Thanks

Similar Messages

  • SRM 7.0 Account assignment adding new field Profit_ctr

    Hello All
    I am hoping that someone has done this in SRM 7.0 and can help me out.
    I have added PROFIT_CTR field to Account Assignment tab for SC.
    We have already followed the instructions in OSS note 1082243 and added PROFIT_CTR field to the 2 tables BBP_C_ACCF and BBP_C_ACCFD. The field is available in configuration for creating a new account assignment category using PROFIT_CTR field.
    In WDC, implicit enhancement was created and layout changed to make the field available in the view. The field already exists in the context so no other development was done.
    The PROFIT_CTR field is now available in Assignment tab for input SC is created.
    Also, configuration is done in PPOMA to default u201CProfit Centeru201D as the account assignment category.
    The problem is that during the SC creation , in the Account Assignment line, field  u201CAssign Numberu201D is still pointing at GL account (it is defaulted to GL Account) and not Profit Center value.  I would have expected u201CAssign Numberu201D field to contain profit center value and not GL Account.
    What further changes are needed?
    Looking forward to any suggestions..
    Thank you

    Hi Raj,
    Here is the documentation on how we did this when we were in 7.01.
    Version 20.0 - :
        The new requirement needs Profit center as one of the Account assignment category.
                      In order to get the profit center an implicit enhancement is required as SAP suggested.
                                        Please see SAP’s response at the bottom of this version.
    Enable Profit Center Field:
          1.) Enhance the class /SAPSRM/CL_PDO_ACCT_ASSGT_HLPR by creating a new post-exit for method GET_ACCCAT_TECHFIELDS.
       2.) Within the post-exit modify the field (ACC_FIELD) with new value
    ‘PROFIT_CTR’ of internal table ET_ACCCAT_TECHFIELD where ACC_CAT = ‘PR’.
          3.) This enables Profit center as one of the Account assignment Category.
    Version 22.0 - :
    Enable Profit Center F4 in UI:
    4.)  Enhance view V_DO_ACCOUNTING of component /SAPSRM/WDC_UI_DO_ACC.
    5.) Create a post-exit for method WDDOINIT of view V_DO_ACCOUNTING.
                                        6.) Within the post-exit set the value help to Application Defined. See below code.
                                                    CALL METHOD lo_nd_info->set_attribute_value_help
    EXPORTING
    name = 'PROFIT_CTR' " ContextAttribute Name                                 
    value_help_mode = '141' " value help mode–Application Defined.
    value_help = 'USAGE_SH_F4'. " Search help component usage.
       This enables the F4 input help for field Profit Center. Since it’s a search help in ECC and wanted to be displayed in SRM, additional development is required to bring in the F4 Popup screen.
    Enable Profit Center F4 Pop-up Screen:
    7.) Enhance the component controller of component /SAPSRM/WDC_UI_BACKEND_SH.
    8.) Create a post-exit for method SET_BAPI_PARAMETER of the component controller.
    9.) Within the post-exit set the Business objects parameters as follow
    DATA ls_bapi_parameter TYPE if_componentcontroller=>element_bapi_parameter.
    DATA lr_node           TYPE REF TO if_wd_context_node.
    lr_node = wd_context->get_child_node( 'BAPI_PARAMETER' ).
    IF iv_field EQ 'PROFIT_CTR'.                                       
    ls_bapi_parameter-objtype   = 'BUS0015'.
    ls_bapi_parameter-objname   = 'BUS0015'.
    ls_bapi_parameter-param     = 'PROFITCENTER'.
    ls_bapi_parameter-method    = 'GETLIST'.
    ls_bapi_parameter-field     = 'PROFITCENTER'.
    ls_bapi_parameter-shlpname  = 'PRCTR_EMPTY'.
    ls_bapi_parameter-shlpparam = 'PRCTR'.
    ls_bapi_parameter-FIELD_DESC = 'TXT50'.
    ENDIF.
    IF ls_bapi_parameter IS NOT INITIAL.
    lr_node->bind_structure( new_item = ls_bapi_parameter ).
    ENDIF.
    Setting these values enables the F4 Popup screen.
    Move Selected Value from Pop-up to profit center field in screen.
    10.) Once value is selected from the pop-up it should be moved to the
    profit center screen field.
    11.) In order to do that read the context Node ‘SELECTION’. This node contains
    the selected value.
    12.) Now move the selected value to the profit center field in context node
           ‘COMP_CONTEXT.’     
      lr_node = wd_context->get_child_node( 'SELECTION' ).
    lr_node->get_static_attributes( IMPORTING static_attributes = ls_selection ).
    lr_node = wd_context->get_child_node( 'COMP_CONTEXT' ).
    lr_node = lr_node->get_child_node( ls_selection-node_name ).
    lr_node->get_static_attributes( EXPORTING index = ls_selection-index
    IMPORTING static_attributes = ls_content ).
    Version 23.0 - :
            1.) Need to raise a warning message in Shopping cart whenever the profit center is
    Set to “PCDUMMY”.
    2.) Edit BAdI Implementation ZCL_IM__SRM_SEI_ITEM_CHECK. Add the warning message in method IF_EX_BBP_ITEM_CHECK_BADI~BBP_ITEM_CHECK by appending a new line with error message to export table ET_MESSAGES.
    Version 23.0 -
      1.) Create a customer field called ZPR_DESCRIPTION for accommodating profit center description. This is done by appending the field to structure INCL_EEW_PD_ACC_CSF.
    2.)  Create a RFC in ECC which would read table CEPCT to read profit center text. This Function module is called Z_FI_GET_PROFIT_CENTER_TEXT.
            SELECT SINGLE MCTXT FROM cepct
    INTO EV_PROFIT_CTR_TEXT WHERE spras = sy-langu
    AND   prctr = IV_profit_ctr
    AND   datbi >= sy-datum
    AND   kokrs = IV_controlling_area.
    IF sy-subrc NE 0.
    RAISE PROFIT_CTR_NOT_FOUND.
    ENDIF.
    3.) Within BAdI  ZCL_IM__SRM_DOC_CHANGE_BAD call the function module
          Z_FI_GET_PROFIT_CENTER_TEXT. Read profit center text and fill the
    Customer field ZPR_DESCRIPTION.
    SAP's Response for when I raised a message about profit center.  This is what helped us to start.
    Dear Customer,
    In the account overview screen, for custom account assignment
    categories, the GL account field would be shown in the 'Assigned to'
    column by default. However, if you go to the account assignment detail,
    you are able to use the search help for the profit_ctr field.
    As the fields are binded dynamically, only through a modification you
    would populate profit_ctr automatically.
    From the SRM 6.0 release onwards, the account assignment overview screenwas changed such that for the custom account leading fields, always the
    GL account would be shown. This was changed because, earlier when the
    leading field was a customer field, it was not possible to show the
    account description in the overview screen and it remained empty. This
    was creating confusion for the users.
    For the new releases, it was decided that when the leading field is a
    customer field, the GL account and its description would be shown in theoverview screen. The coding for the same has been implemented in the
    method /SAPSRM/IF_PDO_ACCT_ASSGT_HLPR~GET_ACCCAT_TECHFIELDS(class
    /SAPSRM/CL_PDO_ACCT_ASSGT_HLPR).
    WHEN OTHERS.
    ls_accf-acc_field =
    /sapsrm/if_pdo_action_c=>gc_acc_obj_gl_account.
    ls_acc_cat_techfield-desc_field =
    /sapsrm/if_pdo_action_c=>gc_acc_cat_gl_desc.
    ENDCASE.

  • Account assignment category Q and G/L account mapping during purchase order

    Hi,
    When we procure stock for account assignment category Q,then it will trigger G/L Account
    Please can any one tell me where it will maintained

    Hi,
    If you select Account Assignment Category as "Q" then the time of GR, it will post the Materials received value to stock account and will update stock of material against the Project.
    In OME9, here for Account Assignment Category "Q", check field Consumption posting has value as "P" (Accounting via project), that means stock account will get determined from OBYC for Account Key BSX

  • While PR Conversion In To PO System Pop Message Enter Account Assignment

    Hello
    PR is created from work order having account assignment category as "F" and Work order has Outline agreement which having the account assignment category as "U" .when i am trying to convert the PR TO PO system throw pop up messsage for input account assignment as PR having assignment category as "F" and account assignment as Order number eventhogh while PR TO PO conversion its is asking me account assignment .it should automaticaly coppied from PR.but it is not happening.Please suggest any clue for this strange system behaviour.
    regards,
    Rakesh

    Hi,
    Is there any coincidence among those PRs or materials or Order types?
    Please check the following tables.
    T163K account assignment category customizing
    T162K field selection
    T163A combination of item category and account assignment category.
    SPRO >> Materials Management...>Purchasing...>Account Assignment..>Define Combination of Item Categories/Account Assignment Categories.
    Assign the required Item category to AAC category & try.
    Combination item category L/account assignment category E not defined
    Regards,
    Maheswaran.

  • Rejected Quotation number is coming in account assignment tab in sales orde

    Hi Friends,
    I have created one quotation 'X 'and after that I created one more quotation'Y' with the reference of original quotation'X 'and rejected the earlier created quotation 'X'.
    After that I created sales order'Z' with the reference of quotation 'Y' but while i go to account assignment tab at ' order field' at sales order item level than the cancelled quotation no. is there coming.
    As per my knowledge quotation  no. 'Y' should flow in sales order account assignment tab in 'order field'
    My question is why rejected quotation no. is flowing there in account assignment tab in sales oreder ??
    And what is the use and impact of sales order field under account assignment tab at item level in sales order??
    This is scenario of MTO and we are using billing plan at sales document header level.
    Regards
    SV
    Edited by: sv.sap09 on Dec 6, 2010 1:22 PM
    Edited by: sv.sap09 on Dec 7, 2010 7:31 AM

    FYI-
    "Order field" at item level in sales order - account assignment tab refers Internal Order number ( created by using Tx:KO01), this is not SD orders.
              You might have same number range for Internal Orders & quotations. Hence confusing with the number.
    Quotation number will be available only in document flow & document status table VBUK. will not be displayed in order transaction.
    Regards,
    Reazuddin MD

  • SRM PO error-Account assignment cannot be changed after goods/invoice receipt

    Hi,
    The SRM PO throws account assignment error in system (SRM7.2).
    Scenario: Shopping cart is created and SRM PO is sent to backend system and GR is also posted.The purchaser is now trying to change any data like,value,currency etc and the system throws account assignment error.
    The issue is system throws account assignment error for any change in other parameters but actually nothing is changed in account assignement part.This error is the backend error but not sure what can be done to stop this error.
    Need guidance from experts whomever came across this type of issue.
    Thank you
    swathi

    Hi,
    We started experiencing the ME 458 error last year when SAP introduced some new edits in BAPI_PO_CHANGE.
    It's triggered when the SRM account assignment (CO and FM) fields do not match the ERP PO account fields.
    SRM function B470_ACCSERV_CHECKACCASSIGNMT calls ERP function BBP4X_CODINGBLOCK_CHECK_47A. 
    In our case this only happened for material POs, services do not have this problem.
    There are numerous OSS notes out there for this problem, some are for MM and others for SRM.
    Hope this helps.
    Jerry

  • Account assignment tab in PO

    Hi All,
    I am facing a strange problem while creating a PO
    In quality system the account assignment tab is appeared but not in production.
    i am entering the same data
    Thanks

    Hi,
    Does the in field for account assignment is open in the PO while creation and you provided the Account assignment category in that field? If it is done the tab account assignment will come in the item detail tab.
    Doe our material belongs to non stock material or stock material?
    Regards,

  • How to add entries in possible fields in Account assignment model/Note 2596

    Hi Friends,
             I want to know How to apply OSS Note 2596, The basic requirement is to to add entries in the list of possible fields in Account assignment model( Exactly in program SAPDFKA6 in screen 120).
    I found the note 2596 to achieve this, and the field that I want to add is KMZEI-PAOBJNR.
    I gone through the note and it is very confusing for me .. If any one knows how to achieve this or how to apply this note, please let me know.
    Thanks,
    Rk

    I got this myself.
    Thanks,
    Rk

  • Unable to change account assignment field in PO

    Hi Experts!
    We are using SRM 7.0 with extended classic scenario.
    We are facing an issue with account assignment category field in a PO.Here is our scenario.
    User created a PO with costcenter account assignment field and this PO transffered to backend system i.e R/3.
    When the user again tried to edit the PO in SRM and change the account assignment field from costcenter to Internal order that is not possible because the
    account assignment field is grayed out .Then the user has to create a new PO with Internal order as the old PO didn't allowed him to change.
    Can any one help me in this regard with  some OSS note or any other possible solution and what might be the reason for the same?
    Thanks in advance!
    Regards,
    Kalyani.

    Hello Kalyani,
    Just to understand, Is your PO has Good Receipt or Invoice receipt processed? If so then PO do not allow to change the account assignment as charges are booked already.
    If not i would recommend to check if your BBP_GETSTATUS_2 job is running with proper interval? Sometime old PO's do not get refresh status if BBP_GETSTATUS_2 variant is set based on SAP recommendation (i.e. 7 days or so). In that case please execute manually BBP_GETSTATUS_2 and validate.
    Thank you
    Ritesh

  • Custom Field in Account Assignment with search help functionality..

    Hello friends,
      I have added a custom field(Profit Center) in account assignment frame which is having search help also attached..
      the data for search help read from R/3.. When i click the search help in WEB , I got an error message saying that 'No input help available ( Search help PRCTR_EMPTY is empty )
      Any one have found this kind if issue?
    please help out
    Regards,
    john.

    Hi
    You can create a custom search help (simialar to R/3 srch help for profit center) and create a corresponding search help exit for this purpose.
    You need to call the R/3 table from SRM to get the required data and then map the data in to the search help fields.
    Hope this will solve ur problem.
    Regards
    - Atul

  • Message No F5808 Field Assign. is a required field for G/L Account.

    Hi Guys,
    I have a problem when releasing a cancel credit memo billing document.
    It shows the following error message:
    Field Assign. is a required field for G/L Account.
    Message No. F5808
    Diagnosis,
    The value field "Assign." in the interface to Financial Accounting is an initial value but you are required to make an entry in the field selection for G/L Account XXXX in company code XXXX linked to the field selection for posting key "50".
    System Response
    Error
    Procedure
    It might be an error in the configuration of the G/L account field selection. The initial application, used to call up the interface must otherwise define a value for field "Assign.". If this is the case, contact the consultant responsible for the application.

    Hi,
    The Assignment Number BSEG-ZUONR (I suppose "Assign." means it here.) field status for posting key and GL is optional and mandatory.
    I think the GL Account SORT KEY in FS00 is the assignment selection for Billing to FI doc. Say if the SORT KEY is Posting Date, the assignment from Billing to FI Doc would be the date of posting.
    But if the SORT KEY is blank ( This is case for my G/L account), the system will select the assignment written in Billing document header (VBRK-ZUONR).
    I checked other billing documents, which are not in the same billing type as the one with error, and found it follow the above logic.
    So how come this time it shows the above error? Really confused.
    Emma
    Edited by: qun yang on Sep 22, 2011 9:12 AM

  • Cost centre field in sales order account assignment screen

    Hello all,
    I am unable to find the settings for cost center field in sales order account assignment tab screen along with profit center and internal order. kindly let me know the path to select cost center.
    Thanks in advance
    Raju

    The Cost Center Determination settings is in OVF3 -  but there are some cases where the Cost Center must be exceptionally changed. 
    If the document category for order type in IMG VOV8 is defined to be "I" which belong to order type FD - Deliv.Free of Charge, then the field cost center is active for input during transaction VA01. 
    Alternatively, you can specify an order reason and assign a cost center to an order reason. 
    However the standard SAP works only at the header level though, so it would not work if cost center is needed on the line item. 
    The cost center are assign for such business transactions as :
    - Free deliveries
    - Returns
    - Deliveries of advertising materials
    You can also make cost center allocation dependent on the order reason, for example:
    Order reason: Damage in transit
    Order reason: Free sample
    Both the IMG settings are done in transaction OVF3, either with/without the order reason.

  • Account Assignment field in Sales Order (Internal Order)

    Hi SD Guru's
    In my sales order i have two items with two different item categories....for the 1st item in the account assignment field i can see internal order number field, in the 2nd item i cant see that internal order field. What do i do? Any customization settings?
    Regards
    Ravi

    Hi Ravi,
    it is due to profit centre accounting / costing is active, it is better to get it clearified from a FICO consultant
    regards,
    Santosh

  • Add field 'asset' in sales order line item account assignment tab

    Hi,
    I would like to add the following field: 'asset' in sales order line item account assignment tab.
    I can enter order, or wbs, but not Asset.
    How can I make this field visable?
    Anybody?
    thanks,
    klundert
    Edited by: Eric Van Zundert on Oct 30, 2010 8:43 AM

    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

  • During creation of WBS element How to pass ACCount Assignment field as blnk

    Hi Experts,
    I am  creating of WBS element by using BAPI   ''BAPI_BUS2054_CREATE_MULTI'' .
    during creation, passed the ACCount Assignment field  as blank.
    but when i check that WBS in CJ20n that ACCount Assignment field in coming as checked.    Please suggest me how to pass this field as blank.
    Thanks
    Susant
    Edited by: Susanta22 on May 9, 2011 6:08 PM

    I have same issue. how you resolved it.

Maybe you are looking for

  • IC WebClient: Launch transaction from button

    Hello, I'm able to launch a BOR method with GUI of a backend ERP-system from the navigation bar of the IC WebClient using the transaction launcher functionality. Does anyone know how to launch GUI-BOR methods from a "normal" button in a view instead

  • New to internalization help me

    Hi there, i am new to this internalization issues, so please bare with me. I have an application(web based) that needs to be supported in 6 different languages. From what i could understand is there are some input methods which will help us to map th

  • Cannot add music to iPod Touch

    Hello, I have a 80gb iPod Video and now a new 16gb iPod Touch. I'm trying to add music manually to my iPod Touch from my iTunes library and am unable to. Can anyone tell me what I'm doing wrong. I don't mean to sound stupid. Shelly

  • Transport from One Server to Another - The Servers are not in network

    Hello Gurus, I have some custom ABAP software that I have been keeping in a "Z" package on the development system of our office. Now I would like to export the package into an OS file, copy it to a CD or Pen-drive. I want to be able to upload this pa

  • Display from another website

    Hello all, I need to display a page from another website in my jsp. I'm using Sitemesh to build the header, footer and layout of the page, but I need to bring a page from another website to display in the body. I have searched the internet and haven'