Need to remove information from Notification

Working with SSHR, there is notification that contains some additional information. Want to remove this additional information. This notification seems to be a Region. Find out region using functional administatior, statically there is no information on page about "Additional Informations" . This seems its going to add dynamically. Search in code of controllers , not able to get relevant code so that i can extend it .
Does any have idea of such type customization , looking pointers in this reference.

Avaneesh,
Functionally this issue belonging to HRMS, Technically this belongs to OA Framework side as This is region with 4 sub region
Is this subtablayout region?Then u can use the hideSubTab() method in OASubTabLayoutBean .--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Hi Support, how can I install photoshop again after disk failure. Still says I have 2 copies installed, need to remove one from my old pc.  Thanks for any help.

    After drive failure, I decided to install photoshopcc on my home pc.
    when I try to start it, I get the message "already installed on 2 devices"
    I need to remove it from one of those devices.
    It's not obvious how to do this.
    Thanks in advance for any help

    On one of your older PCs, Start Photoshop, go to the  Help menu > Deactivate...
    This is a forum of users like yourself volunteering our time to help, we are not Adobe support.
    Gene

  • TS1389 I need help removing UAC from itunes..

    I need help removing UAC from itunes so it will not allow me to open itunes. Everything I have read from other comments that you shouldn't turn off your user account control. I just to be able to open itunes. Can anyone help me with this problem?? Greg, ogrady612@yahoo,com

    I had this problem too but you do not need UAC to be turned on.
    Click on start and search for 'uac' in the search box at the bottom and click on 'Change User Account Control Settings' when it comes up. Move the slider to the bottom when the window appears and save the changes and your done!
    It's worked for me and my uac has been off for months without causing me any problems!
    Hope this helped

  • Just bought a new macbook pro. i need to transfer information from my old mac. help please?

    just bought a new macbook pro. i need to transfer information from my old mac. help please?

    Hi,
    See Here
    Transfer from Old  to New
    http://web.me.com/pondini/AppleTips/Setup.html

  • I need help removing CS3 from Windows 7 so I can reinstall

    I need help removing CS3 from Windows 7 so I can reinstall

    Before trying to remove try re-installing CS3 right on top of the current install.  Often re-installing Photoshop on top of itself fixes the install.  If it does be sure to apply the cs3 updates.
    Download Adobe CS4 and CS3 Free Trials Here (incl. After Effects) | ProDesignTools
    your product key can be retrieved from here https://www.adobe.com/account/my-products-services.html
    use these links for the updates.
    Adobe - Photoshop : For Macintosh
    Adobe - Photoshop : For Windows

  • Alas, I updated to Lion and need to remove Appleworks from laptop. What, besides the application (folder) else do I need to remove. I am putting items onto a CD so I may be able to work on a Leopard machine.

    Alas, I updated to Lion and need to remove Appleworks from laptop.  I am putting items onto a CD so I may be able to work on a Leopard machine.What, besides the application (folder) else do I need to remove to the CD?

    (user)/Documents/AppleWorks 6 Button Bars (this is no longer used) and Appleworks User Data
    (user)/Library/Preferences/Appleworks (folder)

  • Need to pass information from MS access database to another prog

    Hi,
    I really need some help here...
    I need to pass selected information from my database to another information.
    I am able to select and display the infotmation but i am not sure how i can transfer the information to the next program. Can any one please offer me some assistance?
    My code is as follow:
    /* Getting data from PSM32 and displaying it *can work* */
    import java.net.URL;
    import java.sql.*;
    import java.lang.String;
    /** Application to create a Ganttchart * */
    public class PSMdb
    public static void main (String argv[])
    //SQLQueryFormat a = new SQLQueryFormat();
    System.out.println("\nEstablishing Connection - Pls Wait... \n");
    /** Get Info fr database**/
    try
         //Connect to the database specified in the URL
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         Connection con = DriverManager.getConnection("jdbc:odbc:PSM32");
         System.out.println("Connection Established.\n");
         //Create a SELECT statement object
         Statement statmt = con.createStatement();
         //Issue the SELECT statement
         String querySt = "SELECT Set, Name, Order " +
         "FROM PMETERS " +
         "WHERE Set = 'BRAKE.BAK' ";
         //Create and execute query
         ResultSet res = statmt.executeQuery(querySt);
           while (res.next())
                String Proj = res.getString(1); //get Proj Name
              String Task = res.getString(2); //get Task Name
              //Print statement
              System.out.println("" +Proj);
              System.out.println("" +Task);
           //Close Statement and Connection
         statmt.close();
         con.close();
         System.out.println("\nConnection Closed - Operation Successful.");
         catch(Exception E)
    //Print out the Exception Error
    System.out.println("Error:" +E );
    }And yes there is another problem. I can compile and run the program in a C:\folder but when i open the document in a project workspace, i cant compile the above code. Can any one please offer me assistance?
    Thanks a million.

    To NanookOITheNorth:
    Could you provide some more relevent information
    about what the other program is and how data should
    be transferred to it? API? Socket? File?was wanted to use the "return task" thing. Issit possible to use that?
    To annie79:
    my next program is supposed to retrive the events in the "task" field and display it in a applet. After retriving the tasks i will be getting the dates to produce the gantt chart. uses the jfree lib functions.
    the code for the applet is as follow
    /* original gantt chart program that can work*/
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.util.Calendar;
    import java.util.Date;
    import org.jfree.chart.ChartFactory;
    import org.jfree.chart.ChartPanel;
    import org.jfree.chart.JFreeChart;
    import org.jfree.data.category.IntervalCategoryDataset;
    import org.jfree.data.gantt.Task;
    import org.jfree.data.gantt.TaskSeries;
    import org.jfree.data.gantt.TaskSeriesCollection;
    import org.jfree.data.time.SimpleTimePeriod;
    /** Application to create a Ganttchart * */
    public class Ganttchart extends JApplet{
    /** @param title , frame title **/
        public void init() {
            final IntervalCategoryDataset dataset = createDataset();
            final JFreeChart chart = createChart(dataset);
            // add the chart to a panel...
            final ChartPanel chartPanel = new ChartPanel(chart);
            // this size (500, 270) here doesn't matter cos this become the html control
            // how big u wan can change in the html code the width="800" height="600"
            chartPanel.setPreferredSize(new java.awt.Dimension(500, 270));
            setContentPane(chartPanel);
         * Creates a sample dataset for a Ganttchart.
         * @return The dataset.
        public static IntervalCategoryDataset createDataset() {
         //"Task" information should be retrived from the database to replace this current 1
            /*final TaskSeries s1 = new TaskSeries("Scheduled");
            s1.add(new Task("Write Proposal",
                   new SimpleTimePeriod(date(1, Calendar.APRIL, 2001),
                                        date(5, Calendar.APRIL, 2001))));
            s1.add(new Task("Obtain Approval",
                   new SimpleTimePeriod(date(9, Calendar.APRIL, 2001),
                                        date(9, Calendar.APRIL, 2001))));
            s1.add(new Task("Requirements Analysis",
                   new SimpleTimePeriod(date(10, Calendar.APRIL, 2001),
                                        date(5, Calendar.MAY, 2001))));
            final TaskSeries s2 = new TaskSeries("Actual");
            s2.add(new Task("Write Proposal",
                   new SimpleTimePeriod(date(1, Calendar.APRIL, 2001),
                                        date(5, Calendar.APRIL, 2001))));
            s2.add(new Task("Obtain Approval",
                   new SimpleTimePeriod(date(9, Calendar.APRIL, 2001),
                                        date(9, Calendar.APRIL, 2001))));
            s2.add(new Task("Requirements Analysis",
                   new SimpleTimePeriod(date(10, Calendar.APRIL, 2001),
                                        date(15, Calendar.MAY, 2001))));*/
            final TaskSeriesCollection collection = new TaskSeriesCollection();
            collection.add(s1);
            collection.add(s2);
            return collection;
         * Utility method for creating <code>Date</code> objects.
         * @param day  the date.
         * @param month  the month.
         * @param year  the year.
         * @return a date.
        private static Date date(final int day, final int month, final int year) {
            final Calendar calendar = Calendar.getInstance();
            calendar.set(year, month, day);
            final Date result = calendar.getTime();
            return result;
         * Creates a chart.
         * @param dataset  the dataset.
         * @return The chart.
        private JFreeChart createChart(final IntervalCategoryDataset dataset) {
            final JFreeChart chart = ChartFactory.createGanttChart(
                "Ganttchart",  // chart title
                "Task",              // domain axis label
                "Date",              // range axis label
                dataset,             // data
                true,                // include legend
                true,                // tooltips
                false                // urls
    //        chart.getCategoryPlot().getDomainAxis().setMaxCategoryLabelWidthRatio(10.0f);
            return chart;   
    }As for the "run the program in a C:\folder but when i open the
    document in a project workspace, i cant compile the
    above code. Can any one please offer me assistance?"The run time error that i get is "java.lang.NoSuchMethodError: main
    Exception in thread "main" "
    Please give me some leads on how i can cont to proceed?
    Thanks a lot

  • I have sold a Loptop with Window 8.1 on it. I need to remove Photoshop from it before I can run Photoshop Elements 12 on my new Laptop with Windows 8.1. How can I do it?

    I am trying to install Photoshop Elements 12. I get "Your Lic. been use by the maximum allowed computer. The other two laptop both windows 8.1  one been sold the other in for repairs. How do I remove them from my Adobe profile?

    It need to be removed from the computer you sold with it activated on. If you want to use that activation on a different computer. If you wiped that computer you need to contact Adobe this is a user forum users here do not have access to Adobe Activation servers and databases.

  • I am replacing my broken MacBook pro, do I need to remove it from iCloud? If so how please

    Hi there,
    I recently dropped and killed my MacBook pro and have a new one arriving today,   Do I need to remove the old one from iCloud like we used to with sinc?   If so please let me know how.
    Thanks Jules

    Thanks Roger,
    The macbook is proper dead so I cant login on that machine but I am guessing its not an issue from your reply anyway
    Thansk Jules

  • Need help REMOVING ALARM FROM ipod.

    I use my 3G ipod in my car with an alpine stereo that supports ipods. Every now and then the alarm sets its self and will go off in the middle of the night completely draining my battery by the next morning.
    Is there any way I could remove or delete the alarm function from my ipods software?

    When you say you want to "remove" pictures from the iPod, do you mean you want to transfer those pictures from your iPod to your new computer? If so, do not erase and sync your iPod as you will lose all those pictures from your iPod for ever.
    If you copied photos to your iPod using the full resolution option, enable disk use, open your iPod in "my computer", open the photos folder then open the "full resolution" folder and drag the photos out of that folder to your desktop. For enabling disk use look here.
    Disk Use.
    If you only copied the photos as thumbnails, you can't do this so you'll need a program such as this one.
    iPod Photo Copy. (Windows only)
    iPod Photo Liberator. (both Mac and Windows versions available)
    Photos as thumbnails won't be of the original quality when copied back to your computer.
    And btw, this is a "connecting iPod classic to a Mac" forum!

  • Removing information from document properties

    hi - in adobe reader, how does one remove identifying information from the document properties tab on the file tab?

    hi - in adobe reader, how does one remove identifying information from
    the document properties tab on the file tab?
    You can't.

  • What do I need to remove photos from 4 G I Pad?

    What do I need to get photos from my I Pad 4G to aDVD. The Apple store told to go to places like Target. Kodak does not work with I pads. I do not have another PC to  that goes on line to go to first.

    I am talking I Pad, not phones.

  • How do I remove all information on my iPod Touch without removing information from my other Apple devices?

    I have a 3rd Generation iPod Touch - very good condition - iOS 6.1.6. I want to give the device to my grandson. How do I remove all information on my iPod Touch without removing information on my other Apple devices?

    See this support document for instructions. What to do before selling or giving away your iPhone, iPad, or iPod touch - Apple Support

  • Need to remove photos from iPhone 4

    I have 4011 photos that i took on my iphone and have sync'd to my imac. How can i remove them from the phone without doing a restore or deleting each one manually? seems like this out to be easy but im not that bright!

    I thank you mightily. Been looking for that trick for a long time.
    BTW, the delete key didn't work. After highlighting the photos I used a button on the bottom bar - a red circle with slash through it. I did get a confirmation to delete. Thanks again. Why doesn't Apple just tell us this in some organized way? Or better yet, just make it easier and more direct - a button in iphoto to delete the whole camera roll on the phone any time you want.

  • I need help removing bezel from my laptop screen

    I have a HP Pavilion DV4-1125nr laptop and I cracked the screen and need to change it but I can't seem to figure out on how to remove the bezel out of my screen so I can remove screen and get the model number from the back.  I removed screens before but they had screws on top of bezel covered by little rubber knobs and the dv4-1125nr doesn't have any of this and it looks like you have to remove the bezel using your hands but I can only pop out the top and the sides, the bottom doesn't pop out and I'm afraid to force it out in case I break it.  What am I misssing here?  Is there a trick to get it out?

    http://h20574.www2.hp.com/?jumpid=reg_R1002_USEN&lang=en&cc=US&hpappid=psml
    From above url ( HP partner Services Media Library ), do the following;
    1. Select Laptops and Teblet PCs in "Product Category"
    2. Select HP Pavilion Notebook PCs in "Product Family"
    3. Select Pavilion dv4-1000 Entertainment Notebook PC series in "Product Series"
    4. Select either FRU Remove/Replace (AMD) or FRU Remove/Replace (Intel) based on your CPU type.
    5. It should bring up another window "HP Service Media Library" and then select Display Bezel ( Recessed ) to bring up the video and detailed procedure for you to open up the LCD Display Bezel.
    Have fun and keep this URL handy and you can use it for all your DIY works later.

Maybe you are looking for

  • Find and Replace Font Colors in Multiple Text Boxes

    Hello, I have Illustrator version 15 I made many text boxes with multiple colors, red and black on each letter. I was wondering if there is a find and replace tool for multiple text boxes. I want to change the reds to black and the blacks to light gr

  • Insert and edit screen shots in RH

    I am using RoboHelp HTML 6 to write a help document which requires lot of images. I am reluctant about the imaging part as I really don't know what would be the best way to insert the images in RH. I have these options - Using Word or Paint of then R

  • Transforming EPC to BPMN in Aris Business Architect 7.1

    I have read in the helpfilel for Business Architect that it is possible to transform from one type of diagram to another. It was also mentioned on the SAP BPM training that I have attended. However I am not able to find the function which will enable

  • Photoshop Elements 13 and Premiere Elements 13?

    is a drawing tablet useful and recommended for Photoshop Elements 13 and Premiere Elements 13? possibly to buy what brand and what size ?

  • Galaxy Nexus will not Roam

    Hi All, I live in Kansas where in a lot of places service can be poor or not existent. While visiting my family and my girlfriends family over Christmas, who live in two different areas in Southeast Kansas, where both phone and 4g/3g/1x data signal d