Restirct Data of Business Area based on Operating Unit

Hi,
I got two different responsibilities attached with two different Operating units assigned common standard business area Accounts Receivables. So i want to restrict data output based on Operating unit.
Your valuable inputs are highly appreciable.
Regards
Venkat,

Venkat.
Just to make sure I undertand you.
You have a responsibility called something like: AR_US and it's associated with an operating unit US. You have another responsibility called something like: AR_UK and it's associated with an operating unit UK.
1. If that's correct, then you could write 2 different workbooks where each one filters on what each responsibility is allowed to see and only share each workbook with the appropriate responsibility. Both responsibilities would be allowed to 'see' the same folder(s) in the EUL. The condition in each workbook (not the best option but done at many clients I've seen).
2. You could have a different business area for all folders for each responsibility. Then any report written against each one would just choose the appropriate folder (not the best option).
3. You could have one business area where you filter the data right on the folders in the EUL. Would require you to retrieve the current responsibility in the EUL, but not a problem. However, as hard coding the responsibilties at the folder level - not dynamic.
4. You could put the filtering in the actual database view. This is the slickest method as you only have one business area and any reports against the business area would simply filter the actual data on the row level. Additionally, any external query tool (ie: TOAD, etc.) would not see the data unless they set an environmental variable or comment out the security in the view. The easiest way to see how to do this is to copy the BIS format if you have BIS views installed in your organization (and are running Enterprise Suite (Apps)). Look at various views and look for near the end of the view code, a line such as: WHERE gl_security_package ...). That's where they do the filtering so you might want to see if there are any filtered accounts receiveable BIS views already doing this. (by the way, the BIS views you'll be looking for will be owned by APPS and start with: ARFG_
Russ

