Need Transaction Code to create a user

Hi Friends,
I need a t-code to create a user?
Regards,
Kiran

Hi
User related Tables start with SU*
Please check.
Praveen

Similar Messages

  • Transaction code to create virtual interface.

    I want to create a web service from a RFC. For that first, virtual interface needs to be created which will be linked to the RFC. Can u please tell me what is the transaction code to create a virtual interface.

    Thankx for ur reply.
    Now I have created the Web service. To do this I have done the followings-
    1. created one RFC enabled Function Module.
    2. Created one virtual interface
    3. Created Web service defination.
    4. Released Web service from the wsconfig transaction.
    Then from The transaction wsadmin I have opened the browser by clicking Web Service > Web Service Homepage (from menu)
    After logging in it , shows the web service and RFC with in it. Now after clicking the Test link from the browser it asks for the parameter of the RFC. But After populating the parameters and clicking send button. it gives NullpointerException.
    exact err message  is --
    An error has occurred. Maybe the request is not accepted by the server:
    java.lang.NullPointerException

  • Transaction Code  to create new fonts.

    Hello,
    Please tell me a Transaction Code  to create new fonts.
    Regards,
    Roshan Lilaram Wadhwani.

    Hi Roshan...
    Please check se73.. but I dont think u can create any new.. just can change the values.
    Regards,
    Vishwa.

  • Need help on transaction code to create

    1)How to create a transaction code with input parameter?
    2) I have a selection screen with the input parameter VKORG.
    If I entered a value in vkorg, that related values only updated in custom table thru that transaction.

    Hi,
    First Create the program in SE38 (Report program /Module pool program)
    Steps to create the t-code for Report program.
    T-code for report program
    1. Go to se93
    2. give the meaning full t-code name
    3. Click on Create button (popup will appear)
    4.Give the meaning full short text
    5.Select the second radio button and press enter
    (Program and selection Screen)
    6. U will get a new screen , here u give ur report program name
    7. save, check and execute
    T-code for module pool program
    1. Go to se93
    2. give the meaning full t-code name
    3. Click on Create button (popup will appear)
    4.Give the meaning full short text
    5.Select the first radio radio button and press enter
    (program and screen)
    6. U will get a new screen , here u give ur report program name
    7. save, check and execute
    Hope this will solve ur problem
    Regard
    Anees

  • Transaction code to get the User Log details..

    Hi Friends,
    I need a transaction code or the process to get the User information for the past 40 days..
    I need a details such as, which user has logged in at what time and used what transactions in the past 40 days..
    Reagards,
    Navaneeth.

    Hi dear,
    USER LOGS CHECKS:
    1. ANALYSE APPLICATION LOGS
       TR: SLG1     (Do not select Read from Archive)
    2. READ SYSTEM LOGS
       SM21    (Selected problem and warning only)
    3. User Information Systems
       SUIM    (Select Last one Change Documents for Users)
               (Select then all Selection Criteria for changed Header Data)
    4. IF SUIM doesn't show then trun on Security Audit logs:
       SM19    (Selected All Audit Classes) & Create display profile name
    5. CHECK THE AUDIT LOGS:
       SM20    (Check the audit logs)
    6. SELECTION STATISTICAL RECORDS
       STAD    (selected all posible check and hit Enter)
    Regards
    Angeline

  • Needed a code for Creating a Log File in java so that its size is limited

    Hi
    I need the code for developing a log file using threads so that the log file size is limited
    and if the size of the log file is increasing above 1Mb,another log file has to be created automatically and the log have to be printed into that new file.
    Thanks in advance

    package cms.web.log;
    import java.io.*;
    import java.util.Calendar;
    import cms.web.WebUser;
    *     Log is generated by JEditor 1.0.0
    *     @Project      : cms
    *     @Version      : 1.0.0
    *     @Created date : 11:07:40  PM Thursday, 25/07/2002
    *     @Author       :
    *     @Organization :
    *     @Copyright    : (c) 2002
    *     An utility class used to write information, especially error messages, to
    *     log file so that they can be viewed at later time by administrators.
    *     Extra information such as date & time they occures & where they are thrown...
    *     are automatically included and append to the end of log file.
    *     Log files will increase with the format "name_n" where n is file counter
    public class Log implements Serializable
          *     logs marker
         static final String START= "\n\0";
          *     parent directory that contains log files
         private static File parent;
         private PrintStream out;
         private String name;
          *     to count how many log for the current stream
         int counter;
          *     maximum number of logs for each log file
         int max;
         public static void init(File parent)
              if (!parent.exists())
                   parent.mkdirs();
              Log.parent= parent;
         public Log(String name, int max)
              this.name= name;
              this.max= max;
              file= getLastFile();
              counter= countLogs(file);
              out= openStream(file);
         public synchronized void appendLog(String log)
              if (log == null || log.length() == 0)
                   return;
              count();
              try {
                   out.println(START+ counter+ " | "+ getCurrentTime()+ " | "+ log);
                   out.flush();
              } catch (Exception e) {}
          *     Append the given log to log file.
         synchronized void appendLog(String msg, WebUser user)
              if (msg == null || msg.length() == 0)
                   return;
              count();
              try {
                   out.println(START+ counter+ "----------------------------------------------------------");
                   out.println(getCurrentTime());
                   out.println(user != null? "User:"+ user.getFullName(): "User: public user");
                   out.println(msg);
                   out.println("\n----------------------------- end -----------------------------\n");
                   out.flush();
              } catch (Exception e) {}
          *     Append the given exception to log file
         synchronized void appendLog(Throwable error, WebUser user)
              if (error == null)
                   return;
              count();
              synchronized (out)
                   try {
                        out.println(START+ counter+ "----------------------------------------------------------");
                        out.println("Exception occured at "+ getCurrentTime());
                        out.println(user != null? "User: "+ user.getFullName(): "User: public user");
                        error.printStackTrace(out);
                        out.println("----------------------------- end -----------------------------\n");
                        out.flush();
                   } catch (Exception e) {}
         private String getCurrentTime()
              Calendar c= Calendar.getInstance();
              return
                   parse(c.get(Calendar.HOUR_OF_DAY))+ ":"+               // 0 --> 23
                   parse(c.get(Calendar.MINUTE))+ ":"+                     // 0 --> 59
                   parse(c.get(Calendar.SECOND))+ " "+                     // 0 --> 59
                   parse(c.get(Calendar.DAY_OF_MONTH))+ "/"+                 // 1 --> 31
                   parse(c.get(Calendar.MONTH)+ 1)+ "/"+                     // 1 --> 12
                   c.get(Calendar.YEAR);                                        // yyyy
         private String parse(int n)
              return n< 10? "0"+ n: ""+ n;
         private void count()
              counter++;
              if (counter> max)
                   incrementFile();
                   counter= 1;
         private void incrementFile()
              File file= null;
              int n= 0;
              while ((file= new File(parent, name+ n+ ".log")).exists())
                   n++;
              if (out != null)
                   out.close();
              out= openStream(file);
         private PrintStream openStream(File file)
              try {
                   if (file.exists())
                        return new PrintStream(new FileOutputStream(file.getPath(), true));
                   else
                        return new PrintStream(new FileOutputStream(file.getPath()));
              } catch (IOException e) {
                   throw new RuntimeException(e.getMessage());
         private int countLogs(File file)
              int count= 0;
              InputStream in= null;
              try {
                   in= new FileInputStream(file);
                   int n;
                   while ((n= in.read()) != -1)
                        if (n == '\0')
                             count++;
              } catch (IOException e) {
              } finally {
                   if (in != null)
                        try {
                             in.close();
                        } catch (IOException e) {}
              return count;
         private File getLastFile()
              File file= new File(parent, name+ "0.log");
              File curr;
              int n= 1;
              while ((curr= new File(parent, name+ n+ ".log")).exists())
                   file= curr;
                   n++;
              return file;
         protected void finalized()
              if (out != null)
                   out.close();

  • Vendor Database - Need Transaction code

    Hi All,
    Last week i have posted a query with regard to pulling the Vendor Database (Need : Vendor Code / Description/ Address 1/ Postal Code / Payment Type )
    Few experts have suggested me to use S_ALR_87012086 T-Code, however the problem is we dont have access to use this Transaction. Can someone help me to pull the information from through any other way.
    Regards,
    Srikanth

    Hi
    As suggested by earlier thread it is standard ! It is very easy to follow the SAP standards. For time being you can use like
    SE16 Table > LFA1 table > Give vendor code & execute. You can get all required data. If not take ADRNR number and pass the smae in to ADRC table ,where you can get exactly what you want. Link is vendor and ADRNR number.
    Rgds
    SUMA

  • Need a code to create filed programatically

    Hi All,
    Thanks in Advance to all.
    I need a OAF code to create a filed programatically.
    Will u please help me on this.
    Zaheer...

    Hi Zaheer,
    There are few steps to create a control prgramatically
    Step1. Import required Package
    Step2. Create Control
    Step3. Set Properties
    Step4 Add contrl to its Parent
    Sample code:
    OAMessageTextInputBean mtb = (OAMessageTextInputBean) pageContext.getWebBeanFactory().createWebBean(pageContext,MESSAGE_TEXT_INPUT_BEAN,OAWebBeanConstants.VARCHAR2_DATATYPE,"Col");
    mtb.setViewAttributeName(vo.getAttributeDef(i).getName());
    mtb.setPrompt(vo.getAttributeDef(i).getName());
    Hope this will give you idea.
    Regards,
    Reetesh Sharma

  • Transaction code to create job and position in LSMW

    Hi,
    I am looking for transaction codes that can be used in LSMW to Create Job and Position. I have used PPSC, but instead of creating Job and Position, It creates org unit although I pass in the parameter for ObjectType.
    I would appreciate if anyone can help me with this problem.
    Thank you in advance,
    Sunny

    Hi,
    Check this link
    http://help.sap.com/saphelp_46c/helpdata/en/0c/e785d8f8af11d2a61f0060087832f8/frameset.htm
    Thanks & Regards,
    Judith.

  • Transaction code to create a text module and import graphics

    Hello everybody
    Can anybody tell me the transaction codes used to create text module and import graphics

    Hi,
    use rstxldmc or se78 for graphics uploading  and SO10
    Reward points if found helpful....
    Cheers,
    Chandra Sekhar.

  • Need HELP with JTree created by user input

    I have been trying to create code that takes a user input string
    ex: a:b,c;b:g,h,j;g:k,m;b:u
    note: (the above string is then stored into a string array such in the format a:bc;b:ghj;g:km;b:u after it is verified that the hierarchy order is correct)
    The string is read in such that the any value before the : is a parent and its childern continue until a ; is found. Anyway verifying the sting I have accomplished and I have been able to input the string into a modified binary tree as long as there are only 2 childern per parent and graphically represents its structure of hierarchy. The problem is that each parent can have more the two childern.
    I have been working with the BTree class and find its output similar to what I am wanting which would represent a hierarchy of objects (files, employees, etc...) anyway I have been stumped as to how to get the above string into a format that can then create the correct JTree output without hard code.
    If any one has any suggestions on how to turn the data, in the string array into a usable format to create the correct JTree output, I would greatly appreciate it.
    In the above example the string array, a:bc;b:ghj;g:km;b:u would have a desired ouput of
    a
    ..b
    ....g
    ......k
    ......m
    ....h
    ....j
    ....u
    ..c
    Thanks
    Shane

    I have been trying to create code that takes a user input string
    ex: a:b,c;b:g,h,j;g:k,m;b:u
    note: (the above string is then stored into a string array such in the format a:bc;b:ghj;g:km;b:u after it is verified that the hierarchy order is correct)
    The string is read in such that the any value before the : is a parent and its childern continue until a ; is found. Anyway verifying the sting I have accomplished and I have been able to input the string into a modified binary tree as long as there are only 2 childern per parent and graphically represents its structure of hierarchy. The problem is that each parent can have more the two childern.
    I have been working with the BTree class and find its output similar to what I am wanting which would represent a hierarchy of objects (files, employees, etc...) anyway I have been stumped as to how to get the above string into a format that can then create the correct JTree output without hard code.
    If any one has any suggestions on how to turn the data, in the string array into a usable format to create the correct JTree output, I would greatly appreciate it.
    In the above example the string array, a:bc;b:ghj;g:km;b:u would have a desired ouput of
    a
    ..b
    ....g
    ......k
    ......m
    ....h
    ....j
    ....u
    ..c
    Thanks
    Shane

  • I need the code for creating popup windows and code for open and close

    I can write the code for creating popup window , i am getting problem while trying to open and closing that popup windows.
    Can anybody help me in that pls ?
    Regards
    Sreeni.

    Hi
    For pop up window
    IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("PopWin");
    IWDWindow window = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
    window.setWindowPosition (300, 150);
    window.show();
    wdContext.currentYourNodeElement().setPopupAttribute(window);
    For closing window code
    IWDWindow window = wdContext.currentYourNodeElement().getPopupAttribute();
    window.hide();
    window.destroyInstance();
    For more infornation refer this link
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20d2def3-f0ec-2a10-6b80-877a71eccb68&overridelayout=true
    This link is very useful for you.
    Regards
    Ruturaj
    Edited by: Ruturaj Inamdar on Aug 13, 2009 9:10 AM

  • Need transaction code

    hai gurus
               The difference between LPA and LP is that we can display the valid schedulling agreement releases transmitted to the vendor over a certain period.
    so what i request is to where to find the displayed valid schedulling agreement releases .i.e the Transaction code
    thanks
    chandra

    From the Scheduling view, choose Item --> SA release docu.
    You will then obtain an overview of the releases for the relevant scheduling agreement item with the header data.
    From this overview you can:
    u2013 Branch to the display of the individual schedule lines:
    Select the desired scheduling agreement release and choose Goto --> Sched. lines/release.
    You will then see the schedule lines that were transmitted, with the discrete and cumulative quantities.
    u2013 Compare two scheduling agreement releases with each other:
    Choose Goto --> Overview JIT schedules or Overview FRC schedules.
    Select the desired releases and choose Goto--> Compare releases.
    You will see the header data of the two releases and a comparison of the schedule lines in each case, with the quantities, their differences, and the cumulative figures for the difference.
    You can view the results in the form of a graphic. To do so, choose Goto -->Overview graphic.

  • Need transaction code for opening Bex query designer?

    Hi ALL,
      Can anyone help me with the transaction code for opening Bex query designer?
      Like RRMX for Bex Analyzer similarly i want for Bex query designer.
    Thanks & Regards
    Sameer Khan

    THERE IS NO TCODE FOR QUERY DESIGNER. BUT THERE IS AN ALTERNATIVE..
    OPEN BEX ANALYSER THROUGH RRMX
    OPEN A QUERY
    CLICK ON TOOLS-> EDIT QUERY
    THIS OPENS QUERY DESIGNER AND YOU CAN USE IT NORMALLY..

  • Can we assign Transaction code to created  ABAP Query of  SQ01

    Hi ,
    Friends I want to run the abap query assigning t.code to it .. i will be thankfull if any body give me the steps or remedy .
    thanks

    Hi you there.... you can try this
    1) create an abap report with the following source code
    REPORT ZRUN_QUERY .
                          DECLARACIÓNES                                    *
    DATA:
    REPORTNAME LIKE AQADEF-PGNAME.
    PANTALLA DE SELECCION                                                *
    SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TEXT-001.
      SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
      PARAMETERS: P_BGNAME LIKE AQADEF-BGNAME OBLIGATORY,
                  P_QUNAME LIKE AQADEF-QUNAME OBLIGATORY.
      SELECTION-SCREEN END   OF BLOCK B1.
    SELECTION-SCREEN END   OF BLOCK B0.
    CUERPO DEL PROGRAMA                                                 *
    CALL FUNCTION 'RSAQ_REPORT_NAME'
         EXPORTING
              WORKSPACE  = SPACE
              USERGROUP  = P_BGNAME
              QUERY      = P_QUNAME
         IMPORTING
             REPORTNAME = REPORTNAME.
    CALL FUNCTION 'RSAQ_SUBMIT_QUERY_REPORT'
         EXPORTING
              QUERYREPORT       = REPORTNAME
              VARIANTE          = SPACE
        EXCEPTIONS
             ONLY_WITH_VARIANT = 1
             VARIANT_NOT_EXIST = 2
             OTHERS            = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    2) Create a transaction for this program
    3) Create a parameter transaction and execute this report passing by parameter the usergroup and Query, then, the program will automatically solve the program name and execute it.
    Regards,
    Daniel

