Calling the subscreen into main screen

Hi Guru's,
      I am having a main screen, which holds 2 radio buttons.
      If I select one radio button it has to call one table control, if I select 2nd radio button it has to call different table control.
      For this I have created two subscreens, each one holds a table control.
based on the selection of radio button I have to call these subscreens in to the main screen.
   Please help me how to call the subscreen into main screen.

There is no help text for this dump                                         
Either the text was inadvertently deleted or the release of                 
the kernel differs from the release of the database                         
Refer to the Note system for further information on            this dump.                                                                               
000160           %_archive TYPE arc_params,                                     
000170         END   OF COMMON PART.                                            
000180   *                                                                      
000190   FIELD-SYMBOLS: <%_1>   %_PREDEFINED.                                   
000200                                                                          
000210   DATA: %_repid     TYPE syst-repid   %_PREDEFINED,                      
000220         %_viaselscr TYPE x VALUE '04' %_PREDEFINED.                      
000230                                                                          
000240   SYSTEM-EXIT.                                                           
000250   PERFORM (sy-xform) IN PROGRAM (sy-xprog).                              
000260                                                                          
000270   * Nach Laden des Dynpros                                               
000280   MODULE %_ctl_init OUTPUT.                                              
000290     %_repid = sy-repid.                                                  
000300     PERFORM %_ctl_init IN PROGRAM sapmssyd USING %_repid IF FOUND.       
     >   ENDMODULE.                                                             
000320                                                                          
000330   * Um DCO                                                               
000340   MODULE %_ctl_output OUTPUT.                                            
000350     %_repid = sy-repid.                                                  
000360     PERFORM %_ctl_output IN PROGRAM sapmssyd USING %_repid IF FOUND.     
000370   ENDMODULE.                                                             
000380                                                                          
000390   * Um DCI                                                               
000400   MODULE %_ctl_input INPUT.                                              
000410     %_repid = sy-repid.                                                  
000420     PERFORM %_ctl_input IN PROGRAM sapmssyd USING %_repid IF FOUND.      
000430   ENDMODULE.                                                             
000440                                                                          
000450   * Erstes Modul in PAI                                                  
000460   MODULE %_ctl_pai INPUT.                                                
000470     %_repid = sy-repid.                                                  
000480     PERFORM %_ctl_pai IN PROGRAM sapmssyd USING %_repid IF FOUND.        
000490   ENDMODULE.

