SUBMIT Question, HEEELLLLPPPP!!!!!!!!!!

Hey Guys,
Here is my problem.  I have an ABAP program that has a selection screen and  creates a report in a ALV format.  When I double click one of the lines on the report, a new program is called using the SUBMIT command with a RETURN, this new program also has a selection screen and then produces a generic looking report.  My problem is that when I hit the back button, I am taken back to the selection screen of my called program, and then when I hit the back button again, I am taken back to the ALV report from the calling program, and then when I hit the back button again I am taken to my selection screen from the calling program.  Is there anyway that I could just hit the back button one time and go directly back to the original selection screen with the original values still contained?  Any suggestions would be appreciated.

Hi,
Are you using VIA SELECTION-SCREEN..If so ..try removing it..
And
After the SUBMIT AND RETURN..
give...
LEAVE TO SCREEN 0..
Thanks,
Naren

Similar Messages

  • Submit question

    I have an IFRAME "detail" which shows me the Shifts I am working on. Suppose there are 2 Shifts I am working on 'Shift A' and Shift 'C'. Then it has 2 rows:
    <tr>
    <select size="1" name="shiftid">
      <option selected value="1">Shift A</option>
      <option value="2">Shift B</option>
      <option value="3">Shift C</option>
      <option value="4">Shift D</option>
    </select>
    <input type="hidden" name="frequencytype" value="1" >
    <input type="text" name="startdate" size="15" value="" >
    </tr>
    <tr>
    <select size="1" name="shiftid">
      <option value="1">Shift A</option>
      <option value="2">Shift B</option>
      <option selected value="3">Shift C</option>
      <option value="4">Shift D</option>
    </select>
    <input type="hidden" name="frequencytype" value="2" >
    <input type="text" name="startdate" size="15" value="" >
    </tr>Now there is a button which, when clicked, opens a popup widnow. In this window I got the list of all Shifts and their respective Frequency Types in the system. I can select 1 or more Shift:
    <tr>
    Shift A
    <input type="hidden" name="shift" value="1" >
    <input type="hidden" name="frequencytype" value="1" >
    <input type="checkbox"  name="cbx_shift" value="" onClick="if(this.checked==true) shift_selected.value='1'; else shift_selected.value='0';" >
    <input type="hidden" name="shift_selected" value="0">
    </tr>
    <tr>
    Shift B
    <input type="hidden" name="shift" value="2" >
    <input type="hidden" name="frequencytype" value="2" >
    <input type="checkbox" name="cbx_shift" value="" onClick="if(this.checked==true) shift_selected.value='1'; else shift_selected.value='0';" >
    <input type="hidden" name="shift_selected" value="0">
    </tr>
    <tr>
    Shift C
    <input type="hidden" name="shift" value="3" >
    <input type="hidden" name="frequencytype" value="2" >
    <input type="checkbox" name="cbx_shift" value="" onClick="if(this.checked==true) shift_selected.value='1'; else shift_selected.value='0';" >
    <input type="hidden" name="shift_selected" value="0">
    </tr>
    <tr>
    Shift D
    <input type="hidden" name="shift" value="4" >
    <input type="hidden" name="frequencytype" value="2" >
    <input type="checkbox" name="cbx_shift" value="" onClick="if(this.checked==true) shift_selected.value='1'; else shift_selected.value='0';" >
    <input type="hidden" name="shift_selected" value="0">
    </tr>Suppose I select 'Shift B' and 'Shift D' and click ok button. In this case what should happen is these 2 Shifts and their respective frequency types should show up in the "detail" IFRAME appended to whatever Shifts we already have in that IFRAME. So finally it would be like this :
    <tr>
    <select size="1" name="shiftid">
      <option selected value="1">Shift A</option>
      <option value="2">Shift B</option>
      <option value="3">Shift C</option>
      <option value="4">Shift D</option>
    </select>
    <input type="hidden" name="frequencytype" value="1" >
    <input type="text" name="startdate" size="15" value="" >
    </tr>
    <tr>
    <select size="1" name="shiftid">
      <option value="1">Shift A</option>
      <option value="2">Shift B</option>
      <option selected value="3">Shift C</option>
      <option value="4">Shift D</option>
    </select>
    <input type="hidden" name="frequencytype" value="2" >
    <input type="text" name="startdate" size="15" value="" >
    </tr>
    <tr>
    <select size="1" name="shiftid">
      <option value="1">Shift A</option>
      <option selected value="2">Shift B</option>
      <option value="3">Shift C</option>
      <option value="4">Shift D</option>
    </select>
    <input type="hidden" name="frequencytype" value="2" >
    <input type="text" name="startdate" size="15" value="" >
    </tr>
    <tr>
    <select size="1" name="shiftid">
      <option value="1">Shift A</option>
      <option value="2">Shift B</option>
      <option value="3">Shift C</option>
      <option selected value="4">Shift D</option>
    </select>
    <input type="hidden" name="frequencytype" value="2" >
    <input type="text" name="startdate" size="15" value="" >
    </tr>My question is how can i do that? If I submit the form from the popup window to the "detail" IFRAME then I would loose the Shifts I already have in the "detail" IFRAME.
    Please answer.
    Thanks

    i dont quite understand ur problem... sowe...
    do u want to pass values from the popup window to the "detail" iframe window?

  • Email Submit Question??

    I have an EMAIL Submit button added to my form. When I email it to someone it comes in as something other than a .pdf.....is there a way for me to set it to send it as a .pdf so users can open it & view it instead of viewing the code...I think it is in .xml format.

    I figured it out....I created a standard button & changed the setting in there to do what I needed it to do. Thanks

  • URL Param + ManagedBean + form submit Question

    Hey,
    I have a managed bean and configured the bean so that i takes params from the url and sets them automatically. The bean parameter is a integer value.
    So when i call samplePage.faces?param1=23 then the bean takes the parameter from the url and i can query the database and present the result. That works perfekt
    My problem is now the following:
    On this page i have a form and some input tags to edit values, and now i want to submit the form and update the record in the database. (The record is identified by the url param)
    But when i submit my form i got a java.lang.IllegalArgumentException - java.lang.IllegalArgumentException exception.
    I thing that is because the action of the form has this parameter not ( action=samplePage.faces without my param) and when the bean tries to get the param from the url, which is not existing, then the exception is thrown.
    Any suggestions what i can do?

    i assume you have 2 managed beans that are in request scope. one bean for the overview page, one for the details page.
    overview page:
    create the link with the h:outputlink component which has one nested h:outputtext (the link text) and several nested f:param components. that means, you write one f:param for every parameter you want to pass to your details page. in your example, this would be only the id.
    ... so now you click the link ...
    details page:
    the id-parameter is available in the field "myId" in your details bean via this entry in faces-config.xml:
    <managed-bean>
              <managed-bean-name>details</managed-bean-name>
              <managed-bean-class>com.DetailsBean</managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
              <managed-property>
                   <property-name>myId</property-name>
                   <value>#{param.id}</value>
              </managed-property>
         </managed-bean>In DetailsBean, first you have to retrieve the data from the database. This could be done in the constructor or in a method annotated with @PostConstruct.
    Also, save the id in a h:inputhidden. You will need the id again in the next step.
    ... now the user edits the data and presses submit ...
    (All Parameters are lost at this point.) In your action, read the id from the h:inputhidden field. Now you have everything to update your database entry.

  • Partial submit question, only partial refresh...

    I all,
    I use a partial submit on a page on a CommandLink.
    I have also a PartialTrigger for the part I want to refresh.
    It seems that when I click, the link, the entire page is submited and only the PartialTriggered part is refreshed.
    Is it possible to avoid the entire page to submit on have only the partialRefresh because, the only data which has changed is changed with a setActionListener enclaused in the CommandLink.
    Thanks.
    Michael

    Hi,
    no, PPR does not refresh independent of a submit
    Frank

  • Where can I get a script  to submit questions and answer them?

    Is there a script out there that works like this?
    Visitor asks question on website, goes to Admin section. Admin answers question and now question and answer are posted together on the front page. Front page is constantly updated with these answered questions, newest on top. Search on top should search all of answered questions.

    It wouldn't be a script. You're asking about a whole category of functionality, including training the person who answers the emails.
    This could be implemented in a variety of ways, with a variety of capabilities, and with a variety of requirements and levels of efficiency. The choice you use will depend a lot on the hardware you're running on, the server and tools you use for your existing site, the amount of activity you expect, etc.
    If you're using an existing, well-supported application server and web development environment, then I expect that what you're asking for could be built within it pretty easily. It might even be available pre-built. But it's not like there's some generic "q/a tool script" in fifty lines of Java code that you can just dump on any web server and have it work magically in all cases.

  • ITunes Rental Problem and no way to submit questions to Itunes help desk

    I need to send a message regarding some rental movies I got that won't download to my Ipod, but every time I go to the support page and fill in my account information, it asks me to choose a catagory for my question but doesn't show any catagories to choose. Does anyone have the email address for the Itunes support center so I can ask them what the heck is going on?

    There is no published email address for the iTunes Store. The web forms are the only contact method provided.
    I presume you're using this page, yes?
    http://www.apple.com/support/itunes/store/browser/
    If so, try clearing your browser's cache and try the page again. If you continue to have problems with the page not displaying any categories, you might try a different web browser.
    As to your problem, what model of iPod do you have? Are you aware that rentals are only supported on the iPhone, iPod touch, iPod classic (released in September of 2007 - the older 5th-generation iPod does not support rentals), or iPod Nano (3rd generation)?

  • HT1349 I received a new logic board and now my computer has no serial number under 'about this mac', and I need it to submit questions to apple.  What do I do?

    I can't find the serial number for my mac after getting a new logic board on recall for my macbook pro.

    You can open System Profiler and see if it contains your serial number.
    Or have the computer near a previous connected Wifi or on a Ethernet cable to your router.
    Reboot holding the D key down for like what would appear to be 10 minutes until Hardware Test appears on the screen.
    You can run a test if you wish.
    There is a pane at the top if selected will give you your new serial number.
    You also can use Terminal
    You can quickly retrieve any Macs serial number via the command line by using the following command string:
    system_profiler |grep "r (system)"
    The command results will look something like this:
    $ system_profiler |grep "r (system)"
    Serial Number (system): C24E1322XXXX
    If that fails you can give them your MAC address which is unique to each machine and there are records at Apple with it.
    Open Utilities > Terminal. Copy, paste and press enter:
    For your computers Ethernet (wired) MAC address: ifconfig en0 | grep ether
    For your computers Airport (wireless) MAC address: ifconfig en1 | grep ether

  • How to submit question to Apple Support?

    while watching movies, reading, etc. wifi connection drops at home on wireless and when using Hotspot with iphone 4.  to reconnect, it asks for a password. it will reconnect after entering the router pass key, which is more than 15 numbers and characters.  all other devices are fine.  this was sporadic previously but is more frequent lately.  router is not the problem.  I don't see any wifi settings on the ipad that could be causing the problem.  supposedly the OS version is 4.3.3 (why isn't this a choice in the dropdown on this site).  I don't really have an interest in "discussing" this with other users - no offense intended.  just want response from Apple support.  thanks.

    You can also call Apple tech support at 800-275-2273.
    As Tamara said, you will not get official support from Apple in these forums. You may, however, get responses from very experienced and knowledgeable users (often more experienced that the first-line support at AppleCare), so you might want to give folks a chance to assist. Up to you, though.
    an appointment? do I get charged a fee if I miss it without 24 hour notice?
    No, you just need an appointment since the Genius Bars almost always are quite busy. Without an appointment you may have a very long wait or not be able to get help at all that day.
    Regards.

  • Keep being prompted for security questions?

    On any device (Ipad, Iphone 4S, Windows desktop), when purchasing any item (Ibook, Itunes, app store), I keep getting asked for username and to supply 3 security questions.  I provide questions/answers, but can never get past that screen.  A large black box appears and nothing is ever purchased or charged.  If I close out and return later, I'm asked to re-select 3 security questions/answers.  I re-enter same questions/answers, etc., etc.  This has been going on several weeks.
    I have submitted this online through Apple express line twice, but never received any reply back after many days.  I called Apple, but they said it would need to be addressed by Itunes.  I've   Online Itunes customer support has never responded.  changed credit card information. I've gone online to try to submit questions/answers, but was asked a different single question under My Account.  All very frustrating!
    I have to assume it's an account problem since affects all device and all products.  But I can't find anyone anywhere to help resolve.
    Any suggestions for fixing?  Or for a contact for resolving such issues (the "I'd really like to spend money on Apple products but your software won't let me" problem)?
    Thanks.

    I am copy and pasting my response to another thread - let me know if this is helpful to you or if you aren't using a Mac.
    Cancel / close any Adobe products.
    On Mac, open Terminal (Utitlities > Terminal), and type:
    sudo nano /private/etc/hosts
    You will need to then type in your administration password.
    Then make sure that any lines that look like:
    127.0.0.1       *.adobe.com
    etc, are removed.
    Generally, your Hosts file should have no additional entries after the commented section - but check before you remove any lines.
    I don't know the exact lines for Adobe that you will need to remove - but I think they should be pretty self explanatory.
    Press CONTROL + O and it will ask to Save as Filename, hit Enter to save.
    Next, you will need to flush your DNS cache.
    Type into Terminal:
    dscacheutil -flushcache
    Exit Terminal, restart AAM and you should be sorted.
    GB

  • Tutorial code summarizing recent questions

    I'm woke up early and can't sleep so I'll try and do something that will hopefully help some Java newbies.
    This is a Java testing application. It provides user's with various java related questions. It can be run as either an applet or an application. If it is run as an applet, then the applet will need to be signed if is to access any local resources on the user's machine.
    This program addresses some recently asked questions on the forum such as:
    1) Can methods be placed in a constructor
    2) How do you do without extending a Frame in a GUI app
    3) Java GUI applications are difficult
    4) Applets are a lot more complicated than regular GUI applications
    5) When should final variable be used
    6) Java homework problem - help needed
    7) Help with regular expressions
    8) IDE recomendation (I started with notepad then moved to JCreator)

    /* File: QuestionGUI.java
    package com.company.javatester.gui;
    import com.company.javatester.data.QuestionDAO;
    import com.company.javatester.model.Question;
    import javax.swing.*;
    import javax.swing.border.TitledBorder;
    import java.awt.event.*;
    import java.awt.*;
    * The question interface.  Would be better to have some sort of
    * Question controller to separate the business logic
    public class QuestionGUI {
       /** Title used for dialogs */
       private static final String title = "Java Tester 2k6";
       /** Data access object for retrieving questions */
       private final QuestionDAO questionDAO;
       /** Component used for GUI. Note that composition is used instead of inheritance */
       private JPanel contentPane;
       /** Label which displays question for user */
       private JLabel questionLabel;
       /** Area which the user will enter anser into */
       private JTextArea answerInput;
       /** The current question */
       private Question question;
       /** The number of questions the user has answered */
       private int questionCount = 0;
       /** The id for the first question. */
       private int firstQuestionID = 0;
        * Construct a question graphical interface with the given Question DAO.
        * @param questionDAO  the data access object for retrieving questions
       public QuestionGUI(QuestionDAO questionDAO) {
          this.questionDAO = questionDAO;
          // Note that methods called in the constructor can't be overrided
          // either directly or indirectly
          initComponent();
          // Start a new test
          startTest();
        * Initialize the component.  This method can't call any methods that
        * can be overriden since it is called by the constructor.
       private void initComponent() {
          // Initialize the component that will contain all the other components
          // for the question GUI
          contentPane = new JPanel(new BorderLayout(4, 4));
          // Initialize the question label
          questionLabel = new JLabel();
          questionLabel.setBorder(new TitledBorder("Question"));
          questionLabel.setVerticalAlignment(SwingConstants.TOP);
          questionLabel.setPreferredSize(new Dimension(300, 90));
          // Initialize the input area for capturing the user's answer
          answerInput = new JTextArea();
          answerInput.setPreferredSize(new Dimension(300, 100));
          // Initialize the button for starting the test
          JButton startButton = new JButton("start");
          startButton.addActionListener(new StartTestListener());
          // Initialize button for submitting answer
          JButton submitButton = new JButton("next");
          submitButton.addActionListener(new SubmitQuestionListener());
          // Add all the components to the question gui component
          JPanel buttonPanel = new JPanel(new GridLayout(1, 2, 4, 4));
          buttonPanel.add(startButton);
          buttonPanel.add(submitButton);
          contentPane.add(questionLabel, BorderLayout.NORTH);
          contentPane.add(new JScrollPane(answerInput), BorderLayout.CENTER);
          contentPane.add(buttonPanel, BorderLayout.SOUTH);
        * Start a new test.  This method can't call any methods that
        * can be overriden since it is called by the constructor.
       private void startTest() {
          questionCount = 0;
          // Note: Data access calls be done on separate thread if doing
          // extensive I/O to increase GUI responsiveness
          Question firstQuestion = questionDAO.getRandomQuestion();
          firstQuestionID = firstQuestion.getID();
          // Set the first question for the test.
          setQuestion(firstQuestion);
        * Set the current question.  If <tt>null</tt> then the test is over.  This
        * method can't call any methods that can be overriden since it is INDIRECTLY
        * called by the constructor.
        * @param question  the question to set as the current question
       private void setQuestion(Question question) {
          if ((questionCount > 0) && (question.getID() == firstQuestionID)) {// The test is over
             int choice = JOptionPane.showConfirmDialog(
                contentPane, "Done.\n\nDo you want to start over?",
                title, JOptionPane.YES_NO_OPTION, JOptionPane.INFORMATION_MESSAGE
             if (choice == JOptionPane.YES_OPTION) {
                startTest();
          } else { // set the current question
             this.question = question;
             questionCount++;
             questionLabel.setText("<html>" + questionCount + ") " + question.getText() + "</html>");
             answerInput.setText("");
          // set focus to the answer area as convenience to user
          answerInput.requestFocusInWindow();
        * Get the component of this GUI
        * @return  the component of this GUI
       public JComponent getComponent() {return contentPane;}
        * Listener for button to start test.  It's been argued that this
        * should be a static class
       private class StartTestListener implements ActionListener {
          /** Start the test */
          public void actionPerformed(ActionEvent e) {
             startTest();
        * Listener for button to submit question anser.  It's been argued that this
        * should be a static class
       private class SubmitQuestionListener implements ActionListener {
          /** Validate user's answer */
          public void actionPerformed(ActionEvent e) {
             if (question == null) { // No question to validate answer against
                return;
             // Check if the user's answer is "correct"
             if (answerInput.getText().matches(question.getAnswer())) { // Correct
                JOptionPane.showMessageDialog(
                   contentPane, "Correct!!!", title, JOptionPane.INFORMATION_MESSAGE
                setQuestion(questionDAO.getNextQuestion(question.getID()));
             } else { // Incorrect
                JOptionPane.showMessageDialog(
                   contentPane, "Try again", title, JOptionPane.WARNING_MESSAGE
    }

  • I-Tunes Logo for Radio Show Question  (Copyright)

    Good morning,
    Does anybody know if it is persmissible to use the I-tunes Logo without violating copyright laws? I have included the logo in the background of my promotional image for my radio show since the format of my show is new music from I-tunes. I wouldnt want to go about using it and violating copyright protection laws.
    Who should I contact to obtain persmission?
    Thanks,
    -Carlos

    Does anybody know if it is persmissible to use the I-tunes Logo without violating copyright laws
    Not without written permission from Apple, no, it's not permissible. And I would suspect that you won't be able to get such permission:
    "1. Endorsement or Sponsorship: Apple does not support the use of its logos, company names, product names, or images of Apple products by other parties in marketing, promotional or advertising materials as their use may create the perception that Apple endorses or sponsors the product, service or promotion."
    but you can ask. For full information and a contact to which you can submit questions (bottom of the page), see:
    http://www.apple.com/legal/trademark/guidelinesfor3rdparties.html

  • HELP! iPhone 4 is BLANK after trying to update to iOS 6, error message during restore...

    I tried to submit question to Apple Support, but I have to enter my phone's serial number and it doesn't work! From what I can gather, it wasn't restored, so I can't get the serial #!!!
    When I connected to iTunes earlier this evening, a window popped up about updating iOS.  (I had to update thru iTunes b/c I've never updated iOS!) 
    I chose "download & update".  After ~2 hours of downloading software, it began doing some different things, soon after it started the restore process, an error message popped up.  The first suggestion was to download the newest version of iTunes, which I did, next-restart laptop, opened iTunes, and iPhone doesn't show as a device, and choices like "sync" are gray (can't choose them).
    By looking through and reading other questions and answers in the community, I think I've found the backups stored on my computer. 
    I just can't get anything to work.  proc
    I love my phone, please, please help! 
    In pretty easy to understand terms.  (please no talk of clouds, etc. )
    I didn't do any backups myself prior to starting b/c it clearly said all of those things would be backed up and restored during the process. 
    thank you!

    when I started the update I was at the end of the preparing to download phase and now my screen is just flashing on and off with apple logo

  • HTTP 404 Not Found - FLOWS_030000.F

    I have an application which i exported (via apex) from a production database. I installed the exported file to development database and workspace. I did take measures to ensure the workspaceid's matched by editing the file, I also ensured wwv_flow_api.set_security_group_id(p_security_group_id=
    would be the same by editing the application export file.
    I installed the application export to a new schema and workspace without any errors but when I run some of the pages, I'm getting an error of 404 Not found. Upon review of the Apace logs, I see.
    HTTP-404 ORA-20001: Package variable g_security_group_id must be set.
    ORA-06512: at "FLOWS_030000.F", line 276
    ORA-06512: at line 10
    I'm not seeing where "FLOWS_030000.F" is looking for g_security_group_id.
    Also, on import/install of the application in the new db, I did allow it to generate a new applicationid rather than using the existing one from the script since it was already being used. Both db's are 10.2.0.2

    Scott,
    I did install the app in a new workspace with an auto generated app id the first time without any luck. I then searched the forum on the error "package variable g_security_group_id must be set". This is where I found some responses to editing the export file to ensure the workspace id's will match.
    Anyway, I started over, deinstalled the app, took a current export and installed it into a new workspace with a new app id.
    The application is the Ask The Expert app with a few modifications. The error "ORA-20001: Package variable g_security_group_id must be set." is coming up when you are on page 41 (When you accept the New Questions Policy) and click the continue button. This should take you to Page 2 (Submit Question) page but it throws the above error. Running debug isn't helpful to me in trying to figure out why the error keeps coming up.
    What else can I do to troubleshoot? I can't even run page 2 alone so I'm fairly certain this is where the error is coming from.
    Any insight would be very helpful.
    Thanks!

  • Can't get Apple support anymore?

    Does anyone know how to get support from Apple?  I know I used to be able to submit questions to them, but now when I try it takes me to some "Express lane" for Itunes support and I can't even start the process because it asks for my serial number.  Ummm... sice when does Itunes have a serial  number? 
    Do they no longer offer support for Itunes or something?
    Anyone know how to proceed?

    Any suggestions?  I know I used to be able to get "official" support from apple...

Maybe you are looking for

  • Using variable in Payload Zip Bean

    Hi to everyone, in my scenario I'm using receiver file adpater to create a zip file with payload and its attachment using Payload zip bean Module. In the parameter Transform.ContentType I insert:text/xml;name = 'test.xml' for the payload and text/xml

  • Mouse not working in winxp

    I have just put the k8t neo board and athlon 64 3200 in my sytem - the trouble is the mouse won't work in winxp pro it boots to the log on screen but i can't select the user so I can't log on and go anu further. No joy if I boot to safe mode either.

  • 7.7.1 No longer Available in iTunes Downloads?

    Hi. I have been back more than once to the Downloads/iTunes page (and a few others too) and can not find the download for 7.7.1 anywhere! All I can find is the 7.7 download. I've been looking for over a week now. Am I just not seeing it or has it bee

  • Diskpart script - clean doesn't work

    We have a diskpart script - see below - to setup the partitions correctly on our Windows 8.1 tablets. The second line should clean the disk so that there's nothing left of the old install to confuse things. However this bit doesn't seem to work. The

  • Login issues with Mobile Theme 50

    Hi All, I have an APEX 4.2 application (Mobile Theme 50) which is running on Oracle 10g and is being accessed via iPads. Whenever you exit out of the application by clicking on the iPad button and go into any other App, Mail, Calendar etc, you are fo