How to stop the 2nd screen processing from fristscreen

Hi Friends,
I have a problem in modulepool program, my user  wantsto display the information message in screen1
without calling the 2nd screen.
for example.
user give the some input to screen fields, the system compare the what ever given inputs in screen1 is correct or not,
incase the information is not correct, that time my user wants the information message,
i wrote the information message in screen1 PAI, the message was displayed successfully but when i click the enter button the system calls the 2nd screen , what my user exact requirement is  system does not call the second screen, he want to shows the frist screen after getting the message.
Can you please tell me solution.
Thanks
CHINNU

instead of information message...use pop_to_confirm .....and remain in the same screen....
    CLEAR v_response.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
         EXPORTING
              titlebar              = 'Confirm Posting'
          text_question         = 'Do you want to Post Documents'
            text_question         = text_question
              text_button_1         = 'Yes'
              text_button_2         = 'No'
              default_button        = '2'
              display_cancel_button = ' '
              start_column          = 25
              start_row             = 6
         IMPORTING
              answer                = v_response
         EXCEPTIONS
              text_not_found        = 1
              OTHERS                = 2.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CHECK v_response = '1'.
Edited by: sugunav on Sep 8, 2009 6:04 PM

Similar Messages

  • How to stop the new health application from Count the steps/ woking background?

    how to stop the new health application from Count the steps/ woking background?
    I really need your help

    I agree with Mr. Hall that using mx.controls.Alert in Flex may be a better route.
    Show the Alert like this:
    // show an alert with a question and yes and no choices
    Alert.show( "Would you like to go to the Adobe Forums?", "Question",
         Alert.YES | Alert.NO, this, closeHandler, null, Alert.YES );
    Then handle the response in the closeHandler() function:
    protected function closeHandler( closeEvent:CloseEvent ):void
    if( event.detail == Alert.YES )
         navigateToURL( new URLRequest('http://forums.adobe.com'), '_self' );
    else if( event.detail == Alert.NO )
         // they chose no
    The following documentation on Alerts may be helpful:
    http://www.flexafterdark.com/docs/ActionScript-Alert
    Let me know if that helps...
    Ben Edwards

  • How to stop the apps screen from appearing while in the internet.

    How do i stop the application screen from keep appearing on my ipad. Every page i go it appears. Its annoying. I have my pop up blocker on.

    What do you mean by "the application screen"?

  • How to stop the registration screen

    I have had to reinstall my copy of FCE-HD. Since I had already registered when I first installed it, I don't want to send a second registration for the same product in if I don't have to. Is there a way to stop the "reminder to register" screen when I start up the program? It's not a major issue but it is annoying. Or, would the second registration of the program simply overwrite the first registration I had sent?

    A second registration wouldn't do anything. It's the only way to stop the registration screen.

  • How to stop the duplicate idoc processing ? whar need to done SAP R/3

    Hi All
    If the Same Idoc is processed to SAP R/3 then what to do for not processing
    the duplicate IDOC ?
    Or some thing like this...
    If by mistake same idoc processed then how to avoid to process the idoc?
    what i need to in SAP R/3 side?
    Regards
    Kiran lvs

    Hi
    some thing like this:Using T.code: we19 ...Idoc processed a day ago
                                           today by using the same t.code we19 ..processed the
                                           same  idoc, what  i sent a day ago.
                                           Here how to stop this duplicate processing ?
    I hope this is clear...else pl put a note
    regards
    Kiran lvs

  • Can anyone tell me how to stop my iPad screen changing from vertical to horizontal display

    Can anyone help me stop my iPad mini screen jumping from vertical to horizontal display, have just downloaded ios7 and this has just started

    Sometimes the Rotation Lock can be in the Control Center.

  • How to stop the std SUS method from being called

    Hi
    I am working on SRM - EDI integration for NON SUS vendor.I am using a custom mapping and custom method call in this case.i have placed the logic in the std. mapping BADI - BBP_SAPXML1_OUT_BADI.i am triggering my custom method call in this method only.but i am unable to stop the control flow here after as i need not to trigger the Std. process.
    Regards,
    Durgaprasad Kare.

    Hi Durga,
    The BADI BBP_SAPXML1_OUT_BADI is meant for mapping purposes in the outbound proxy object and cannot be used to control the message flow.
    What I would suggest you to code the custom logic in the BBP_DOC_SAVE_BADI where is you can check the vendor and determine the custom message needs to be trigerred. Besides you have a check at XI level to block those mesages that are not needed.
    Regards
    Kathirvel

  • How to stop the black screen when opening firefox

    When I open a Firefox page it is just a black screen, no URL bar no Back, Forward or Home button nothing appears. After a couple minutes I can mouse over some stuff (mostly the blank spaces where you can enter text) and it will appear, but still can't see the "buttons" or menus (i.e.Internet options). Need to access the internet options to choose no proxy but I can't.

    May need to reinstall

  • How to stop the 2nd thread when 1st thread caught exception.

    Hello Friends,
    I have written a java program using Thread.
    In this program i have created two separate threads.
    For example Thread1 and Thread2.
    During execution of both threads,
    If any exception comes on Thread1 or Thread2, the other thread should not be continued its execution. Suddenly the other thread has to interrupted its execution.
    How to do this. If any body know the way to do this, please help me.
    Rgds
    tskarthikeyan

    Try this. It was working Fine.
    public class ThreadComm {
         public static volatile boolean exceptionThrown= true;
         public static void main(String[] args) {
              Thread t1 = new Thread(new Runnable() {
                   public void run () {
                        try {
                             /*if (exceptionThrown) {
                                  System.out.println("First Thread Interrupted");
                                  return;
                             for(int i=1;i<=5000;i++){
                                  System.out.println("FirstThread>>"+i);
                                  if(i==2500) {
                                       throw new Exception("First Thread Interrupted");
                        }catch(Exception e) {
                             exceptionThrown = false;
              Thread t2 = new Thread(new Runnable() {
                   public void run() {
                        try {
                             /*if (exceptionThrown) {
                                  System.out.println("Second Thread Interrupted");
                                  return;
                             for(int i=1;i<=1000;i++){
                                  System.out.println("SecondThread>>"+i);
                                  if(i==777) {
                                       throw new Exception("Second Thread Interrupted");
                             int i=0;
                             while(exceptionThrown && i<=5000) {
                                  System.out.println("SecondThread>>"+i);
                                  if(i==4000) {
                                       throw new Exception("Second Thread Interrupted");
                                  i++;
                        }catch(Exception e) {
                             exceptionThrown = true;
              t1.start();
              t2.start();
    }

  • How to stop the Firefox Awesome Bar from defaulting to Bing searches vs. Google?

    Whenever I use the Awesome Bar within the browser Bing is defaulted to instead of Google. Occasionally the Awesome Bar will go to Google search but does not do so exclusively anymore. I have never downloaded the Bing extension and for good measure have ensured my keyword.URL value is set to "http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=" as well as disabling all extensions. Even when doing a full reinstall the problem still persists with seemingly no solution.
    == Operating system ==
    Windows Vista Home Premium 32bit

    You may be having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not coming from one of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] and select ''Disable all add-ons''. If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and theme. You can troubleshoot plugins the same way.
    If you want support for one of your add-ons, you'll need to contact its author.

  • How to stop the noisy screen when opening and closing?

    Whenever I open, close or adjust the angle of my laptop screen it makes an annoying creek and click sound. The sound usually varies whether its loud or faint.
    I think it's friction or something. Can I lube it up some way?
    Any suggestions?
    Thanks.
    Dorian

    Try a RadTech Glide Kit…
    http://www.radtech.us/Products/Glides.aspx

  • How to stop the upload process?

    Hi,
    i had by mistake started the other upload than the required!
    How to stop the current upload process,( generally it takes lot of time to upload the data as data is huge )
    Thanks,
    Ravi

    Hi Ravi Kottur 
    Just follow the things like Sunil suggested check one more just kill the process
    manually and goto RSMO and in the Monitor QM status just Amke it red manually
    for the load which you want to stop and then go to that particular info provider
    Manage and delte the request.. 
    Hope itz clear a little atleast...!
    Thanks & Regards
    R M K
    ***Assigning pointz is the only way of saying thanx in SDN ***
    **Learning the thingz is never end process if u stop it will Be a devil if u continue it will be a divine***
    > Hi,
    >
    > i had by mistake started the other upload than the
    > required!
    >
    > How to stop the current upload process,( generally it
    > takes lot of time to upload the data as data is huge
    > )
    >
    >
    > Thanks,
    > Ravi

  • How can I stop the recent and favorites from show on the screen of my i-phone and i-pad, this is a new feature of iso 8

    How can I stop the recent and favorites from show on the screen of my i-phone and i-pad, this is a new feature of iso 8

    Hi AppleLove78,
    I'm sorry to hear you are having issues with your new iPhone 6. If you continue to have audio or call quality issues, you may find the information and troubleshooting steps outlined in the following article helpful:
    If you can't hear a person on a call or voicemail or if the sound quality is poor on iPhone - Apple Support
    Regards,
    - Brenden

  • HOW TO STOP THE PROCESS CHAIN WHICH IS RUNNING IN THE PRODUCTION?

    HI ALL,
    CAN ANYONE TELL ME HOW TO STOP THE PROCESS CHAIN WHICH IS RUNNING DAILY AT 5.00 PM. I NEED TO STOP THE PROCESS CHAIN FOR COUPLE OF DAYS AND THEN RESTART IT AGAIN.
    cAN ANYONE TELL ME THE PROCEDURE TO STOP THE ENTIRE PROCESS CHAIN RUNNING IN THE PRODUCTION.
    THANKS
    HARITHA

    Hi,
    First and foremost let me advice you to be very careful while doing this.
    For Rescheduling
    RSPC> chain > Goto > Planning view and
    click on Execution tab > select > Remove from Schedule and then in Maintain variant of start process reschedule for the day you require it to run.
    For terminating active chain
    You can start from SM37, find the process WID/PID then go to SM50 or SM51 and kill it. Once its done come back to RSMO and check the request, it should be red but again manually force to red and save by clicking on the total status button in the status tab. This shuld ensure that the process is killed properly.
    The next step will be to go to targets that you were loading and remove the red requests from those targets.
    Note: For source system loads you may have to check if the request is running in the source system and kill if needed and pull it again.
    But for BW datamart delta loads u may have reset the datamarts in case u are going to pull the delta again.
    Re: Kill a Job
    Re: Killing a process chain.
    Regards,
    JituK

  • How to stop the dock from showing all hidden images when hiding then showing applications

    How to stop the dock from showing all hidden images when hiding then showing applications

    It's not really something to snap a screen shot of. I believe it would need to be a video clip. For instance, when I am working on multiple images in Photoshop, I often need many images open at the same time, but I only have one image viewable and active. The hero image is active on screen while I hide the other images in the dock by hitting the yellow - button on the images. Then I "Hide" Photoshop to do something in the Finder. When I go back to Photoshop, every image that is hidden in the dock will pop open again in the active window, not just the image I was currently working on. I want these images to stay in the dock until I need them, no matter how many times I Hide the Show Photoshop.

Maybe you are looking for

  • How can i change the sequence of my photo's in the album

    i tried to make an album whereby the id-number of the photo's are not used. When I fi.i. a presentation it is using the id-number of the photo's. So the presented sequence is not what I want.

  • "Insufficient Memory" error message

    I got "Insufficient Memory" error messages in working on the job needed large files ( > 100MB) with AI 5.5 in office with below #1 PC spec. Error message starts to happen after working 15min to 1 hour depends on the file. I need to restart computer i

  • Availability of products based on product status

    Hello I have the following requirement that needs to be implemented in CRM 7.0. "Based on product statuses, we'd like to stipulate which product can be used for new orders and which products can be used only for change orders." For example let's say

  • HT5634 What do I do now and how do I do it? (BootCamp & Engineering student probs)

    I'm an engineering student and I really need to get my computer to run software that my classes require, so I decided to install BootCamp. It was a very difficult process, and after much time and patience, I got passed the partitions-step and restart

  • Nokia 6600 Symbian 60

    Does anybody knows if Nokia 6600 -Symbian 60- accepts Acrobat Reader?. In Adobe website they say it only works on following Nokia's phones: - Nokia 6680 Smartphone. - Nokia Communicator 9500 / 9210 / 9500. Is that true?. In this forum I've read diffe