LIST OF ALL CONSUMPTION AND STOCK GL ACCOUNTS

Dear experts,
Can you please tell me what is the tcode for checking all consumption n stock related GL accounts.
Thanks & Regards
Sreelatha.

Also sreelatha, a bit more sophsticated way will be
please go to tcode -se16
table-T030
In Chart of Account field KTOPL input your CoA
In transaction field ( KTOSL) input -GBB
In account modifier (KOMOK) field input -VBR
Executes and and system will display all the consumption accounts.
Thanks and regards,
Sam

Similar Messages

  • Is there any way to have a COMPLETE list of all samples and loops ( Logic 8

    I'm sure it's been posted previously, but anyway, I'm looking to buy new Apple Loops libraries and I have faced the fact , that many of the sounds and loops produced by third parties manufacturers have been already included in Logic installation discs.
    I have a list of Apple Loops DVD's that have been included with Logic somewhere, the problem is, Apple didn't post ( I believe) the credits of all 3rd party manufacturers that have produced these libraries that are included with Logic or Garage band. Is there any way to have a COMPLETE list of all samples and loops that are included with Apple DAW's so I wouldn't duplicate anything ? I'm pretty much positive that Apple had other companies to sound design and sample all libraries for them, so is there also a way to have a list of those manufacturers? Again, the objection is to start upgrading the sound library without any possible duplication?
    Thanks in advance!

    Chris, I certainly don't mind additional questions and postings.
    I believe there are many issues with Apple Loops and Logic that need to be resolved and people need to be aware of that. Unfortunately, in opposite to the old "german" version of Logic , there's no lifetime tech support, you can't even call and ask the question after 60 days , which isn't right for a professional software of this level, especially considering the fact that many things still remain vague in Logic even for developers and tech support people!( believe me, I've called and asked!)
    Issues like that need to be resolved over the phone with the company, period!
    One thing I also learned over the years as a Mac OSX user, if something doesn't work, don't mess with it. Delete your drive and re-install everything. This is very frustrating , I know, but unfortunately this is the only way to deal with OSX issues, if you got a problem with your system, don't try to fix it. It's never gonna be the same again. I know , it's off the topic a little bit, but if your content is missing from the system files, before installing your new Logic, back up your important files, wipe up your drive and clean install Mac OSX , run updates and then install the Logic. Most likely , everything will be in it's place, at least 90% or more. I gave up trying to make two system in my house to be compatible 100% , but it's OK if they're 90% or more identical. I spent enormous amount of time trying to find out what's missing and where, I visited most of the forums and there's no clean answer.
    Message was edited by: Moderator

  • Query to get a listing of all folders and joins in EUL

    If anybody has a query that provides a listing of all folders and joins between those folders in a Discoverer EUL, can you please share it.
    Any help would be greatly appreciated.

    Hi
    As Rod commented you won't get an accurate listing going through XREFS. You need to look in the statistics table, EUL5_QPP_STATS where you will find a history of all worksheets that have been executed. Unfortunately the item columns in EUL5_QPP_STATS are encoded so you will need some special SQL to uncode them.
    First of all you will need to have installed the EUL extensions which can be found in the script called EUL5.SQL (located in the Discoverer\Util folder where Admin is installed) when logged in as the owner of the EUL. Theh try running this script, altering the data switch to a suitable date:
    SELECT
    QS.QS_DOC_OWNER    USER_NAME,
    QS.QS_DOC_NAME     WORKBOOK,
    QS.QS_DOC_DETAILS  WORKSHEET,
    TRUNC(QS.QS_CREATED_DATE) EXECUTION_DATE,
    *(LENGTH(TO_CHAR(EUL5_GET_ITEM_NAME(QS.QS_ID)))+1)/9 ITEMS,*
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),1,  6)) ITEM1,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),10, 6)) ITEM2,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),19, 6)) ITEM3,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),28, 6)) ITEM4,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),37, 6)) ITEM5,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),46, 6)) ITEM6,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),55, 6)) ITEM7,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),64, 6)) ITEM8,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),73, 6)) ITEM9,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),82, 6)) ITEM10,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),91, 6)) ITEM11,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),100,6)) ITEM12,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),109,6)) ITEM13,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),118,6)) ITEM14,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),127,6)) ITEM15,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),136,6)) ITEM16,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),145,6)) ITEM17,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),154,6)) ITEM18,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),163,6)) ITEM19,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),172,6)) ITEM20
    FROM
    EUL5_QPP_STATS QS
    WHERE
    *(LENGTH(TO_CHAR(EUL5_GET_ITEM_NAME(QS.QS_ID)))+1)/9 < 21*
    AND QS.QS_CREATED_DATE > '01-JAN-2009'
    Best wishes
    Michael

  • FM to get list of all directories and files on application server..

    Hi All,
    Can anyone tel me FM to get list of all directories and files on application server..i know 'F4_DXFILENAME_TOPRECURSION'
    and '/SAPDMC/LSM_F4_SERVER_FILE' these are working too...but my requirement is when i click F4 i should get list of directories and whn i select one of these the only directory name should display.....and whn click again for 2nd text box field i want file name ...means directory name in one text box field and file name in another....plz help me out..
    helpful answers wil b awarded.
    Thanks,
    Jayshree

    Hi Jayashree
    Please check this FM, SUBST_GET_FILE_LIST. Pass the file path and file name, if it returns an entry in table FILE_LIST, then the filename and path are valid.
    Hope this helps !
    ~ Ranganath

  • I have just purchased a Mac Book Pro. I would like to find the list of all updates and downloads that have occurred since purchase. Where can I find that info?

    I have just purchased a Mac Book Pro. I would like to find the list of all updates and downloads that have occurred since purchase. Where can I find that info?

    I know how to do the updates. What I dont know is what size each update that I have completed was. I am having a data usage disagreement with my Telco and want to prove to them that this computer did not download the amount of data they are claiming it did.

  • List of all cubes and business descriptions.

    What is the best place is to get a list of all cubes and ods's along with their business descriptions?  Also, where can we find a list of all cubes, ods's and process chains containing these tables?
    Thanks,
    MB

    go to metadata repository
    in RSA1 n u will get list of all cubes, odses , queries.....(which are active n in use)etc
    in SE11
    tables for infocube:-
    RSDCUBE
    RSICCONT
    for ODS:
    RSDODSo,
    or type RSDOD* n press f4
    u will get all tables of ODS
    for Process Chain:
    typr
    RSPC* n press f4 u will get all tables of process chain
    Edited by: Arun Purohit on Apr 25, 2008 8:13 PM

  • Command to  provide list of all objects and their scripts from database

    Hi,
    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2
    Kindly ge me the advice
    Thanks in Advance

    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2If you want the all the metadata of whole database, then it is quiet difficult to get from DBMS_METADATA, as it is very complex because you need to gather for each object of each schema in whole database and to spool.
    http://www.orafaq.com/node/57
    I want to know, what is the use of entire database metadata, Certainly need of objects of metadata.
    or if you want to whole database, then i suggest you go for export full backup and import as impdp sqlfile option,

  • I have a few collections, but not all PC's in those collections are listed in "All Desktop and Server Clients".

    I have a few collections, but not all PC's in those collections are listed in "All Desktop and Server Clients". Does anyone happen to know the reason for this? It should have at least the same number of clients as the largest collection.
    Thanks,
    James
    James A+, Network+, MCP

    Hi James,
    The All Desktops and Server collection only contains devices that show client=yes.
    Meaning the Configuration Manager client is installed on those devices.
    This WQL query will give you a collection of all devices that do not have the client installed.
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where (SMS_R_System.Client is null or SMS_R_System.Client = 0) and SMS_R_System.Name != 'Unknown'
    Another handy collection is all clients that are inactive (No communication for the default 7+ days)
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_CH_ClientSummary on SMS_G_System_CH_ClientSummary.ResourceId = SMS_R_System.ResourceId where SMS_G_System_CH_ClientSummary.ClientActiveStatus = 0
    I normally create both and then a third collection of all devices and exclude the above two which should show you all healthy devices.
    Have a look at the ccmsetup.log file on the client if it has attempted to install the ConfigMgr client but failed.

  • Getting list of all users and their group memberships from Active Directory

    Hi,
    I want to retrieve a list of all the users and their group memberships through JNDI from Active Directory. I am using the following code to achieve this:
    ==================
    import javax.naming.*;
    import java.util.Hashtable;
    import javax.naming.directory.*;
    public class GetUsersGroups{
         public static void main(String[] args){
              String[] attributeNames = {"memberOf"};
              //create an initial directory context
              Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://172.19.1.32:389/");
              env.put(Context.SECURITY_AUTHENTICATION, "simple");
              env.put(Context.SECURITY_PRINCIPAL, "[email protected]");
              env.put(Context.SECURITY_CREDENTIALS, "p8admin");
              try {
                   // Create the initial directory context
                   DirContext ctx = new InitialDirContext(env);     
                   //get all the users list and their group memberships
                   NamingEnumeration contentsEnum = ctx.list("CN=Users,DC=filenetp8,DC=com");
                   while (contentsEnum.hasMore()){
                        NameClassPair ncp = (NameClassPair) contentsEnum.next();
                        String userName = ncp.getName();
                        System.out.println("User: "+userName);
                        try{
                             System.out.println("am here....1");
                             Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should be returned
                             System.out.println("am here....2");
                             Attribute groupsAttribute = attrs.get(attributeNames[0]); // memberOf
                             System.out.println("-----"+groupsAttribute.size());
                             if (groupsAttribute != null){
                                  // memberOf is a multi valued attribute
                                  for (int i=0; i<groupsAttribute.size(); i++){
                                  // print out each group that user belongs to
                                  System.out.println("MemberOf: "+groupsAttribute.get(i));
                        }catch(NamingException ne){
                        // ignore for now
                   System.err.println("Problem encountered....0000:" + ne);
                   //get all the groups list
              } catch (NamingException e) {
              System.err.println("Problem encountered 1111:" + e);
    =================
    The following exception gets thrown at every user entry:
    User: CN=Administrator
    am here....1
    Problem encountered....0000:javax.naming.NamingException: [LDAP: error code 1 -
    000020D6: SvcErr: DSID-03100690, problem 5012 (DIR_ERROR), data 0
    ]; remaining name 'CN=Administrator'
    I think it gets thrown at this line in the code:
    Attributes attrs = ctx.getAttributes(userName, attributeNames);
    Any idea how to overcome this and where am I wrong?
    Thanks in advance,
    Regards.

    In this sentence:
    Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should
    It seems Ok when I add "CN=Users,DC=filenetp8,DC=com" after userName, just as
    userName + ",CN=Users,DC=filenetp8,DC=com"
    But I still have some problem with it.
    Hope it will be useful for you.

  • How can i get list of all monitors and rules that assigned to a node ?

    Hello,
    We r using the scom 2012 sp1
    i need to get list of monitors and rules that have assigned to nodes.
    for example :
    nodename - type - name
    node1 - monitor - montiorname1
    node1 - monitor - monitorname2
    node1 - rule - rule1
    node1 - rule - rule2
    can i get this list by using sql or powershell script ?
    thanks

    Hi,
    Please refer to the link below:
    How to View All Rules and Monitors Running on an Agent-Managed Computer
    https://technet.microsoft.com/en-us/library/hh212748.aspx
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • From my combine DVD Photoshop Elements 11 & Premier Elements 11, only the photoshop one is listed in All programs and I can't edit my videos.

    Hello.
    MY DVD is a combine software for Adobe Photoshop Elements 11 and Adobe Premier Elements 11. I can not see the Adobe Premier  Elements 11 listed in my ALL Programs. I have started to edit some of my photos with the Photoshop software and so far all going all right . But today wanting  to give a go to the video editing I found that the software does not allow me to do it. I am using my new HP Envy laptop that I recently bought with the idea of learning to edit my home videos.
    Any help will be most appreciated,

    zoraidaq
    What computer operating system?
    Please excuse the question, but I do not want to take anything for granted. Did you install Adobe Premiere Elements 11? It is a separate install.
    If you did.....
    Assuming Windows 7, 8, or 8.1 64 bit for now, when you go to Control Panel/Programs is Adobe Premiere Elements 11 listed there?
    And...
    If you go to
    Local Disc C
    Program Files
    Adobe
    Adobe Premiere Elements 11
    do you find a file in the Adobe Premiere Elements 11 Folder named Adobe Premiere Elements.exe? If so, please double click that. Does
    Premiere Elements 11 open to the workspace bypassing the Welcome Screen?
    What happens if you insert the Adobe Photoshop Elements 11 Adobe Premiere Elements11 installation disc in the burner tray, select Adobe Premiere Elements
    11 for installation? Does the installation proceed or are you meet with a process which wants to uninstall rather than install?
    Please review and consider. Then based on your answers, we can decide what next.
    Thank you.
    ATR

  • Safari 5.1 - Clicking on pull down list reloads all windows and tabs

    Clicking on a <select> tag option on my website has the effect of reloading every windows and tab there is currently open. It worked fine on Safari 5.0 and works fine on other browsers. Happens on two different computers, yet it does not happen with every pull down list, only with the ones that have the grey line before the arrows.
    Example:
    http://festhome.com/festhome_cake/registro
    Clicking on the year, country, whatever, they all reload everything on the browser.
    Thanks for any help...

    When you apply certain styles to a select tag, Safari switches to a "design-friendly" dropdown control without any Aqua styling. That's what you're seeing when you get the "gray line" before the arrows.
    So far, I've determined that going into the Web Inspector and removing styles until Safari uses the default Aqua control fixes the problem.
    But, if I build a test page from scratch, and it has a "design-friendly" select it works fine. So, there's some combination of things at work here. The "design-friendly" control certainly seems to be the linchpin, though.
    I can't spend any more time on it at work today, but I might futz with it some more tonight.

  • Getting a list of all table and index names

    Hi,
    I have just create a set of tables and indexs, but I have misspelt on of the table names and am now trying to find out what it is. I am using sql*plus as a command line interface but can only find desc as a way of finding any data on a table. What is the command to list all the tables within a table space?
    Cheers
    Simon

    Hi,
    there are almost always three ways to find things in Oracle's dictionary :
    USER_xxx = thing that you own
    ALL_xxx = thing that you own and have access to
    DBA_xxx = all things in hole database
    If you want to find tables/indexes that you own :
    SELECT table_name FROM user_tables
    WHERE tablespace_name = 'APP_TBS';
    SELECT index_name FROM user_indexes
    WHERE tablespace_name = 'APP_TBS';
    /Uffe

  • Powershell listing of all files and owner to CSV

    Hi Everyone, I have been working with PS for a very short time; but have pieced together a couple of approaches, neither is perfectat this stage.
    Option 1:
    Get-ChildItem C:\Projects -recurse | where {$_.attributes -ne "Directory"} | foreach {$_.DirectoryName,$_.Name,$_.Length,(Get-ACL).Owner} | Export-CSV C:\Projects\Filelist.csv
    Option 2:
    Get-ChildItem C:\Projects -recurse | where {$_.attributes -ne "Directory"} | Select-Object DirectoryName,Name,Length,(Get-ACL).Owner | Export-CSV C:\Projects\Filelist.csv
    My end goal is to have a CSV file that show the Directory, filename, size and owner.
    Right now I either get an empty file or one with repeating values that do not resemble the data that I require.
    Eventually, I want to parameterize the input so that the script would take in the variable during execution. Given that I would want to repeat this over and over again with various users to get statistics on their files and folders.
    Thanks.

    Cool, this is useful.
    Is there any script to export all the files by specific owner only?
    Prewritten? Probably not. You can check
    the script repository or you can adjust the script above to meet your needs (hint: if statements are your friend).
    Don't retire TechNet! -
    (Don't give up yet - 12,420+ strong and growing)

  • Need to get a listing of all users and their corresponding Exchange 2013 Mailbox Quotas using Powershell

    I will be changing the default quota on mailboxes soon, but there are a number of others who have "customized" quotas and I will need to identify them also.
    Charlie

    The following powershell command can get you the mailboxes that are using "custum "quota:
    Get-Mailbox -Resultsize unlimited | where-object {$_.UseDatabaseQuotaDefaults -eq $false}

Maybe you are looking for

  • Using a different line's upgrade

    is there anyone who has the family package and is using one lines upgrade, but putting your number on the phone. has anyone done this yet? was att able to switch the numbers on the sim cards? just want to know if it was successsful or not.

  • Connecting Powerbook to External LCD Monitor

    The D-BUS port on the external LCD monitor is a female port, so is the VGA port of the DVI Adapter, How can I connect these 2 if both are female ports, what do I need???

  • What's the best for green screen filter  Color Key or Chroma key?

    What is the difference, and what is the best choice for a person standing in front of a green screen. Color Key or Choma key? Which offers the most solutions for dealing with variations in the green background, such as occasional wrinkles/seams in th

  • How to do another thing before returning of a buffered waveform generation?

    Hi There, The DAC0 and DAC1 of PCI-6024E are used to generate waveforms by the buffered analog output mode. We know that before the buffered generation is completed, the starting function of generating waveform, either "WFM_op" or "WFM_Group_Control"

  • All Buddies appear offline all the time

    Whenever I log in to iChat all my buddies appear to be offline. I'm sure this isn't the case as I've called friends and they are in fact online. I've tried logging out and back in, updating, restarting. Can't figure it out.