How to Find what all GL assigned to Particular account group ???

Hi !!! anybody can help me in this issue ... How to Find what all GL assigned to Particular account group ???

Hi,
Go to SE16
Give table name SKA1.
Give COA
Give account group and execute.
All the GL accounts that were assigned to this group are listed.
Reward points.
Sarma

Similar Messages

  • HT1420 how to find what computers are authorised to your account

    I need to find out what computers I have registered to my Itunes can anyone tell me how to find thnis out please

    There is no list as such...
    See Here for full details...
    About authorization and deauthorization

  • How to find what all languages are supported by particular font ?

    Please ................... help !!
    i want to dynamically generate a list of languages supported by a given font.
    Waiting for reply.
    Thanks & Regards
    Manish Basotia

    Hello Arthur M,
    You said:
    ok thanks
    so in this case what's the serial# ? ;)
    I see that every session has an different SID and Serial#.
    its looks like redondant information... These info are in combination a unique session identifier. Let's take an example:
    SID---SERIAL#---USERNAME
    10----22--------USER1
    11----10--------USER2
    12----24--------USER3
    13----25--------USER4
    Let's say USER3 disconnects. we now have:
    SID---SERIAL#---USERNAME
    10----22--------USER1
    11----10--------USER2
    12----24--------
    13----25--------USER4
    And now USER5 connects:
    SID---SERIAL#---USERNAME
    10----22--------USER1
    11----10--------USER2
    12----25--------USER5
    13----25--------USER4
    Now, a little explanation.
    When a user connects the system gives him a Session IDentifier (SID). But, each time a SID is given to a session, the SERIAL# is increased. THis allows to differentiate sessions. Immagine you just had a look at the sessions at step 1. If you want to kill the session, ods are when you issue the command, you'll be at step 3. If you just identify the session via SID, you just killed the USER5 session. Oops.
    Same things appear for locks, enqueues, ...
    So the only way to be sure is to have the SID and SERIAL#. SID can be considerred like a "Connexion Slot" and SERIAL# like "The number of times the Connexion Slot has been used".
    Hope this helps,
    Yoann.

  • How to find which all instances are not listed in groups?

    Hi
    We have 68 servers, 150 instances are there. I need to write a query to fetch from OEM repository, all the instances group by GROUP NAME.
    If any one knows how to get this information, which views/tables of sysman we need to touch please let me know ....
    Thanks in advance.
    RK

    SELECT group_name,targeT_name FROM MGMT$GROUP_MEMBERS WHERE target_type='oracle_database'
    ORDER BY group_name
    SELECT group_name,SUM(1) FROM mgmt$group_members WHERE target_type='oracle_database'
    GROUP BY group_name

  • How to find what are triggers are present in the database?

    Hi All
    Can any one tell me how to find what all triggers present in the database.
    Thanks in Advance

    Hi All
    Can any one tell me how to find what all triggers
    present in the database.
    Thanks in AdvanceYou should visit Pythia, the Oracle of Delphi, near Thermopile in Greece. She might be able to give you an answer. Pythia was an early leader in executive decision support systems and is not to be confused with the Oracle Corp. of Redmond, CA. Pythia also has a group of helpful colleagues in Toronto. Rumor is that they're also making predictions by inhaling laurel vapors. SQL, as you know, stands for "Said Quixotically on Laurel".

  • How to find what are all the rules and events are monitoring for specific server in SCOM 2007

    how to find what are all the rules and events are monitoring for specific server in SCOM 2007.
    I need to know what are all the events, services, and rules are monitored for the specific server.
    Kindly help me friends.

    how to find what are all the rules and events are monitoring for specific server in SCOM 2007.
    I need to know what are all the events, services, and rules are monitored for the specific server.
    Kindly help me friends.
    Thanks for the question Sandoss. This is something that we all come across at sometime.
    Thanks & regards, Sumit Agrawal
    The lack of this feature is an inexcusable oversight for an enterprise management product.  They have some serious lightweights making design decisions on the SCOM team. 5 thumbs down. 
    BTW the answer is probably LOTS of stuff. Literally 100's of workflows are running on any server. 
    The following OpsMgr DB query will list all running monitors on a server. Change the name of @srv. I think this works pretty well.  I'd like some feedback if something is missing.
    DECLARE @srv varchar(30)
    SET @srv = 'your name here'
    SELECT mon.displayName as monitor, bme.FullName,bme.DisplayName as object,
    case
        when s.HealthState = 1 then 'healthy'
        when s.HealthState = 2 then 'Warning'
        when s.HealthState = 3 then 'Critical'
        else 'N/A'
    end as Health
    FROM state AS s WITH (NOLOCK)
    left join BaseManagedEntity as bme WITH (NOLOCK) on s.basemanagedentityid = bme.basemanagedentityid
    left join dbo.MonitorView Mon WITH (NOLOCK) on Mon.ID = s.monitorid
    where
    bme.FullName like '%' + @srv + '%'
    and s.HealthState <> 0
    and mon.IsInternalRollupMonitor = 0
    and mon.IsExternalRollupMonitor = 0
    order by bme.DisplayName, mon.displayName

  • How to Find what are tables and "Table Name" in particular "Data File"

    hi Team,
    I have one database that database 300 gb size , this database having 6 ndf files ,
    here How to Find  what are the tables and  "Table Name"  in particular "Data File"[.ndf]

    Hi,
    In addition to Prashanth’s suggestion, you can also use the following Transact-SQL statements to get more detailed information including  all objects and indexes per Filegroup / Partition and allocated data size of databases.
    The script can work with Microsoft SQL Server 2005 and higher version in all Editions. For more details, please review this article:
    List all Objects and Indexes per Filegroup / Partition.
    -- List all Objects and Indexes
    -- per Filegroup / Partition and Allocation Type
    -- including the allocated data size
    SELECT DS.name AS DataSpaceName
    ,AU.type_desc AS AllocationDesc
    ,AU.total_pages / 128 AS TotalSizeMB
    ,AU.used_pages / 128 AS UsedSizeMB
    ,AU.data_pages / 128 AS DataSizeMB
    ,SCH.name AS SchemaName
    ,OBJ.type_desc AS ObjectType
    ,OBJ.name AS ObjectName
    ,IDX.type_desc AS IndexType
    ,IDX.name AS IndexName
    FROM sys.data_spaces AS DS
    INNER JOIN sys.allocation_units AS AU
    ON DS.data_space_id = AU.data_space_id
    INNER JOIN sys.partitions AS PA
    ON (AU.type IN (1, 3)
    AND AU.container_id = PA.hobt_id)
    OR
    (AU.type = 2
    AND AU.container_id = PA.partition_id)
    INNER JOIN sys.objects AS OBJ
    ON PA.object_id = OBJ.object_id
    INNER JOIN sys.schemas AS SCH
    ON OBJ.schema_id = SCH.schema_id
    LEFT JOIN sys.indexes AS IDX
    ON PA.object_id = IDX.object_id
    AND PA.index_id = IDX.index_id
    WHERE OBJ.type_desc='USER_TABLE'-- add this WHERE clause to display the information of user tables
    ORDER BY DS.name
    ,SCH.name
    ,OBJ.name
    ,IDX.name
    Thanks,
    Lydia Zhang

  • How to find what transaction an user was running for a given period

    hi
    could anybody tel me
    how to find what transaction a particular user was running for a given period
    in the past.............

    Hi,
    U need to findout the list of Tcode excuted by SAP user
    1) Tcode: ST03N
    2) Select Expert Mode option
               (there u find  Server Host name & Today)
       If u select Host name u find DAY/WEEK/Month (same thing will in Today option)
    3)Now u need to select the option of DAY,WEEK etc.
    Now u can find in two ways
    1) Transaction profile (Standard / EarlyWatch)
    2) User (user profile)
    If u select the Transaction profile
    Under these u find the option of Aggregation----application/package/tranasation etc.
    I hope these will help u to findout.
    Regards
    ASR

  • How to find out all user exits edited

    Hi All,
    Would you know how to find out all user exits have been ever edited?
    Can we find out those user exit by some tcode or table?
    Thank you very much
    Best Regards,
    Calvin
    Edited by: Sam Sum on Mar 2, 2009 5:09 AM

    Hi,
    Just try this in your system.
    Go to SE38 and give ZX* and press F4.
    Have a look at table MODATTR to find the active projects in your system.
    Regards
    Edited by: Rajvansh Ravi on Mar 2, 2009 5:17 AM

  • HT1338 Can anyone tell me how to find what OS I'm using on the Mac? Tiger or Leopard? Also, how do I update from 10.6.8 to the latest version?

    Can anyone tell me how to find what OS I'm using on the Mac?
    Tiger or Leopard?
    Also, how do I update from 10.6.8 to the latest version?

    Go to the Apple menu and select "About This Mac". You will get a window similar to this one -
    You current OS X version number will be shown as I've marked.
    OS X 10.4.x is Tiger, 10.5.x is Leopard, 10.6.x is Snow Leopard, 10.7.x is Lion, and 10.8.x is Mountain Lion.
    Whether or not you can go to the latest OS X version depends upon your hardware -
    You will need to purchase the retail set for the OS X version you want; there is no pint in getting and installing any intermediate versions. Once the retail version has been installed, you can update it to the latest release for that version via download updater.

  • HT1420 How do I find what computers are tied to my account?

    How do I find what computers are tied to my account?

    Welcome to the Apple Community.
    Tied in what way. If you are referring to authorised computers, there isn't a way to see a list. If you are referring to computers and devices associated with your account, you can see a list in your iTunes account settings on your computer.

  • After several years of taking photos(thousands) I seem to have many duplicate photos in iPhoto. How do find them all without going through 10,000 photos? they are mostly scanned photos that I have reused over the years

    after several years of taking photos(thousands) I seem to have many duplicate photos in iPhoto. How do find them all without going through 10,000 photos? they are mostly scanned photos that I have reused over the years not ones that I have recently uploaded from my camera.
    Thanks whoever can help

    Where are you seeing these duplicates?  In the iPhoto window or in the Finder? 
    OT

  • How to find out all active instances in a syste

    How to find out all active instances in a system

    Go to your basis team and ask them, as far as i know there is no other way then suggested in the other answer, but that is not a complete picture, And that is as designed, why should one want to be able to find out, the basis consultant will tell you!

  • TS1389 How do I find what purchases were made from my account?

    How do I find what purchases were made from my account? I have charges on my Credit card and did not make any purchases

    See:
    http://support.apple.com/kb/HT2727
    Regards.

  • How to find the transaction code for the particular program or include

    Dear All,
    Please help me on this queary.
    1) How to find what is the transaction assigned for the particular Report
    2) How to find the particular include is used in which programs and also transaction codes
    I have one ZProgram that contains only includes no selection screen, I have to find where this program is used, in that one include is ther I would like to know in which program and in which transaction that is used,
    They have given ME9F, ME21N/22n, wheren this includle is calling.
    Please kinely help on this.
    Thanks and Regards,
    Muralikrishna

    HI
    1. you can find the transaction for your report by opening in se80. On the left side window it will show the transaction if there is any.
    2. to find in which programs particular inclue is called , just open include in se38 and press where used list icon. in the pop up window select programs.
    regards
    vijay
    reward points if helpful

