Modify Notification Screen

Dear All,
i like to modify the notification screen in the IMG. Its very easy to hide some fields. But i cannot hide the field of the respons. person. Why? Is it a bug? I can find any field like this in the IMG - Plant Maintenance and Customer Service / Maintenance and Service Notifications / Notification Creation / Notification Types / Set Field Selection for Notifications / Field Seletion for Maintenance Notifications.
Any idea?
Thanks and best regards

Andreas,
Just remove the partner in the Person responsible field in the IMG node specified above.
This will remove the partner from the notification screen
PeteA

Similar Messages

  • Text/email/call notification screen -- TMI!

    Is there any way to modify or disable the notification screen that pops up on the wallpaper when a text, call, or email comes in? Too much information there for my kids to see when they want to use the phone for a game, etc.

    I am not aware of any such option in settings however my post is more of a question - do you receive notification of received emails on the wallpaper when your iPhone is locked?
    I only receive notification of missed calls and SMS and not emails (and I would like this)!
    thanks
    Raf

  • How do I see more than 6 hours on iOS7 notification screen calendar?

    I used to rely heavily on the notification screen to look ahead at the next 12 hours in list view.
    Having to scroll and only getting to see the next six hours is a huge step backwards.

    Select the photos you want to order and create am album. Add photos until al you want are in the album and then open the album, select all and order
    LN

  • HT3576 I have many apps where i must swipe down and it constantly brings down the notification screen. Is there anyway to disable this or activate it a different way because this really bugs me.

    I have many apps where i must swipe down and it constantly brings down the notification screen. Is there anyway to disable this or activate it a different way because this really bugs me.

    I don't have that problem.  Perhaps I touch the screen lower when I wipe down?  I don't know for sure but there's got to be some difference in the way that we wipe down.  you might wish to do some experimenting.

  • Modifying selection-screen

    hi friends,
    I am trying to modify selection-screen.
    I want select-option to get disabled when i check one checkbox.I am using SCREEN table for this purpose.
    But on selection-screen when i check checkbox select-option is not getting disabled at that time . it happens only when i press ENTER.
    Plz anybody tell me how can i disable SO only by checking the checkbox.
    <REMOVED BY MODERATOR>
    SM.
    Edited by: Alvaro Tejada Galindo on Mar 18, 2008 6:47 PM

    Try This,
    TABLES:
    vbak.
    SELECT-OPTIONS:
    so_vbeln FOR vbak-vbeln  MODIF ID a.
    PARAMETERS: p_acta TYPE checkbox USER-COMMAND act DEFAULT 'X'.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_acta = ' '.
          IF screen-group1 = 'A'.
            screen-active = 0.
          ENDIF.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    Edited by: Rengith Skariah on Mar 18, 2008 1:44 PM
    Edited by: Rengith Skariah on Mar 18, 2008 1:46 PM

  • Modifying Selection screen dynamically

    Hi guyz
    herez another question
    Can we modify selection-screen dynamically  as we do in case of screen
    What i want to do is
    I want to display one parameter as  checkbox and when user ticks this box I want to display another one
    If we are defining two checkboxes earlier and making one invisible than can we modify selection screen to display another check box
    Thanks in advance

    Take a look at this example.
    REPORT EVENT_DEMO.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
      PARAMETERS: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X',
                  R2 RADIOBUTTON GROUP RAD1,
                  R3 RADIOBUTTON GROUP RAD1.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.
      PARAMETERS: R4 RADIOBUTTON GROUP RAD2 DEFAULT 'X',
                  R5 RADIOBUTTON GROUP RAD2,
                  R6 RADIOBUTTON GROUP RAD2.
    SELECTION-SCREEN END OF BLOCK B2.
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.
      IF R1 = 'X'.
        MESSAGE W040(HB).
      ENDIF.
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD2.
      IF R4 = 'X'.
        MESSAGE W040(HB).
      ENDIF.

  • Making field in notification screen as mandatory

    HI,
    We have a notification screen where we have a
    - button 'Reject' and
    - a textbox 'Rejection reason' under the response section
    We want to make the 'Rejection Reason' text box as mandatory.
    Basically user should not be able to reject without giving a proper reason in the rejection field.
    Please suggest how to achieve this.
    Thanks,
    Kamath.

    Hi,
    Use the below code in a standard workflow procedure,
    if (funcmode = 'RESPOND') then
    l_nid := WF_ENGINE.context_nid;
    l_result := wf_notification.GetAttrText(l_nid, 'RESULT');
    if l_result = 'REJECT' then
    l_note := wf_notification.GetAttrText(l_nid,<Internal name for rejection reason field>);
    l_note_text := wf_engine.GetItemAttrText (itemtype => itemtype,
    itemkey => itemkey,
    aname => <Internal name for rejection reason field>);
    if(l_note is null) then
    <Add ur message into application developer -> messages and call ur message here>
    fnd_message.set_name(<application short name>, <message name>);
    app_exception.raise_exception;
    end if;
    end if;
    resultout := wf_engine.eng_completed || ':' || wf_engine.eng_null;
    return;
    end if;
    Edited by: Nandeep CB on Mar 11, 2009 6:31 AM

  • Is it possible to play oBo Word Snake without conflicting with the pulldown notifications screen? If not is there another similar app to get addicted to?

    is it possible to play oBo Word Snake without conflicting with the pulldown notifications screen? If not is there another similar app to get addicted to?

    Hi,
    There will be a “Post” list in that user’s MySite storing all the blogs that below to that user, we can delete all the blogs in that list if with sufficient permission in that
    user’s MySite.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Modify Selection screen

    HI,
    On my selection screen.
    I have two parameters
    Param1 , Obligatory
    Param2
    and then two radio buttons
    rad1
    rad2
    My requirement is if i select one radio button param 1 is mandatory
    and if i select radiobutton 2 then param1 is not required.it should be grayed out.
    When i tried to modify the screen in at selection-screen output
    when ever i am selecting second radio button on the selection sreen i am getting a message asking for input for param 1..
    How to avoid automatic checks on selection screen.
    Thanks
    Kiran

    Remo obligatory for parm 1 ...(If its obligatory you should give some input to that and click on secon radio button ...)
    I am giving one same code....
    *& Report  ZSELECTION_SCREEN_MADHU
    REPORT  ZSELECTION_SCREEN_MADHU NO STANDARD PAGE HEADING MESSAGE-ID ZTREE..
    **& Report  ZMADDY
    REPORT ZMADDY NO STANDARD PAGE HEADING MESSAGE-ID ZTREE.
      TABLES: MARA,MARC,VBAK ,MAKT,SSCRFIELDS.
    DATA: BEGIN OF ITAB OCCURS 0 ,
           SSCRFIELDS-FUNCTXT_01,
           END OF ITAB.
      SELECTION-SCREEN: FUNCTION  KEY 1.
      SELECTION-SCREEN: FUNCTION  KEY 2.
    SELECTION
      SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
      SELECTION-SCREEN:  SKIP 1.
      SELECT-OPTIONS: S_MATNR FOR MARA-MATNR DEFAULT 'siva' NO-EXTENSION MODIF ID S2.
    "MATCHCODE OBJECT Zmobj.
      SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN DEFAULT 'maddy' MODIF ID S1.
      PARAMETER: P_WERKS LIKE MARC-WERKS  MODIF ID S2.
      PARAMETER: P_MAKTX LIKE MAKT-MAKTX  MODIF ID S1.
      SELECTION-SCREEN:  SKIP 1.
      SELECTION-SCREEN: END OF BLOCK  B1.
    *********radio buttons************
    SELECTION-SCREEN COMMENT /1(50) comm1 MODIF ID mg1.
    SELECTION-SCREEN ULINE /1(25).
    *SELECTION-SCREEN SKIP.
      SELECTION-SCREEN: BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
      SELECTION-SCREEN: BEGIN OF LINE.
      PARAMETER: R1 RADIOBUTTON GROUP G2 DEFAULT 'X' USER-COMMAND UC1.
      SELECTION-SCREEN : COMMENT 2(20) TEXT-021 FOR FIELD R1.
      SELECTION-SCREEN: END OF LINE.
      SELECTION-SCREEN: BEGIN OF LINE.
      PARAMETER: R2 RADIOBUTTON GROUP G2.
      SELECTION-SCREEN : COMMENT 2(10) TEXT-050 FOR FIELD R2 .
    SELECTION-SCREEN   :ULINE /1(10).
      SELECTION-SCREEN: END OF LINE.
      SELECTION-SCREEN: END OF BLOCK B2 .
      INITIALIZATION.
       MOVE 'HELP' TO SSCRFIELDS-FUNCTXT_01.
       move 'Maddy' to sscrfields-functxt_02.
       comm1 ='Select one Radio button'.
    FUNCTXT_01 = 'HELP'.
      AT SELECTION-SCREEN.
      CASE SSCRFIELDS-UCOMM.
        WHEN 'FC01'.
          CALL SCREEN '101' STARTING AT 20 1
                            ENDING AT 90 25.
       WHEN 'FC02'.
          call SCREEN '102' starting at 20 1
                            ENDING AT 90 25.
      WHEN OTHERS .
      ENDCASE.
      AT SELECTION-SCREEN OUTPUT.
        LOOP AT SCREEN.
          IF R1 = 'X' AND SCREEN-GROUP1 = 'S2'.
            SCREEN-INPUT  = 0.
            MODIFY SCREEN.
          ENDIF.
          IF R2 = 'X' AND SCREEN-GROUP1 = 'S1'.
            SCREEN-INPUT  = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
    *&      Module  STATUS_0101  OUTPUT
          text
    MODULE STATUS_0101 OUTPUT.
      SET PF-STATUS 'STAT'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0101  OUTPUT
    *&      Module  USER_COMMAND_0101  INPUT
          text
    MODULE USER_COMMAND_0101 INPUT.
    CASE SY-UCOMM.
    WHEN 'CONTINUE'.
         SET SCREEN 0.
         LEAVE TO SCREEN 0.
    WHEN 'CANCEL'.
        SET SCREEN 0.
        LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0101  INPUT
    *&      Module  back  INPUT
          text
    MODULE back INPUT.
    SUBMIT ZSELECTION_SCREEN_MADHU via SELECTION-SCREEN.
    ENDMODULE.                 " back  INPUT
    PLz give rewards

  • I have tried to limit calendar to only one item on notifications screen (ios 8), and even to turn it off, no joy.

    The Calendar seems to show on the notifications screen, with room for 3 entries, regardless of settings.  Any way to limit it to one, or get it off the notifications screen?

    You're talking about two different things: notifications and widgets. The lock screen will only show notifications that you've enabled to show there. When you open notification center, there are two views: "Today" and "Notifications." Today shows widgets. That is where you see the calendar with room for events. It is basically a preview of your upcoming calendar. Under notifications is where you will get notifications if upcoming appointments that have reminders. The settings for each screen are different.
    To control your calendar notifications, go to settings--notifications--calendar.
    To control the widget, pull down notification center and select edit.
    You can turn off the widget but still receive notifications in notification center and on your lock screen or vice versa.

  • Modify partner screen (sales order header)

    Hi experts,
    VA03->header->partners
    if i double click on a partner, it display a screen like in XD03 with Name, Address, Communication, ... How can i modify this screen? I want to add some fields (not Z field), i want to hide some fields.
    Does anyone know how can i customize this screen? ( not from screen parinter, i know that this customization is somewhere in SPRO but i don't know where)
    I want to customize that screen for account group type "one time ".
    I saw that for certainly customers, this screen contains more fields than for other customers. Maybe this came from Customer Account Group.
    Thanks in advance.

    Hi,
    SPRO>Financial Accounting (New)>Accounts Receivable and Accounts payable>Customer Accounts>Master Data>preparations for creating customer master data>Define Screen layout per activity.
    Define Screen Layout per Activity (Customers)
    In this activity you determine, depending on the transactions (display, create, change) for customer master data, which master record fields
    are ready for input
    require an entry
    are hidden.
    This specification is linked with the field status of the account group and the company code-dependent specification. By means of the link, you can see which status the fields have on the entry screen for master data. In this case, the fields take on the status which has the highest priority. Hiding a field has the highest priority, followed by a display field, a required field and then an optional field:
    Specification for field status definition    Account group     Hide          Req.field  Req.field  Opt.field    Transaction       Display       Display    Opt.field  Display    Company code      Req.field     Opt.field  Opt.field  Opt.field    Result              Hide          Display    Req.field  Display
    Standard settings
    A specification has been made for all transactions.
    Recommendation
    Control the field status via the account groups. It only makes sense to define the field status for each transaction in exceptional cases. This, for example, can be the case if the fields are to be filled when creating and are not to be changed via the change transaction. This would make sense, for example, for the reconciliation account field.
    Activities
    If fields are to have an alternative status depending on the transaction, you determine the status of the fields for the required transaction.

  • How can I change the screen time out when using the notification screen in zoom on the IPhone?

    To clarify, when I am using Zoom and using three fingers to move around on the notification screen.  The screen goes blank even if I am actively moving my fingers across the screen to read the screen.  Why does the notification screen not recognize active movement and go blank after a peiord of time.  I have very limited sight and rely heavly on SIri, text speak, and Zoom.

    Hi BlindmanJay,
    Thanks for using Apple Support Communities.
    iPhone: About General Settings
    http://support.apple.com/kb/ta38641
    Set the amount of time before iPhone locks
    Choose General > Auto-Lock and choose a time.
    Hope this helps,
    Mario

  • I would like the time to be displayed in large print on the notification screen. Does any one know how?

    I would like the time to be displayed in large print on the notification screen on iPhone 4s. Does any one know how?

    not 100% sure what you mean
    smileys are a sequence of chars like ;-¶ which the internet site or program like a chat program replace with an image typically a small gif image
    is your problem that you want to save those images to your harddisk?
    is your problem that you wish some other program then facebook to replace the smiley chars with the images that facebook use?
    is your problem that when you type on facebook your smileys are not replaced with the same images as others (in which case you should prob as which signs they type)

  • I can not find the option for air drop on notification screen

    does anyone know what i should next

    The iPhone 4S does not allow AirDrop.
    If you had a newer iPhone, AirDrop would appear in Control Center, not the Notification Screen.

  • Why don't my all day events show up in the notification screen with ios7?

    Why don't my all day events show up in the notification screen with ios7?

    First I would try to update Reader to 11.0.09.  And yes, try installing the Extended Language Pack.
    If that does not help, can you share such a PDF with us: https://forums.adobe.com/thread/1408375

Maybe you are looking for

  • Urgent help on Pricing - Copy controls in SD.

    Hi, I am facing issue in SAP while copying the %value of the discount condition type from the sales order to invoice incase BOM material exists in sales order. "This is happening if the %value of discount modified in the sales order" - BOM having the

  • I am having a problem to listen radio program online

    HP Pavilion dv7 Windows 7

  • Book Assignment based on Product Revenue Record

    I am trying to figure out a way to assign opportunities to product books based on the product selected in the product revenue field. You can select Revenue as a record type and select the product name as part of the condition. And then assign "revenu

  • What can I do in my system environment?

    My system is CenOS 4.3 and the version of glibc is 2.3.4(glibc6). I have installed both the Sun Studio 11 and Sun Studio Compilers for Linux OS, but I can't compile with neither Sun Compiler nor GNU Compiler. What can I do now?

  • Do I have a battery issue?

    Hello. I got my MacBook on Monday and I'm starting to notice something when I check-up on my battery. It came reading "Capacity: 5200." Today since 11 p.m. it was 5091. Then from 2-3 p.m. it now reads 5001. I dont know what the problem is. I charged