What is the reason of window not being called

Hello,
I am working with a copied form YY_MEDRUCK. This form is to produce purchase order details ouput. there are about 9 windows on First page which are in following orders.
1MAIN
2 ADDRESS
3 CONSGNE
4 DELDATE
5 FOOTER
6 HEADER
7 INFO
8 INFO1
9 LOGO
Problem is that window CONSGNE is not called. I know it because first of all it was not showing the address on the desired position on the first page, then for the confirmation I debugged the form when ME23N was called and when I tried to see the print preview.
I found the while debugging the form, all the windows got called off but CONSGNE window was not called.
Could someone let me know if window is defined in a form the the page then why window is not called. Any suggestion for this ?
Thanks,
Mark

I am really kind of getting confused over here. Previously changes were done by some other guy. Now though the form is a copied form but the same form is working in productive system and values are coming when I debugged in productive system there CONSGNE window was getting called.
print program for this is SAPFM06P for ouput type Y009, same output type is also used in productive system.
Now I donot know as this is a standard print program and even if I debug the print program i do not know where to put the break point so that I can actually see why window is not being called. The problem is i am not supposed to make changes in the standard program and only in YY_MEDRUCK form.
Can you give me some suggestion to go in a right direction to fix up this problem.
Thanks,
Mark

Similar Messages

  • Smartforms : Second Page Main Window not being called

    Hi All,
    The smartform has 2 different pages, with totally different layout.
    This also include that the Main window of both pages are different, having 2 different tables to fetch data.
    The main window width sizes are the same on both the pages.
    I have already used the Command node to call the second page, which it does.
    The problem I am facing now is that the Secondary windows on page2 gets displayed, but the main window does not get displayed.
    I have put a break-point in the code of main window of Page2. When executing this, it does not get triggered at all.
    Now if I change the attribute of this main main window to secondary window and then I execute it then it gets triggered and gets displayed.
    I have to keep this window as the main window as there might be chances of data overflow which should then continue printing on the next pages, therefore I cannot make it as the secondary window.
    Please tell why the Main Window is not being called? (Note: Size of Main Windowin Page2  is same as main window in Page1)
    I have searched the SDN already and did not find a solution to resolve this problem.
    Thanks in Advance.
    Regards,
    Darpana.A

    Hi All,
    I have got the solution to this probelm.
    In Page1 Main Window I have Table1 and a command node to Goto Page2.
    Just after this command node I have added Table2 which earlier was the table in Main window of Page2.
    So currently the Main window in Page2 has nothing included in it.
    Anything after Command gets printed into the next page. Table2 is a part of Main Window in Page1 which gets printed into Main window of Page2.
    Thanks for all your replies.
    Regards,
    Darpana.A
    Edited by: Darpana Ahire on Aug 21, 2009 9:59 AM

  • What is the work around for not being able to see icons for folders.  I want to be able to copy and paste image icons in the GET INFO windows.

    I have always used images for my folder icons, and now I am told that Mt. Lion does not allow me to go to the GET INFO window and do a click on the image icon and then be able to paste that image on to other folders.    I just talked with a Apple support guy and he said that Mt. Lion does not support this function.  He did say that there are third party programs that allow using images to make icons for folders or other items.  I can see some image icon in some of my hard drive folders.......  some folders show image icons while others do not. I am a photographer and have scads of photo folders spread all over different hard drives, and I find it easier to find what I am looking for by just looking at the IMAGE PICTURE in the different folders on my hard drives, than by having to read the one or two words associated with each folder.
    THe support guy said to request that APPLE put back the ability to use the coy paste function in the GET INFO window.  If i can't get this working like it was I wouyld like to know how to get a refund and throw out Mt Lion.

    Restore your Lion bootable backup/clone or Time Machine backup and file your ML bug report. Just keep the installer ($20 USD isn't worth the hassle trying to get it refunded). Then, when the function's restored, reinstall and run Software Update.

  • What is the reason for Invalid database interface call in the statement

    Hi all,                                                     
    Invalid database interface call in the statement where table "ZPP_STORAGE ".
    Thanks.

    DATA: BEGIN OF itab4 OCCURS 0,
                mandt TYPE mandt,
                matnr LIKE mseg-matnr,
                werks LIKE mseg-werks,
                lgort LIKE mseg-lgort,
                tarih LIKE sy-datum ,
                meins LIKE mseg-meins,
                bldat LIKE mkpf-bldat,
                menge LIKE mseg-menge,
             SHKZG like mseg-SHKZG,
             BWART like mseg-bwart,
            END OF itab4.
    LOOP AT itab4.
          insert into zpp_storage from itab4.
          COMMIT WORK.
        ENDLOOP.
    At insert, dump occurs.
    Why?
    Thanks.

  • BUG: Return listener not being called for manually launched dialog

    Hello all,
    I have found a bug in the dialog framework. To set the stage, I have a ADF Faces page with a command button on it. The partial submit property is set to "true" and the use window property is also set to "true." I also have the returnListener property set to a method in the backing bean. When I set the Action property of the command button to a global navigation rule that launches a dialog, the return listener is being called correctly when I dismiss the dialog.
    However, when I launch the dialog from an action listener, the return listener is not being called. Here is my action listener code:
      public void al (ActionEvent ae)
        FacesContext context = FacesContext.getCurrentInstance();
        ViewHandler vh = context.getApplication().getViewHandler();
        UIViewRoot dialog = vh.createView(context, "/infrastructure/ICConfirmDelete.jspx");
        HashMap properties = new HashMap();
        properties.put("width", new Integer(300));
        properties.put("height", new Integer(300));
        AdfFacesContext.getCurrentInstance().launchDialog(dialog, null, ae.getComponent(), true, properties);
      }and here is my return listener:
      public void rl(ReturnEvent re)
        System.out.println("in return");
        System.out.println((String) re.getReturnValue());
      }OK - here's an update. If the command button is in the Actions facet of the page, everything works as expected. However, if the button is in the selection facet of a table (inside of afTableSelectOne) - it does not work properly as documented here. It also works correctly if the button is in the actions facet of the table. I think that this is a bug and needs to work - my use case (as you might tell from my code) is to do a delete confirmation dialog. My short-term workaround is to use the Action instead of ActionListener property on the command button, but the issue I have is that the pop-up dialog is just a tad too small, and is showing scrollbars.
    Regards,
    John
    Message was edited by:
    John Stegeman
    Added additional information about tableSelectOne

    Gabrielle,
    Sorry for the confusion.
    What does not work:
    Initiating a dialog from the ActionListener attached to a command button (where the command button is inside an afSelectTableOne) will not fire the returnListener when the dialog is closed.
    What does work:
    Initiating a dialog by returning a dialog-based navigation rule (e.g. a string starting with "dialog:") from the Action attached to a command button (even if the command button is inside an afSelectTableOne) - the return listener is called when the dialog is closed
    What also does work:
    Initiating a dialog with either method (Action or ActionListener) when the command button is elsewhere on the Page (e.g. in the Actions facet)
    Hope this clarifies the bug. I could send a test case if desired.
    Kind regards,
    John

  • Listeners keyDown are not being called when keyDown in an popup l

    For some reason the listeners titleWindow_keyDown are not being called when keyDown in an popup like so:
    <?xml version="1.0" encoding="utf-8"?>
    <s:SkinnablePopUpContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
                               xmlns:s="library://ns.adobe.com/flex/spark"
                               xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300"  keyDown="titleWindow_keyDown(event);" >
        <s:TitleWindow title="Edit Complaint" close="close()">
    private function titleWindow_keyDown(evt:KeyboardEvent):void {
                        if (evt.charCode == Keyboard.ESCAPE) {
                            close();
    Any ideas friends??

    But in my code it is a child inside SkinnablePopUpContainer:
    <s:SkinnablePopUpContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
                               xmlns:s="library://ns.adobe.com/flex/spark"
                               xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300"  keyDown="titleWindow_keyDown(event);" >
        <s:TitleWindow title="Edit Complaint" close="close()">

  • Grafhic not work...  what is the reason ?

    hello,
    In the foolowing code I reproduced an "anomalous" behavior that I get when I use graphic functions.
    In the JPanel "PanelToDiplayGraphic", I simply write some words....
    This usually works;
    but if I (before to create the panel) read some data from a database, then the words are not displayed...._
    (I need to get informations from the database to use in the grafhic functions).
    I am not able to understand the reason why this can happen .
    Same one is able to explain me what is the reason ???
    // To use this program requires to have a valid connection to a database.
    // Here the connection comes from MakeConnectionToDataBaseMedident class and his the getConnection() function.
    // Of course, the String sqlStr in the accessToDataBase() function have to be properly changed too...
    package prove.volanti.storePicImages;
    import databaseManagement.MakeConnectionToDataBaseMedident;
    import java.awt.BorderLayout;
    import java.awt.Graphics;
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class TestForBug extends JFrame {
        public TestForBug() { // constructor
            setTitle("title");
            setVisible(true);
            setSize(200, 150);
            this.setDefaultCloseOperation(EXIT_ON_CLOSE);
            // ======== part of program to chang to apply the test ...
            accessToDataBase(); // To test the anaomalus behavior put this row in comment
            // ======== part of program to chang to apply the test ...
            PanelToDiplayGraphic panelToDiplayGraphic = new PanelToDiplayGraphic();
            setLayout(new BorderLayout());
            this.add(panelToDiplayGraphic, BorderLayout.CENTER);
        }  // constructor
         * Simple function to access to tatabase
        private void accessToDataBase() {
            MakeConnectionToDataBaseMedident makeConnectionToDataBaseMedident = new MakeConnectionToDataBaseMedident();
            Connection connection = makeConnectionToDataBaseMedident.getConnection();
            Statement statement = null;
            ResultSet resultSet = null;
            String sqlStr = "Select * from skdPzPicsDetails   ";
            boolean validState = true;
            try {
                statement = connection.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
                resultSet = statement.executeQuery(sqlStr);
                validState = resultSet.last();
                int rowsNmbr = resultSet.getRow();
                System.out.println("Nmbr. rows = " + rowsNmbr);
                validState = resultSet.first();
                System.out.println("validState = " + validState);
                String tit = resultSet.getString("picTitle");
                System.out.println("Title =  " + tit);
            } catch (SQLException e) {
                System.out.println("Errrore = " + e.getMessage());
                e.printStackTrace();
        }  // accessToDataBase()
        static public void main(String[] args) {
            TestForBug xxxx =
                    new TestForBug();
        } // main()
         * Panel to display graphic
        class PanelToDiplayGraphic extends JPanel {
            @Override
            public void paintComponent(Graphics g) {
              g.drawString("TEST for use of the Graphic " , 10, 20);
    //            g.drawImage(image, 0, 0, this.WIDTH, this.HEIGHT, null);
        }// DiplayGraphicPanel
    } // TestForBugthank you regards
    tonyMrsangelo.

    thank you Encefophalopathic...
    The window seem to be normal (not froze), but I understand now that the cause of the anomaly could
    came from the parallelism of the threads ....
    I'll look in this way...
    Thank you
    By the course... I remember you gave me an advice some days ago ..
    you said :
    Finally, don't add a mouse listener to a JButton when an action listener,
    a class specifically built to capture button presses, is available.
    There are exceptions to this rule, but I don't see any here. I didn't answer then, but I should like know where I could learn more about how and where to use the listener class...
    I see this tip is more complex than it seemed to be...
    Now, for example, I need to catch event when an element in a checkBox is selected..
    I use event listner for this purpouse, but in this way I get the attivation of the event also
    when the comboBox component is created...
    How I sayd, I only should like to have a good link to read more about..
    thank you again
    regards
    tonyMrsangelo

  • I have a iPhone 5C and a PC with Windows Vista.I did pair my phone thru Bluetooth but when I try to connect I get this message:"error establishing connection" What is the reason of this?

    I have a iPhone 5C and a PC with Windows Vista.I did pair my phone thru Bluetooth but when I try to connect I get this message:"error establishing connection" What is the reason of this?

    Go into Settings>Messages>Send and Receive and make sure that your phone number is checked and iMessage reads as activated. Remove the checkmark from the email address and make sure that only the phone number if checked. It should appear grayed out, but should still have a checkmark. If the phone number does not have a checkmark, then turn off iMessage, wait a few moments and then turn iMessage back on and make sure that it activates.

  • Adobe creative cloud product online help not working. Any idea what is the reason ??

    Adobe creative cloud product online help not working. Any idea what is the reason ??
    I have to manually copy pdf file to open help for all suite....

    Please try another browser, if still it is not working, check the internet connectivity http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    In case the issue is still not resolved, do contact Adobe Support.
    Regards
    Rajshree

  • When I turn on my iPad 1it stops the network connection to my windows xp pro computer. Ican fix the network connection by repairing  the windows machine network.  What is the reason thia is happening?windows

    When I turn on my iPad 1it stops the network connection to my windows xp pro computer. Ican fix the network connection by repairing  the windows machine network.  What is the reason this is happening?windows

    Are you using DHCP to allocate IP addresses via your router or Static IP allocation?
    You may have an IP conflict in your network.
    Check on your various network configuration parameters in your iPad, PC and WiFi router.

  • Some BAPIs are auto commit and some are not.  what is the reason?

    Hi all,
    currently i am working on BAPI.I found that some BAPIs are auto commit and some are not. can anybody tell me what is the reason.

    hi,
    one option to find the difference is you have to look for parameters like test run or commit .
    If the function module  doesn't have them, then it means you have to use BAPI_TRANSACTION_COMMIT or BAPI_TRANSACTION_ROLLBACK based on the success or failure.

  • Anybody know what's up with the menu.xml.files not being available for DW after installing on a new comp?

    Anybody know what's up with the menu.xml.files not being available for DW after installing on a new comp?

    Usually that error can be cleared up by renaming the personal config folder. Turn on your OS's hidden files and then go to...
    C: > Users > your username > AppData > Roaming > Dreamweaver (version) > your language > configuration
    Rename the configuration folder configuration-old and start DW up. That should create an entirely new configuration folder and correct the menu.xml file.

  • Am trying to subscribe to Hulu Plus But keeping asking your email  or password not correct !!! So What is the reason and both is correct ...

    Am trying to subscribe to Hulu Plus But keeping asking your email  or password not correct !!! So What is the reason and both is correct :(

    You have to configure Gmail to allow access to less secure apps. Thunderbird uses the IMAP-protocol, but Google thinks it isn't safe enough.
    Go to your browser and login to Gmail. Now click on your profile picture and click Account. Go to the Security tab and click on Settings for Access for less secure apps under Account Permissions. Enable it and Thunderbird should have access to your email...
    BTW This is totally safe. There's no need to scratch behind your ear about changing this setting

  • Illustrator keeps quitting-notice others have had similar issues, not resolved-so what it the reason for "sending a report" to Adobe if nothing can be done with it????? paying for a product that I can't use when I need to use it and no help-come on-someon

    Illustrator keeps quitting…notice others have had similar issues…so what it the reason for "sending a report" to Adobe if nothing can be done with it????? paying for a product that I can't use when I need to use it and no help…come on…someone has to have an answer…HELP Pleeeeease

    <moved from Adobe Creative Cloud to Illustrator>
    reset your preferences -
    acrobat:  http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7feb.w .html
    adobe media encoder: https://forums.adobe.com/thread/1713540
    after effects:  http://helpx.adobe.com/after-effects/using/preferences.html
    dreamweaver:  https://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs6-cc.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    illustrator:  http://helpx.adobe.com/illustrator/using/setting-preferences.html
    indesign:  https://forums.adobe.com/thread/526990
    lightroom: https://helpx.adobe.com/lightroom/help/setting-preferences-lightroom.html
    muse (mac): https://forums.adobe.com/thread/1246022?tstart=0
    photoshop:  https://forums.adobe.com/thread/375776
    photoshop elements:  https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html,  http://www.photokaboom.com/photography/learn/Photoshop_Elements/troubleshooting/1_delete_p references_file.htm
    premiere elements:  https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html
    premiere pro: http://www.mediacollege.com/adobe/premiere/pro/troubleshooter/trash-preferences.html
    if that fails, uninstall, clean (http://www.adobe.com/support/contact/cscleanertool.html) and reinstall

  • How can I fix my mac mini g4 1.5ghz which gets the must reboot message?  what is the reason?

    How can I fix my mac mini g4 1.5ghz with 2gig ram which gets the must reboot message randomlly?  what is the reason?  Hard disk has no errors.

    Based on your description, you are having a kernel panic.
    Can you post some of your crash logs? Might be a clue. See Mac OS X: How to log a kernel panic http://support.apple.com/kb/HT2546
    Understanding crash logs isn’t easy and it’s hard (sometimes impossible) to decipher the cause of the problem. Take a look at Apple’s Crash Reporter document at http://developer.apple.com/technotes/tn2004/tn2123.html Also look at Tutorial: An introduction to reading Mac OS X crash reports
    http://www.macfixit.com/article.php?story=20060309075929717
    Kernel panics are usually caused by a hardware problem – frequently RAM, a USB device or a Firewire device. What external devices do you have connected? When trying to troubleshoot problems, disconnect all external devices except your monitor, keyboard and mouse. Do you experience the same problems?
    To eliminate RAM being the problem, Look at this link: Testing RAM @ http://guides.macrumors.com/Testing_RAM Then download & use Memtest & Ramber.
    Do you have an Apple Hardware Test disc (the AHT is on the Install/Restore DVD that came with your Mac)? Running the Apple Hardware Test in Loop Mode is an excellent troubleshooting step for finding intermittent hardware problems. It is especially useful when troubleshooting intermittent kernel panics. If Loop Mode is supported by the version of the Apple Hardware Test you are using, you run the Extended Test in Loop Mode by pressing Control-L before starting the test. Looping On should appear in the right window. Then click the Extended Test button.The test will run continuously until a problem is found. If a problem is found, the test will cease to loop, indicating the problem it found. If the test fails, be sure to write down the exact message associated with the failure.In some cases, RAM problems did not show up until nearly 40 loops, so give it a good run.
    May be a solution on one of these links.
    http://docs.info.apple.com/article.html?artnum=106227 What's a "kernel panic"? (Mac OS X)
    http://www.macmaps.com/kernelpanic.html Mac OS X Kernel Panic FAQ
    http://www.index-site.com/kernelpanic.html Mac OS X Kernel Panic FAQ
    http://www.thexlab.com/faqs/kernelpanics.html Resolving Kernel Panics
    http://www.macfixit.com/article.php?story=20060911080447777 Avoiding and eliminating Kernel panics
    http://macosg.com/group/viewtopic.php?t=800 12-Step Program to Isolate Freezes and/or Kernel Panics
     Cheers, Tom

Maybe you are looking for