How to enable the screen after triggering the error message

Hi All,
we have a tcode IW31, in that one field(WBS element -PROID) is not mandatory. so we have written the following code to make it mandatory in a user exit EXIT_SAPLCOIH_010.It's triggering the error message, but it is going into disable mode. Please sugget me how to enable the screen after getting the error message triggering.
if not caufvd_imp-proid is initial.
  select single * from t350 into wa_t350
          where  auart    = caufvd_imp-auart
            and  imord    = 'X'.
  if sy-subrc is initial.
    pspel = caufvd_imp-proid.
  else.
    call function 'CONVERSION_EXIT_ABPSP_OUTPUT'
         exporting
              input  = caufvd_imp-proid
         importing
              output = l_posid.
    concatenate text-t10 l_posid text-t11
                into l_textline1 separated by space.
    message i208(00) with l_textline1.
  endif.
else.
  message e208(00) with 'Please maintain WBS element in Location Tab'.
endif.
Thanks

Hi,
Instead of error message use status message like
message s208(00) with 'Please maintain WBS element in Location Tab'.
Leave to screen sy-synnr.
This will allow to move to the screen and have in enable mode.
WIth Regards,
Dwaraka.S
Edited by: Dwarakanath Sankarayogi on Feb 13, 2009 7:46 AM