Similar Messages

  • Can i call Standard Subscreen into my custom transactioscreen or Subscreen?

    Hi,
    Please let me know, is it possible toi call Standard Subscreen into my custom transaction screen or Subscreen?
    if you have a code ,help me please.
    Thanks & regards
    Vishnuvardhan

    Hi Vishnuvardhan,
    You can call standard subscreen into your custom transaction Subscreen area.
    Because when you are calling subscreen you have to mention subscreen number and program name . It may be a standard one or custom one
    Regrds,
    Raghava Channooru.

  • Screen meshing into main screen

    Hi All,
    I have an issue in Swing Application Screen .I have main screen and pop up screen when user closes the pop up screen it merges into main screen . it occurs only to specific users at random time .
    Technologies used Swing .
    I need a solution if there is any other way to close the screen.
    PF Source Code below :
    package test;
    public class CustomerBrowser extends UIDialog implements CustomerBrowserInf {  
    private static final long serialVersionUID = 1L;
    public CustomerBrowser(UIDialog pDialog) {  
    super(pDialog, true);
    ibtnOK = null;
    ibtnCancel = null;
    ipnlCustomerBrowser = null;
    iscrRecords = null;
    ilblSearchCustomer = null;
    itxtSearchCustomer = null;
    itblCustomerBrowser = null;
    iFrame = null;
    iCustomerQtbl = null;
    iCustomerNo = null;
    iSearchValue = "";
    iRecordsPerPage = 0;
    iRecordsOnPage = 0;
    iPageNumber = 0;
    public UIButton getbtnCancel() {  
    if (ibtnCancel == null) {  
    ibtnCancel = new UIButton();
    ibtnCancel.setName("btnCancel");
    ibtnCancel.setText("Cancel");
    ibtnCancel.setBounds(570, 230, 80, 25);
    ibtnCancel.addActionListener(new ActionListener() {  
    public void actionPerformed(ActionEvent evt) {  
    onCancel();
    ibtnCancel.addKeyListener(new KeyAdapter() {  
    public void keyPressed(KeyEvent pKeyEvent) {  
    doEvents(pKeyEvent);
    return ibtnCancel;
    public UIButton getbtnOK() {  
    if (ibtnOK == null) {  
    ibtnOK = new UIButton();
    ibtnOK.setName("btnOK");
    ibtnOK.setText("Select");
    ibtnOK.setBounds(570, 200, 80, 25);
    ibtnOK.addActionListener(new ActionListener() {  
    public void actionPerformed(ActionEvent evt) {  
    onOK();
    ibtnOK.addKeyListener(new KeyAdapter() {  
    public void keyPressed(KeyEvent pKeyEvent) {  
    doEvents(pKeyEvent);
    return ibtnOK;
    public UIButton getbtnNext() {  
    if (ibtnNext == null) {  
    ibtnNext = new UIButton();
    ibtnNext.setName("btnNext");
    ibtnNext.setText(">>");
    ibtnNext.setBounds(480, 275, 80, 25);
    ibtnNext.addActionListener(new ActionListener() {  
    public void actionPerformed(ActionEvent evt) {  
    if (iRecordsOnPage >= iRecordsPerPage)
    iPageNumber++;
    onNext();
    ibtnNext.requestFocusInWindow();
    ibtnNext.addKeyListener(new KeyAdapter() {  
    public void keyPressed(KeyEvent pKeyEvent) {  
    if (pKeyEvent.getKeyCode() == 9) {  
    ibtnNext.requestFocusInWindow();
    if (pKeyEvent.getKeyCode() == 37) {  
    getbtnPrevious().requestFocus();
    if (pKeyEvent.getKeyCode() == 39) {  
    getbtnNext().requestFocus();
    doEvents(pKeyEvent);
    return ibtnNext;
    public UIButton getbtnPrevious() {  
    if (ibtnPrevious == null) {  
    ibtnPrevious = new UIButton();
    ibtnPrevious.setName("btnPrevious");
    ibtnPrevious.setText("<<");
    ibtnPrevious.setBounds(395, 275, 80, 25);
    ibtnPrevious.addActionListener(new ActionListener() {  
    public void actionPerformed(ActionEvent evt) {  
    if (iPageNumber > 0)
    iPageNumber--;
    onNext();
    ibtnPrevious.requestFocus();
    ibtnPrevious.addKeyListener(new KeyAdapter() {  
    public void keyPressed(KeyEvent pKeyEvent) {  
    doEvents(pKeyEvent);
    return ibtnPrevious;
    public UIDialog getFrameOwner() {  
    return iFrame;
    public UILabel getlblCustomer() {  
    if (ilblSearchCustomer == null) {  
    ilblSearchCustomer = new UILabel();
    ilblSearchCustomer.setName("lblSearchCustomer");
    ilblSearchCustomer.setText("Customer Number" + ":");
    ilblSearchCustomer.setBounds(490, 12, 160, 20);
    return ilblSearchCustomer;
    public UILabel getlblCustomerKey() {  
    if (ilblCustomerKey == null) {  
    ilblCustomerKey = new UILabel();
    ilblCustomerKey.setName("lblCustomerSearchKey");
    ilblCustomerKey.setText("Customer Search Key" + ":");
    ilblCustomerKey.setBounds(10, 12, 160, 20);
    return ilblCustomerKey;
    public UILabel getlblCustomerName() {  
    if (ilblCustomerName == null) {  
    ilblCustomerName = new UILabel();
    ilblCustomerName.setName("lblSearchCustomer");
    ilblCustomerName.setText("Customer Name" + ":");
    ilblCustomerName.setBounds(170, 12, 160, 20);
    return ilblCustomerName;
    public UILabel getlblTelephone() {  
    if (ilblTelephone == null) {  
    ilblTelephone = new UILabel();
    ilblTelephone.setName("lblTelephone");
    ilblTelephone.setText("Telephone" + ":");
    ilblTelephone.setBounds(330, 12, 160, 20);
    return ilblTelephone;
    public UIPanel getpnlHeaderCustomerBrowser() {  
    if (ipnlHeaderCustomerBrowser == null) {  
    ipnlHeaderCustomerBrowser = new UIPanel();
    ipnlHeaderCustomerBrowser.setName("pnlCustomerBrowser");
    ipnlHeaderCustomerBrowser.setLayout(null);
    ipnlHeaderCustomerBrowser.setVisible(true);
    ipnlHeaderCustomerBrowser.setPreferredSize(new Dimension(
    Integer.MAX_VALUE, 75));
    getpnlHeaderCustomerBrowser().add(getlblCustomer(),
    getlblCustomer().getName());
    getpnlHeaderCustomerBrowser().add(gettxtCustomer(),
    gettxtCustomer().getName());
    getpnlHeaderCustomerBrowser().add(getlblCustomerName(),
    getlblCustomerName().getName());
    getpnlHeaderCustomerBrowser().add(gettxtCustomerName(),
    gettxtCustomerName().getName());
    getpnlHeaderCustomerBrowser().add(getlblCustomerKey(),
    getlblCustomerKey().getName());
    getpnlHeaderCustomerBrowser().add(gettxtCustomerKey(),
    gettxtCustomerKey().getName());
    getpnlHeaderCustomerBrowser().add(getlblTelephone(),
    getlblTelephone().getName());
    getpnlHeaderCustomerBrowser().add(gettxtTelephone(),
    gettxtTelephone().getName());
    return ipnlHeaderCustomerBrowser;
    public UIPanel getpnlTableCustomerBrowser() {  
    if (ipnlTableCustomerBrowser == null) {  
    ipnlTableCustomerBrowser = new UIPanel();
    ipnlTableCustomerBrowser.setName("pnlCustomerBrowser");
    ipnlTableCustomerBrowser.setLayout(new BorderLayout());
    ipnlTableCustomerBrowser.setVisible(true);
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    ipnlTableCustomerBrowser.setPreferredSize(new Dimension(
    new Dimension(Integer.MAX_VALUE, 189)));
    //System.out.println(screenSize.width);
    getpnlTableCustomerBrowser().add(getscrRecords(),
    BorderLayout.CENTER);
    getpnlTableCustomerBrowser().add(getpnlEastCustomerBrowser(),
    BorderLayout.EAST);
    getpnlTableCustomerBrowser().add(getpnlFooterCustomerBrowser(),
    BorderLayout.SOUTH);
    return ipnlTableCustomerBrowser;
    public UIPanel getpnlFooterCustomerBrowser() {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Kanna -
    Check the table V_T588I, Screen headr, tr class A and headr modifier and accordingly
    Check table T588J, assign you field for same header. Also check line and column, Most of the times Columns will be overlapped so before generating table T588J make it single test and see your field result.
    For Example-
    Table - V_T588I
    Screen header, Tr Class, Headr Modifer
    00,                             A,                14
    Table - T588J
    Headr Modifier,     Line,    Column,   IT,              Field Name,       Field Type
    14 ,                          3,        57,          0001,         ABKRS,              DAT
    Hope this helps and am sure will resolve it by moving column numbers.
    - Ashish
    Edited by: Ashish on Aug 21, 2011 5:07 PM
    Edited by: Ashish on Aug 21, 2011 5:11 PM

  • HT4623 My ios update keeps getting stuck on the Restoring iPhone software stage. I uninstalled iTunes and reinstalled it again, but still nothing. Now I can't even use my phone as it shows the plug into iTunes screen. Please help!!!! Thanks,

    My ios update keeps getting stuck on the Restoring iPhone software stage. I uninstalled iTunes and reinstalled it again, but still nothing. Now I can't even use my phone as it shows the plug into iTunes screen. Please help!!!! Thanks,

    A Restore first downloads a new copy of iOS to your computer. On a slow Internet connection this can take a long time. How fast is your connection? How long would you expect it to take to download 900 MB?
    That's assuming nothing is interfering with the download. Some firewalls and antivirus programs will block the download or slow it down. So you should temporarily disable your security software. Security software can also block the update after the iOS download is complete.

  • IPhone 4: My IPhone keeps in the "plug-into-iTunes-screen" after trying to update to iOS 5.0. The phone is not showing up as a device in iTunes anymore.

    My IPhone doesn't turn on and keeps in the "plug-into-Tunes-screen" after update to new IOs 5.0 yesterday. I also tried to restore it, but it still keeps in the plugin mode. In ITunes the IPhone doesn't show up as a device anymore, but Windows 7 detects it as a camera. I started the problem diagnose via ITunes and it says "iPhone can't be found".I'm using the new version of iTunes.
    Can anyone help me?

    I have the exact same problem and have just logged on here to see if anyone can help also?  My iphone is up and working but itunes won't recognise it as a device... just updated itunes aswell.
    Any help would be hugely appreciated!!

  • HT4528 I updated my iphone but it is requiring me to plug in to itunes, I can not get in to it bc my laptop is broken, is there anyway around it? Can I get out of the update? It is stuck on the "Plug into iTunes screen"

    I updated my iphone but it is requiring me to plug in to itunes, I can not get in to it bc my laptop is broken, is there anyway around it? Can I get out of the update? It is stuck on the "Plug into iTunes screen"

    If you are in a screen to plug into iTunes, then the device is in recovery mode. Your only option is to connect to the computer to restore the device. http://support.apple.com/kb/HT1808

  • Call subscreen from main screen

    Dear all,
    I have a subscreen and from that subscreen i am calling another normal screen using 'call screen' statement. After doing some manipulation in the normal screen i want to go back to the subscreen on clicking 'BACK' button. i tried 'leave to screen' and 'call screen' in PAI of normal screen but it is not working. how to come back to the subscreen again?
    Thanks in advance,
    Aswin.

    Dear Friend,
    You include a subscreen screen using the CALL SUBSCREEN statement in the flow logic of the main screen.
    To include a subscreen screen in the subscreen area of the main screen and call its PBO flow logic, use the following statement in the PBO event of the main screen:
    This statement assigns the subscreen screen with number <dynp> to the subscreen area called <area>. With <prog> you must specify the ABAP program in which the subscreen screen is defined. If it does not find a corresponding subscreen screen, a runtime error occurs. The PBO flow logic of the subscreen screen is also included at the same point. This can call PBO modules of the ABAP program in which the subscreen screen is defined. At the end of the subscreen PBO, the global fields from the program are passed to any identically-named screen fields in the subscreen screen. The PBO flow logic of the subscreen screen can itself include further subscreens.
    The name <area> of the subscreen area must be entered directly without inverted commas. You can specify the names <prog> and <dynp> either as literals or variables. If you use variables, you must declare and fill identically-named variables in the ABAP program. The screen number <dynp> must be 4 characters long. If you do not assign a subscreen screen to an area, it remains empty.
    PROCESS BEFORE OUTPUT.
      CALL SUBSCREEN <area> INCLUDING <prog> <dynp>.
    find the Below Example Code.
    DATA: ok_code TYPE sy-ucomm,
          save_ok TYPE sy-ucomm.
    DATA: number1(4) TYPE n VALUE '0110',
          number2(4) TYPE n VALUE '0130',
          field(10) TYPE c, field1(10) TYPE c, field2(10) TYPE c.
    CALL SCREEN 100.
    MODULE status_100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
    ENDMODULE.
    MODULE fill_0110 OUTPUT.
      field = 'Eingabe 1'(001).
    ENDMODULE.
    MODULE fill_0120 OUTPUT.
      field = field1.
    ENDMODULE.
    MODULE fill_0130 OUTPUT.
      field = 'Eingabe 2'(002).
    ENDMODULE.
    MODULE fill_0140 OUTPUT.
      field = field2.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE save_ok INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
    ENDMODULE.
    MODULE user_command_0110 INPUT.
      IF save_ok = 'OK1'.
        number1 = '0120'.
        field1 = field.
        CLEAR field.
      ENDIF.
    ENDMODULE.
    MODULE user_command_0130 INPUT.
      IF save_ok = 'OK2'.
        number2 = '0140'.
        field2 = field.
        CLEAR field.
      ENDIF.
    ENDMODULE.
    MODULE user_command_100 INPUT.
      CASE save_ok.
        WHEN 'SUB1'.
          number1 = '0110'.
        WHEN 'SUB2'.
          number1 = '0120'.
          CLEAR field1.
        WHEN 'SUB3'.
          number2 = '0130'.
        WHEN 'SUB4'.
          number2 = '0140'.
          CLEAR field2.
      ENDCASE.
    ENDMODULE.
    The screen flow logic for screen 100 is as follows:
    PROCESS BEFORE OUTPUT.
      MODULE status_100.
      CALL SUBSCREEN: area1 INCLUDING sy-repid number1,
                      area2 INCLUDING sy-repid number2.
    PROCESS AFTER INPUT.
      MODULE cancel AT EXIT-COMMAND.
      MODULE save_ok.
      CALL SUBSCREEN: area1,
                      area2.
      MODULE user_command_100.
    The screen flow logic of subscreen screens 110 and 130 is:
    PROCESS BEFORE OUTPUT.
      MODULE fill_0110|0130.
    PROCESS AFTER INPUT.
      MODULE user_command_0110|0130.
    The screen flow logic of subscreen screens 120 and 140 is:
    PROCESS BEFORE OUTPUT.
      MODULE fill_0120|0150.
    PROCESS AFTER INPUT.
    When you run the program, a screen appears on which subscreens 110 and 130 are displayed. The pushbuttons on the main screen allow you to choose between two subscreen screens for each screen area. The pushbuttons on the subscreens allow you to transfer the data from subscreens 110 and 130 to subscreens 120 and 140.
    Since the same field name FIELD is used on all subscreens, the identically-named ABAP field is transferred more than once in each PBO and PAI event of the main screen. For this reason, the values have to be stored in the auxiliary fields FIELD1 and FIELD2 in the ABAP program.
    The pushbuttons on the subscreen screens have different function codes, and they are handled normally in an ABAP field. If the function codes had had the same names, it would again have been necessary to use auxiliary fields.

  • Saving Data from subscreen to main screen on a click of a button

    Hi,
    I have a main screen which has multiple subscreens attached to it.
    My problem is when ever i enter the data on the screen and execute a button, the data on the screen is not being saved. what i observed is when ever there is a button press, the data is cleared. i have checked the same in debugging mode as well still then i am not able to see the data which i am trying to store.
    I have attached the code, please help me in this regards,
    Thanks,
    Shanky.
    Main screen:-
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_9020.
      MODULE MZO_DISABLETABSTRIP.
      MODULE CHECK_MANDATORY_DISABLE.
      CALL SUBSCREEN SUB1 INCLUDING SY-REPID '9030'.
      CALL SUBSCREEN SUB2 INCLUDING SY-REPID '9050'.
      CALL SUBSCREEN SUB3 INCLUDING SY-REPID '9060'.
      CALL SUBSCREEN SUB4 INCLUDING SY-REPID '9080'.
      CALL SUBSCREEN SUB5 INCLUDING SY-REPID '9090'.
      CALL SUBSCREEN SUB6 INCLUDING SY-REPID '9070'.
    PROCESS AFTER INPUT.
    MODULE MZI_USER_COMMAND_9020.
    CALL SUBSCREEN SUB1.
    CALL SUBSCREEN SUB2.
    CALL SUBSCREEN SUB3.
    CALL SUBSCREEN SUB4.
    CALL SUBSCREEN SUB5.
    CALL SUBSCREEN SUB6.
    Subscreen - 1
    PROCESS BEFORE OUTPUT.
    MODULE MZO_STATUS_9030.
      MODULE MZO_INITIALIZATION_9030.
    module mzo_routes_display.
    PROCESS AFTER INPUT.
      MODULE MZI_USER_COMMAND_9030.
    PROCESS ON VALUE-REQUEST.
      FIELD ZTTT001-ZFACTNAME MODULE MZV_ZFACTNAME.
      FIELD ZTTT001-ZTTBASICOBJI1 MODULE MZV_ZTTBASICOBJI1.
      FIELD ZTTT001-ZTTBASICOBJI2 MODULE MZV_ZTTBASICOBJI2.
      FIELD ZTTT001-ZTTBASICOBJI3 MODULE MZV_ZTTBASICOBJI3.
      FIELD ZTTT001-ZTTBASICOBJI4 MODULE MZV_ZTTBASICOBJI4.
      FIELD ZTTT001-ZTTBASICOBJI5 MODULE MZV_ZTTBASICOBJI5.
      FIELD ZTTT001-ZTTBASICOBJI6 MODULE MZV_ZTTBASICOBJI6.
      FIELD ZTTT001-ZTTBASICOBJI7 MODULE MZV_ZTTBASICOBJI7.
      FIELD ZTTT001-ZTTBASICOBJI8 MODULE MZV_ZTTBASICOBJI8.
      FIELD ZTTT001-ZSEASONALPROD MODULE MZV_ZSEASONALPROD.
      FIELD ZTTT001-ZROUTEID MODULE MZV_ZROUTE.
      FIELD ZTTT001-ZFPLANTS MODULE MZV_ZPLANTS.
      FIELD ZTTT001-ZTOPLANTS MODULE MZV_ZTOPLANTS.
      FIELD ZTTT001-ZSTACKCONFIG MODULE MZV_ZSTACKCONFIG.
    G_OKCODE2 = SY-UCOMM.
      CASE G_OKCODE2.
        WHEN 'SAVE'.
          " Write code for save as draft version and saving the existing data.
          PERFORM SAVE_AS_DRAFT_VERSION.
        WHEN 'COMP'.
          ZTTT001-ZDOFCOMMENCT = SY-DATUM.
          PERFORM SAVE_DATA_ORIGINATOR.
          PERFORM F_UPDATENWORKFLOW. " Update the database table and initiate workflow.
          LEAVE PROGRAM.
       WHEN 'ENTER'.
         PERFORM save_temporary_data.
         LEAVE TO SCREEN 9020.
        WHEN 'OTHERS'.
    BREAK-POINT.
      PERFORM TT_GENERATE_NUMBER.
      Wa_ZTTT001-MATNR = ZTTT001-MATNR.
      Wa_ZTTT001-ZTTNO = ZTTT001-ZTTNO.
      Wa_ZTTT001-ZORGNAME = ZTTT001-ZORGNAME.
      Wa_ZTTT001-ZORGCONT = WA_ITZTTT001-ZORGCONT.
      Wa_ZTTT001-ZDECNTNAME = ZTTT001-ZDECNTNAME.
      Wa_ZTTT001-ZFACTNAME = ZTTT001-ZFACTNAME.
      Wa_ZTTT001-ZTTCREDATS = ZTTT001-ZTTCREDATS.
      Wa_ZTTT001-ZTTBASICOBJ1 = ZTTT001-ZTTBASICOBJ1.
      Wa_ZTTT001-ZTTBASICOBJ2 = ZTTT001-ZTTBASICOBJ2.
      Wa_ZTTT001-ZTTBASICOBJ3 = ZTTT001-ZTTBASICOBJ3.
      Wa_ZTTT001-ZTTBASICOBJ4 = ZTTT001-ZTTBASICOBJ4.
      Wa_ZTTT001-ZTTBASICOBJ5 = ZTTT001-ZTTBASICOBJ5.
      Wa_ZTTT001-ZTTBASICOBJ6 = ZTTT001-ZTTBASICOBJ6.
      Wa_ZTTT001-ZTTBASICOBJ7 = ZTTT001-ZTTBASICOBJ7.
      Wa_ZTTT001-ZTTBASICOBJ8 = ZTTT001-ZTTBASICOBJ8.
      Wa_ZTTT001-ZDOFCOMMENCT = ZTTT001-ZDOFCOMMENCT .
      Wa_ZTTT001-ZSEAARSHIPTEXT = ZTTT001-ZSEAARSHIPTEXT.
      Wa_ZTTT001-ZPRODHIERARCHY = ZTTT001-ZPRODHIERARCHY.
      Wa_ZTTT001-ZNEWPRODDEV = ZTTT001-ZNEWPRODDEV.
      Wa_ZTTT001-ZPRODNAME = ZTTT001-ZPRODNAME.
      Wa_ZTTT001-ZNOFPALLETS = ZTTT001-ZNOFPALLETS.
      Wa_ZTTT001-ZSTACKCONFIG = ZTTT001-ZSTACKCONFIG.
      Wa_ZTTT001-ZRATFTT1 = ZTTT001-ZRATFTT1.
      Wa_ZTTT001-ZRATFTT2 = ZTTT001-ZRATFTT2.
      Wa_ZTTT001-ZCOMMENTS = ZTTT001-ZCOMMENTS.
      Wa_ZTTT001-ZROUTEID = ZTTT001-ZROUTEID.
      Wa_ZTTT001-ZTOPLANTS = ZTTT001-ZTOPLANTS.
      Wa_ZTTT001-ZFPLANTS = ZTTT001-ZFPLANTS.
      Wa_ZTTT001-ZSHIPMENTNO = ZTTT001-ZSHIPMENTNO.
      Wa_ZTTT001-ZDELIVERY = ZTTT001-ZDELIVERY.
      Wa_ZTTT001-ZTRAILER = ZTTT001-ZTRAILER .
      Wa_ZTTT001-ZPALLET = ZTTT001-ZPALLET.
      Wa_ZTTT001-ZSTONUM = ZTTT001-ZSTONUM.
      Wa_ZTTT001-ZSTATORG = 'Complete Version'.
      MOVE Wa_ZTTT001 TO ZTTT001.
      MODIFY ZTTT001 FROM Wa_ZTTT001.
      COMMIT WORK.
    endform.

    Let's see... if you call the subscreen9030  after 9020 PBO, then in the 9020 PAI you call it again, and the PBO for 9030 initializes the data, didn't you just wipe out what you have entered?

  • How to save three table control in subscreen from main screen

    hi All,
    I have three table control in subscreen and i want to save the content of all the table control from the save button of Main screen how can i do it.
    Thanks
    Narendra Vikram Vishwakarma

    hi
    in main screen PAI
    when 'SAVE'
    write the code here to save it.
    thanks

  • Call the subscreen from a function group

    hi experts.
    i have created a module program in which i need to call a subscreen. the sub screen is created in a function group .
    how can i call it.
    thanks
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 7, 2008 11:45 AM

    deepu K,
    I always have the same problem in such cases.
    Your hints concerning se38 and deleting with /h are very helpful but
    it is diffucult to locate the right location of this problem. I have followed
    your instructions and I get this:
    PROCESS AFTER INPUT.                    
      CHAIN.                                
        MODULE EXIT.                        
        FIELD: RS38M-FUNC_EDIT,             
               RS38M-FUNC_HEAD,             
               RS38M-FUNC_DOCU,             
               RS38M-FUNC_TEXT,             
               RS38M-FUNC_SSET.             
          MODULE SET_XCODE_SE38.            
        FIELD RS38M-PROGRAMM:               
          MODULE PROGRAMM.                  
        MODULE FUNCTION_MENU.               
      ENDCHAIN.                             
      MODULE MNGR_PAI.                      
    Is generally any way to find out very quickly the affected loacation
    in such cases ?
    Regards
    sas

  • K1 keeping showing "Lenovo screen and Powered by Tegra". Won't go into main screen

    Hi,
    I just got my K1 2 days. Was working fine but all of a sudden when i try to power on today, it keeps showing me the Lenovo and Powered by Tegra Screen. It won't go into the main screen. I'm very sure i have enough power on the K1. Tried powering off and on many times but still no luck. 
    Anyone with any advise please? I did not upgrade any firmware or settings. Just installed a couple of children apps. Thanks.

    Sounds lke your bootloader has become corrupt. With the system off, what happens if you press and hold the power button and volume up buttons at the same time for several seconds? Can't say for sure if this will help.
    Thanks,
    Ricochet
    The K1_Was Just A Broken Promise Lenovo

  • What key to press to reboot into main screen?

    Sorry I don't know how to call that screen but I know when I restart I need to hold onto a key and I'll be lead into that screen, I want to delete my Windows XP partition in there. Can someone please tell me what key I should be holding when I'm restarting? Thank you.

    If you are asking how to switch between Windows and OS X then restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the desired startup volume and click on the down arrow button. You cannot delete the Boot Camp partition from the boot manager screen. To delete the Boot Camp partition you must use the Boot Camp Assistant in your Utilities folder.

  • Call the document Approval Workflow screen from a custom KM Details Page

    Hi,
    We are trying to call the Approval Workflow screen from a custom developed KM Details page (using JSPDynpage). How can this event be triggered. We want to trigger the same event that gets called when a user clicks on the Approval Option under Settings in the Details page for a KM resource. Quick response would be much appreciated.
    Thanks and Regards,
    Shibendra

    Hi,
    Refer below links:
    https://blogs.oracle.com/prajkumar/entry/call_oaf_page_from_d2k
    http://oraclearea51.com/11i-oa-framework/17-technical-articles/technical-articles/325-how-to-call-oaf-page-from-form-personalization.html
    http://oracle.anilpassi.com/call-oa-framework-page-from-oracle-forms-passing-parameters-2.html
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How do I split the video into 4 screen? I don't see the picture on picture option!

    How?

    For picture in picture in iMovie 10 (I'm assuming this is what you are using)  - drag the picture you want to add to above the clip in the timeline where you want to add it.  It will 'stick' just above the timeline clip with a link poiting down to it.  At this point the picture will replace the clip completly (default behaviour).  Now move the playhead (white vertical line) to somewhere within the added picture and click on leftmost icon above the viewer (Video overlay settings).  A dropdown menu below gives various options the bottom one of which is picture in picture.  Select thios and you can position and size the picture in the viewer.
    I don't quite understand what you mean "by split into 4 screen".  You can have just one picture in picture, same as before.
    iMovie has a radically changed user interface so it is really necessary to study the help information to find out where things are.

  • I have an iphone 4 and i just dI'd the newest update the ios7.02 i believe or whatever the newest one is, well it says connect to itunes but when i plug my phone into itunes it does nothing and my phone will not go off the "plug into itunes" screen

    my phone wont go off the connect to itunes screen t when i plug it up,it does nothing????

    C Mawle wrote:
    Thanks.  I have followed all the instructions as recommended and nothing has worked so it looks like the restore/update may have been interrupted - would loss of internet connection do this?
    Yes it would, possibly even brick it.
    Have successfully connected my ipod nano with iTunes so looks like the device driver is working.
    Can I use my ipod nano USB connector to check?
    It is not much help to you, since the device that you need still not recognized.
    Anyway looks like I may have to swallow the loss of data.  Have set-up a call for tomorrow with Apple support so will wait until after this before doing the factory restore!
    Good luck, but if you expect miracle from that call good luck again.

Maybe you are looking for

  • Macbook pro 13 inch kernel panics

    completed HD wipe and restore still having issues; Apple Care tech over 6 hrs working on this issue Little Snitch and everything problematic removed. Some of the issues I have in my log: 3/28/13 3:37:24.000 PM bootlog BOOT_TIME 1364503044 0 3/28/13 3

  • An exception occurred during planning process

    Hi All, We are working on Opportunity Planning. as part of it we have configured,planning area, planning level, BPS Lay out &  planning profile in BI. This planning profile is assigned to relevant transaction type in CRM 7.0 system. We have created o

  • E-Mail not send when relevant BP is in more than one partner function

    Dear all, i am facing an big issue. My e-mail action does not work if the bp of the recipient is stored in more than one partner function in this incident. Is this a know bug ? What can i do about that? Best Regards Daniel Edited by: Daniel Titze on

  • HTML Article put together dynamically, scroll only possible after orientation change

    Hi guys, i have encountered the following problem today: im having a HTML page put together dynamically from a JSON source file, handling the JSON information with jQuery. i am uploading said HTML page (html page is empty until the page is in the DPS

  • Bridge scripts and commands not working in PS

    specifically the batch command from bridge ( and also dr browns services) Hit the batch command in bridge - it switches to PS but nothing happens. ps cs5 64 in win7 64. Its a new install.