Maybe you are looking for

  • Too many extents for table on locally managed uniform ASSM tablespace

    Running Oracle 9.2.0.8 on solaris 10, Enterprise edition. Tablespace configuration: select extent_management, allocation_type, segment_space_management, block_size, initial_extent, next_extent from dba_tablespaces where tablespace_name = 'PCLARGE'; L

  • Automate conversion process

    I am running the trial version of Acrobat 9.0.0 Pro Extended, and are able to convert CATIA parts and products into 3D PDFs without issue, both individually and via batch processing.  However, I'd like to know if there is a way to automate this proce

  • Create calendar linking dates to a report

    I would like to create a calendar with HREF links to a report. The calendar date is a link that you can click to pass the date to the report. The report will select average of a data column on that date and displays it, that's all. How do I do all th

  • Error in connection SAP 2007 B PL 11 client to SQL server

    Dear All, I am using SAP 2007 B PL 11. Whenever i am doing change server on client systems and entering the SQL server name and pwd the system gives error: Connection failed: SQLState: '08001' SQL Server Error: 0 [Microsoft][SQL Native Client]Unable

  • U-tube

    Hello All, When I try and use U-Tube, I get the message I must download the latest flash version, when I do, I only get the four warning messages (Install Active X, etc...) I'm running IE 9, windows 7 64 bit, Ive gone to add ons and flash player is e