Similar Messages

  • How do I open safari after quit unexpectedly error message?

    How do I open safari after quit unexpectedly error message?

    Force quit Safari if required, then reopen while holding the Shift key.
    Check the links below for options to remove the Adware
    http://www.adwaremedic.com/index.php
    Remove unwanted adware that displays pop-up ads and graphics on your Mac - Apple Support

  • Lock the Screen after Undocking the Laptop

    Hello,
    I want to know if there is any configuration setting or applications Software that helpme int this:
    I want my laptop to get locked after i undok it from the docking station.
    The Laptop in wich i am trying this is the Thinkpad X201
    I will appreciate your answer
    Thanks!

    Hi Michael
    Are you unable to lock the screen by pressing Ctrl +Alt +Del, then lock the screen?
    Yolanda
    TechNet Community Support

  • At selection-screen problem: triggering an error message...

    Hello experts,
    I have 3 radiobuttons and 1 parameter in my selection screen. it works in such a way that whenever the user clicks on the 3rd radiobutton the parameter will be inputtable. Now, what I want to do is that whenever the 3rd radiobutton is clicked and the user forgot to put a value in the paramater an error message will be triggered saying 'please put a value'.
    Now, creating a code for that is easy but here is the problem: whenever I click on any of the radiobuttons the message triggers. Anyway, below is my code:
    SELECTION-SCREEN BEGIN OF BLOCK box1 WITH FRAME TITLE text-001.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pr_upld RADIOBUTTON GROUP grp MODIF ID id3
                                              USER-COMMAND ucomm.
    SELECTION-SCREEN COMMENT 2(20) text-007 FOR FIELD pr_upld.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 03(15) text-a11 FOR FIELD p_flnme MODIF ID id3.
    PARAMETERS: p_flnme LIKE rlgrap-filename DEFAULT 'C:\' MODIF ID id3.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(22) text-002 FOR FIELD p_dcode MODIF ID id1.
    PARAMETERS: p_dcode LIKE vbak-kunnr MODIF ID id1,
                p_name1 LIKE kna1-name1 MODIF ID id1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pr_list RADIOBUTTON GROUP grp MODIF ID id4.
    SELECTION-SCREEN COMMENT 2(7) text-003 FOR FIELD pr_list MODIF ID id4.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pr_add  RADIOBUTTON GROUP grp MODIF ID id2.
    SELECTION-SCREEN COMMENT 2(3) text-005 FOR FIELD pr_add MODIF ID id2.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pr_edit RADIOBUTTON GROUP grp MODIF ID id5.
    SELECTION-SCREEN COMMENT 2(4) text-006 FOR FIELD pr_edit MODIF ID id5.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 03(20) text-a12 FOR FIELD p_code MODIF ID id2.
    *PARAMETERS: p_kunnr LIKE zts0001-kunnr.
    PARAMETERS: p_code LIKE zts0001-cdseq MODIF ID id6.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK box1.
    AT SELECTION-SCREEN OUTPUT.
    IF v_compflag EQ space.
        LOOP AT SCREEN.
          IF screen-group1      = 'ID1'.
            screen-input        = '0'.
            screen-output       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID2'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID3'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID4'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID5'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID6'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSEIF v_compflag NE space.
        LOOP AT SCREEN.
          IF screen-group1      = 'ID1'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID2'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID3'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID4'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID5'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID6'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    *for users that are not controllers
      LOOP AT SCREEN.
        IF screen-name   = 'P_CODE'.
          screen-input   =  '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
      IF pr_list = 'X' OR
         pr_add  = 'X'  OR
         pr_upld = 'X'.
        LOOP AT SCREEN.
          IF screen-group1   =  'ID6'.
            screen-input     =  '0'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ELSEIF pr_edit  =  'X'.
        LOOP AT SCREEN.
          IF screen-group1   =  'ID6'.
            screen-input     =  '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    *for controllers
      IF pr_upld = 'X'.
        LOOP AT SCREEN.
          IF screen-name      = 'P_FLNME'.
            screen-input     = '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ELSEIF pr_list = 'X'.
        LOOP AT SCREEN.
          IF screen-name      = 'P_FLNME'.
            screen-input     = '0'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    AT SELECTION-SCREEN.
      IF pr_edit = 'X' AND p_code IS INITIAL.
        MESSAGE e008 WITH 'Please specify Code.'.
      ENDIF.
    Again, thank you guys and have a nice day!

    Hi viraylab,
    1. Such validations can be handled in the event
       START-OF-SELECTION.
    2. We should them and other such validations,
       using this logic
    START-OF-SELECTION.
    IF ERRORCONDIDTION.
    <b>MESSAGE 'PLEASE ENTER ' TYPE 'S'
    LEAVE LIST-PROCESSING.</b>
    ENDIF.
      WRITE :/ 'ABC'.
    3.
    The most important statements are
    A) message should be of type I, or S, or W
       (and not error E)
    b) LEAVE LIST-PROCESSING
      (it discontinues the further list showing,
       and again, re-displays, the selection screen)
    regards,
    amit m.

  • In my i phone 4s all the notification sounds come first.after 4-5 seconds the msg,facebook notifications etc.seems to appear on the screen.But earlier the problem was not there.Earlier with instant sound the notifications were there on the screen.how to S

    in my i phone 4s all the notification sounds come first.after 4-5 seconds the msg,facebook notifications etc.seems to appear on the screen.But earlier the problem was not there.Earlier with instant sound the notifications were there on the screen.how to Sort out the Problem?

    No, sounds like when you dropped it an cracked the screen it may have also damaged the logic board or the repair person damaged a cable.

  • I updated my Ipad with IOS7.1.1. After more then 12 hours, the screen still show the Apple logo. How can I shut it down or reboot it?

    I updated my Ipad with IOS7.1.1. After more then 12 hours, the screen still show the white Apple logo. How can I shut it down or reboot it?

    It works really well.
    Thank you for your tip.
    Alain

  • HT4528 My Iphone 4s is plugged in charging after it has fully died. Instead of the apple appearing and staying constant on the screen...the apple is blinking. What does this mean and how do I get the phone to charge/turn back on.

    My Iphone 4s is plugged in charging after it has fully died. Instead of the apple appearing and staying constant on the screen...the apple is blinking. What does this mean and how do I get the phone to charge/turn back on.

    - Try:
    iOS: Not responding or does not turn on
    - Next try letting the battery fully drain. After charging for a least an hour try again
    - Last, make an appointment at the Genius Bar of an Apple store, it appears you have a hardware problem.

  • How can I unlock the screen after a shock lighter?

    how can I unlock the screen after a shock lighter?

    What is a shock lighter? I don't understand what you are asking? If you are saying the the slide to unlock isn't working, try rebooting your iPad.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up

  • My iPod nano will go into the sleep mode while a song is playing a second after the screen goes blank; the song will stop and I will then have to press the sleep/awake button to pick up where the song left off.  How do I fix this?

    My iPod nano will go into the sleep mode while a song is playing a second after the screen goes blank; the song will stop and I will then have to press the sleep/awake button to pick up where the song left off.  How do I fix this?

    Your problem is that your iPod is not sensing that your headset is inserted. There is a pin inside the headphone port on the Nano that senses if it is inserted fully. If it does not sense anything, it will pause playback to save battery power when the screen dims. Here are the solutions:
    Insert it fully. This will fix it for most of you. Press that thing in there all the way. You should feel and hear a full click when it is fully seated. If you can see ANY silver of the headset jack, it is not fully inserted.
    Debris inside the headset port. If you are totally unable to push the headset jack all the way, the most likely problem is that you have crud inside your headphone jack. Try blowing it out or slapping it against your palm with the headset port facing your palm to try and get the stuff out. If you look into he jack with a light, you should be able to see to the bottom. The entire inside of the headset port is white, so if it looks dark at the bottom, that is the crud that is keeping your nano from working.
    Headset jack or plug issue. If you cannot solve the problem with 1 or 2, then there is likely something physically wrong with either the headset jack on your headphones or the headset port on the nano.
    If none of the above works, you need to take it to the Apple store or wherever you purchased it. I think they are still under warranty.
    i

  • How to enable mail list archives in the wiki?

    I have had a group wiki for some time, but the group maillist service was not enabled until recently. When I enabled "server group mail lists" in Server Admin and selected the "Mailing list" option in WGM for this group, I hoped that the "Mail" tab would appear in the wiki after sending a few messages to the group. Not so.
    Using the 'serveradmin' command, it looks like the listArchive option is disabled:
    $ sudo serveradmin settings web | grep -i listarchive
    web:Sites:array_id:123.456.789.12:443wiki.mydomain.ca:mailingListArchive = no
    When I try to change it, serveradmin echos "emptyarray":
    $ sudo serveradmin settings web:Sites:array_id:123.456.789.12:443wiki.mydomain.ca:mailingListArchive = yes
    web:Sites = emptyarray
    ...and the mailingListArchive attribute is still set to "no". Am I doing something wrong? How can I enable group list archives?
    Thanks!

    Found it: Server Admin -> Web -> Sites -> Web Services -> Mailing list web archive. Then go back to WGM -> Groups -> Basic, and the option for mailling list web archive is no longer greyed out.
    Checking the wiki after a webserver restart, I get the "mail" tab now. There are no emails in the web archive, but thats a different issue .

  • Since Yosemite my Macbook 11inch mid 2011 does not see second thunderbolt display anymore. My MacBookPro 13inch Early 2013 works fine, but it swaps the screens after an (re)boot

    Since Yosemite my Macbook 11inch mid 2011 (supports Thunderbolt) does not see the second thunderbolt display anymore.
    My MacBookPro 13inch Early 2013 works fine, but it swaps the screens after an (re)boot.
    Does anyone else experience these problems and/or have solutions

    Hello ROBLAHAY,
    I'm sorry to hear you are having this issue with your MacBook Air. I also apologize, I'm a bit unclear on the exact configuration you are describing. If you are talking about using two external Thunderbolt displays (in addition to the internal display) with your Mid 2011 MacBook Air 11-inch, you may want to be aware that only a single external Thunderbolt display is supported on that model, as noted in the following article:
    3. How many Apple Thunderbolt Displays can I use with my Mac in OS X?
    The table below indicates how many Thunderbolt displays can be connected to Thunderbolt-capable Mac computers in OS X.
    Computer
    Maximum connected displays
    Thunderbolt-capable Macs with Intel HD Graphics 3000 integrated graphics can support one connected Apple Thunderbolt Display (27-inch).
    MacBook Air (Mid 2011)
    MacBook Pro (13-inch, Early 2011) and (13-inch, Late 2011)1
    Mac mini (Mid 2011), 2.3 GHz
    Mac mini with Lion Server (Mid 2011)
    One Thunderbolt display
    Thunderbolt ports and displays: Frequently asked questions (FAQ) - Apple Support
    If you are using just a single external display and still having issues, you may find the troubleshooting steps outlined in the this article helpful:
    Apple computers: Troubleshooting issues with video on internal or external displays - Apple Support
    Sincerely,
    - Brenden

  • I have a ipod from a friend for a replacement. I cracked the screen after still using it I lost total power to turn it back on.

    I have a ipod from a friend for a replacement. I cracked the screen after still using it I lost total power to turn it back on.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
      Apple - iPod Repair price             

  • Installed the update tonight and now my phone (Lumia 928) won't power up.  I've tried a soft reset, but the screen goes from the Nokia logo to a red Verizon screen to a black screen.  What's wrong and how do I fix it?  Help!

    Installed the update tonight and now my phone (Lumia 928) won't power up.  I've tried a soft reset, but the screen goes from the Nokia logo to a red Verizon screen to a black screen.  Tried it 10 times with the same result.  What's wrong and how do I fix it?  Help!

        Oh no Mr.Ected!
    I can see if we can get your phone back on! I understand how important it is to have a phone. Have you tried this to see if we can get it back on? http://vz.to/1DZhteH . If it is still goes to a red Verizon screen and then to black we might need to do a master reset. While the phone is off try this:http://vz.to/1DZhXkU Be mindful this is the last resort because it will erase everything on the phone. If you have done back up assistant in the past you will be able to get you contacts back. Please let me know if you need any more help.
    AmberF_VZW
    Follow us on Twitter @VZWSupport

  • How do I get the tab bar at the bottom of the screen (right above the task bar) WITHOUT Tab Mix Plus?

    ''locking - please stick with your original thread about this problem - https://support.mozilla.org/en-US/questions/934590''
    I like having the tab bar at the bottom of the screen; I use the task bar AT THE BOTTOM to switch between programs, so I want the the tab bar AT THE BOTTOM to switch between web pages. The only way I've found to get the tab bar at the bottom of the screen is the extension Tab Mix Plus. I used it for a long time, and it worked great.
    Unfortunately, when I recently updated to Firefox 14.0.1, I encountered an error: I could no longer middle-click on a link to open it in a new tab (which I do ALL the time). After some troubleshooting, I found that it was being caused by some incompatibility between Firefox 14.0.1 and Tab Mix Plus; upon removing Tab Mix Plus, my middle-clicking was back to normal.
    But without Tab Mix Plus, I'm back to having the tab bar at the top of the screen. I've searched and searched, and I can't find anything besides Tab Mix Plus that will let me put the tab bar at the bottom of the screen. I've found tons of stuff about the option "tabs on top", but that has to do with putting the tab bar above/below the navigation bar--it's still at the top of the SCREEN either way.
    What can I do?

    Reset the pref <b>layout.scrollbar.side</b> to '0' or set to '2' to place the scroll bar at the default right side.
    See:
    * http://kb.mozillazine.org/layout.scrollbar.side
    * http://kb.mozillazine.org/about%3Aconfig
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • How can I use aperture after receiving the full adobe suite? It won't allow me to use it.

    How can I use aperture after receiving the full adobe suite? It won't allow me to use it. I receive a dialogue box which states previews are not allowed in  aperture and the application is shut down.

    Aperture is Apples version of Lightroom. This has nothing to do with Adobe. Ask on a Apple forum. You won't find many people here using this program.
    Mylenium

