LSMW issue with Popups

Hello,
can me help anyone. I've an LSMW with an recorded transaction. I generate a BDC-map. Sometimes the transaction gives me a popup sometimes not. the popup show me only an information. It is possible to check when the popups comes up and quit it. Otherwise I got an error. And I've no chance to split the data in this with popup information and woth no popup information.
Any ideas?
Thank you!
Best regards
MartinS

Is this a parameter? Where can I find this? Or did you mean the Batch-Input option in the Gui-Settings:
- Click on the GUI settings button.
- Click on the 'options'.
- Goto the 'Expert' Tab.
- Switch off the 'Dialog Box for OK-Code' Check box in the 'Batch Input' section.
- Save the settings by clicking 'Apply' and 'OK'.
Thank's for help!

Similar Messages

  • Issue with Popup Warning in SaveAndClose Panel

    hi,
    I have a requirement to show a warning message based on Validation of some fields to get user input . Then I try to Commit or not Commit the data.
    But the popup is not getting launched before completing the method.
    When I run Click on Save or SaveandClose button , if Validation method below returns false, popup wont be launched immediately, until it reaches end of Save/SaveCllose Action methods.
    Because of this I am not able to capture the user response and proceed accordingly.
    Here is the example code:
    I have Page: Entry.jsff
    It has Save and SaveAndClose Rendered and is based on Application Panel (I can have toolbar buttons also )
    In Save and SaveClose Action methods I am calling validation method which in turn throws a Warning popup. like below.
    public String handleSaveAndClose() {       
    if(handleValidations()){
    RecordingUiUtil.invokeEL("#{bindings.Commit.execute}");
    return ("saveandclose");
    }else{
    Map pageFlowScope =
    AdfFacesContext.getCurrentInstance().getPageFlowScope();
    String wrng = (String)pageFlowScope.get("pSubmitFlag");
    if(wrng!=null && wrng.equals("Y")){
    RecordingUiUtil.invokeEL("#{bindings.Commit.execute}");
    return ("saveandclose");
    return null;
    The Save Action Method:
    public String handleSave() {       
    if(handleValidations()){
    RecordingUiUtil.invokeEL("#{bindings.Commit.execute}");
    return ("save");
    }else{
    Map pageFlowScope =
    AdfFacesContext.getCurrentInstance().getPageFlowScope();
    String wrng = (String)pageFlowScope.get("pSubmitFlag");
    if(wrng!=null && wrng.equals("Y")){
    RecordingUiUtil.invokeEL("#{bindings.Commit.execute}");
    return ("save");
    return null;
    public boolean handleValidations(){
    /*....Lets say I have some validation code*/
    if(validation success){
    return true;
    }else{
    PatternsPublicUtil.invokePopup(this.getSubmitWrngPopup(),null);
    return false;
    Return Value for "saveandclose" has taskflow Return to parent page.
    It works fine when validation method returns true. No issue as there is no need for Warning.
    When validation fails I cant proceed with user response before completing action methods.
    Can u pl. help any poissible solution for this??
    thx
    --nagamani                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    you cannot interrupt processing of a managed bean method. You need to break up the methods in a part that runs for evaluating the success of validation- If validation fails you open a popup with a dialog. You then listen for the dialog OK or Cancel button being oressed and proceed accordingly. If you need to transfer context information between the two actions, use memory scope attributes
    See http://www.oracle.com/technetwork/developer-tools/adf/learnmore/77-ok-cancel-support-in-dialog-351871.pdf
    for how to handle the OK and Cancel button in a dialog
    Frank

  • Issue with popup

    Hi
    I'm kind of new to Java put hopeful I can project my problem enough for someone to help me on the nature of my problem. My problem is i have created two class Wellcome class and MainApp Class. What i want to do is when a user clicks on a button from the Wellcome class it take them straight to the MainApp Class. I've been looking everywhere and havent found anything apart from popup dialogs which is not what i want.
    This is my button at the current state
              final JButton openNxtTrackButton = new JButton();
              openNxtTrackButton.addActionListener(new ActionListener() {
                   public void actionPerformed(final ActionEvent arg0) {
              });If anyone can help me that would be great thanks
    Edited by: limpep on Mar 11, 2008 5:59 PM

    limpep wrote:
    Okey basically i have two different fames one is called Welcome and the other one is called MainApp. All i want to do is when a user clicks on a button on the Welcom frame(window) it take the user to the Mainapp frame(window).I politely disagrees with this:
    new MainApp().setVisible (true);Perhaps better would be to make the Welcome window a modal JDialog that is shown by an invisible JFrame -- your MainApp. Then when the JDialog -- or perhaps easier, the JOptionPane returns, the MainApp is made visible.
    For example:
        public MainApp() // main app constructor
            JLabel label = new JLabel("Main App");
            label.setFont(label.getFont().deriveFont(Font.BOLD, 48));
            mainPanel.setPreferredSize(new Dimension(300, 200));
            mainPanel.add(label);
            JOptionPane.showMessageDialog(null, createOptionPanel(), "Option Panel", JOptionPane.PLAIN_MESSAGE);
        private JPanel createOptionPanel()
            JPanel optionPanel = new JPanel();
            JLabel label = new JLabel("Option Panel");
            label.setFont(label.getFont().deriveFont(Font.BOLD, 48));
            optionPanel.setPreferredSize(new Dimension(350, 100));
            optionPanel.add(label);
            return optionPanel;
        }

  • Issue with popup region in oaf

    Hi ALL,
    I have a issue in poup region as below.
    I have a popup region that i am invoking from a base page on clicking of a button, in the popup region i have search functionalty , so i am giving some search criteria and clicking find button and able to get the data,
    but the issue is when i am clicking the find button the popup getting closed, i need the popup should display teh search data and after that i have some other functionality to select some rows from the data and need to click one mote button to reflect the data in base page, so how i can retain the poup on click of first button, please help me out

    Raghava,
    Check the vo attribute attached to the Date Field, it should be of Date type at both the level..VO Level as well as Database level.
    Regards,
    Gyan

  • LSMW issues with u00D1 and u00B4 signs

    Hello,
    I m using LSMW to load some object but i have some issues when the text in the source file contains Ñ or á é í ó ú... the LSMW in the upload change these for # sign.
    Can anyone tell me an idea about why is happening? and how to solve it?
    thanx

    Hi
    Did you check whether any coversion routine has been written for this?
    Cheers,
    Hakim

  • Issue with Popup LOV field not clearing out "default" value

    I am using APEX 4.0 & Oracle 10g
    I have a form that displays a default value on a "Popup LOV" field (say P1_POPUP) when the Form is initially displayed to the user. The default value is part of the Popup LOV list of values. If the field is "manually cleared" *i.e. I clear the default value by backspacing and don't touch the LOV) and I Refresh (submit) the form (REFRESH button to display the same Form again), the default value is still displayed.  
    In Post Processing, I debugged the value of P1_POPUP to see if holds the default value and yes it does. I was expecting no value in P1_POPUP.
    Is this an APEX standard behavior?
    Any way how I can get rid of this value on an manually clearing action of this Pop Up field?
    Looking forward for your response.
    Thank very much in advance.
    Ed.

    I apologize, the default value was NULL indeed. However, it seems like I may need to manually clear this value so that it will not be displayed.

  • RH8 issue with popups

    Hi there,
    I am using RH8 on Windows XP. I am working on a very large, legacy project that has been around for ages.
    In many, many topics there are popups which take you to a secondary topic for syntax information. Each subheading in the secondary topic has a bookmark and these popups throughout the help link back to the relevant section of this secondary topic.
    However, since RH8 (I upgraded from RH5) when I click on the popup link in the webhelp output, it very often does not take me to the correct location of the bookmark referenced. It pops up several lines below that bookmark, so that the wrong heading is shown.
    It seems to work ok in IE, but not in Firefox, Safari and Google Chrome (I know it's not supported, but my boss uses it!).
    As our users use either Linux or UNIX, they don't use IE, so I need it to work in the other browsers. It definitely used to work correctly, as I've tested older RH5 output in all of the aforementioned browsers.
    It doesn't seem to matter if you use auto-sizing popups or custom-sized popups, the same thing happens.
    Anyone have any idea why this might be happening? It's very frustrating! 
    Thanks in advance,
    Feebeegeebee.

    Hi,
    I didn't get a single response to my appeal, so either no one else has seen this or it wasn't clear what is happening.
    So, here are a couple of screenshots which may help.
    The links used to poup in the correct place in the sub-topic (as shown below).
    Now, in RH8 they pop-up in the wrong place in the sub-topic, despite the fact that nothing has changed (see below).
    The same link as above does the following in Firefox, Safari and Google Chrome, i.e. it launches the popup in the wrong place.
    Any ideas?
    It works fine in IE, but none of our users use Windows, so that's of no use!
    Thanks for any suggestions.
    Regards,
    Feebeegeebee.

  • Issue with popup menubutton

    i am using a popup menu button in my application. the menu is big such
    that i am unable to scroll and cant see the remaining items in the
    dropdown.  please find following image
    is there any way to get the scroll enabled for this? thanks in
    advance.
    gautam

    Here is a possible solution:
    http://dougmccune.com/blog/2007/01/26/even-better-scrollable-menus-for-flex/
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.chikaradev.com
    Adobe Flex Development and Support Services

  • Issues with ApexLib after upgrading to Apex4

    After upgrading our application to Apex 4 we have run into some issues that look to be related to ApexLib. We had issues with popup LOV’s and some tabular forms, after upgrading to ApexLib 2.1.2 the popup LOV's seem to be resolved. But we still have some problems when trying to update a tabular form that uses ApexLib validation. When trying to update we get an error that 'field' is needed, but the 'field' has been selected from a select LOV.
    The error shows "Row 1: Health ED is required."
    The code is:
    select
    "PERSON_WP_HLTH_ID",
    "PERSON_WP_HLTH_ID" PERSON_WP_HLTH_ID_DISPLAY,
    "PERSON_ID",
    "PERSON_WP_HLTH_ED_CODE",
    "PERSON_WP_HLTH_OTHER"
    from "#OWNER#"."PERSON_WP_HLTH"
    where person_id = :p58_person_id
    I get this in debug mode.
    ...Process "ApexLib-Before Computation/Validation": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) BEGIN ApexLib_Item.setBoolDefault; ApexLib_Item.trimItems; ApexLib_TabForm.trimColumns; ApexLib_Lov.clearLovNullValues; ApexLib_Item.validateItems; ApexLib_TabForm.validateColumns; -- ApexLib_Error.showErrorStack; END;
    I'm not convinced this is ApexLib related, but not sure what else might be the issue. Any thoughts or comments welcome.
    Cheers,
    JB
    Edited by: Forward IT Thinking on Sep 10, 2010 12:01 AM

    Peter,
    I'm fairly new to APEX, would love to put a copy up on apex.oracle.com but not sure on the process. I have an account there, but don't have a packaged application yet so how to do that. If it's a simple process and you can point me to the process that would be appreciated.
    In the mean time, I would have no problem setting up a developer and user account account temporarily for you to take a look. You can email me at [email protected] and I'll get you the info.
    Thanks for you prompt response.
    Regards,
    John Bewley
    Edited by: Forward IT Thinking on Sep 10, 2010 4:02 PM

  • Issue with Parameterized Popup

    Hi,
    I have created a parameterized popup which gets opened on click of an image. Opening the popup is working fine but custom close button (not the X icon) is not working. I have added javascript:closeit() as the destination URI of the button but nothing happens when I click the button. I also tried adding a javascript function for closing the window and put a PPR on the button to forward to the current page and execute the java script but no luck :-( Issue with using X button for closing the popup is - the control is still in the popup processformrequest afer I close the wondow using X. Whatever action I perform on the base page is yielding no results/undesired results. That's why I wanted a custom close button so that I can direct the control back to the calling page.
    Please advise.
    My requirement is to have 2 buttons on the popup region (save and close). On click on save, data should be saved and the calling (base) page should get refreshed and close should just close the popup and bring the control back to the base page. I have a standalone region created with desired fields and buttons and this region is added to the region popup.
    Can anyone please help me with this?
    Thanks in advance.
    Shreevatsa

    Thanks Peddi. Any other option of achieving this functionality in parameterized popup?
    Also I saw the below in the dev guide.
    You can handle user interactions for embedded and parameterized pop-ups as follows:
      All-Submit - Configure buttons on an embedded pop-up to submit the pop-up data and the base page data together. The pop-up closes and the base page submits after this event.
      Self-PPR - Define partial page refresh events on the pop-up to refresh the pop-up window alone. The pop-up remains displayed after a self-PPR event.
      Page-PPR - Define partial page refresh events on the pop-up to refresh the base page items. The popup closes after a page-PPR event.
    I didn't understand completely as what are the differences and how we can enable these actions on popup. I am thinking of Page-PPR which might work for my requirement but I am not sure how to enable this. Is this same as enabling a PPR on a item on the popup region.
    Thanks
    Shreevatsa

  • I'm having a lot of issues with firefox and cannot figure out how to get help. It began when I updated to 13. I get all kinds of ad popups, I cannot play one

    I'm having a lot of issues with firefox and cannot figure out how to get help. It began when I updated to 13. I get all kinds of ad popups, I cannot play one game on FaceBook called Farm Town at all, and I keep getting an AVG popup about cookies that I cannot get rid of. These issues are causing me to use Chrome very often even though I like Fox better. I've searched and searched how to get help and cannot find anything. How does one get personal technical help?? These issues do not happen in Chrome at all. Thanks.

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Issue with clearing previous record while uploading through LSMW

    Hi friends,
    I have created lsmw for hiring action using transaction PA40. i have a tab delimited flat file, when i run the lsmw script the first record is uploaded perfectly. However the upload halts for the second record, coz the previous record still remanins, is there an issue with the recording or do i need to clear anything?. How do i resolve  this one and continue uploading other records.
    Regards,
    Quavi

    Hi Friend,
    In the LSMW, Under the User menu you have Display Read Program and Display Conversion Program select this and open the respective program you feel having problem and put a break point in the Loop statement and debug. I will help you to identify the problem to resolve.
    Rgds,
    Jey

  • Popup Issue with Application using SSL

    Hi
    I am having an issue with one of our apex applications using SSL.
    I have a few popups in my application and for that I am using the Popup2 function that is built into APEX.
    When I run the app without a secure layer (directly from the server) I am able to get the popups and everything works fine.
    but when I run the app using the regular url https: the popup(s) does not work. When I checked the source code on the web page the error I got is as shown below. I found that the following apex_legacy_4_0.js file was truncated in the source code. It was not retrieved fully.
    Message: Expected '}'
    Line: 1
    Char: 3769
    Code: 0
    URI: https://xxx/i/javascript/apex_legacy_4_0.js
    Can somebody please let me know how I can fix this issue.
    Please Note: This was an application that was working without any issues for more than 2years. All of a sudden (since last month) we are getting this error. According to Our Network and DBA's we have not made any changes/patches to our servers.
    Thanks
    knut
    Edited by: knut on Dec 16, 2011 11:18 AM

    Ok. I figured it out. The url rewrite was missing in the config. Put it there and its working now.

  • Issue with decision popup with yes/no combination

    hI,
    I'm having issue with create_popup_2_confirm method.I'm using yes no option in my popup.But when I click on yes button in the popup though OP_YES outbound plug is getting triggered of component GS_PTC, but not able to get any fired outbound plug in the closing event of popup i.e. event handler Save. CAn anybody help me on this?
    My code is as follows:
    popup = me->comp_controller->window_manager->create_popup_2_confirm(
    iv_title = lv_title
    iv_text = lv_text
    iv_btncombination = if_bsp_wd_window_manager=>co_btncomb_yesno ).
    Then set a close event and open the popup :
    popup->set_on_close_event( iv_view = me
    iv_event_name = 'SAVE' ).
    popup->open( ).
    Code written in Save event handler
    CHECK POPUP IS BOUND.
    lv_confirm_result = POPUP->get_fired_outbound_plug( ).
    CHECK lv_confirm_result = 'YES'.
    Thanks & Regards,
    Anirban

    Hi Anirban,
    I checked the code and I dont think there is any issue.
    The only question I could think of is  ...
    has variable POPUP been declared globally in the SAME view ?
    The outbound plug name 'YES' is case sensitive.
    Regards,
    Masood Imrani S.

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

Maybe you are looking for

  • How can I stop people from sending iMessages to my number?

    I recently switched from iPhone to Android. I unregistered my device online, turned off iMessage on my device, did a factory reset, removed my number from my AppleID, called support and had them disassociate my number from my AppleID. I also texted "

  • Photoshop CS v.8 open windows in Windows 7 cannot be moved, maximized, or closed

    I just installed my Photoshop CS Version 8 into Windows 7 on a new PC. When the program is opened, the File Browser icon does not toggle, and I have to go to File menu to open Browse. The browser window now cannot be moved, maximized, or closed. The

  • How to define a Bit Mask in Lab Windows.

    Hello, I'd like to know how to define a bit mask for a control box in LabWindows/CVI. If there's more information that I need to be aware of, please let me know. Thank you, Harold.

  • How do I solve unsupported formulas from excel?

    If anyone can help me I would greatly appreciate this! I have just purchased latest i-works with the the intention of using Numbers to open and edit excel files and have found so far the purchase to be pointless! When I open an excel file in numbers

  • Trying to format a WD My Book 6TD hard drive.

    I have just tried to format a WD My Book 6TD hard drive. I have tried to erase and partition the disc as suggested in other responses but I get - in both cases  - the message back "Partition (or erase) failed - couldn't unmount disc." Please could an