How to pass BUSINESS AREA in structure EXTENSION1 in BAPI_ACC_DOCUMENT_POST

Dear All,
I'm doing one upload program with BAPI_ACC_DOCUMENT_POST.
Here when I do Tax calculation, I need to pass the value for Business Area in the structure ACCOUNTTAX. But the field is not available.
Is there any way to pass Business Area (GSBER) value to the structure EXTENSION1?
Points will be rewarded for the correct solution immediately.
Moreover I'm in pressure to complete this object. Please help me.
Thanks & Regards,
Neeraj

The business area is passed in the field BUS_AREA in the tables ACCOUNTGL, ACCOUNTRECEIVABLE and ACCOUNTPAYABLE.
Rob

Similar Messages

  • Discoverer Report: How to find Business Area name from Report Name.

    Hi
    I opened a report in Disco Desktop 4 -> Resonsibiolity --> Report Name.
    So I know Report name but don’t know which Business Area it belongs to.
    How to find Business Area Name from Report Name?
    Cheers
    Vijay

    Hi,
    There is no relationship between reports and business areas. Each report can be built from many folders. Each folder can be in many business areas.
    However you can try the following SQL which may give you the result you want for an v5 EUL. You will have to modify for Discoverer 4 EUL:
    select distinct doc_name, obj.obj_name folder_name, bas.ba_name
    from eul_us.eul5_documents doc
    , eul_us.eul5_elem_xrefs xref
    , eul_us.eul5_expressions exp
    , eul_us.eul5_objs obj
    , eul_us.eul5_ba_obj_links bol
    , eul_us.eul5_bas bas
    where xref.ex_from_id = doc.doc_id
    and doc.doc_name = &your_report
    and xref.ex_to_id = exp.exp_id
    and obj.obj_id = exp.it_obj_id
    and bol.bol_obj_id = obj.obj_id
    and bas.ba_id = bol.bol_ba_id
    Rod West

  • How to make Business Area as the reqd file on the Account Assignment level

    How to make Business Area field as the required field  on the Account Assignment level?
    Thanks!
    Mrudula Patel

    You will have to be a little more specific about account assignment. Not sure what kind of document you are concerned about.
    For G/L accounts, the account assignment (Field Statu groups) is done in customizing under SPRO -> Finacial accounting -> Document -> Line Item -> Maintain Field Status Variant. The settings for the fields to be displayed can be maintained here.
    You need to know the field status variant used for the account. This can be found in transaction FS00 under the create/bank/interest tab. You can also reach the maintenance transaction for the variant by double clicking on it.
    Hope that helps!
    Rishi

  • How to suppress business area feild in cost center master data urgent plzzz

    how to suppress business area feild in cost center master data

    Hi ,
    Please check these notes
    Note 606933  OKEON: Business area is no required entry field
    Note 506308  OKEON: Business area financial statement prevents change
    Note 422801  KS01 with template does not check business area
    It might be possible to create a modification,.
    Please assign points if it useful
    Regards
    Ravinagh Boni

  • How to default Business Area

    How to default Business Area at line item entry to particular GL accounts
    Satish
    Points assured

    hi,
    for getting finer records u can have user exist programme which will give you finer reports as in other standard report u might face clearing account problem. but user exit can be defined at the miner level of details u required . this is generally used fr multilocation multi business area configuration to which u can also attach SECTION CODE and get those reports in same programme by assigning business place.
    user exit is more useful becuse u might be using same chart of account for all the business area and it is not convinient to have business area at entry level or assigned at company code level, instead by using user exit u can assign it to user at specific business area.
    Warm Regards

  • How to Update Business Area Field in Posted Document?

    Dear All,
    Pls tell me how to update Business Area in documents which are posted without entering Business Area field. Pls tell me how to achieve this without using Validations & Substitutions. Any table entries can be maintained for this? Kindly guide.
    Regards
    Abhijeet

    Hi,
    I think, you need to post mannually if you have the list of documents posted with out business area.
    ex:
    1.Before posting of accounting entry as below, you should deactivate business area component in OB65 againest your co.code
    2.Post accounting entry as below
    40   123456    without business area     100
    50   123456    with business area ABC  100
    3. Goto T.Code: OB65 activate the business area component.
    4. After posting of accounting entry like above you should run transaction F.5D and F.5E again, make sure that above entry not come again while executing F.5D.
    First you can try this process in dev client, if you are comfort with this process then follow the same in quality and production.
    Note: You can do this transactions in production client, only when there were no users working on the system.
    all the best
    Regards,
    Prasad

  • How to pass Business place to BAPI_ACC_DOCUMENT_POST

    Hello,
    I am using BAPI_ACC_DOCUMENT_POST to post the accounting documents for  G/Ls. Now iwant to pass the Business Place with GL, as it allows iin FB01, i have searched though the ACCOUNTGL but i didn't find any field for this or like BUPLA.
    I searched in SDN regarding the same but i couldn't find any solution. Please help.
    Regards,
    Kesavaperumal

    Hi,
    Better you use the badi 'BADI_ACC_DOCUMENT'.
    For passing the Business Area you need to use the extention structure of BAPI_ACC_DOCUMENT_POST and then use BADI ACC_DOCUMENT
    with the other parameters you have to populate the extension table of bapi
    data : it_ bapiparex type table of bapiparex,
    wa_bapiparex type bapiparex
    Populate the Extension table
    wa_bapiparex-structure = 'Business Area'.
    wa_bapiparex-valuepart1 = '10'. " Item number
    wa_bapiparex-valuepart2 = ' '. "  pass the value for Business Area
    APPEND wa_bapiparex TO it_bapiparex.
    Call the Bapi to post the document
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
    EXPORTING
    documentheader = wa_docheader
    TABLES
    accountgl = it_bapiacgl09
    accountpayable = it_bapiacap09
    currencyamount = it_bapiaccr09
    return = it_bapiret2
    extension2 = it_bapiparex
    Now create an implementation of BADI ACC_DOCUMENT in SE19 and
    write the following code in method CHANGE of BADI
    DATA: wa_extension TYPE bapiparex,
    wa_accit TYPE accit.
    LOOP AT c_extension2 INTO wa_extension.
    Extend BAPI to have Posting Keys defined by user
    IF wa_extension-structure = 'Business_Area'.
    CLEAR wa_accit.
    READ TABLE c_accit INTO wa_accit
    WITH KEY posnr = wa_extension-valuepart1.
    IF sy-subrc = 0.
    wa_accit-BUS_AREA = wa_extension-valuepart2.
    MODIFY c_accit FROM wa_accit INDEX sy-tabix TRANSPORTING BUS_AREA.
    ENDIF.
    ENDIF.
    ENDLOOP.
    Hope this solves your problem
    Regards,
    Dhina...

  • How to create Business Area..

    Dear FI Guy,
             I am a ABAP-er, I would like to create a business area for assigning to create my new plant.I want some information about business area and step by step process of creating the Business Area.
    Please Guide Me,
    Thanks & Regrads,
      Dhanush.S.T

    Hi Dhanush,
    Configure the SAP Business Area
    The functions of business area is to create balance sheets and profit and loss statement below the company code level.  It functionality can be duplicated using Profit center accouting.
    OX03 - Creation of new Business Area
    New Business Areas can be created anytime in the Enterprise structure in the IMG.  However, in the year of creation, no comparison can be done with the previous year data as the Business Area did not exist in the previous year and there are no postings in the previous year.
    After create the new Business Areas, new G/L accounts should be created for :-
    Sales
    Cost of Sales
    External Process Cost
    Consumption
    Material Change
    Purchase
    Cost of Difference for Production
    Factory Output for Production Order
    Next create a default account assignment to maintained the link for cost center and business area.
    Transaction OKB9
    Enter the Company Code and Cost Element
    Cocd      Cost elem.      Acct assignment detail
    Enter the details as per business area/valuation area
    BA     Cost ctr
    Guess the above helps.
    With Regards,
    Mahalingam

  • How to add Business area  in t code S_ALR_87012082 for dynamic selection.

    Hi Gurus,
    I need  to add Business area field in T-code S_ALR_87012082.
    On choosing  dynamic selection, i found that Business area is not there. 
    Can any one please tell me how can i add Business area field  over there.
    Thanks in advance.

    Please check following SAP notes for this.
    188663 and 832997 and 310886

  • How to do business area adjustment

    hi
    Hi
        I have posted different business areas for line items in some document.
    Exp.  Dr  B.A1  -
    1000
    Cash  Cr  B.A2  -
    1000
    Like that
    Here in the business area wise balance sheet and trail balance report, balances not tallied.
    How to do this.
    thank u
    shusma

    Hi Shusma,
    If you don't use NEW-GL with balancing option you have to run report CALCULATE_BALANCE_SHEET_ADJUSTMENT (Trans. F.5D).
    In addition you have to customize the system to enable Business Area balancing (trans. OB65).
    Hope this answer your question.
    Regards,
    Benni

  • Field rename in DB, how to refresh Business Area?

    I'm the Discoverer Administrator and one of the underlying
    tables in my database has has a field name change. How do
    I "refresh" the table/folder in the business area I created? I
    don't want to loose any customization I've done for that
    table/folder. I have no joins on the renamed field.
    Can you please reply back to my email as well as the forum?
    Thanks. [email protected]

    highlight the folder in the Admin edition and press Control+R.
    This will refresh the folder and reflect that the old field name
    is not available and show the addition of the new field.

  • Dear Gurus,how to maintain business area for a line item?

    Hi Gurus,
       Thanks for all gurus for your knowledge sharing,everyday i get new things from you gurus,
    right now i got one problem, while releasing the invoice i got the error as
    "Business Area not entered in the line item  000000012"
    where i should maintain the business area details, which T-code,
    my friend told me that it is a FICO related issue,Please Guide me gurus,
    Warm Regards,
    Deepak Shanmugam

    Hi Deepak
    Business Area
    Technical name: 0BUS_AREA
    Technical Data
    Available from Release
    3.0D
    Data element
    GSBER
    External hierarchy
    Not available
    Business Areas in SAP are used to differentiate transactions originating from different points/lines/locations in business. Let me give some examples to elucidiate:-
    A company (say, ABC) is a huge company and has a variety of businesses under it. Let us say that it typically operates in 3 different domains like machinery manufacturing, trading and assembling of machine parts. 
    There are 2 options here now -
    1. Either create different company codes for the 3 business operations (which would be the easiest and require no creativity)
    or 
    2.) Create each of these business lines into business areas (the better option). 
    The advantages of using the second option is:
    1. You can use these business areas if other company codes require the same areas
    2. The configuration is simpler as in case of company code, you would require to go through the entire configuration of creating Chart of Accounts, Fiscal Year variants, posting periods variants and so on. In the business area option, you just need to attach it to the company code and the rest of the details in Business area is attached by default from the company code you are using it in. 
    3. Using the options in controlling (EC-PCA, Enterprise Controlling, Profit Centre Accounting), you can even draw up Balance Sheets and PL statements for your business areas and hence this is used for management accounting in some companies (like HP, Dell, etc) when it wants to know the operating profits for different business areas/lines.
    The above was an example when the company wanted to separate entries according to the lines it operates in... the other case could be when it wants to find out profitability during its operations in cities and differentiates these cities into Business Areas...
    Business Areas are not much relevant in FI but are much more relevant in CO.
    You can define business area in
    Path: Img-enterprise structure Definition--Financail Accounting --- Define Business area.
    Same pathe: Assignment---Assign Business area to Consolidation business area.
    Same Path: Logistics General --- Assign Business Area to Plant/Valuation Area & Division
    I hope this clears.
    Reward if useful to u
    Message was edited by:
            narendran vajravelu

  • In Posted Document How to Update Business Area Field ?

    Hello peers,
    I am training to update Business area in some of my line items, for example when i have posted a doc in MIRO it has not updated in my TAX a/C's. Now i want to update the same. So i tried doing the F.5D and F.5E, but it's saying
    Nothing was selected
    Message no. FR333
    In one of the threads i read in OB65 business area has to deactivate, then post, and then activate the same to do F.5D. but it is activated before posting the documents.
    What should i do now. and what should i maintain in OBXM.
    Please guide me to do the same. or suggest if any other way of doing it.
    Thanks in advance
    Murali

    Dear Murali
    Maintain a Clearing A/c under transaction GA0 e.g. Business Area Clearing A/c
    Make sure you have activated Business Area FS in OB65
    Then run F.5D and Post through F.5E B
    However by doing this you will not be able to update the Business Area but it will pass an adjustment entry
    Hope it Helps
    Cheers
    IMK

  • How to get business area in SRM

    Hi y'all,
    In SRM when I am reading crmd_orderadm_h, how do I get a business area for the contract number?
    Thank you.

    Hi Perry,
    Are you asking the business area (account assignment information)?
    Just for your information, in SRM contract, there is no account assignment..
    Regards,
    Wendy

  • How to remove business area from the Hyperion report

    Hi All,
    Kindly tell me the steps required to remove the business area from the Hyperion report.
    Regards,
    Ajay

    s