Similar Messages

  • Calling a business service based on operation-soap action in Proxy service

    Hi,
    I have a requirement in which I have to call a business service based on operation-soap action defined in Proxy service wsdl.
    Like in below mentioned wsdl GetPartCostDelta and GetCurrencyList operations are there.But which ever operation I select,It just goes to one business service.
    Is there any way,I can route to some another business service based on the soap action
    proxy service WSDL
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:ewopcd="urn:com:gm:gpd:schema:ewopartcostdelta" xmlns:gen="urn:com:gm:gpd:schema:genericfault" xmlns:tns="urn:com:gm:gpd:services:ewopartcostdeltaservice" targetNamespace="urn:com:gm:gpd:services:ewopartcostdeltaservice">
         <wsdl:types>
              <xs:schema>
                   <xs:import namespace="urn:com:gm:gpd:schema:ewopartcostdelta" schemaLocation="ewocostdelta.xsd"/>
                   <xs:import namespace="urn:com:gm:gpd:schema:genericfault" schemaLocation="servicefault.xsd"/>
              </xs:schema>
         </wsdl:types>
         <wsdl:message name="EWOCurrencyListRequest">
              <wsdl:part name="CurrencyListRequest" element="ewopcd:EWOCostDeltaInput"/>
         </wsdl:message>     
         <wsdl:message name="EWOCurrencyListResponse">
              <wsdl:part name="CurrencyListResponse" element="ewopcd:EWOCurrencyList"/>
         </wsdl:message>     
         <wsdl:message name="EWOPartCostDeltaRequest">
              <wsdl:part name="PartCostDeltaRequest" element="ewopcd:EWOCostDeltaInput"/>
         </wsdl:message>
         <wsdl:message name="EWOPartCostDeltaResponse">
              <wsdl:part name="PartCostDeltaResponse" element="ewopcd:EWOCostDeltaResult"/>
         </wsdl:message>
         <wsdl:message name="EWOPartCostDeltaServiceFault">
              <wsdl:part name="PartCostDeltaServiceFault" element="gen:ServiceFault"/>
         </wsdl:message>
         <wsdl:portType name="EWOPartCostDeltaPortType">
              <wsdl:operation name="GetCurrencyList">
                   <wsdl:input name="EWOCurrencyListRequest" message="tns:EWOCurrencyListRequest"/>
                   <wsdl:output name="EWOCurrencyListResponse" message="tns:EWOCurrencyListResponse"/>
                   <wsdl:fault name="EWOPartCostDeltaServiceFault" message="tns:EWOPartCostDeltaServiceFault"/>
              </wsdl:operation>
              <wsdl:operation name="GetPartCostDelta">
                   <wsdl:input name="EWOPartCostDeltaRequest" message="tns:EWOPartCostDeltaRequest"/>
                   <wsdl:output name="EWOPartCostDeltaResponse" message="tns:EWOPartCostDeltaResponse"/>
                   <wsdl:fault name="EWOPartCostDeltaServiceFault" message="tns:EWOPartCostDeltaServiceFault"/>
              </wsdl:operation>          
         </wsdl:portType>
         <wsdl:binding name="EWOPartCostDeltaBinding" type="tns:EWOPartCostDeltaPortType">
              <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
              <wsdl:operation name="GetCurrencyList">
                   <soap:operation soapAction="GetCurrencyList" style="document"/>
                   <wsdl:input>
                        <soap:body use="literal"/>
                   </wsdl:input>
                   <wsdl:output>
                        <soap:body use="literal"/>
                   </wsdl:output>
                   <wsdl:fault name="EWOPartCostDeltaServiceFault">
                        <soap:fault name="EWOCostDeltaServiceFault" use="literal"/>
                   </wsdl:fault>
              </wsdl:operation>
                        <wsdl:operation name="GetPartCostDelta">
                   <soap:operation soapAction="GetPartCostDelta" style="document"/>
                   <wsdl:input>
                        <soap:body use="literal"/>
                   </wsdl:input>
                   <wsdl:output>
                        <soap:body use="literal"/>
                   </wsdl:output>
                   <wsdl:fault name="EWOPartCostDeltaServiceFault">
                        <soap:fault name="EWOCostDeltaServiceFault" use="literal"/>
                   </wsdl:fault>
              </wsdl:operation>
         </wsdl:binding>
         <wsdl:service name="EWOPartCostDeltaService">
              <wsdl:port name="EWOPartCostDeltaPort" binding="tns:EWOPartCostDeltaBinding">
                   <soap:address location="https://localhost/EWOPartCostDelta"/>
              </wsdl:port>
         </wsdl:service>
    </wsdl:definitions>

    Did you try using the Operational branching node of OSB?
    You have copy the operation name from the inbound variable and populate the SOAP Header with that value into the SOAPAction tag.I think this will work.
    Thanks,
    Prabu

  • R12 XML Report to Pick the Templates dynamically based on Operating Unit

    Hi,
    I have written a PL/SQL stored procedure to pick the layout based on the operating unit. We have three layout’s for three different operating units(US,UK,CHINA). For the PL/SQL Stored procedure I have registered a concurrent program. In this Procedure I am assigning the layout based on the request ID submitted for the child concurrent program. Finally to say I am running a program for PL/SQL stored procedure and in that procure I am calling the child program which is registered for RDF layout’s.
    But the client don’t want two concurrent programs. He asked to implement in one concurrent program and if possible add the code in RDF only.
    I have used the following code in After parameter form trigger but the code is not working.
    (IF p_org_id IN ('101')
    THEN
    v_layout :=fnd_request.add_layout ('AR',
    'RAXINVXML_US',
    'en',
    'US',
    'PDF'
    fnd_file.put_line (fnd_file.LOG, 'If P_ORG_ID in (602,1622)');
    ELSIF p_org_id = '102'
    THEN
    v_layout :=fnd_request.add_layout ('AR',
    'ARRAXINVXML_UK',
    'en',
    'US',
    'PDF'
    fnd_file.put_line (fnd_file.LOG, 'If P_ORG_ID= 1883');
    ELSIF p_org_id = '2006'
    THEN
    v_layout :=fnd_request.add_layout ('AR',
    'ARRAXINVXML_KT',
    'en',
    'US',
    'PDF'
    fnd_file.put_line (fnd_file.LOG, 'If P_ORG_ID in (2006)');
    ELSE
    v_layout :=fnd_request.add_layout ('AR',
    'ARRAXINVXML_US',
    'en',
    'US',
    'PDF'
    fnd_file.put_line (fnd_file.LOG, 'If Org_Id other than 1883,2006,602,1622');
    END IF;
    I have followed the Subtemplate concept, but it is also not working.
    (<?import:xdo://AR.RAXINVTST_M.en.US/?>
    <?if:P_ORG_ID1='101'?> <?call-template:RAXINVTST_S?> <?end if?>)
    Could some one suggest how to proceed on this. Please help on this.
    Thanks in advance.
    Warm Regards,
    Thirupathi

    Thanks for your reply.
    I have tried this logic in AFTER REPORT trigger also, but it is not picking dynamically and also not giving any output.
    Could you please let me know if there are any possibilities.
    Thank you,
    Regards,
    Thirupathi

  • Customer Open Items by segments or Business Area

    Dear All
    Good Morning
    We would like to discuss one issue which may be other companies also facing related to New General Ledger. We book one vendor liabity which belong to two Business Area or Segment. Now we enter vendor line item only once and do not enter the business area in vendor line item. Document is posted and vendor line item is without business area. But if we see GL view document reconciliation account is splitted in two business area based on expense propotionate. which is correct but still our problem is that when we run the vendor report by business area this vendor line item will be shown without business area.
    Can any one have a solution for this problem
    Thanks and Best Regards

    Hi Ravi,
    SAP will pick these invoices for payment according to vendor open items which are due according to payment terms.
    When it comes to customer invoices, clearing depends on when customer pays payment to particular invoice, these customer invoices will get cleared.
    I assume you are talking more closely to intercompany scenario (If it is not intercompany invoices clearing, you should not worry mostly about customer invoices clearing), where you want to clear vendor invoices and customer invoices. So you need to incorporate entry date in your functionality to pick intercompany invoices clearing.
    Thanks much
    Raghu Kolla

  • Business Area Postings

    Hi dear gurus, I need business area based gl posting (line item) report. It must show, date, amount, user, business area. are there any standard report for this?
    thanks in advance,

    Hello,
    Are NewGL and document splitting active in your system? If yes, you should solve this problem with using splitting function.
    Otherwise, you can use business transaction event 00001120.
    I explained step by step how can you activate BTE 00001120. I give you message below.
    Re: FBCJ - Cash Journal Transaction
    In this exit, you must update t_bsegsub-gsber field which t_bseg-buzid = 'T' for tax item.
    But you can not split tax line items in this exit. For example in invoice you have 2 or more business area, but tax line item doesn't create for each buiness area (If you don't use document splitting functon). So in this exit you can only assign a business area to tax line item which is automatically generate while posting FI document.
    Regards,
    Burak

  • Business Area (URGENT)

    Guru's
    How System pick up Businee Area With out Account Assainment.
    Now my Question is my user created PO with out account assainment.After he done MIGO.then if see the accoutning document business area not updating.
    is there any configaration?
    how systen pickup business area.
    Thanks & Regards
    Ram

    Hi,
    In confugiration IMG -Enterprise Structure -  Defin - Financial Accounting - Define bussiness area
    2. IMG - Enterprise Structure -Assignment - Financial Accounting - Define bussiness area
    hi
    see the below link for config steps for business area.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/FIBUSI/FIBUSI.pdf
    Business Area. The system posts costs and revenue according to the business area. The business area can be equivalent to the:
    sales area (if the accounts are to be posted according to sales)
    plant/division (if the accounts are to be posted according to products)
    The business area is defined in Customizing for Sales.
    o Business area. A unit in an enterprise, grouping product and market combinations as homogeneously as possible for the purpose of developing unified business policy.
    o Financial Accounting (FI). A business area is an organizational unit within financial accounting which represents a separate area of operations or responsibilities within an organization. Financial accounting transactions can be allocated to a specific business area.

  • Introducing Business Area for Management Consolidation

    Our Business has been using Business Area for all management reporting purpose since SAP had been implemented some 15 yrs back in our organization. They do not want to use Profit Center for management consolidation purpose in SEM-BCS. Our Project Manager wants to go with one data basis with one cons area.
    I have planned to remove all Profit center related characteristics (alloc cons Profit center, cons Profit center grp, cons profit center, Investee unit- profit center and Partner cons profit center) and introduce Business Area with Sub-assignment role. Under Breakdown category, I will create necessary sub-assignment from comp code GL transaction data to Business Area. I can do legal consolidation in the normal course and with sub-assignment and using breakdown category, I can derive Business Area based consolidation and also I can generate both legal and mgmt reports.
    Whether my understanding of the data basis architecture is correct? Is it prudent to proceed further based on my understanding?
    Dan & Eugene: I look forward for your feedback.
    Thanks in Advance,
    Tim

    Dan: <i>For management reporting you may not want to post eliminations between companies where the business areas are the same.</i>
    If the Business wants to see the eliminations between companies, within the same business area, as part of BEx reports, what should I do? They do not want to execute consolidation functions in UCMON but just want to see how the eliminations have taken place between companies with in the same business area. 
    Dan: <i>As long as the partner company and partner business area are consistently included for the intercompany transactions, the eliminations between Legal and Management will agree at the top-level of each hierarchy.</i>
    Have I to introduce one more InfoObject Partner Business Area in the data basis and assign the role Sub-assignment once again?
    Thanks in advance.

  • LINK BETWEEN BUSINESS AREA AND MATERIAL NUMBER

    Hello EXPERTS,
    I have a report based on a custom table .The custom table contains company code, materials and their date run as primary keys.
    In the selection screen I am having one field business area, based upon the value entered in the selection screen in business area field I have to retrieve the corresponding materials.
    I want to know the relation between business area and materials ( resp. tables and primary keys)
    Plz any one guide me on this ...
    SRI

    hi ARS,
    Can u be more specific
    based upon the business area I have to retrieve materials... the report which I generated is based upon only one custom table.  In selection screen I am having business area field but it is not existing in the custom table...
    can any one guide me to solve this problem...
    SRI

  • Business area in GRN doc

    Hi All,
    When we create a PO & when GRN is made against the same & posted, business area is not getting captured . This will lead to auditing queries. Please suggest.
    Thanks

    Hi Ravi,
    Business area is an organizational unit that corresponds to a specific business segment or area of responsibility in a company.
    In T.code:OX03 - Creation of new Business Area and In T.code:OMJ7 and link plant and division to your business area.
    Business Area. The system posts costs and revenue according to the business area. The business area can be equivalent to the:
    sales area (if the accounts are to be posted according to sales)
    plant/division (if the accounts are to be posted according to products)
    The business area is defined in Customizing for Sales.
    o Business area. A unit in an enterprise, grouping product and market combinations as homogeneously as possible for the purpose of developing unified business policy.
    o Financial Accounting (FI). A business area is an organizational unit within financial accounting which represents a separate area of operations or responsibilities within an organization. Financial accounting transactions can be allocated to a specific business area.
    For more check the links:
    http://www.sap-basis-abap.com/sapfi003.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/FIBUSI/FIBUSI.pdf
    http://www.sap-img.com/sap-sd/sd-questions-on-corporate-structure.htm
    Regards,
    Nani.

  • Business area problem

    Sir in tcode VA01 i am getting following error :-
    No business area can be determined for item 000010
    Messagae no. V1599
    Diagnosis
    The system could not determine a business area for item 000010. The item has plant AMBA and is assigned to company code ARP for which a business area is required. This is caused by incomplete settings in Customizing.
    System response
    The system does not allow you to create the item.
    Procedure
    Before creating the item, make sure that you have completely maintained business area assignments in Customizing.
    In which tcode i will have to do customization?
    I wait on line.

    Hi,
    This because the determination rule is not maintained.
    If you maintain the determination rule then system will pick up the business based on plant /division
    or otherwise based on sales area.
    If your triggering the business area based on plant and division then u need to give the rule 1.
    T.code:IMG
        Enterprise structure>Assignment>Sales and Distribution>Business Area Account Assignment>Define Rules by Sales Area.
    1--> based on plant and division
    2--> based on Sales Area
    3-->Based on Sales Org/distribution channel and division.
    Regards
    Saju

  • Business Area wise finacial statements - P&L, Balance Sheet

    Hi,
    My client has a requirement to have business area wise Trail Balance. In OBY6, business area financial statements tick has been done. So it is asking business area in cost objects. Plants are assigned to business areas. But still, I am able to post Balance sheet account to Balance sheet accounts without business area. I thought making business area mandatory for all G/Ls in OBC4. Then I have to write many substitutions  and  I may lose advantage of F.5D which gives business area basing on other P&L line item.
    What needs to be done?
    Can someone help me to suggest what exactly needs to be done to get Business Area wise Trail Balance.
    We have not activated document splitting functionality. Please suggest the way without document splitting and New G/L functionalities.
    Regards,
    Saidarao
    Edited by: saidarao G on Nov 22, 2011 7:47 AM

    Hi,
    You if want business area wise finanancial statements go to the this tranction code F.01
    Regards
    Mastan Reddy N

  • Business Area Trail Balance

    Dear Experts,
    I am facing problem in Trail Balance
    We have implemented 4 Business Area in our company code, company code wise trail balance is matching but BA wise its not matching.
    I created 1 adjustment account  &  executed F.5D & F.5E transaction.
    In F.5E It says post zero balance account
    Do I need to run any other transaction to get Trail Balance of BA to match.
    Please help me to solve this issue
    Thanks in Advance

    Hello,
    Kindly check whether their is any data without Business Area. In your finantial statement give "Null" bisuness area and check the report. If their is some data exist, you can consolidate as per your requirement.
    Thanks
    Vinayak

  • Business area & profit center

    hi sap gurus,
    When it is useful to activate new Profitcenter & when it is useful to activate Business Area.
    Can any body narrate difference and benefts of each
    Thanks & Regards
    krishna.

    Hi,
    Profit center and business are org units and both are used for similar purposes.
    Business area is gared on external accounting where as profit centers are used for internal accounting purposes
    Business Area
    Based on the above we can prepare Balance sheet and profit
    centre for separate product segment, geographical segment
    etc.  In India for certain companies it is the external
    reporting.
    Profit Centre
    Based on the above responsble profit centre derive the
    profit (only profit) (revenue minus expenses).  Internal
    reporting
    Thanks
    Ram

  • Business area problem in vf01

    Hi,
    we have implemented business area concept on 01.04.2008 onwards. previuos year in 2007 we have some sales order  pending but while doing billing it is not taking the business area which are sales order created in 2007 financial year.but what are the sales order created in current year 2008 for this it is taking. please help me in this issue .
    it is very urgent.

    Business area is derived from the config assignment per sales area or plant.
    SPRO>Enterprise Structure>Assignment>Sales and Distribution>Business Area Account Assignment. You may allocate business area based on sales area; Have you explored that way?

  • Business Area in Enterprise Structure

    Can someone please explain the purpose of Business Area/Business Unit in the Enterprise Structure? I'm wondering, functionally, how it is different from personnel area and personnel subarea, as we use the PA and PSA to distinguish  between departments and business units, respectively. Are there integration differences, or is there not a significant difference?
    Thanks for any replies and help.
    -Nick

    Hey Nick,
    If you bring up the help on Business Area within the IMG, you get the following:
    Define Business Area
    Use
    In this section you create business areas. A business area is an
    organizational unit within accounting that represents a separate area of
    operations or responsibilities in a business
    organization.
    When defining a business area, you enter a four-character alphanumeric key
    and the name of the business area.
    In a client, you can set up
    several business areas to which the system can assign the postings made in all
    company codes defined in
    this client. To ensure consistency in document entry, you should give business
    areas the same name in all company codes.
    You make all other specifications for your business areas in the Financial
    Accounting Implementation Guide.
    So as this and Theo also indicated above, this is relevant for FI.
    Hope this helps!

Maybe you are looking for

  • SD Flow program using For all entries.

    using simple ALV grid: I have the urgent requirement of changing the following program using 'For all entries' instead of joins and I should not use 'TABLES' -- For top-of-page I need to get dynamic fields like if I select company code in the selecti

  • FI MM account determination user exit

    Dear All, In FI-MM integration, GL account for material movements is determined based on the settings in OBYC. The GL account is determined based on chart of accounts, valuation class, general modifier, transaction key etc. The transaction key is in

  • HT5554 1st gen. Iphone Help!!!!!

    i have a question can i use my orignal iphone without the sim card? Like to use it for a ipod? If so how can i be able to use it? i cant get anywhere besides the unlock screen becasue it says i need a sim card... Please help!

  • How to fetch presence in Lync 2013 from SQL server (using query)

    We are running Lync 2013 setup with 5 FE and 2 BE SQL (mirrored) servers. How can i get presence information for our users by script or SQL queries? My Concern is to fetch out current presence information of a list of users (CSV file) by script (Powe

  • ICloud system preferences won't let me log in

    I recently changed my apple ID password and now I can't log in to the icloud system preferences on my iMac or the App Store on my iMac. Everything else is fine with the new password; icloud.com, itunes, ipad, iphone, MacBook Air. Have tried creating