Need to get display only mode in ess

Hello experts,
What settings should I use so that on the ESS Personal Profile the users get a display only profile with a details button on the right as shown in the image. Currently the details only show up when somebody is maintaining the PERNR from the ECC system. Speedy help would be greatly appreciated.

I have maintained the table V_T588MFPROPC as you told, earlier this table was empty.
GBDAT is filed name for Date of Birth.
So I found out GBDAT in standard table V_T588MFPROPS and maintained our earlier table exactly like that. In my case country grouping is 99.
But after maintaining, there is no options to check as read only.
There are some checkbox which is not in english.
Please check the attachments and tell me what to do.

Similar Messages

  • CUF in display only mode ?

    Hi,
    Is it possible to have a CUF in display only mode ?
    In BBP_CUF_BADI_2  method modify screen ?
    If yes : how ?
    Kind regards,
    Yann

    Hi Yann,
    Sorry for the missunderstood.
    I 'd a look on the standard call to the BADI.
    The table ET_FIELDS is populated by default  with input = display = 'X' before the BADI call.
    So be carefull to <u>modify</u> existing entries in table ET_FIELDS, and not to <u>insert</u> additional entries in this table.
    Your code should be something like:
    LOOP AT ET_FIELDS into wa_fields.
    ELSEIF wa_fields-fieldname = 'ZREFEDI'.
    wa_fields-xdisplay = 'X'.
    wa_fields-xinput = ''.
    endif.
    MODIFY ET_FIELDS form wa_fields index sy-....
    ENDLOOP.
    try it and tell me.
    vadim

  • I lost my HD, and need to get my only backup of my songs off my itouch

    Help, I lost my HD, and need to get my only backup of my songs off my itouch.
    but i cant access teh HD like in my ipod...how do i copy my songs from my itouch back to my new restored Windows PC HD?

    OMG...I have a Ligit question and no one here will answere me...can someone just answer my question...is there a way to restore my music from my itouch or not...it seems like a 101 questions, all I get here is the run around.
    And IF I wanted to Steal music I would use Bittorant or Lime Wire, not wasteing my time doing it like this.
    NO its not dead, and I have a copy on my Seagate External Drive...BUT...Its something I could do with my iPod...so I want to know just in case...it seems that the itouch has a lot of limitations, restoring music from the itouch may be one of them, I am trying to decide if I should just return this thing and stick with my old ipod, I want to be sure I am not losing anything with this, especially if there is no restore feature.
    Also theres another reason, the xBox used nto be able to read teh old ipod and this new itouch it cant, I was able to play th ipod from my xbox console.
    Unless I can "see" the music I doubt that the xbox will be able to read it either.
    Why does it take 5 times asking the same question just to get a yes or no...and if yes then how?

  • Disable a group of check boxes when we open a page in the display only mode

    Hi all,
           I need help in making a group of checkboxes display only when i open it in the display mode. I have made the following coding for it,butits not working.Can you help.
    MODULE disable_indicator OUTPUT.
      IF action_type = display_only.
        LOOP AT SCREEN.
          IF screen-name = INDICATOR_SET_OVERDUE_ITEM'.
            screen-input = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
        ELSE.
          LOOP AT SCREEN.
          IF screen-name = 'INDICATOR_SET_OVERDUE_ITEM'.
            screen-input = 1.
            MODIFY SCREEN.
           RETURN.
          ENDIF.
          ENDLOOP.
      ENDIF.
    ENDMODULE.                 "

    Hi  Kushaal Choudri,
    Chek out in Debug mode if first IF condition is triggering or not ?? Also assign Screen Group if u want to disable multiple fileds at a time and use it in IF condition...
    MODULE DISABLE_INDICATOR OUTPUT.
      IF ACTION_TYPE = 'DISPLAY_ONLY'. ==> Put it between Single Quote and check the CASE as it's case sensitive...
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'INDICATOR_SET_OVERDUE_ITEM'.
            SCREEN-INPUT = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSE.
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'INDICATOR_SET_OVERDUE_ITEM'.
            SCREEN-INPUT = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDMODULE.                    "disable_indicator OUTPUT
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7

  • SM13 in "display only " mode

    Hello,
    Is it possible to restrict tcode SM13 to provide display only access ?
    If so, how can this be achieved?
    Thank you for your response.

    Hi
    I do not think, as already mentioned, that you can meet your requirement, only through the standard authorization checks.
    What you maybe can do, it to create a transaction variant through transaction SHD0. In here you are able to disable function keys, menus.
    When you have created this variant, you can create a transaction code for it in SE93.
    --  But please notice that access to this new transaction also requires access to SM13.
    So what you need to do is to create to transaction variant as a display only variant that you activate as the default variant in for SM13, and a new one without any deactivation of functionality that you assign to a new transaction code created in se93.
    --  Not an easy straight forward way of acheiving your requirement but it can do the trick  -  and please remember that the assignment of default transaction variant to transaction code needs to be performed in all clients/systems, as this is not ordinary customising
    Regards
    Morten Nielsen.

  • Need to add extra Payment modes in ESS Travel management against a Reimbursement type

    Dear Travel Experts,
    I need to add extra Payment modes such as Corporate Credit Card and Company Card options in Payment mode option dropdown list  in ESS Travel management against a Reimbursement type.
    Screen shot attached where I need extra two Payment mode options:
    Please let me know how to add it .
    Regards,
    Nayak

    Dear Sigi,
    Please find more screen shots :
    Regards,
    Nayak

  • Page number to get displayed only when the page count is more than 1

    Hi Gurus,
    My requirement is to print page numbers ONLY if the page count is more than 1 ,i.e. if the data getting displayed in 1 page only then don't print "Page n of m" but if it is getting displayed in more than 1 page then display "Page n of m" on TOP right corner.
    I selected "Page n of m" and it creates 3 fields in object hierarchy i.e TextField CurrentPage, TextField PageCount and Static Text field Pages.
    I go to the ready:layout of PageCount object, and use below script:
    this.rawValue = xfa.layout.pageCount(); 
    if (this.rawValue == 1) {
    this.parent.Pages.presence     = "invisible";
    I looked at the message Page number not to display but it doesnot resolve my problem.
    Please help me out.
    Regards
    Ajay

    Hello Ajay,
    Script do not work for TextFields.  to get the page numbers displayed.  Select Text field from library and Go to Object Pallete, Value tab and select "Calculated - Read Only" in Type and choose Runtime property.  There you can find the Number of Pages.
    Once this is the text field, you can write script on it. 
    If(this.rawValue == 1)
      this.presence = "invisible"
    similarly write script for total number of pages, but make sure that variable is accessed properly.
    Please let me know, if you still see some issues with it.
    Thanks,
    Rakesh

  • Getting display only on attached monitor

    My laptop is connected to a desk monitor. Most of the time I get the (same) display on both at once. Occasionally, the laptop monitor is black and the display is on the larger screen. I don't know what makes it do that, but often I would like to have it only on the larger screen, and wonder how I can set that up. Thank you

    How about turning the
    brightness on the MBP all the way down? Will that
    achieve what you want?
    Kryten
    Well, that means using monitor spanning. In that case, I could certainly make my external monitor the main display (thus, the one with the menu bar). The problem with monitor spanning in my situation is that it is possible windows and icons be mis-located to the laptop monitor. Because my two displays are not sitting side-by-side (they are at least 5 feet away from each other) this could get confusing.

  • How to restrict transaction PE03 (HR: Features)  to display only mode?

    We have a situation where a set of users need access to transaction PE03 to display HR Features. However they should not be changing any feature through it.
    The only auth objects that are checked for this transaction seem to be s_tcode and p_tcode. As both this objects are checked during transaction start, there does not seem to be any check for display/change access.
    Appreciate any inputs.....Thanks!

    > I was wondering if we could find an appropriate user exit and put in some custom code for checking the display/change access of the user. However, I am yet to find an exit to do this.
    Just had a quick glance at the program and couldn't find anything fast either... that could say more about my abap reading skills than the program structure
    I suggest you have an abaper look at it to see if it's easier to build a read-only copy of PE03 or create a report that delivers the same information. To find out if any user exit is available you could also give the HR forum a go.
    Jurjen

  • Languages not getting displayed in MSS and ESS portal

    Hi,
    When we are changing the default language from english to some other language, for few languages it is not coming properly. For ex, if we select Turkish, portal is displaying english+turkish combination.
    Do we need to do some settings in SAP backend or portal? Pls advise.
    Regards,
    Ramesh

    Try to check with your Basis team they will do this language settings.
    Best Regards

  • Webdynpro iveiws gets displayed only half the of Content Area with scroll

    Dear Experts,
    We are running on EP 7.0 SP13 and I have some webdynpro Iviews. Now when i'm in default framework page-desktop i'm getting the normal full screen view of the WD iview screen. But when i use lightframework page-desktop, the content area gets split into two with the lower half blank and the upperhalf displays the WD iview with a vertical scroll, and its not coming to full page.
    Kindly suggest how to overcome this. I know certain functionalities will not work with WD iview and Light framework, but i dont think it does have anything to do with content area.
    Points will be awarded for sure.
    Thanks
    Yusuf

    Hi Mohammed,
    What is the value of the Height Setting Property of your iview: Automatic, Fixed or Full-page?
    Is the iview on a page or is the iview put in the role without a page?
    I know for sure that some thing like EPCF are not availible in the Light framework.
    What I do not know if the automatic height function that is triggerd (if you selected this property) is part of the EPCF framework.
    If that is the case that could then explain this behaviour...
    Maybe the SDN communitiy can fill me in on this last bit.
    Cheers,
    Benjamin Houttuin

  • HT204291 I can connect to the apple TV but I am not getting display only sound with my IMAC mid 2011 and MAC Air 2012 both with Mountain Lion OS

    I just upgraded to Mountain Lion after purchasing Apple TV yesterday from Best Buy.
    I have signed in on the same wi-fi network (comcast 30mbps)
    I was able to see photos from my wifes Iphone but not my IMac or Mac Air
    Both computers connect but I am only getting audio.
    I updated software on Apple TV
    I shut everything down and reset my router. My Mac Air 13" 2012 was able to see the desk top but not anything that I was doing and then it disconnected.
    I also tested the internet speed on the Apple TV but it just told me it was finished. (no results)

    WEP as a security measure is laughable nowadays. Even a kindergarten kid with a netbook can crack the password in a few minutes. Try using WPA2 if available on the device. And the Macs will be quite happy connecting with that protocol.

  • Validity option not getting displayed in Bank Information ESS

    Hi Experts,
    Can you please advise how to enable the validity option in the screen for bank bank information. Currently ESS->Personal Profile->Bank Information->Add other bank there is no option to specify the date range eg : create a bank record for a future dated record ( screen shot attached). My understanding is this option is part of the standard and should come towards the bottom of the screen.
    I have checked the FPM_FORM_UIBB->HRESS_CC_PER_DTL_BANK_AU and it seems all okie. Can you please advise.Your help is highly appreciated.
    Cheers,
    Shyam

    Hi All,
    Got the solution. The view V_T7XSSPERSUBTY was not maintained correctly. Thanks.
    Cheers,
    Shyam

  • Components getting displayed only when frame size is changed

    import java.awt.*;
    import javax.swing.*;
    public class BorderLayout_another  extends JFrame{
         public BorderLayout_another()
              setLayout(new FlowLayout());
              setSize(500,400);
              setVisible(true);
              add(new JButton("one"));
              add(new JButton("one"));
              add(new JButton("one"));
              add(new JButton("one"));
              add(new JButton("one"));
         public static void main(String[] args)
              new BorderLayout_another();
    }If I run the above code then the component in the frame is not visible unless I click restore button of the frame or I resize the frame itself.
    Even iconifying and then deiconifying does not solve the problem.
    I know I am getting this problem since I have used setVisible(true) before adding the components.
    Is there something more to it.

    import java.awt.*;
    import javax.swing.*;
    public class BorderLayout_another  extends JFrame{
         public BorderLayout_another()
              getContentPane().setLayout(new FlowLayout());
              getContentPane().setPreferredSize(500,400);
              getContentPane().add(new JButton("one"));
              getContentPane().add(new JButton("one"));
              getContentPane().add(new JButton("one"));
              getContentPane().add(new JButton("one"));
              getContentPane().add(new JButton("one"));
                    pack();
              setVisible(true);
         public static void main(String[] args)
              new BorderLayout_another();
    }Later versions of Java will allow you to do without the getContentPane() prefixes but I always use it.

  • Running nested scripts in "Display only mode"

    Hi,
    I have a deployment script that calls scripts nested. Is it possible to run these having e.g echo set on in order to display everything being executed, without actually executing it against the database?
    Hope my question makes sense
    Regards
    Peter

    What you could try is to disconnect before running them, then each statement will failed with "Not connected"
    disconnect
    set echo on
    @c:/download/utlsampl
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.8.0 - Production
    SQL> set echo on
    SQL> @c:/download/utlsampl
    SQL> DROP TABLE LSC_EMP CASCADE CONSTRAINTS;
    SP2-0640: Not connected
    SQL> DROP TABLE LSC_DEPT CASCADE CONSTRAINTS;
    SP2-0640: Not connected
    SQL>
    SQL> CREATE TABLE LSC_DEPT
      2  (
      3     DEPTNO INTEGER constraint DEPTNO_NOT_NULL NOT NULL,
      4     DNAME  VARCHAR(14),
      5     LOC    VARCHAR(13)
      6  );
    SP2-0640: Not connected
    SQL>
    SQL> alter table LSC_DEPT add constraint DEPT_PRIMARY_KEY primary key (DEPTNO);
    SP2-0640: Not connectedHTH
    Laurent

Maybe you are looking for

  • Using iPod as a disk (and only a disk)

    I've got an iPod 4G, connected to Leopard. I want to use this as an ordinary external usb drive. I'm positive I've done this before (used to to beta test Leopard actually). Anyway, I'm having some trouble doing it again. In Disk Utility I've selected

  • EVERY-TIME I close photoshop I get this message "Photoshop quit unexpectedly"

    This just started today after running cs5 for months with no problems, I am not sure what I changed to cause this. Every-time I close the software I get this message "Photoshop quit unexpectedly". I have tried repairing permissions as well as trashin

  • Converting the layout from OTF format into PDF

    Hi Experts, I am new to SMART FORMS,I don't have a clue about how to convert the layout from OTF format into PDF format and how to store it in Presentation server. Please send me a Model program or step by step approach of the same. Useful inputs wil

  • IPhone 4 screen problem

    The screen on my iPhone 4 does not have the same color quality compared with other iPhone 4 and shows horizontal reflections

  • IMac not recognising external drives or memory cards

    Hi, I've been using both a Lacie external drive and a standard SD card from transferring files and images on my computer for ages, with no problems. I have two issues, possibly related, possibly not. 1) I accidentally removed my Lacie drive before it