Maybe you are looking for

  • Construindo vetores

    Boa noite colegas.  Meu problema é o seguinte:  Objetivo: Contruir um subVI que faça média móvel de "n" elementos de um vetor que faz sucessivas leituras. Meu algoritmo mental: 1º) Inicializar o vetor: valor de INICIALIZAÇÃO e "n" ELEMENTOS; 2º) Quer

  • Sales orders conversion from OR(standard) type to Directshipment orders

    Hi Friends, My requirement is like that..iam working on SD automation report it will copy standard orders(OR) and will create Direct shipment orders through bapi BAPI_SALES_ORDER_CREATEFROMDAT2.upto this its working fine....Once the OR type order has

  • How to set up multiple monitors on a MacBook Pro

    Does anyone know how I might be able to set up more than one monitor to my MBP? Is there a splitter available, or some other means of connecting additional monitors? Any advice would be appreciated. Thanks!

  • Appending metadata to RAW files

    Hi all, I'm new to elements, so my apologies if this has already been asked.  I'm running elements 6 on a macbook pro, and it works fine ( the program, the macbook works fine too :-) ).  But suddenly, after a re-install, I can't append a metadata tem

  • Planned Order no. ranges in SAP.

    Hi Pp Gurus, Whenever I access REM planning table and check any Planned order in 'Not yet assign' row it is giving planned order no. generated after MRP run for LA (stock) or KD (individual customer stock) planned order type and whenever I assign any