S_TCODE belongs to which class?

S_TCODE belongs to which class?

Hi Abhichandan,
S_TCODE belongs to AAAB class.
we can find the class of S_TCODE through PFCG - Authorizations Tab - Change authorization data - In change role: authorizations screen, select the utilities - Technical names on. It shows information about the authorization object to which class it belongs to.
Regards,
Vinod Garisha.
Edited by: gvk1305 on Apr 18, 2011 7:39 AM

Similar Messages

  • -Ddeployment.user.cachedir belongs to which class?

    I've posted this in another forum, but I think it might be better located here...
    We have Java runtime j2re_1.4.1 installed across our network, and we are making modifcations to how user profiles are handled that means we need to relcoate the user cache directory from %userprofile%\Application data\Sun... to a new location.
    Everything I have found to date offers a solution to doing this with a new install by using the -Ddeployment.user.cachedir property, but I'm wanting to do this to an existing installation.
    Am I still able to use this property from command line with the java executable, and if so to which class should I be applying it? When I try it on its own, I get the following:
    C:\>java -Ddeployment.user.cachedir = "C:\temp"
    Exception in thread "main" java.lang.NoClassDefFoundError: =
    If I remove the whitespaces around the = sign, I simply get output for the correct usage of the java executable.
    Am I barking up entirely the wrong tree? Or am I merely missing something here? Any help would be really appreciated at this point...
    Thank you!

    See the last post of this thread:
    http://forum.java.sun.com/thread.jspa?threadID=614659&messageID=3410297
    You may also find useful material in this search list:
    http://www.google.com/search?num=100&hl=en&lr=lang_en&c2coff=1&q=move+user+cache+site%3Ajava.sun.com.

  • WHICH CLASS type of 4GB microSDHC does 5610XM supp...

    1. Any microSD(T-Flash)more than 2GB is known as "microSDHC".
    2. A 4GB microSDHC has three(3)class types, which are Class 2, Class 4 and Class 6.
    3. 5610XM can support microSDHC upto 4GB.
    Seems that there is no mention in the manual regarding to the captioned. I wonder if class 4 or class 6 - 4GB T-Flash (microSDHC)will 5610XM support?
    My question is "WHICH CLASS type of 4GB microSDHC does 5610XM support?"
    Please give a hand~~ many thanks!
    Quoted from -
    http://www.sandisk.com/Assets/File/pdf/retail/SDHC1.pdf
    What is Class Speed Rating?
    The SD Association has created and defined 3 speed classes to help you identify speed and performance capabilities/minimum requirements of SD/SDHC, miniSD/miniSDHC, and microSD/microSDHC cards and the host products.
    The SD Speed Class Ratings specify a minimum sustained write speed for SDHC/miniSDHC/microSDHC cards (Class 2: 2 MB/s; Class 4: 4 MB/s; Class 6: 6 MB/s*).

    Sandisk SDHC cards will work with the 5610. It is unknown if cards larger than 4GB will work, as no one has mentioned it yet.
    Here are the specs for the sandisk card:
    http://www.sandisk.com/Products/Item(2369)-SDSDQ-4096-SanDisk_microSDHC_4GB.aspx
    .Message Edited by psychomania on 27-Nov-200703:22 PM

  • How to find out which class invoked the constructor

    i wrote a class named DAOBase and i am creating object of the same in several other classes. So is there any way to know which class has invoked the constructor of DAOBase.
    i want to print out the name of the class that invoked the constructor of DAOBase at the time of constructor invocation...
    Is there any way?
    Please Help...

    Alternatively, use SecurityManager.getClassContext() as inclass CallerAndMain {
         public static void main(java.lang.String[] args) {
              System.out.println("I'm in " + new SecurityManager() { public String getClassName() { return getClassContext()[1].getName(); } }.getClassName() + " class");
              new Try();
    class Try {
         public Try() {
              System.out.println("I'm in " + new SecurityManager() { public String getClassName() { return getClassContext()[1].getName(); } }.getClassName() + " class");
              System.out.println("I was called from " + new SecurityManager() { public String getClassName() { return getClassContext()[2].getName(); } }.getClassName() + " class");
    }

  • Event handling in the Web - Which class/interface deals with event control

    Hello all,
    When you execute a template (that was created within SAP BEx WAD) in the web browser
    and you click on a web item with the cursor then an event is started. In which class or
    interface is the event control implemented?
    Thanks a lot for any helpful comments!
    Anna

    Depends on the web item. Check out CLRSRWWW ABAP Classes.

  • Please help...Its really urgent- Which class to use for this?

    Can someone help me with this? I want to read characters from a file
    Ultimately I want to load some information from a text file which has information like this:
    0123456789
    0
    1
    4
    10
    X0123456789
    01202120212
    11202120212
    20212021202
    I want to load the information from X onwards .. all the rows and columns in a 2D array..
    I am not able to read the file at all ...
    I tried RandomAccessFile, BufferedReader..... They had problems.....what class sould I use.. any if you can give hints how I can reach X and start reading to 2d array...... It will be really very very helpful........
    Please help......

    Hi...
    See this is the partial code
    class LanguageRecognizer
         String word;
         String fileName;
         BufferedReader reader;
         char transitionTable[][];
         char letters[];
         char startState;
         char endStates[];
         int rows;
         int columns;
         public void getFileName(String fileName_)
              /********** Create File Objects to read file ******************************/
              try{
              this.fileName = fileName_;
              java.io.BufferedReader reader = new java.io.BufferedReader(new FileReader(fileName));
                   /***** Read File **************/
                   int i;
                   int X = 0;
                        /** as long as its not the EOF **/
                        while((i=reader.read()) != -1)
                             //Print all characters
                             System.out.println((char)i);
                             if (((char)i)=='X')
                                  X = i;
                                  System.out.println("X is at "+(char)i);                         
                             }//if
                        }//while          
              catch(Exception e)
                   e.printStackTrace();
              /**Call Prompt user and ask user to enter a word****************************/
                   promptUser();
         }//getFileName()When I say
    The while loop prints this file containing:
    0123456789
    0
    1
    4
    10
    X0123456789
    01202120212
    11202120212
    20212021202
    But it prints it in this format :
    0
    1
    2
    3
    4
    5
    6
    7
    8
    9
    //Want to take this in the letter[]
    0 //want to take this as the startstate
    1 // This is the end state which could be more than one so in endState[]
    4 // This is the number of rows in the transition table
    1 // This is columns
    0
    //This is the transition table that I want in a 2D array......
    X // This is the X printed with the if() in the code
    X
    0
    1
    2
    3
    4
    5
    6
    7
    8
    9
    0
    1
    2
    0
    2
    1
    2
    0
    2
    1
    2
    1
    1
    2
    0
    2
    1
    2
    0
    2
    1
    2
    2
    0
    2
    1
    2
    0
    2
    1
    2
    0
    2
    So I want to capture each letter typed in arrays.......But I am not able to seperate them and get them in my datatypes... atleast not using this class BufferedReader.... so can I use this class and get it or which class can I use??

  • Which table belong to which table

    Wanted to know which table belongs to which tablespace or datafile.
    example table name - ABC
    Facing problem ORA-01653: unable to extend table ABC but no tablespace is mentioned

    Richa wrote:
    Wanted to know which table belongs to which tablespace or datafile.
    example table name - ABC
    Facing problem ORA-01653: unable to extend table ABC but no tablespace is mentionedSELECT TABLESPACE_NAME FROM USER_TABLES WHERE TABLE_NAME = 'ABC';

  • How to know the consumer_group belong to which plan

    Dear all,
    How to know the consumer_group belong to which plan? I found a consumer_group name TEST in table DBA_RSRC_CONSUMER_GROUPS
    , but I can not locate it belong to which Plan.

    Do you have enterprise manager db console configured, then its easy to drill to find that information through few clicks. Not sure what's the sql query to get it. if you find one then do post here.

  • Upgrade jdk 1.6.0_15 or higher which class jar I need, I am running eclipse

    Can someone tell me, if I have a class 12.jar with jdk 1.2 and upgrade jdk to 1.6.0_15 or higher, which class jar I need and where can I get it? Ideal would be with some instructions. :) Thanks so much.

    It's all here: http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html

  • Which classes are required to run a basic client app outside of jDev?

    Basic question, folks.
    For a minimal program, say a frame and a swing component, which classes need be copied (to a system without any Oracle software installed) in order to run? Is there a listing available that describes which class/jars are needed if x component is used?
    Also, will jre 1.4 work? Or do I need to copy a special Oracle JVM? If so, is there a specific installer just for it?
    TIA
    -Nat

    Nathan,
    To run any Java application, you will need a Java Runtime Environment(JRE) which is part of the Java Software Development Kit (SKD). If you want to distribute your application with a JRE, you can copy the .../jdk/jre directory from JDeveloper (check the readme file about copyrights and other legal issues) or you download it from http://java.sun.com/j2se/1.3/download.html
    Both the AWT and Swing libraries are included in the JRE in the same jar file as the basic java.lang or java.io classes. The name of the file is rt.jar.
    If your program runs with the Oracle VM, it will run with Hotspot. Both VMs are equivalent when running your application. It is only for the development phase that we strongly suggest to use the Oracle VM because it is much better instrumented for development than any other VM.
    If you want to know precisely which classes are loaded from which jar files, run your application from a command line and add -verbose:class.
    For example:
    C:\JDev9\jdk\demo\jfc\SwingSet2>java -verbose:class -jar SwingSet2.jar
    - Cedric
    JDev. team

  • The object array comes under which class

    hi there,
    can anybody tell me an array is defined in which class .
    for ex: when we give
    int a[ ]=new int[ ]
    wen "new "is used an object of array is created.
    and i studied somewhere that array is an object.
    then wen an array is an object it must b defined in a class.
    can anybody tell me in wich class.
    its urgent..
    plz do it as fast as possible
    take care'
    bye

    Actually I think the question was what class is the
    array ie arr.getClass().getName().Ah, I see. I guess I misread the question.
    I believe that the jvm creates them at runtime as
    necessary. Seeing as there are infinite
    possibilities for array types, it couldn't happen any
    other way.The class must also be available at compile time, not? Or else the compiler just "pretends" there's such a class, because it knows the rules of the language.

  • HR   how to find which personal area belongs to which country

    HR
    how to find which personal area belongs to which country
    thank you,
    Regards,
    Jagrut Bharatkumar shukla

    Hi,
        You can use the table T001P for finding that  for eg.,
    <b>Select molga from t001p where werks = 'Your Personnel area code'.</b>
    Thanks
    Yogesh

  • Set Up Users in PS 9.1  - Which pages belong to which module

    Hello all,
    I'm trying to set up some users in our PS Financials 9.1 environment but I have a little problem.
    I don't have much PS experience yet and so I don't know which pages belong to which modules so it is difficult to set up permission lists and roles.
    Can anyone tell me where I could find some kind of list of all pages belonging to the different modules?
    Kind Regards,
    Stijn

    Stijn,
    One option is to review the delivered roles and permission lists to see what pages are assigned.
    Another option is to use a PeopleSoft-delivered page under
    PeopleTools->Portal->View Menu Folder Structure
    but it tends to be slow to return results. If you start by using the advanced search where Parent Menu Folder = Root, you will get a list of all of the top-level folders.
    This page uses the PSPRSMDEFN table, and if you have some expertise in using query, SQL, or some reporting tools, you can query it directly. You can run a simple query like
    select * from psprsmdefn where portal_name='EMPLOYEE' and PORTAL_PRODUCT='GL';
    for example, to get all of the portal objects for general ledger. The menu/component name is stored in portal_uri_seg1/protal_uri_seg2.
    HRMS 9.0 delivered a good app engine report, but it wasn't available in FSCM 9.0. I'm hoping Oracle was smart and made it part of PT8.50, but I haven't checked. Unfortunately, I don't recall the name of the report.
    Regards,
    Bob

  • Cube belongs to which PC

    Is there any way to find it out cube belongs to which process chain
    i mean cube (  where used list for PC)

    Hi,
    Check the DTP which is used for data loading into that cube, if this DTP is already in any PC ,then you will be notified, and Click the PC option (symbol) in that DTP it will take you to PC in which this DTP is included.
    Regards,
    Avinash

  • How to know  Partikular Attribute belongs to which Characteristic

    Hi, I have a doubt about Attribute,
    For example I have a info object 0REJECTN_ST ( Rejection Status ) , my question is How to know this Attribute belongs to which Characteristic , I have to load the Master Data for 0REJECTN_ST, when I am SD master data Info sources this is not available in master data info source , when I am going to create master data info source for 0REJECTN_ST, system is giving the message
    <b>Characteristic 0REJECTN_ST cannot be a master data InfoSource,</b>
    If I want to load status related data , How to load ?

    Shaik,
    ooks like the IOBJ was created without texts or attributes. You would not be able to load any textx or attributes against the same.
    use the where used option and find out where the IOBJ has been used and then you can look at how best you can att the descriptions to the IOBJ.
    Arun
    Assign points if helpful

Maybe you are looking for

  • How do I convert a pdf to a word document?

    How do I convert a pdf to a WORD document and keep all the formatting?

  • PI 7.1 URL for SOAP Sender incorrect

    Hello experts, I have a SOAP sender agreement and generated the WSDL from the "Display WSDL..." option on ID, now the problem is that the soap address tags for HTTP_Port and HTTPS_Port are being created with the hostname of my PI server without domai

  • Which 2nd hdd adaptor does T40 support?

    After looking through the Lenove support site and here, I found there are three ultrabay adapters for a 2nd HDD, 41U3148, 62p4554 and 40Y8725 62p4554 seems to be the officially recommended part for T40 series, and support IDE HDs, however now it's ea

  • Does anyone know how they did this?

    The images that cycle through on the top of this page:  http://www.fsu.edu/ There is a transparency "curtain" that is used to transition between the images.  Does anyone have any suggestions on how this can be replicated? Thanks, kyle.

  • How to install only iDVD from a start up disc

    I was trying to make a slideshow in iPhoto and burn the slideshow to a DVD in order to play it on a DVD player at my nephew's Eagle Scout Court of Honor.  I have OS X Lion 10.7.5 and have just realized that my system no longer has iDVD!   My sister h