Last Modified Layout For the Standard  T-code

Hi,
    Please let me  know last layout modified for any standard T-Code  by which user & Layout Name . . .
Regards
ASHOK K

Hi Ravi,
I have checked it by creating a transaction variant.
My requirement is all fields other than storage bin field should be display only.
if u have any document transaction varient plz send me.
Thank u
Nani

Similar Messages

  • Storing the last modified date for files in a HashMap

    This method gets a list of all the .java files in the source subdirectory, gets the last modified date for them and stores the file name and last modified date in a HashMap.
    import java.util.HashMap;
    import java.io.FilenameFilter;
    import java.io.File;
    import java.util.ArrayList;
    public class myClass
         public static void main(String[] args)
              HashMap result = getLastModified();
         static FilenameFilter javaFilter = new FilenameFilter()
            public boolean accept(File dir, String name)
                return name.endsWith(".java");
         public HashMap getLastModified()
              HashMap lastModified = new HashMap();
              ArrayList javaFiles = new ArrayList();
              File sourceDir = new File(".\\Source");
              File currentFile;
              long lLastModified;
              //get a list of all the .java files in the source directory
              javaFiles=listFiles(javaFilter);
              //for all .java files get and store the last modified date
              for(int i=0; i<javaFiles.size(); i++)
                   currentFile=(File)javaFiles.get(i);
                   lLastModified=currentFile.lastModified();
                   lastModified.put(currentFile, lLastModified);
              return lastModified;
    }The problems I am getting are:
    >
    The method listFiles(FilenameFilter) is undefined for the type myClass
    and
    >
    The method put(Object, Object) in the type HashMap is not applicable for the arguments (File, long)
    can anyone help? What's the best way to go aobut this?

    Thanks for the replies abenstex I modified it so that javaFiles is now a File[] and made the change you suggested but I still have the second problem, here's the code so far:
    import java.util.HashMap;
    import java.io.FilenameFilter;
    import java.io.File;
    import java.util.ArrayList;
    public class myClass
         public static void main(String[] args)
              HashMap result = getLastModified();
         static FilenameFilter javaFilter = new FilenameFilter()
            public boolean accept(File dir, String name)
                return name.endsWith(".java");
         public HashMap getLastModified()
              HashMap lastModified = new HashMap();
              File[] javaFiles = {};
              File sourceDir = new File(".\\Source");
              File currentFile;
              long lLastModified;
              //get a list of all the .java files in the source directory
              javaFiles=sourceDir.listFiles(javaFilter);
              //for all .java files get and store the last modified date
              for(int i=0; i<javaFiles.length; i++)
                   currentFile=(File)javaFiles;
                   lLastModified=currentFile.lastModified();
                   lastModified.put(currentFile, lLastModified);
              return lastModified;

  • Last browser response for a web functional code

    Hi
    I am doin a functional testing where i want to playback my recorded data .....but at the same tym i need to get the last browser response for the same and store the same in some variable so that as per the response i can take a suitable action to make the automation ......go through all errors or exceptions ....pls help
    Thanks and Regards
    kate

    where ever do you think error may occur there please add 'Capture Screen' in your script so that you will have error description with the screenshot in the result report.
    or do some validation and export the results to the output result report using the below methods,
    info("Data");
    warn("Data");
    fail("Data);
    and how can you get the html source code from the script? we can get the html source code from Result Report.
    please reply me if this answer satisfy your Question.
    Regards,
    Ramesh

  • GOS for the standard transactions

    Hi,
      Other than the OSS notes,Is there any way that we can create the generic object services for the standard transactions.
    Thanks,

    None of the pre-installed apps can be deleted...look on every page & in every folder...still don't see it? If so: Settings>General>Reset>Reset Home Screen Layout...see if you see it now.

  • Where the documentation is provided for the Standard Function module ?

    If there is no documentation provided for the standard function module in SE37 what is the best way to understand the functionality of the function module?Is there any where we can find the documentation?
    Please dont say the From coding part its too vast to understand
    Ex: HRCM_ORGSTRC_INFO_TABLE_GET
    Paint for me ..
    Regards
    sas
    Edited by: Julius Bussche on Mar 18, 2009 1:17 PM

    O Really thanks amit !!
    Are you able to understand the below code and please provide your valuable inputs what we are understanding is the same.
    PERFORM read_infotypes.
    *-- ********************************************************** NMP
    *-- IF scb frozen then write to itab-scb field.  nmp 11/2001.
    *-- ********************************************************** NMP
    *--Begin of Change by vneld - 01/17/2007
    *  IF PA0001-ZZBERN NE SPACE.
    *    FROZEN = PA0001-ZZBERN.
    *  ENDIF.
    *  ITAB-SCB = FROZEN.
    *-- ********************************************************** NMP
    *--end of Change by  vneld- 01/17/2007
      PERFORM get_date USING '92'
                       CHANGING w_hiredate.
      PERFORM get_date USING '93'
                       CHANGING w_rehire.
      PERFORM get_date USING '94'
                       CHANGING w_termdate.
      IF NOT ( w_rehire IS INITIAL ).
        w_hiredate = w_rehire.
        itab-code = 'R'.
      ELSE.
        itab-code = 'H'.
      ENDIF.
      IF p0001-persg = '3'.
        itab-code = 'T'.
      ENDIF.
    *Change by Mdukes
    ** We need HIRE,Rehire & term  within 13 month`s window
    ** But if someone Hire in IT ,change dept and then terminated .
    ** We need to exclude that person from the list  .
    ** We need to change his Org.Unit by END_DATE 12/31/9999 from Pa0001.
      CLEAR:result_tab.REFRESH:result_tab.
      CALL FUNCTION 'HRCM_ORGSTRC_INFO_TABLE_GET'
        EXPORTING
          PLVAR          = '01'
          ROOT_OTYPE     = 'O'
          ROOT_OBJID     = P0001-ORGEH
          BEGDA          = SY-DATUM
          ENDDA          = P0001-ENDDA
          PATH_ID        = EVPATH
          PATH_DEPTH     = 10
        TABLES
          ORG_INFO_TABLE = result_tab
        EXCEPTIONS
          PATH_ERROR     = 1
          ROOT_ERROR     = 2
          OTHERS         = 3.
    *  CALL FUNCTION 'RH_STRUC_GET'
    *    EXPORTING = 'O'
    *      act_objid       = PA0001-ORGEH
    *      act_wegid       =  EVPATH
    *      act_plvar       =  TYPE
    *      act_tflag       = space
    *      act_vflag       = space
    *      authority_check = space
    *    TABLES
    *      result_tab      = result_tab
    *    EXCEPTIONS
    *      no_plvar_found  = 1
    *      no_entry_found  = 2
    *      OTHERS          = 3.
    * reading the Org.Unit based on employee Org.unit (Evaluation Path 'O-O'.
    * After that making sure the latest Pa0001 org.unit is part of selection org.unit
    * If yes, set the flag to = 1 . Otherwise ignore the rec .
    * We want only IT folks hire/rehire/term within 13 monthu2019s window
    * if somebody change the dept and get term within 13 monthu2019s .it
    * Should show up in hire but not in term report .
      CLEAR:REC.
      lOOP AT result_tab.
        read table PCHOBJID with key low = result_tab-OBJID.
        if sy-subrc = 0 .
          Rec = 1.
          EXIT.
        Endif.
      ENDLOOP.
      if rec  = 1.
    *--begin of change by vneld- 01/17/07
        CHECK ( ( w_hiredate >= w_13th_mnth_date AND w_hiredate <= sy-datum )
          OR
              ( w_termdate >= w_13th_mnth_date AND w_termdate <= sy-datum ) ).
    *--end of change by vneld- 01/17/07
    **---check for hires or terms in the calendar year.
    **---No future terms
    *  CHECK ( ( W_HIREDATE(4) = SY-DATUM(4) ) OR
    *  ( W_TERMDATE(4) = SY-DATUM(4) AND W_TERMDATE <= SY-DATUM ) ).
        CONCATENATE p0002-vorna p0002-nachn INTO itab-name SEPARATED BY ' '.
    *--Begin of change by vneld 03/29/2007
    *--get supervisor name
        data : lname(20),
               fname(20).
        clear: lname,
               fname.
        Select vorna nachn from pa0002 into (fname ,lname)
               where pernr =  p0001-zzsuper_no.
        endselect.
        CONCATENATE lname fname INTO itab-supv SEPARATED BY ' '.
    *  itab-supv = p0001-zzsuper_text.
    *--End of change by vneld 03/29/2007
    *----get employee group text
        CLEAR t501t.
        SELECT SINGLE * FROM t501t WHERE sprsl = 'EN' AND
                                         persg = p0001-persg.
        IF sy-subrc EQ 0.
          itab-group = t501t-ptext.
        ENDIF.
        PERFORM get_dept.
        PERFORM get_position.
        PERFORM append_fields.
      endif.
    ENDFORM.                    " PROCESS_EMPLOYEE
    Edited by: saslove sap on Mar 19, 2009 7:45 AM

  • [svn:fx-trunk] 11625: The last few cleanups for the OSMF video player.

    Revision: 11625
    Author:   [email protected]
    Date:     2009-11-10 12:03:43 -0800 (Tue, 10 Nov 2009)
    Log Message:
    The last few cleanups for the OSMF video player.  Hooking up the videoObject property in VideoDisplay to return the flash.media.Video object.  Also, when pauseWhenHidden is set to false, we'll detach all the event listeners on the parents because they are no longer needed.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoDisplay.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as

    Hi Chris,
    thanks for your tip. I didn't get around to trying it, as I have just solved the problem:
    Unless I misunderstand how things are supposed to work, I think I also might have found a bug (or at a minimum an usability issue):
    When I talked about having relaxed all the local storage settings in my original post, I meant that in the System Preferences / Flash Player / Storage pane I had set "Allow sites to save information on this computer". I also had done some experimention around the "Ask me" and "Settings by Site" options - all without success. I had navigated to that pane by right-clicking on "Global Settings" from the non-working video players.
    However, just now I discovered the following: When I navigate to http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager03.htm l (the embedded Global Storage Settings Panel) I found that in fact "Allow third-party Flash content to store date on your computer" was disabled all along!
    So effectively, the System Preferences Pane and the Global Settings Manager were not in sync / had conflicting settings and it looks like the Global Settings Manager took precedence. When I enabled local storage in the Global settings manager, things started working immediately.
    This is extremely easily reproducable by the way: Just change some settings in the Global Settings Manager and then right click "Global Settings" within it and the Preference Pane coming up will be in conflict with the settings manager.
    (Even if this is somehow by design, its quite confusing)
    Hope this helps future readers with the same issue. Also, this is an issue in 11.3 Beta 2, so maybe your teams can still fix this for 11.3
    Thanks,
    Jens

  • How to create a custom task in SRM for the standard task

    Hi Gurus,
    How to create a custom task in SRM for the standard task  eg: TS10407929
    regards,
    George.

    from PFTC itself. Same.

  • How to create F4 for the standard transaction

    Hi all ,
    How to create F4 for the standard transaction for a particular field .
    Bye

    Santosh,
        You can create F4 values for a field in a standard Transaction .
    1. First search for a standard search help meeting your requirement .
    2. If you don't find one, create your own custom (z) serach help .
    ( 1 is preferable )
    After that, include that serch help to the standard field in the transaction .
    For this u need to go to the screen
    ( F1->F9-> screen-> Field )
    Click on the property of the field and include the search help .
    You ll require the access key from the basisi guys as u r changing standard .
    Hope it helps,
    ~ laxmi
    Reward for helpful answers

  • Posting is not possible for the specified company code.

    Hi SRM Gurus,
      We have a four company codes in our org.structure and if we try to post manual invoice for a particular company code with its currency, we are getting this error :
    "Posting is not possible for the specified company code "
    We have all company codes defined and inherited for the particular user in BUK and we get all the company codes in the F4 help of this user in BBPIV02 -->Basic data.
    Any suggestions pl.
    I doubt this particular Cocode is deactivated for invoice posting in backend. Is it possible ?
    Kindly suggest.
    Reg.,
    Sridhar.

    Hi
    Which SRM version are you using ?
    Are you getting this error for a praticular company code only or for all the comapny codes ?
    <b>Please read this -></b>
    Since you are trying to create Invoice with PO did you check the Vendor Root there is a attribute for company code. Please maintain the same, if not maintained.
    Refer the link below for details.
    Re: Company code for system missing in user attributes
    <u>Other related links -></u>
    Try to change the chart of acct info in OBY6 for a company code that was copied from SAP template, there is no Financial posting or any other posting in this company code.
    Re: Posting Period Error in Confirmation
    Hope this will help.
    Regards
    - Atul

  • How to add one column to the standard t.code : CAT2.

    Hi,
    How to add one column to the standard t.code : CAT2.
    thanks

    Hi Chinna
    see the  enhancements by using SMOD <b>CATS0007</b> , or <b>CATS0012</b> and create a project using CMOD and you can implement your requirement.
    Hope This Info Helps YOU.
    <i>Reward Points If It Helps YOU.</i>
    Regards,
    Raghav

  • Layout for the angles of screen in swing application?

    I have noticed that does not exist a layout for the angles of the screen.
    I tried way in order to make it.
    Example => NorthEst o NortWest, SouthEst and SouthWest.
    Thanks

    import javax.swing.*;
    import java.awt.*;
    public class Frame3
        extends JFrame {
      JPanel jPanel1 = new JPanel();
      JPanel jPanelForm = new JPanel();
      JPanel jPanel3 = new JPanel();
      GridLayout gridLayout1 = new GridLayout();
      GridBagLayout gridBagLayout1 = new GridBagLayout();
      JLabel jLabel1 = new JLabel();
      JTextField jTextField1 = new JTextField();
      JButton jButton1 = new JButton();
      public Frame3() {
        try {
          jbInit();
          pack();
        catch (Exception ex) {
          ex.printStackTrace();
        this.setVisible(true);
      void jbInit() throws Exception {
        this.getContentPane().setLayout(new BorderLayout());
        jPanel1.setLayout(new BorderLayout());
        jPanelForm.setLayout(gridBagLayout1);
        jLabel1.setText("jLabel1");
        jTextField1.setText("jTextField1");
        jButton1.setText("jButton1");
        jPanel1.add(jPanelForm, BorderLayout.WEST );
        jPanelForm.add(jLabel1, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0
                                                    , GridBagConstraints.CENTER,
                                                    GridBagConstraints.NONE,
                                                    new Insets(0, 0, 0, 0), 0, 0));
        jPanelForm.add(jTextField1, new GridBagConstraints(1, 0, 1, 1, 0.0, 0.0
            , GridBagConstraints.CENTER, GridBagConstraints.NONE,
            new Insets(0, 0, 0, 0), 0, 0));
        jPanelForm.add(jButton1, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0
                                                     , GridBagConstraints.CENTER,
                                                     GridBagConstraints.NONE,
                                                     new Insets(0, 0, 0, 0), 0, 0));
        this.getContentPane().add(jPanel1, BorderLayout.NORTH );
      public static void main(String[] arg) {
        try {
          UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        catch (Exception ex) {
        new Frame3();
    }

  • How to know last access date for the schema's

    Dear all,
    could u plz tell me How to know last access date for the schema’s
    Regards,
    Srinivasa rao.P

    Srinivas,
    could u plz tell me How to know last access date for the schema’s
    In Oracle, we don't access schemas but schema objects.And this informationis not kept anywhere persistantly.As Amit also mentioned,if you do need it,you have to enable Auditing.
    Aman....

  • How can i add one field in the container for the standard task-90310004?

    Hi,
    Please let me know thw steps to add one field in the container for the standard task-90310004.
    Usefull suggestions will be rewarded.
    Regards,
    Neslin.

    <b>Hi,
    Containers are used for holding Application data for Workflow purposes.
    Event container
    Task container
    Workflow container
    Role container
    Binding is the linking of data from one container to the other for making data available all across the workflow.
    But you can get values from one container to another container like this
    Container(Con)
    1. WF Con to Role, Wf con to task con, Wf con to event
    and
    2. Event con to wf con, task con to wof con
    and
    3. Method con to task con
    and
    4. Task con to method con
    So, we don't have direct possible binding from task con to task con.
    Thanks and Regards,
    Prabhakar Dharmala</b>
    Message was edited by:
            Prabhakar Dharmala
        But you can do pass values from first task con to wf con and again from wf con to another task con

  • How to modify capabilities for the ethernet interfaces in a Solaris 10 x86

    Hello.
    Does anybody know how to configure the ethernet capabilities in a interface in a X86 server? I have read that NDD command is not supported for this kind of servers and I cannot find how to do that.
    My root problem is that the IPMP is not working and my first clue is the configuration for cap_pause parameter in the involved interfaces, that they are active for both IPMP interfaces.
    How can I modify cap_pause for the interfaces in this server: X4170 with Solaris 10.
    Thanks in advance
    Regards,
    Luis.

    Not familiar with the X4170 but you might want to look for a config file in /kernel/drv that matches your interface. There are some configuration parameters you can set there if the device driver supports the .conf file.

  • Alternate Address for the same Vendor Code.

    Hi,
    Can we maintain Alternate address for the same vendor code, if yes how can we maintain that?         Plz. explain me.

    Partner function also..u may have to create a new vendor code with new address...
    https://www.ucflex.uc.edu/help/nav/accounts%20payable/course/vendor%20master%20data%20maintenance/file178/index.htm

Maybe you are looking for

  • Mouse over a dot

    I have created a component that has small points on it (ellipse with a radius of about 4). This is shown on top of another image and is dynamically generated at runtime. My problem is that when I add a mouse listener to the object i need to determine

  • Why does my button no longer work in Flash Player 8?

    Hi, I have built a site in Flash MX a while ago. Now I'd like to upgrade things a bit while testing the new Adobe Flash CS3. To be able to use a new function ("anti-alias for readability") the program warns me that "this feature is not supported by F

  • Can't get Vaio to acess network

    Hopefully someone can help me out. I have an airport express that has been working fine with my mac. My roomate has a Sony Vaio. When she tries to access my network it says that it is the incorrect login information. But I am positive I have been typ

  • ITunes launching error?! xO

    Whenever i double click my itunes, it shows the loading sign then a few seconds later nothing happens. I would really appreciate it if someone could tell me what's going on and how I could fix this problem!! xd Dell dimension 2400 Windows XP

  • What's with the Latest version of Reader?

    Does not work. I still can't open PDF documents. All I get is a black page. Why?