Maybe you are looking for

  • Regarding MM Data Loads.

    Hi All, I am loading data for MM Cubes, but found that many data sources like 2LIS-02_CGR, 2LIS-02_SCN, 2LIS-02_SGR are blank and not having any data. I am doubting whether I forgot something to be done in R/3 to get the data. I have populated the se

  • Change working mode on X-Fi Titanium Fatality cause system freeze

    Hi. Using X-Fi Titanium Fatality soundcard and latest beta driver. But then I need change working mode (from Game to Audio Creation or Audio Creation to Game) it's cause system freeze. And only hard reset helps. No errors message or error logs in sys

  • X3-02

    Hi all, My daughter was trying to update her Mobile to the latest nokia store but something went wrong and it didint install and even the old application is not there.. we tryed to restore the firmware with nokia suite but there is no option to do th

  • Query about excel email functionality

    Hi, I'm using this FM SO_NEW_DOCUMENT_ATT_SEND_API1 to send excel file as attachment to external emails. the problem is that in development & quality system the excel attachment is going properly, but in production the excel file is getting hugely mi

  • Sharepoint server get all Updates except share point Updates

    hi I have a sharepoint server that sharepoint 2013 has installed on that .my Update server is sccm 2012 r2 and I checked all office 2003,2007,2010,2013 product to be synchronized .every thing is good sccm work fine in synchronizing update with Micros