Maybe you are looking for

  • Justifying a text in a textbox

    I've got a ridiculous problem, but there's no way to find the way. The think is that I can't justify the text in a textbox of a book. I found a similar post in that forum that solves the problem. There is said that I've to select the textbox and not

  • Reg. Control indicators for controlling area NCCP do not exist

    Dear Experts I want to create purchase requisition (ME51N) then the following error occured. Pls help me. Control indicators for controlling area NCCP do not exist Message no. KI102 Diagnosis No control indicators exist in fiscal year 2008 for contro

  • [HTML DB] How to use the existing database table?

    [HTML DB] How to use the existing database table? I installed Oracle 10g database in Computer A(Windows 2000), and I already create all the tables with data and the data size is about 300MB. In Computer B(Windows 2000), I installed HTML DB 1.6. How c

  • Creating Emoticons in a chat program

    Hi all, I wish to write a chat program which has got emoticons?What is the best way to implement emoticons in a chat program? Thank you in advance...:)...

  • Evenlog viewing causes CPU usage 100% on Windows server 2008 SP2

    We have Windows server 2008 SP2 with strange behaviour. When I scroll down events in eventlog viewer CPU usage hits 100% and eventlog viewer freeze. CPU usage is split between 2 processes SVCHOST.EXE (lmhosts, eventlog and Dhcp services) and MMC.EXE.