Account Group Table ?

Hi,
What is the table name for Account Groups?
The reference Tcodes is KDH1 / KDH2 / KDH3.
Here we make our account groups and assing GLs to that group.
Thanks & Regards,
Dhanunjaya Reddy.

Hi,
Try using the flow as below:
SETHEADER -> SETLEAF
In SETLEAF you get the set names and their intervals.
Next get the valid G/L accounts from table SKA1 for all ranges of SETLEAF.
SELECT saknr FROM SKA1
     INTO TABLE <itab>
     WHERE KTOPL = <chart of accounts>
     AND SAKNR BT ( valfrom, valto ).  " VALFROM and VALTO are values from SETLEAF
Hope this helps you understand the relation.
Alternatively you can explore FM: K_RACCT_VALUES_GET
Regards
Eswar
Note: Dont forget to appreciate the SDN way

Similar Messages

  • Vendor account group table

    hi
    i wanted know in which table vendor and its account group will get store.
    Ex: vendor-XYZ belongs to account group 0001
    above combination in which table will get it. i want do validation in report. user will give vendor number. now i want to find this vendor belongs to which vendor account group?
    Thanks
    GP

    Hi,
    you can see vendor account group details in vendor master it self, ty this
    go to vendor master and from the menu select Extras- Administrative data.
    Regards
    babu

  • Customer Account Group Mark for deletion

    Hi Experts,
    As per the business requirement i need to block some of the customer account groups like(z001,z002 and z003)
    is there any config settings available for marking these account groups as blocked or only  deletion is possible.
    Thanks in advance
    Regards
    Satprk

    I am not sure whether the account group can be blocked by any means. I would not recommend deleting from the SPRO account group table data as it will affect the historical data.
    However, you can control using these account group using authorization objects. Check with basis personal to exclude these account groups from using in XD01 t.codes.
    Regards,

  • OMJJ - add new account grouping for transaction type

    Hi
    How can I add anew combination of movement type and special stock indicator, that don't exist in our system.
    How can I add a line to OMJJ account grouping table?
    Is it dependant on something else?
    Thanks
    Liat

    Hi Liat, if you want to create a new movement type, you go to transaction OMJJ, select movement type, put in field from movement type that you want to copy and in field to movement type that you want to create, you copy all entries and on Update control... tab you can put special stock indicator.
    Please review this
    I hope this information help you
    Rose

  • FICO Tables  G/L account group name  text

    Hai 
           I'm developing an Report  in ABAP , I would like to get the  G/L account group & its text , But am not getting account group text ,   G/L account group field is available  ( SKA1-KTOKS )  & ( T077S  Pooled  table , i could't find any TEXT Field  ) , Please help me
    Sarath P G

    Hi,
    Use table T077Z.  Pass KTOPL & KTOKS from SKA1 as input parameters.
    Regards
    Vinod

  • In which tables the GL  account group  field KTOKS

    Hi,
    From which tables the GL  account group  field KTOKS  get
    Regards,
    Siva

    hi
      DKOKS                            Open Item Account Balance Au
      DSKOS                            Balance Audit Trail
      SKA1                             G/L Account Master (Chart of
      T077S                            G/L account groups
      T077Z                            Account Group Names (Table T
    regds
    laks.

  • Table to fetch account group against GL accounts ( groups created by KDH1)

    Hello,
    Can anyone tell me that from what tables i fetch the data of account groups and GL accounts against them.
    regards
    Hina.

    Try SKA1 table in SE16
    Reward if it helps.

  • Start Routine to Populate Account Group Field from Master data of 0Customer

    Hello Friends. Please help me edit this ABAP code to make it work. I am putting this code in start routine in between two DSO. where I am using the
    Start Routine to Populate Account Group Field from Master data of 0Customer. I do not want to use read from master data functionality since that field 0customer is not there in dso but similar field 0debitor is there. so i want to put this code
    during the load from source DSO to Target DSO.
    Error Explicit length specifications are necessary with types C, P, X, N und
    DATA: L_S_DP_LINE TYPE DATA_PACKAGE_sTRUCTURE.
        types: begin of comp,
         CUSTOMER       type  /BI0/OICUSTOMER,
         ACCNT_GRP          type /BI0/OIACCNT_GRP,
       end of comp.
        DATA: l_S_comp type comp.
        DATA: L_th_COMP TYPE HASHED TABLE OF COMP WITH UNIQUE KEY customer INITIAL SIZE 0.
    IF  L_th_COMP[] IS INITIAL.
    SELECT CUSTOMER ACCNT_GRP FROM /BI0/PCUSTOMER APPENDING CORRESPONDING FIELDS OF TABLE L_th_COMP.
    ENDIF.
    LOOP AT SOURCE_PACKAGE INTO L_S_DP_LINE.
    READ TABLE L_TH_COMP INTO L_S_COMP WITH TABLE KEY CUSTOMER = L_s_DP_LINE-CUSTOMER
    IF SY-SUBRC = 0.
    L_S_DP_LINE-/BIC/ACCNT_GRP = L_S_COMP-/BIC/ACCNT_GRP.
    MODIFY SOURCE_PACKAGE FROM L_S_DP_LINE.
    ENDIF.
    ENDLOOP.
    soniya kapoor
    Message was edited by:
            soniya kapoor

    Hello Wond Thanks for Good Answer and good option, But Client does not like this option and does not like Nav Attribute so he does not want to turn on any Nav Attribute, In general also We hav requirement to read a third table while uploading 1 dso table to 2 dso table,
    so  Please help me edit this ABAP code to make it work. I am putting this code in start routine in between two DSO. where I am using the
    Start Routine to Populate Account Group Field from Master data of 0Customer.
    No syntax Error But during the load it is updating the source table and not the target table. how to define now target table.
    ***SOURCE DSO Table
    types: begin of typ_tgl1.
        include type /BIC/AZDAFIAR000.
        types: end of typ_tgl1.
        types: begin of comp,
         CUSTOMER       type  /BI0/OICUSTOMER,
         ACCNT_GRP          type /BI0/OIACCNT_GRP,
       end of comp.
    DATA: L_th_COMP TYPE HASHED TABLE OF COMP WITH UNIQUE KEY customer
    INITIAL SIZE 0.
      data: wa_itab type COMP.
        data: wa_zdtg type typ_tgl1.
    IF  L_th_COMP[] IS INITIAL.
    ***Master Data Table
    SELECT CUSTOMER ACCNT_GRP FROM /BI0/PCUSTOMER APPENDING CORRESPONDING
    FIELDS OF TABLE L_th_COMP.
    sort L_th_COMP by CUSTOMER.
    ENDIF.
    LOOP AT L_th_COMP into wa_itab.
    select * from /BIC/AZDAFIAR000 into wa_zdtg
                        where DEBITOR  eq wa_itab-CUSTOMER.  *** SOURCE DSO Table
    IF SY-SUBRC = 0.
    wa_zdtg-ACCNT_GRP = wa_itab-ACCNT_GRP.
    MODIFY /BIC/AZDAFIAR000 from wa_zdtg. *** modify SOURCE DSO Table
    ENDIF.
      endselect.
        endloop.
    soniya kapoor

  • Relationship between "Account Group" and "GL Acct. number".

    I need to create a report that lists the GL Account numbers according to selection screen parameter "Account Group" .
    Hi i need to find a way\(tables and fields) between the  "Account Group"  and
    the "GL Account number".
    to view "Account Group"  go to transaction "kdh3".
    to view GL account number go to transaction FS00.
    the GL account numbers and cost centers are identified by the same number.

    Hi guys, thanks for helping
    Max, i tried that field, but it provides a different set of data compared to the account groups i get using the "F4" on KDH3
    Chandrasekhar, i had a look at the view, but it also does not contain the same account groups as found in KDH3.
    I have been stuck on this for a while.
    thanks again

  • Add Multiple records to G/L account group.

    Dear ABAP Experts,
    i have requirement that is using  BDC recording file  the Functional People wants to add records to the G/L Account group. The FI consultant gave the recording file, based on the recording file i developed a BDC program. This BDC program will work for single record. After creating single record system will ask for transport request .
    REPORT  ZDP_ACC_GRP.
    TYPES: BEGIN OF TY_TAB,
            KTOPL TYPE KTOPL,
            KTOKS TYPE KTOKS,
            TXT30 TYPE TXT30,
            VONNR TYPE VONNR,
            BISNR TYPE BISNR,
           TRKORR TYPE TRKORR,
       END OF TY_TAB.
    data: lt_tab type table of ty_tab,
           wa_tab type ty_tab.
    data: begin of record,
    * data element: KTOPL
             KTOPL_01_001(004),
    * data element: KTOKS
             KTOKS_01_002(004),
    * data element: TXT30_077T
             TXT30_01_003(030),
    * data element: VONNR_077S
             VONNR_01_004(010),
    * data element: BISNR_077S
             BISNR_01_005(010),
    * data element: TRKORR
             TRKORR_006(020),
           end of record.
    *       Batchinputdata of single transaction
    DATA:   BDCDATA type table of BDCDATA  WITH HEADER LINE.
    *       messages of call transaction
    DATA:   MESSTAB type table of BDCMSGCOLL  WITH HEADER LINE.
    *       error session opened (' ' or 'X')
    DATA:   E_GROUP_OPENED.
    *       message texts
    TABLES: T100.
    data:lv_file type string.
    parameters: p_fname type IBIPPARMS-PATH.
    at selection-screen on value-request for p_fname.
    CALL FUNCTION 'F4_FILENAME'
      EXPORTING
        PROGRAM_NAME        = SYST-CPROG
        DYNPRO_NUMBER       = SYST-DYNNR
        FIELD_NAME          = 'P_FNAME'
      IMPORTING
        FILE_NAME           = p_fname .
    start-of-selection.
    lv_file = p_fname.
    CALL FUNCTION 'GUI_UPLOAD'
       EXPORTING
         FILENAME                      = LV_FILE
    *   FILETYPE                      = 'ASC'
        HAS_FIELD_SEPARATOR           = 'X'
       TABLES
         DATA_TAB                      = LT_TAB
      EXCEPTIONS
        FILE_OPEN_ERROR               = 1
        FILE_READ_ERROR               = 2
        NO_BATCH                      = 3
        GUI_REFUSE_FILETRANSFER       = 4
        INVALID_TYPE                  = 5
        NO_AUTHORITY                  = 6
        UNKNOWN_ERROR                 = 7
        BAD_DATA_FORMAT               = 8
        HEADER_NOT_ALLOWED            = 9
        SEPARATOR_NOT_ALLOWED         = 10
        HEADER_TOO_LONG               = 11
        UNKNOWN_DP_ERROR              = 12
        ACCESS_DENIED                 = 13
        DP_OUT_OF_MEMORY              = 14
        DISK_FULL                     = 15
        DP_TIMEOUT                    = 16
        OTHERS                        = 17  .
    LOop at  lt_tab into wa_tab.
    perform bdc_dynpro      using 'SAPL0F09' '0020'.
    perform bdc_field       using 'BDC_CURSOR'
                                   'V_T077S-TXT30(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                   '=NEWL'.
    perform bdc_dynpro      using 'SAPL0F09' '0020'.
    perform bdc_field       using 'BDC_CURSOR'
                                   'V_T077S-BISNR(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                   '=SAVE'.
    perform bdc_field       using 'V_T077S-KTOPL(01)'
                                   WA_TAB-KTOPL."record-KTOPL_01_001.
    perform bdc_field       using 'V_T077S-KTOKS(01)'
                                   WA_TAB-KTOKS."record-KTOKS_01_002.
    perform bdc_field       using 'V_T077S-TXT30(01)'
                                   WA_TAB-TXT30."record-TXT30_01_003.
    perform bdc_field       using 'V_T077S-VONNR(01)'
                                   WA_TAB-VONNR."record-VONNR_01_004.
    perform bdc_field       using 'V_T077S-BISNR(01)'
                                   WA_TAB-BISNR."record-BISNR_01_005.
    perform bdc_dynpro      using 'SAPLSTRD' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                   'KO008-TRKORR'.
    perform bdc_field       using 'BDC_OKCODE'
                                   '=LOCK'.
    perform bdc_field       using 'KO008-TRKORR'
                                   WA_TAB-TRKORR."record-TRKORR_006.
    perform bdc_dynpro      using 'SAPL0F09' '0020'.
    perform bdc_field       using 'BDC_CURSOR'
                                   'V_T077S-KTOPL(02)'.
    perform bdc_field       using 'BDC_OKCODE'
                                   '=BACK'.
    perform bdc_dynpro      using 'SAPL0F09' '0020'.
    perform bdc_field       using 'BDC_CURSOR'
                                   'V_T077S-KTOPL(02)'.
    perform bdc_field       using 'BDC_OKCODE'
                                   '=BACK'.
    perform bdc_transaction using 'OBD4'.
    ENDLOOP.
    FORM BDC_TRANSACTION USING TCODE.
       DATA: L_MSTRING(480).
       DATA: L_SUBRC LIKE SY-SUBRC.
    * batch input session
    * call transaction using
         REFRESH MESSTAB.
         CALL TRANSACTION 'OBD4' USING BDCDATA
                          MODE  'A'" CTUMODE
                          UPDATE 'S'"CUPDATE
                          MESSAGES INTO MESSTAB.
         L_SUBRC = SY-SUBRC.
           LOOP AT MESSTAB.
             SELECT SINGLE * FROM T100 WHERE SPRSL = MESSTAB-MSGSPRA
                                       AND   ARBGB = MESSTAB-MSGID
                                       AND   MSGNR = MESSTAB-MSGNR.
             IF SY-SUBRC = 0.
               L_MSTRING = T100-TEXT.
               IF L_MSTRING CS '&1'.
                 REPLACE '&1' WITH MESSTAB-MSGV1 INTO L_MSTRING.
                 REPLACE '&2' WITH MESSTAB-MSGV2 INTO L_MSTRING.
                 REPLACE '&3' WITH MESSTAB-MSGV3 INTO L_MSTRING.
                 REPLACE '&4' WITH MESSTAB-MSGV4 INTO L_MSTRING.
               ELSE.
                 REPLACE '&' WITH MESSTAB-MSGV1 INTO L_MSTRING.
                 REPLACE '&' WITH MESSTAB-MSGV2 INTO L_MSTRING.
                 REPLACE '&' WITH MESSTAB-MSGV3 INTO L_MSTRING.
                 REPLACE '&' WITH MESSTAB-MSGV4 INTO L_MSTRING.
               ENDIF.
               CONDENSE L_MSTRING.
               WRITE: / MESSTAB-MSGTYP, L_MSTRING(250).
             ELSE.
               WRITE: / MESSTAB.
             ENDIF.
           ENDLOOP.
       REFRESH BDCDATA.
    ENDFORM.
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
       CLEAR BDCDATA.
       BDCDATA-PROGRAM  = PROGRAM.
       BDCDATA-DYNPRO   = DYNPRO.
       BDCDATA-DYNBEGIN = 'X'.
       APPEND BDCDATA.
    ENDFORM.
    FORM BDC_FIELD USING FNAM FVAL.
         CLEAR BDCDATA.
         BDCDATA-FNAM = FNAM.
         BDCDATA-FVAL = FVAL.
         APPEND BDCDATA.
    ENDFORM.
    But the FI consultant wants to add multiple records to 'G/L account group'.After adding records before saving the system need to ask transport request at the last.
    How can I write code ...??
    Please help me.

    Hi Srikanth,
    Thanks for reply,
    You  are right we need to load hierarchy for G/L then we can see all the G/L's for all G/L groups.
    I have one more question when I check in RSA3 for the G/L account numbers, I could not find them.
    I am using the datasource fi_gl_4 and in rsa3 I can see 1000 records data and when I put filter on G/L account and search for the G/L number I needed I cant see it, but it is there in the functional transaction(f.01)?
    How to check for the required G/L's in rsa3 ?
    Thx

  • Want to change ACCOUNT GROUP to BP from CRM to ECC

    Hi All,
    We would like to change the Account group of our (Inside/Outside sales persons) when they are replicating from CRM to ECC.  We did change the PIDE setting according to our requirement but surprisingly 10-12 BPs are not getting changed. We opened an OSS and they suggested to write a Z function module and
    registering it in the table CRMC_BUT_CALL_FU for the CRM OUTBOUND which HARDCODES the CLASSIFICATION DATA to the BP in accordance with the PIDE settings so as to get the ACCOUNT GROUP for these BPs.
    I checkede the tcode CRMC_BUT_CALL_FU for the CRM OUTBOUND where we need to place our own FM. I know to write a FM, but not quite sure how to start. Can anyone out there please help me with this.
    Any suggestions are highly appreciated.
    Thanks,
    Karuna.

    I was able to change the account status from EXPIRE(GRACE) to OPEN. The trick as you hint at is to create a temporary profile, assign that profile to the account in question, saving the password from dba_users first, changing the password, logging in with the new password, then alter the user assigning back the original password with the identified by values clause in the later user statement and lastly assigning the original profile, either DEFAULT or custom.
    Here is the temp profile I used which used values less than 1 for the critical limits involved here. Cannot have limit values less than 1 in 9i according to Oracle but you can in 10g.
    CREATE PROFILE "TEMP_PROFILE" LIMIT CPU_PER_SESSION DEFAULT
    CPU_PER_CALL DEFAULT
    CONNECT_TIME DEFAULT
    IDLE_TIME 15
    SESSIONS_PER_USER DEFAULT
    LOGICAL_READS_PER_SESSION DEFAULT
    LOGICAL_READS_PER_CALL DEFAULT
    PRIVATE_SGA DEFAULT
    COMPOSITE_LIMIT DEFAULT
    PASSWORD_LIFE_TIME .0001
    PASSWORD_GRACE_TIME 5
    PASSWORD_REUSE_MAX 1
    PASSWORD_REUSE_TIME .0001
    PASSWORD_LOCK_TIME .0103
    FAILED_LOGIN_ATTEMPTS 3
    PASSWORD_VERIFY_FUNCTION DEFAULT;
    Thanks for your help.

  • Error in account determination: table T030K key 1000 MW1 Message no. FF709

    Dear Gurus
    We have activate automatic release to account at VF01 level. For one billing doc system is giving us error
    Error in account determination: table T030K key 1000 MW1Message no. FF709
    At Environment -> Act determination analysis  here the system is not giving any error. But accounting entries are not there and Excise accounting entries are generated and showing there.
    When we check at header level Header tab Accounting data block Posting status system is showing Error in Accounting Interface.
    We have assign MW1 accounting key for CST condition Type.
    Assignment in VKOA is also done.
    In OB40 tax code and the GL is also done.
    Reetesh NIgam

    hello, friend.
    when you configure account determination, you assign not only account assignment groups (customer, material) to GL accounts, you also need to make assignments for taxes, represented in SAP default by the posting key MWS.
    an example assignment in account determination, procedure 5 (General) would be as follow:
    Applic/Ty/Chart of Accts/Sales Org/Act Asg Grp/Act Asg Grp/Account key/GL accounts 
    V   KOFI   INT   1000   01   01   ERL   xxxxxx
    V   KOFI   INT   1000   01   01   ERS   xxxxxx
    V   KOFI   INT   1000   01   01   ERF   xxxxxx
    V   KOFI   INT   1000   01   01   MWS   xxxxxx
    please check if your tax condition type/s are included in your pricing procedure and have been defined in FI.
    regards.

  • Error in account determination: table T030K key CNFX MWS

    Hi,
         i have a issue when releasing the billing document .i have a issue like "Error in account determination: table T030K key CNFX
         MWS".  Actually iam trying to map the scrap process. User requirement is , when upload the non valuated material Stock, that
         material should be selling to the customer . User's wants to GL account (other revenue) should update the value only .
        i created new material account assignment group. i did GL  assignment with combination of customer and material account
        assignment group and sales organisation.
         where i made mistake?
        can you help me for configuration.
    WIith regards
    dinesh
    Edited by: code acess on Jul 26, 2011 8:09 AM

    Hi,
    Maintain account determination for tax in VKOA
    Select last combination ACCOUNT KEY
    maintain entries for combination of CNFX + Sales orgz.+ MWS = your tax account
    Kapil

  • Customer master Query report doesnt pick all the customer account groups

    Hello experts
    We have a custom Query report created using customer master tables KNA1,KNVV,KNB1 etc. We have customers maintained under 5 customer account groups. One of the selection fields in the query is account group. But it displays customers only in 4 of the 5 account groups for some reason, even though we have customers maintained in that group(prospective customers).
    Any reason why this could occur? How do i ensure that customers from all account groups are visible?
    Thanks in advance

    Hai Ravi
    In SAP query if you join
    KNA1 - KNB1- KNVV
    General - Sasles data - company data
    May be your 5th Account type is created without company code data.
    The query will display only if the data is linked in all tables.
    In case if you don't have company code data but you want the details of the account group customer
    In the query join screen.
    Right click on the joining line between KNB1 and KNVV  and select Left outer join.
    Now run the report , it will show all the account group data.
    Regards,
    Mani

  • Vendor Account Group Search Help

    Hello MM Experts,
    We would like to search Vendors by Account Group. Surprisingly it appears that SAP has not provided a standard Search Help for this. I would think that a lot of SAP users would want this.
    Does anyone know why SAP has not provided this search help in the standard system?
    Would it be ok to go ahead and create one ourselves?
    Can someone please give me some pointers on how to proceed with creation of this search help?
    Thanks!
    Anisha.

    Hi,
    Go to any vendor field, press for selection (F4)......you get many search options there.
    One of those search option is vendor by account group.
    You can also do it thru LFA1 table.
    Sk.

Maybe you are looking for

  • The plus sign button to add new events in iCal on my iPhone is missing.

    On the top, to the right of "All Calendars" there is a plus sign that is used to add events.  On my 4GS I have that and a "Calendars" button.  On my husband's 3GS, those buttons are missing, making it impossible to add events to his calendar.  Both p

  • After upgrading to iOS5 - phone ear speaker is NOT working

    Well, my excitement from upgrading to the new iOS5 on my iPhone 4 gave way to frustration when I found out that the phone's built-in ear speaker is no longer working. Tried everything from a hard reset, to re-syncing with iTunes, playing around with

  • Keychain password asked

    A friend of mine recently inherited a new Powerbook from a friend who has passed away. I helped him configuring the Mac. To install software updates, we needed a password. Since we did not know the password of the deceased, we restarted the laptop wi

  • What is the Payload Type for wav file

    Please inform me what is the PT (Payload Type) for wav file. As 26 is for MJPEG file. Thanks alot

  • 3310 predictive text problems

    As an older user of a fairly old phone I was comfortably letting mobile phone use pass me by until my children persuaded me that I had to learn to text. I have got the basics OK but no matter what I do the predictive text on my Nokia 3310 just seems