How to get G/L account and cost centres from ECC to SRM...

Dear All,
How to get G/L account and cost centres from ECC to SRM...
Please let me know the steps...
Thanks
Ravi

Hi
GL account - You can define in SPRO- Cross application settings--Account assignment ->Define GL account for product category and account assignment category.
or you can use BADI BBP_DETERMINE_ACCT.
In Organisation Strucute - You can Map the backend cost center via KNT  cost center attribute .
Regards
Muthu

Similar Messages

  • GL account and Cost Centre Info

    Hi All
    Where does the GL account / Chart of accounts / Cost centre information gets stored in SRM System?
    Are there any specific tables for this..
    Thanks and Regards

    Hi
    All the data that you mention is held in ERP. SRM uses RFC connections to validate if the data that a user enters is correct.
    The cost centres that a user can select can be maintained in the org structure or the search help functionality (that requires a dialog rfc connection) can be activated.
    The default GL account for a product category can be maintained within the SRM Server -> Cross-Application Basic Settings -> Account Assignment -> Define G/L Account for Product Category and Account Assignment Category img activity.
    Hope this answers a couple of your queries.
    Keith

  • How to get list of groups and the users from OID

    Hi,
    Can someone please tell me how to get the list of GROUPS and all the USERS in each group in OID using Java. Need to recursively get all the Groups and Users in each group using Java any samples.
    Thanks

    use examples from OTN like
    http://www.oracle.com/technology/sample_code/products/jdev/readmes/samples/ldapdatacontrol/ldapapplication/src/dc/ldap/model/LDAPSearch.java
    and modify it to your needs
    Bernhard

  • Position to inherit company code and cost centre from Org Unit

    Hi Team,
    I have entered the company code and controlling area in my root Org. Unit.  All the sub-ordinate org units that I've created have inherited this company code and controlling area, however none of the positions I've created have inherited them.  What do I have to do to get my positions to inherit this information from their org unit.
    Regards,
    Jeanette

    Hi,
    Check table T7SS0, there are three switches
    PPOM     INHIC     X     'X': PPOM: Obligatory Inheritance of Company Code
    PPOM      INHIH     X     'X': PPOM: Obligatory Inheritance of Contr. Area
    PPOM     INHS     X     Inheritance of acc. ***. features by positions
    So just check these switches that they are set in this table, and I hope your problem should resolve
    Regards,
    guds

  • How to get the column name and table name from xml file

    I have one XML file, I generated xsd file from that xml file but the problem is i dont know table name and column name. So my question is how can I retrieve the data from that xml file?

    Here's an example using binary XML storage (instead of Object-Relational storage as described in the article).
    begin
      dbms_xmlschema.registerSchema(
        schemaURL       => 'my_schema.xsd'
      , schemaDoc       => xmltype(bfilename('TEST_DIR','my_schema.xsd'), nls_charset_id('AL32UTF8'))
      , local           => true
      , genTypes        => false
      , genTables       => true
      , enableHierarchy => dbms_xmlschema.ENABLE_HIERARCHY_CONTENTS
      , options         => dbms_xmlschema.REGISTER_BINARYXML
    end;
    genTables => true : means that a default schema-based XMLType table will be created during registration.
    enableHierarchy => dbms_xmlschema.ENABLE_HIERARCHY_CONTENTS : indicates that a repository resource conforming to the schema will be automatically stored in the default table.
    If the schema is not annotated, the name of the default table is system-generated but derived from the root element name :
    SQL> select table_name
      2  from user_xml_tables
      3  where xmlschema = 'my_schema.xsd'
      4  and element_name = 'employee';
    TABLE_NAME
    employee1121_TAB
    (warning : the name is case-sensitive)
    To annotate the schema and control the naming, modify the content to :
    <?xml version="1.0" encoding="UTF-8" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb">
      <xs:element name="employee" xdb:defaultTable="EMPLOYEE_XML">
        <xs:complexType>
    Next step : create a resource, or just directly insert an XML document into the table.
    Example of creating a resource :
    declare
      res  boolean;
      doc  xmltype := xmltype(
    '<employee>
      <details>
        <emp_id>1</emp_id>
        <emp_name>SMITH</emp_name>
        <emp_age>40</emp_age>
        <emp_dept>10</emp_dept>
      </details>
    </employee>'
    begin
      res := dbms_xdb.CreateResource(
               abspath   => '/public/test.xml'
             , data      => doc
             , schemaurl => 'my_schema.xsd'
             , elem      => 'employee'
    end;
    The resource has to be schema-based so that the default storage mechanism is triggered.
    It could also be achieved if the document possesses an xsi:noNamespaceSchemaLocation attribute :
    SQL> declare
      2 
      3    res  boolean;
      4    doc  xmltype := xmltype(
      5  '<employee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      6             xsi:noNamespaceSchemaLocation="my_schema.xsd">
      7    <details>
      8      <emp_id>1</emp_id>
      9      <emp_name>SMITH</emp_name>
    10      <emp_age>40</emp_age>
    11      <emp_dept>10</emp_dept>
    12    </details>
    13   </employee>'
    14   );
    15 
    16  begin
    17    res := dbms_xdb.CreateResource(
    18             abspath   => '/public/test.xml'
    19           , data      => doc
    20           );
    21  end;
    22  /
    PL/SQL procedure successfully completed
    SQL> set long 5000
    SQL> select * from "employee1121_TAB";
    SYS_NC_ROWINFO$
    <employee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceS
      <details>
        <emp_id>1</emp_id>
        <emp_name>SMITH</emp_name>
        <emp_age>40</emp_age>
        <emp_dept>10</emp_dept>
      </details>
    </employee>
    Then use XMLTABLE to shred the XML into relational format :
    SQL> select x.*
      2  from "employee1121_TAB" t
      3     , xmltable('/employee/details'
      4         passing t.object_value
      5         columns emp_id   integer      path 'emp_id'
      6               , emp_name varchar2(30) path 'emp_name'
      7       ) x
      8  ;
                                     EMP_ID EMP_NAME
                                          1 SMITH

  • How to get  only latest date and other columns from table

    Hi,
    Table
       id          name        date
      123        a             2/3/2010
      124        b            15/2/2010
      125        c             1/1/2010
      123        a             12/4/2010
      125        c             17/2/2010
    this is a table, here id,name,date is composite key.
    I want to select id,name and date so that latest date (e.g., for id 123 date 12/4/2010 be selected) is selected for each id and each id and name should be selected once.
    So what will be its query?
    Thanks

    Hi,
    user12222356 wrote:
    SQL> select id id,name name,max(dt) over 0 from temp2;
    select id id,name name,max(dt) over 0 from temp2
    ERROR at line 1:
    ORA-00923: FROM keyword not found where expectedWhat is over 0?That should be
    ... OVER ( )with a pair of parentheses.
    Almost all aggregate functions (including MAX) also have analytic counterparts. The parser knows that you're using the analytic version if the keyword OVER, followed by an analytic clause in parentheses, comes after the argument. In this case, the default analytic clause is being used, so there's no need to put anything in the parentheses, but syntax still requires that they be there.

  • ZGPGL - Copying Accounts and Cost Centers to the SAP system

    Hi all,
    When I try to copy accounts and cost centers from my excel mapping document to the SAP system I can only copy about 20 of them at a time. I have about 30,000 accounts and am wondering if there is a quicker way to do this.
    Thanks,
    Deki

    Write a catt script to create the GL account and cost center master data. they are relativley easy to learn and create. They work great for this. I have used them several times for that purpose.
    pls assign points to say thanks.

  • Replicating Service contracts and Service orders from ECC 6.0 to CRM 2007

    Hi CRM Gurus,
        How can we replicate Service contracts and Service orders from ECC 6.0 and CRM 2007. Any pointers to do this?
    Please let me know.
    Best regards,
    Vinay

    Vinay,
    I dont think you need any Middleware adaptor objects for CRM Request download .
    You need to create a request in CRM using R3AR2 . Here you need to provide the R/3 table name and field name to download the service document along with Document ID
    You can monitor your request download in txn R3AR4.
    But as MCG rightly told , you should have done all requried customized settigns before downloading service documents .
    Regards
    Dinesh

  • Need to know how to get my apple account to sync up with a new email on my phone and delete the old one in a step by step process??

    Need to know how to get my apple account to sync up with a new email on my phone and delete the old one in a step by step process??

    After you change the account settings as I described below hold your finger on any app until they all wriggle, then tap the "-" on each purchased with her Apple ID. Press the HOME button when done. Then go to the App Store and buy or download the apps you want.

  • My daughter has an iPhone and some how we share an iCloud account and she's getting all my texts and contacts. I can't find where to uncheck her phone number on my phone account. Please help

    My daughter and I both  have an iPhone and some how we share an iCloud account and she's getting all my texts and contacts. I can't find where to uncheck her phone number on my phone account so she doesn't get all my texts and contacts. Please help

    Hi Shellyk,
    Go to Settings>Messages>Send & Receive and make sure that only your personal email addresses are listed under the individual phone number.Remove the "shared" iCloud email address.
    For the Contacts, if you are syncing them via iCloud and you both have the same iCloud account, you will both have the same Contact list.
    Cheers,
    GB

  • How to set MM02 should not allow to change account and costing view

    Hi all guru's
    How to set MM02 should not allow to change account and costing view details for orher users expect me,plz help me
    thanks
    ramesh

    Hi Ramesh,
                       Use the Authorization Object:  M_MATE_STA     Material Master: Maintenance Statuses
    Below are the Views for the MM02, Field STATM
    Whichever not wanted to be changed, please dont provide them.
    A     Work scheduling
    B     Accounting
    C     Classification
    D     MRP
    E     Purchasing
    F     Production resources/tools
    G     Costing
    K     Basic data
    L     Storage
    P     Forecasting
    Q     Quality management
    S     Warehouse management
    V     Sales
    X     Plant stocks
    Z     Storage location stocks
    Regards,
    Yawar Khan
    Edited by: 1234_abcd on Jan 10, 2012 8:14 AM

  • My old laptop is not working.  How do I get my itunes account and library on my new computer with out wiping out my ibrary?

    my old laptop is not working.  How do I get my itunes account and library on my new computer with out wiping out my ibrary?

    Hi 1Donald,
    To answer your question, ''"How can my new desktop have a KEY when it is not even part of the sync yet?"''
    You need to get the key from the new device and enter it into the old device. So on the old device select "Pair a device" and the place to enter the key will show up.
    I hope this helps.

  • I have been charged 274.55 from 8-23-2013 - 8-26-2013. These are not my charges. I need to know how to get the charges reversed and put back on my account ASAP. Please confirm!

    I have been charged 274.55 from 8-23-2013 - 8-26-2013. These are not my charges. I need to know how to get the charges reversed and put back on my account ASAP. Please confirm!

    You can contact iTunes Support via this page (we are fellow users here on these forums) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • G/L account and cost center in Delivery

    Hi,
    When we create the deliveri, first in sales order user only enters and func center,  that fuind center comes in the deliveri goods movement document,  along with that when i check in MIGO document display along with fund center i can see the cost cenert and g/l account for which that document is posted, In our system we are using same chart of account for two compnay codes, and in OBYC  for GBB-VAX  we have maintain one G/L account 893011, and in cost element for this 893011 we have assign one cost center  for one compnay code that cost center is OK  but for othere one we want to assign different cost center,  by keeping the same account,  how we can do this.
    regards,
    zafar
    Edited by: zafar_karnalkar on Jan 6, 2011 6:36 AM

    Dear Zafar,
    If you desire you maintain two different cost centers for the two company and you need to have both of them posted on the same G/L account and Cost element, I would advice you to:
    - create a Z table where by controlling area you define where the specific cost center need to get posted
    - include this validation check in the exit for validation for controlling
    - include this validation check in the exit for validation for finance
    - include this validation check also in the sales order user exit
    Standard SAP seems do not have direct link between cost centers & cost elements. For this reason ideal solution is to generate a table where you may define you needed structure.
    E.g.: some ideas on the table you may create
    Controlling area
    Cost element from
    Cost element to
    Cost center from
    Cost center to
    I hope this suggestion may answer to your need.
    Regards,
    Viviana A.

  • Not updating G/L account and cost center with BAPI BAPI_PO_CREATE1

    Hello Friends,
    The two fields G/L ACCOUNT and Cost Center is not updated using BAPI BAPI_PO_CREATE1. I am unable to understand why? This is what i am passing to account assignment structure( POACCOUNT). Filled POACCOUNTX structre as well. I have passed company code at the header level.
    PO_ITEM = 00010
    SERIAL_NO = 01
    CREAT_DATE = sy-datum
    GL_ACCOUNT = 621000
    COSTCENTER = 1000
    CO_AREA = 4000
    Please let me know why it is not updating anything i missed while passing?
    2>I need to update GR quantity but this field is not available in the BAPI ..Please let me know how to update this field.
    Any help is highly appreciated.
    Regards,
    Raj

    Hi, I have a problem I use the bapi BAPI_PO_CREATE1, I pass the table pt_poaccount in the parameter poaccount but the bapi when register my purchase order doesn't register correctly the values KOSTL, AUFNR, PS_PSP_PNR, NPLNR of the tablepoaccount and register the default values of the contract. Please i need help with this.
    CLEAR s_poaccount.
         s_poaccount-po_item     = <fs_datos>-ebelp.
         s_poaccount-serial_no   = w_serial.
         s_poaccount-costcenter  = <fs_datos>-kostl.
         s_poaccount-orderid     = <fs_datos>-aufnr.
         s_poaccount-wbs_element = <fs_datos>-ps_psp_pnr.
         s_poaccount-network     = <fs_datos>-nplnr.
         s_poaccount-activity    = <fs_datos>-vornr.
         s_poaccount-quantity    = <fs_datos>-menge.
         s_poaccount-net_value   = <fs_datos>-brtwr.
         s_poaccount-creat_date  = sy-datum.          
         s_poaccount-itm_number  = <fs_datos>-ebelp.  
         s_poaccount-co_area = '1001'.               
         APPEND s_poaccount TO pt_poaccount.
    CLEAR s_poaccountx.
         s_poaccountx-po_item     = <fs_datos>-ebelp.
         s_poaccountx-serial_no   = w_serial.
         s_poaccountx-po_itemx = 'X'.
         s_poaccountx-serial_nox = 'X'.
         s_poaccountx-creat_date = 'X'.
         s_poaccountx-itm_number = 'X'.
         s_poaccountx-co_area = 'X'.
         s_poaccountx-costcenter = 'X'.
         s_poaccountx-orderid = 'X'.
         s_poaccountx-wbs_element = 'X'.
         s_poaccountx-network = 'X'.
         s_poaccountx-activity = 'X'.
         s_poaccountx-quantity = 'X'.
         s_poaccountx-net_value = 'X'.
         APPEND s_poaccountx TO  pt_poaccountx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
         EXPORTING
           poheader          = pe_poheader
           poheaderx         = pe_poheaderx
         IMPORTING
           exppurchaseorder  = pi_exppurchaseorder
         TABLES
           return             = pt_return
           poitem           = pt_poitem
           poitemx         = pt_poitemx
           poschedule    = pt_poschedule
           poschedulex  = pt_poschedulex
           poaccount      = pt_poaccount
           poaccountx    = pt_poaccountx
           poservices     = pt_poservices
           posrvaccessvalues = pt_posrvaccessvalues.
    The BAPI is register with these values as default however i pass other values in table
    pt_poaccount

Maybe you are looking for

  • What is the best way of returning group-by sql results in Toplink?

    I have many-to-many relationship between Employee and Project; so, a Employee can have many Projects, and a Project can be owned by many Employees. I have three tables in the database: Employee(id int, name varchar(32)), Project(id int, name varchar(

  • Premiere pro cc 2014 crashing my system

    I have a new Mac book pro (2014) 16 gbs ram.. everything is upgraded to max. downloaded the new premiere pro CC 2014. and it's crashing my system every time. it takes about 4 mins. with the spinning ball. Then all the processes and plugins load in. 

  • How to modify functionality of skin buttons in Flash

    I am using Captivate 4.  I am creating some practice activities that need a Show Hint button and a Do It For Me button. I've modified 2 of the original buttons in the Coolblue skin provided by Captivate 4, and now need to modify their functionality.

  • OWB Design Client Performance Problems

    I am currently testing OWB 9.2.0.4 and i quite often experience what I can only describe as the program hangs. If I wait approximately 30 - 90 seconds, the program will begin to respond again. This is quite annoying and would like to know if there is

  • Data not getting inserted into table Hxt_Add_Assign_Info_F

    Hi, Can any one tell me as to when data is inserted into the table Hxt_Add_Assign_Info_F. Lately this table has not been getting updated. Thanks Zicky