Accounting group entries not reflecting in KDH3

In transaction KDH3 for a particular accounting group, All the GL accounting entires don't appear under that accounting group.
If I go and check for that GL account in the system via FSP0 transaction, that GL account does exist in the system but it does not appear in the hierarchy list of KDH3 transaction. What could be the reason for the same?

Yes, I realized that GL account can be added via KDH2.
The real issue that I am facing is that for a particular acc group,certain GL acc are suppose to appear below that acc group automatically but they are not appearing.
These GL acc do exist in system but now are not appearing in the hierarchy below the acc group. GL acc used to appear till 2012 but have stopped appearing in the acc group hierarchy after 2012.
I checked transaction OBD4, here for my chart of accounts, acc group is not present in the mapping list, not sure if this is the reason for omission of GL acc under the acc group.

Similar Messages

  • Error - Account group  does not exist, check classification assignment

    Hi Guys,
    I am having an BP replication issue from CRM to R3 when i create BP from Web IC with role UTIL_IC. BP gets replicated to R3 if i create BP from GUI.
    Bdoc Error - Account group  does not exist, check classification assignment
    i have completed all the required configuration as below
    Setup of no range for BP and assigned to grouping
    PIDE settings in R3
    Setup if account identification profile in IS solutions
    Thanks,
    Nitin

    Nitin,
    Refer to [this|BP replication error; &[this|Contact Person Replication From CRM to R/3; thread.

  • The order of attributes from an Attribute Group is not reflected in Excel Add-in

    It looks like the order of my attributes in an attribute Group is not reflected in the Filter dialog in the Excel Add-in. Any way that I from server side can handle the attribute order in Excel?
    The order is correct in the Attribute Groups in the Web UI.
    /Stig

    Dear Sai,
    Take help of ABAPer to capture the header or item text in to the print copy of sales order ,delivery and invoice.
    I hope this will help you,
    Regards,
    Murali.

  • Down Payment entries not reflecting in J1INMIS report

    Dear Guru's,
    TDS deducted at  the time of down payment made to vendor is not reflecting in J1inmis report.
    Is J1INMIS report does not reflect down payment entries?
    What will be the reason for this?
    Which alternative report to followed for J1INMIS !!!
    Waiting for your positive reply.
    Regards,
    Sany.

    Hi Sany,
    To update Business Place & Section Code, execute the program given below. After execution of the program run T.Code J1INPP and your issue should get resolved. Let me know if this works.
    Ask the Abaper to write the following Code & execute the program:
    REPORT  ZFI_BUP_SEC_CHANGE.
    TABLES : BSIK,BSAK,BSEG.
    parameters: PA_BELNR TYPE BSEG-BELNR OBLIGATORY,
                PA_BUKRS TYPE BSEG-BUKRS OBLIGATORY,
                PA_GAAHR TYPE BSEG-GJAHR OBLIGATORY.
    PARAMETERS : PA_BUPLA TYPE BSEG-BUPLA NO-DISPLAY,
                 PA_SECCO TYPE BSEG-SECCO NO-DISPLAY.
    PA_BUPLA = 'MUM'.                               (Note : Use the Business place & section Code Used
    PA_SECCO = 'MUM'.                                         in your company code).
    START-OF-SELECTION.
    PERFORM CHANGE_DATA.
    END-OF-SELECTION.
    *&      Form  CHANGE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM CHANGE_DATA .
    DATA : LT_BSEG TYPE TABLE OF BSEG WITH HEADER LINE,
           LT_BSIK TYPE TABLE OF BSIK WITH HEADER LINE,
           LT_BSAK TYPE TABLE OF BSAK WITH HEADER LINE.
    BSeg updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSEG
    FROM BSEG
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSEG.
      IF LT_BSEG-BSCHL    = '25' OR LT_BSEG-BSCHL = '26'
         OR LT_BSEG-BSCHL = '27' OR LT_BSEG-BSCHL = '28'
         OR LT_BSEG-BSCHL = '35' OR LT_BSEG-BSCHL = '36'
         OR LT_BSEG-BSCHL = '37' OR LT_BSEG-BSCHL = '38'
         OR LT_BSEG-BSCHL = '39'.
        LT_BSEG-BUPLA = PA_BUPLA.
        LT_BSEG-SECCO = PA_SECCO.
        MODIFY BSEG FROM LT_BSEG.
        Write : / LT_BSEG-BELNR, 'Update For BSEG', LT_BSEG-BSCHL,
                  LT_BSEG-BUPLA,LT_BSEG-SECCO.
      ENDIF.
    ENDLOOP.
    Bsik updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSIK
    FROM BSIK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSIK.
      IF LT_BSIK-BSCHL    = '25' OR LT_BSIK-BSCHL = '26'
         OR LT_BSIK-BSCHL = '27' OR LT_BSIK-BSCHL = '28'
         OR LT_BSIK-BSCHL = '35' OR LT_BSIK-BSCHL = '36'
         OR LT_BSIK-BSCHL = '37' OR LT_BSIK-BSCHL = '38'
         OR LT_BSIK-BSCHL = '39'.
        LT_BSIK-BUPLA = PA_BUPLA.
        LT_BSIK-SECCO = PA_SECCO.
        MODIFY BSIK FROM LT_BSIK.
        Write : / LT_BSIK-BELNR, 'Update For BSIK', LT_BSIK-BSCHL,
                  LT_BSIK-BUPLA,LT_BSIK-SECCO.
      ENDIF.
    ENDLOOP.
    BsAk updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSAK
    FROM BSAK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSAK.
      IF LT_BSAK-BSCHL    = '25' OR LT_BSAK-BSCHL = '26'
         OR LT_BSAK-BSCHL = '27' OR LT_BSAK-BSCHL = '28'
         OR LT_BSAK-BSCHL = '35' OR LT_BSAK-BSCHL = '36'
         OR LT_BSAK-BSCHL = '37' OR LT_BSAK-BSCHL = '38'
         OR LT_BSAK-BSCHL = '39'.
        LT_BSAK-BUPLA = PA_BUPLA.
        LT_BSAK-SECCO = PA_SECCO.
        MODIFY BSAK FROM LT_BSAK.
        Write : / LT_BSAK-BELNR, 'Update For BSAK', LT_BSAK-BSCHL,
                  LT_BSAK-BUPLA,LT_BSAK-SECCO.
      ENDIF.
    ENDLOOP.
    ENDFORM.                    " CHANGE_DATA
    Thank You.

  • New account group defined not display in FS00

    Hello All
    I defined a new account group in existing groups of company" Amortization and Depreciation" in New financial accounting and in New Gl in IMG menu for defining Depreciation expense account. I assigned 1. Chart of accounts  2. Account group "AMDP"  3. Range  from x to Y.
    when i Go  FS00 to defince Depreciation expense account i find there is no Account group.
    Using Transaction code: VOC4  i assigned a group All Optional "Field Status group"
    I tried a lot to solve the issue but not do it till now.
    Please suggest me the solution of that problem.
    I also study the solution of Mr.Atif and others at SDN but not successful for me.
    Regard
    Khalid Mahmood Qammar

    Dear
    Thanks all Actually i am trying to create new GL account by copying other old group of account with New account group Range.
    i create new GL Depreciation expense account solely not by copying from other group and My issue is resolved.
    Thanks All for your Coordination
    Khalid Mahmood Qammar

  • Accounting doc entries not matching with the the entries from j_1ipart2 entries

    Hi,
    After creating PO, I have done MIGO and J1IEX. Now, posted MIRO. The end screen shows a number stating accounting document created.
    I checked the accounting doc in fb03 and the document is displayed over there. I also checked the table for values captured in PART2 of excise. The value displayed in table is not matching with the value displayed in accounting document. Can anyone help?

    Hello Tejas,
    Here is the updated version of the situation.
    After the transaction J1IEX, I got a message saying an 'Accounting Document' has been created. But the accounting document number does not match with the original values. I checked all the tables and found out that the accounting document is not created.
    In this case, I thought of creating an accounting document manually and adding them directly to the table.
    Here are my questions,
    -Can I manually create an accounting document for multiple line items?
    -Few tax values should be split and should go to 2 different GL accounts. so how to do this if I am creating it manually
    -Or can I delete the values captured during 'J1IEX' in the table and reopen the GR so that the t-code j1iex can be processed again?

  • My account balance does not reflect the redeemed B...

    I redeemed two Bing Rewards Vouchers, and each worths $1.46 (total $2.92).  However, I do not see the amount reflected in my balance.  I have original balance of $9.92 which does not change at all after I redeem these vouchers.  Please help.  Thank you.

    SJC9468 wrote:
    I redeemed two Bing Rewards Vouchers, and each worths $1.46 (total $2.92).  However, I do not see the amount reflected in my balance.  I have original balance of $9.92 which does not change at all after I redeem these vouchers.  Please help.  Thank you.
    Hello
    Did the vouchers have an expiry date?
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Views entries not reflecting in KSSKAUSP

    Hi,
       I am inserting values into AUSP, KSSK in z program.I use Commit work also the insert.
       Now when I go to SE11 & check AUSP & KSSK I am able to see the values but when I go to the view KSSKAUSP whcih is based on these two tables AUSP & KSSK, I am not able to see the values in the view.
      At the same time I tried to delete the value in AUSP in debugging moded(SE11) and inserted again. This time i am able to see the values in view KSSKAUSP.
    I tried to regenerate via database utility AUSP,KSSK & KSSKAUSP but still no use.
    Regards,
    Karthik.

    A couple of things:
    You should be using standard SAP transactions or BAPIs to update standard SAP tables, not a Z program.
    You have probably not updated the key fields used in the view joins correctly.
    Rob

  • Account group mapping is not uderstand ?

    Hi Experts,
    I am not understanding the mapping between the account groups.
    If you check under "Customer Account Group" the field name "Group", I dont understand where it is mapping to other account group?
    And how all the account groups linked with eachother? (G/L, Customer, Vendor)
    Please check..
    Thanks

    Hi,
    i had the same error 'account group DEBI not defined - CRM_BUPA_FRG0040' when trying to download my R/3 IS-U business partner from R/3 -> CRM. I checked PIDE settings, groupings and number ranges (internal/ext) settings dozens of times and had no explanation.
    I made the same experience that suddenly my BP were downloaded when i  DELETED  the entry in PIDE (but they were created in CRM not in the customized number range)
    The final reason was that i did not properly download all the csutomizing mentioned in the
    SAP best practice building block configuration guide B09
    There the object DNL_CUST_KTOKD was mentioned - it contains the R/3 account groups which have to be transferred to CRM in spite of the fact that CRM business partners don`t have an account group
    For the sales data the replication object CUSTOMER_MAIN has to be used - this contains the R/3 IS-U SD customer. The replication object BUPA_MAIN contains the R/3 IS-U Business partner. This is also the reason why downloading BUPA_MAIN might work even without the proper account group settings in PIDE, the PIDE settings are important for the R/3 SD customers
    Edited by: sapgipsy on Apr 9, 2010 3:56 PM

  • Bank account number not reflecting while creating invoice some parties

    Hi All,
    We are facing following issue while creating invoice's for some particular parties.
    Bank account number is not reflecting while creating invoice at invoice work bench from front end. Bank account details are properly attached at party site level.
    Kindly guide us regarding this.
    Thanks,

    Hi Team,
    If you are getting XXXX in place of Bank number then the issue is at (Setup > Payment >Payment Adminstrator).
    Log into Payments Setup > Shared Setup > System Security Options. Now you will find "External Bank Account Masking Setting" & Number of Digits to Disp . Now provide the numer of digits to display.
    Thanks
    Vinod K

  • FS00 Does not show account group .

    Hi ,
      in FS00 , when I try to create G/L account , the list for account group is not populated.
      How Do I check where it is missing ?
    Thanks,
    Chitta

    hi,
    create a company code wise g/l  FS00 centrally
    before u Matain  this steps
    1. Edit chart of accounts  T.Code  ( OB13 )
    2. Assign Chart of accounts          ( OB62 )
    3. Define Account Groups              ( OBD4)
    4. Retained earings account           ( OB53)
    5. Matain Field status group           ( OBc4)
    6. Assign field status group             ( OBC5)
    All basic setting fulifill than go to g/l creation
    this steps more helpful u
    regards,
    ramu.

  • Parnter Function -  Account Groups

    Question - What configuration limits which account groups that can be used with a partner function on SD documents?
    I have configured a new partner function to use on an inbound delivery document. The assignment is working fine but I'd also like to limit the entry to only be valid for a specific vendor account group. This should be standard SAP and the error received when someone enters a different account group is "Partner from account group XXXX not permitted for partner function XX". 
    Defining Permissible Partner Roles per Account Group sets the limitation on the Customer partnership but not the SD document.
    I can not find the configuration point for this limitation. Can anyone point me to it?
    Thanks in advance
    David

    Hi
    This can be configured in the Partner Determination Procedure. Here we specify the partner functions allowed to this account group and then we assign this account group to the partner determination procedure. Unless it is not specified in the procedure, the partner function is allowed for this account group.
    Thanks,
    Ravi

  • BSX / WRX transaction key in OMWN (Account grouping)

    Hi There,
    I'm trying to understand AAD.
    My confusion is, I do not see BSX / WRX transaction key for MVT 101 (considering all permutations and combinations) in OMWN .
    As we know, when we perform 101, below accounts come to picture.  So where this MVT 101 will be linked to BSX & WRX.
    Goods Receipt Against Purchase Order:101
    Movement Type: 101
    Accounting Entry:
    Inventory of Raw Material Debit [BSX]
    GR/IR (Goods Receipt/Invoice Receipt) Credit[WRX]
    Thanks,
    Udaya

    Hi,
       Account grouping is not available for BSX and WRX. It available for GBB, PRD, and KON only. Refer the help doc:  Define Account Grouping for Movement Types - Valuation and Account  and
    Assignment - SAP LibraryConfigure Automatic Postings - Valuation and Account Assignment - SAP Library
    Regards,
    AKPT

  • Questions: Vendor Account Group and Purchasing Organization

    Dear SAP experts,
    I'm just a novice user and would like to have your advice on the following questions:
    1. How to change Vendor Account Group
    Vendor has been created already with wrong account group. Can we change account group??
    2. How to add Purchasing Organization
    Vendors have been created without purchasing organization. When we try to raise contract, error msg. mentioned that "There is no purchasing organization for this vendor number"
    Can we add purchasing organization to that vendors?? If so, could you pls let me know the procedure.
    Thanks with rgds,
    Su

    Hello,
    Changing Vendor Account Group is not possible. Block the wrongly created vendor (FK05) & create a new vendor under correct group (FK01). Transfer all the balances from wrong vendor to new vendor code.
    Use Transaction code XK01 to extend the Vendor to purchasing organization. XK01 would allow to enter purchasing view of the vendor.
    Regards,
    Jaymin R. Bhatt

  • Need logic addition account group wise

    hi firends,
    i am calulating accumalated balance
    accumulated balance is nthing but addition of
    debit and credit.
    sum is working fine with one account group.
    but not for multiple aacount group.
    account grp   credit  debit    acc bal
    17011101     100      200     300
                       40       40        80
    17011101     10        10        20
    thanks

    hi this my code plz correct me
    TABLES:FAGLFLEXT,
           SKB1,
           BKPF,
           SKAT.
    ************INTERNAL TABLE DECLARATION**************************************
    DATA:BEGIN OF FAGL OCCURS 0,
         RACCT LIKE FAGLFLEXT-RACCT,
         rbukrs like FAGLFLEXT-rbukrs,
         DRCRk like  FAGLFLEXT-DRCRk,
         TSL01 LIKE FAGLFLEXT-TSL01,
         TSL02 LIKE FAGLFLEXT-TSL02,
         TSL03 LIKE FAGLFLEXT-TSL03,
         TSL04 LIKE FAGLFLEXT-TSL04,
         TSL05 LIKE FAGLFLEXT-TSL05,
         TSL06 LIKE FAGLFLEXT-TSL06,
         TSL07 LIKE FAGLFLEXT-TSL07,
         TSL08 LIKE FAGLFLEXT-TSL08,
         TSL09 LIKE FAGLFLEXT-TSL09,
         TSL10 LIKE FAGLFLEXT-TSL10,
         TSL11 LIKE FAGLFLEXT-TSL11,
         TSL12 LIKE FAGLFLEXT-TSL12,
         cumbal like FAGLFLEXT-TSL01,
        G_DEBIT LIKE FAGLFLEXT-TSL01,
        G_CREDIT LIKE FAGLFLEXT-TSL01,
         MONAT LIKE BKPF-MONAT,
         END OF FAGL.
    data:fagl1 like standard table of fagl with header line.
    data:cumbal like FAGLFLEXT-TSL01.
    DATA:t4 TYPE c LENGTH 10 VALUE 'hsl',
         TEMP TYPE STRING.
    SELECTION-SCREEN BEGIN OF BLOCK account WITH FRAME.
    SELECT-OPTIONS: RACCT FOR FAGLFLEXT-RACCT.
    PARAMETERS:Ryear LIKE faglflext-ryear,
                MONAT like BKPF-MONAT,
               rbukrs LIKE bkpf-bukrs.
    SELECTION-SCREEN END OF BLOCK account.
    CONCATENATE T4  MONAT INTO TEMP.
    if TEMP = 'hsl01'.
    SELECT RACCT  DRCRk rbukrs TSL01
            FROM FAGLFLEXT
            INTO CORRESPONDING FIELDS OF FAGL
            WHERE RACCT IN RACCT
            AND   RBUKRS = RBUKRS
            AND  RYEAR = RYEAR.
            append fagl.
            endselect.
    if temp = 'hsl02'.
    SELECT RACCT rbukrs TSL02
            FROM FAGLFLEXT
            INTO CORRESPONDING FIELDS OF FAGL
            WHERE RACCT IN RACCT
            AND   RBUKRS = RBUKRS
            AND  RYEAR = RYEAR.
            append fagl.
            endselect.
    endif.
    endif.
    write:/1 'CoCode',
           10 'AccNo',
           42 'CumBal'.
    sort fagl by racct.
    loop at fagl.
    CUMBAL = CUMBAL + FAGL-TSL01.
    ENDLOOP.
    sort fagl by racct.
    loop at fagl.
    write:/1 fagl-rbukrs ,
           10 fagl-racct,
           22 CumBal.
    endloop.

Maybe you are looking for

  • How to print from an applet to console

    Hi, I'm passing my applet a parameter then I'm trying to print it using System.out.println but I don't see any output. My web app is deployed in weblogic 7. From the html page I pass in applet param but I don't see any out put in weblogic console.How

  • Video and layers in Acrobat 9

    Hello all. When I use Acrobat 9 Pro Extended and I want add a pdf as a layer, and this pdf have a video in it, when I convert it in a layer the pdf imported is flattered so I only have the 'poster' of that video no the proper video. I would like to k

  • Dare I say 'transparent window'

    Hi, like many people I would like to be able to create transparent windows, dialogs etc, but a little lost, well actullay a little less lost since yesterday! I am OK with the C++ side, native-java and java-native etc, but not sure which C headers to

  • No SUS Purchase Order Created

    Dear experts, I have just finnished setting up MM-SUS. We are on SRM 7 EhP1 and ECC6 EhP 4. I have managed to create a PO in ECC which is transfered to SRM SUS Client. In SRM I see in transaction SXI_MONITOR that the XLM has been transferred succesfu

  • Citibank ACH format

    Hi Sappers!! I have two questions on ACH payments thourgh SAP. Does Citibank use the same ACH format developed by NACHA or do they have their own ACH format. Does SAP generate the ACH format that exactly matches NACHA ACH? Appreciate your time!! Vj