Replacement of POPUP_TO_CONFIRM

Dear Guru ,
I need i need little help.
apart from "POPUP_TO_CONFIRM"  Is there any Standard dialog Popup in SAP which will pop up a screen with two button having "YES" and "No" option.
thanks & Regards
Saifur Rahaman

hi..
As Gouri Sankar said, You can use FM POPUP_WITH_2_BUTTONS_TO_CHOOSE
Here, is the sample on how to use it.
DATA:l_answer TYPE c .
CALL FUNCTION 'POPUP_WITH_2_BUTTONS_TO_CHOOSE'
      EXPORTING
*     DEFAULTOPTION       = '1'
        diagnosetext1       = 'Caution'
        textline1           = 'Enter YES or NO ! '
        text_option1        = 'YES'         
        text_option2        = 'NO'
        titel               = 'Caution'
     IMPORTING
       answer               = l_answer
    IF l_answer EQ '1' .
       Refers to YES
    ELSE .
     Refers to NO
    ENDIF.
regards,
Padma

Similar Messages

  • Upgrade- Table maintanence

    Hi all,
    In Upgrading 4.7 to ECC 6 we are replacing the obsolete function modules.
    When we create a table maintanence generator, it creates function group.
    in that function group there are lot of obsolete function modules are there. (in 4.7)
    for ex: popup_to_confirm_step. now i need to replace to popup_to_confirm.
    As it is in SAP Name space. we can not do any changes.
    will it be any problem in ECC 6 for these table maintanence.
    Thanks in advance.
    Shiv

    Hi Ajay,
    i have hundreds of Zee tables in 4.7. for these table table maintanence generater is created.
    for each table there will be one function group is there.
    i have to use it. no option.
    regrds

  • Upgrade from old version to newer version

    Hi Guru's,
    Here we are Upgrading from 4.5 to Ecc6.0.Can i have which has obsolete in newer version for the Funtion Modules? i want Obsolete listcan you provide me?also please let me know how to find the program obsolete statement in program.
    Thanks in advance.
    Kumar

    Hi,
    Incase of upgrade there are two types of upgrade,
    1. Unicode error upgrade.
    2. Non-unicode upgrade.
    What is the difference between SAP UNICODE and NON-UNICODE UPGRADE?
    UNICODE: From Release 6.10, ABAP supports multi-byte coding for characters in Unicode.  Prior to Release 6.10, ABAP used only character sets that were based on single-byte codes u2013 such as ASCII and EBCDIC u2013 or double-byte codes, such as SJIS and BIG5.
    NON-UNICODE: This non-unicode error removal is just to replace any obsolete commands or function modules, tables such as, WS_UPLOAD, UPLOAD, etcu2026
    I have not worked on UNICODE upgrade, so i could not be alble to tell you anything regarding that.
    Normally the below kinds of work comes in a Non-unicode upgrade:
    Tables: Replacing TVARV by TVARVC  -> Table of variant (MANDT fld added)
            Replacing SADR by ADRC  -->address mgmt company data
    Tables: Field Changing table  BKPF - Acc doc header
                                 T001 - Company Codes
    Replacing  obsolete DOWNLOAD Fm with Method CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG;
                                               GUI_DOWNLOAD as per usage.
    Replacing  obsolete UPLOAD Fm with Method   CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG;
                                               GUI_UPLOAD as per usage.
    Replacing  obsolete WS_DOWNLOAD Fm with FM GUI_DOWNLOAD as per usage.
    Replacing  obsolete WS_UPLOAD Fm with FM GUI_UPLOAD as per usage. 
    Replacing  obsolete WS_EXECUTE Fm Method CL_GUI_FRONTEND_SERVICES=>EXECUTE
    Replacing  obsolete WS_FILENAME_GET as per MODE Option. replaced by Method
                                -->CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG 
                                -->CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG 
    FM POPUP_TO_CONFIRM_LOSS_OF_DATA is obsolete.  replacing by POPUP_TO_CONFIRM
    FM POPUP_TO_CONFIRM_STEP is obsolete.          replacing by POPUP_TO_CONFIRM
    FM POPUP_TO_CONFIRM_WITH_MESSAGE is obsolete.  replacing by POPUP_TO_CONFIRM
    DIAGONSE_TEXT -> SE61
    o ANSWER - J N A
    N ANSWER - 1,2,A
    FM WS_QUERY is obsolete.  replacing by CL_GUI_FRONTEND_SERVICES=>FILE_EXIST    
                                          CL_GUI_FRONTEND_SERVICES=>DIRECTORY_EXIST 
    Replacing  obsolete WS_ULDL_PATH as per MODE Option. replaced by Method
                                -->CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG 
                                -->CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG 
    PARAMETERS  in FM's.
    G_SET_GET_ALL_VALUES -> Formal Parameter NO-DESCRIPTRION Changing to NO-DESCRIPTIONS
    DDIF_FIELDINFO_GET   -> Formal Parameter SETNR(Langu Fld) Changed to  LANGU
    How to Find obselete commands?
    Open the program --> Menu Program --> Check --> Extended program Check --> choose character strings and display all check results in a list and F8.

  • Replacement for function modules

    can anyone let me know the replacement for these function modules
    POPUP_TO_CONFIRM_STEP
    POPUP_TO_CONFIRM_WITH_MESSAGE

    It says the name of the replacement right there in the Attributes of the above FMs: POPUP_TO_CONFIRM.
    Hope this helps.
    Sudha

  • Popup_to_confirm in dialog program

    hi,
          i m using popup to cnfirm in dialog programing , my req is when i go to put a entry it will ask for yes no or cancel if press yes then it will sav if no then back to screen if cancel then leave program, i got the theme but i m not getting the way to put the code in my flow for saving,
    please help me if u have any sample code for single input dialog programming with this popup.
    thanks inadvance
    vijay dwivedi
    marks will b sure*

    Hi i want to replace this function module of following code
    CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
           EXPORTING
                textline1      = text-004
                titel          = text-005
                cancel_display = space
           IMPORTING
                answer         = ldf_ok_code.
    The 'POPUP_TO_CONFIRM_STEP' module is replaced with
    CALL FUNCTION 'POPUP_TO_CONFIRM'
      EXPORTING
      TITLEBAR                    = ' '
      DIAGNOSE_OBJECT             = ' '
        TEXT_QUESTION               =
      TEXT_BUTTON_1               = 'Ja'(001)
      ICON_BUTTON_1               = ' '
      TEXT_BUTTON_2               = 'Nein'(002)
      ICON_BUTTON_2               = ' '
      DEFAULT_BUTTON              = '1'
       DISPLAY_CANCEL_BUTTON       = ' '
      USERDEFINED_F1_HELP         = ' '
      START_COLUMN                = 25
      START_ROW                   = 6
      POPUP_TYPE                  =
      IV_QUICKINFO_BUTTON_1       = ' '
      IV_QUICKINFO_BUTTON_2       = ' '
    IMPORTING
       ANSWER                      = ldf_ok_code
    TABLES
      PARAMETER                   =
    EXCEPTIONS
      TEXT_NOT_FOUND              = 1
      OTHERS                      = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Please reply what all parameters do i need to use for the POPUP_TO_CONFIRM function module. I am not able to find the textline1and titel parameters which is available in 'POPUP_TO_CONFIRM_STEP' in POPUP_TO_CONFIRM func module. Please help me in ths regard.

  • Error while creating a Characteristic Variable with Replacement Path

    Hi all,
        I am trying to create the Characteristic Variable ZVLOWDT (Low Date') with Replacement Path on characteristic ZSTARTDT (Start Date) and it gives the error 'Source to replace 'Low Date' is not defined.
       I have created a User Entry Variable VAR_DATE (Start Date) with interval like '01/01/2009 - 01/15/2009'  and  Customer Exit variable ZVCPDAY (does some calculation based on the input of VAR_DATE) on the same ZSTARTDT characteristic. I want to get the 01/01/2009 (lower range date of the selection) into this Characteristic Variable ZVLOWDT. We are in BI 7.0 and the following are it's properties:
    General Tab:
    Description: Low Date
    Technical Name: ZVLOWDT
    Type of Variable: Characteristic Value
    Processing by: Replacement Path
    Reference Characteristic: ZSTARTDT Start Date
    Details Tab:
    Variable Represents : Single value
    Variable is: Mandatory
    Variable is Ready for Input : unchecked
    Replacement Path Tab: Replacement Rule
    Replace Variable with : Variable
    Variable : VAR_DATE
    Replace with : KEY
    Why I am getting this error, PLEASE ?
    Thanks,
    Venkat.

    Hi Khaja,
       We could derive a Variable value from another Variable with out Customer Exit. There is a white paper.
    First have the User Entry Variable (ZV_X) and it accepts the date range like '01/01/2009 - 01/31/2009'. Next create the Characteristic variable (ZV_Y) of Replacement Path for which source variable will be ZV_X and we could get the 'FROM Date' (01/01/2009) from the selection (ZV_X) into it (ZV_Y).
    While creating the Characteristic variable (ZV_Y) of Replacement Path, I didn't find my newly created ZV_X variable in the list of available variables under 'Variable' header in 'Replacement Path' tab and it is causing the error  'Source to replace variable ZV_Y is not defined'. How could I create the Characteristic variable of Replacement Path, PLEASE ?
    Thanks,
    Venkat.

  • HT1423 I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

  • Time machine won't back up since I have restored from time machine following hard drive replacement.  I am being told there is not enough space, however the back up is less than the hard drive size

    We recently had the hard drive replaced on our Mac as part of Apple's replacement programme.  Prior to sending it off for repair we did a final Time Machine back up, which was completed successfully.  SInce getting the computer back we restored everything from the backup disk using Time Machine, which all worked fine, however now we are having problems with it completing regular backups.  We receive a message each time telling up that the backup disk doesn't have enough space on it.  It is telling us that it needs in the region of 370gb and only has around 30gb available.  The computer hard drive is in the region of 350gb and the hard drive is a 400gb one.  It is almost as if it is not recognising that the data already on the disk is the back up of this computer and is trying to complete a completely separate back up as opposed to just updating the backup already on the disk.
    Has anyone else got any experience of this and therefore could give me some hints on what to do.  I am reluctant to wipe the backup drive and start again, however I would prefer not to have to buy another hard drive if I can avoid it as this one is technically big enough
    I look forward to getting some responses

    Hi, I never use TM myself.
    Have you looked through Pondini's extensive TM help site?
    http://Pondini.org/TM/FAQ.html
    http://pondini.org/TM/Troubleshooting.html
    Can't imaging something not being covered there.
    PS. It's generally recommended a TM drive be at least twice the size of your main drive.

  • I had an Intel-iMac fried by lightening. UPS, surge protectors but it happened as I was reaching to unplug.  Cold now.  Could it just be the power supply?  Can I replace that myself?

    This is the full question since I couldn't get it all in the box. 
    I have some complex questions regarding an iMac, a Time-Machine backup, and iTunes on an iPod.
    I live about halfway up an extinct volcano about 12 miles north of San Jose Costa Rica.  Some months ago, we had a thunderstorm and as I reached to unplug my computers lightening struck about 50 meters from my house.  I had an iMac with a 3-Tb external backup drive, a PC laptop and a laser printer on the same power strip.  There was a definite surge and the light brighten and then power was lost for a few minutes.
    When power was restored, the PC and the laser printer seemed to work fine but the iMac was cold.
    First questions:  Is is possible that the power supply was fried and not other essential parts?  Would it be worthwhile to replace the power supply?  Can I, with limited experience and tools do it or need I take it to a technician?  My concern is that if the hard-drive is good, there is personal information on it that I don't want to risk.
    Next question:  Do I need to replace the hard-drive before taking it for service?  How hard is that, can I do it? I have seen videos of the drive replacement on-line.
    Those are my iMac questions, now the questions about backup restoration.
    If there is a saving grace with this it is that the Time-Machine backup seems fine although I have only accessed the data through Finder.  I replaced the iMac with a Macbook Air with significantly less mass storage and I can't just move files to the Macbook.  My problem is that I have an iTunes library of some 10,000 songs on the backup and until recently on a 160 Gb iPod which was old and it crashed.  I have replaced the iPod but have not tried to restore the iTunes library to it because of my confusion about how to do that.  Can anyone tell me how I might do that or give me any insight into the process?
    Thanks for any help you can give.

    Is is possible that the power supply was fried and not other essential parts?  Would it be worthwhile to replace the power supply?  Can I, with limited experience and tools do it or need I take it to a technician?  My concern is that if the hard-drive is good, there is personal information on it that I don't want to risk
    Quite possible, but working on iMacs is not easy, & PSU might be prohibitive.
    Hopefully the Drive might have info on it, but even pulling that out can be a chore.
    If you don't know the model, find the Serial# & use it on one of these sites, but don't post the Serial# here...
    http://www.chipmunk.nl/klantenservice/applemodel.html
    http://www.appleserialnumberinfo.com/Desktop/index.php
    How to find the serial number of your Apple hardware product...
    http://support.apple.com/kb/HT1349
    I have replaced the iPod but have not tried to restore the iTunes library to it because of my confusion about how to do that.  Can anyone tell me how I might do that or give me any insight into the process?
    I'd get an external drive & restore the whole works to it, then boot from the External drive.

  • I am going to get a replacement for my iphone 5C, for data connection issues. Can I get an 5S, instead of antother 5C as a replacement?

    Hello, I have been having issues with my iPhone 5C for about a month now. I have unlimited everything, including data, & so randomly, starting about 2 weeks ago, my data basically does not work for any apps, besides like iMessage & Safari. So like if I have full LTE signal, I can try to open the Instagram app, and it will tell me "no internet connection", & it tells me that with ANY app, besides iMessage & Safari. Which is super frustrating, especially when I try to use like Maps or something & it jut does not load, & tells me that "there is not an internet connection", so I have to use apps & stuff only on wifi, in order for them to work. I went to the Sprint store, and had them try and update the data profile, reset data network, soft reset, etc (they basically did everything that I did), & they could NOT figure out what was wrong with my phone. So, they looked into my warranty information, and told me to take my phone to the Apple Store, and just get a replacement & that it would cost me only $50, since it is still covered under warranty. I am not up for an upgrade until April of 2016, & as far as I know, when it comes to replacements, Apple will either give me a new/refurbished iPhone 5C as a replacement. I don't really mind having to pay a little extra if I have to, in order to get a 5S , & I also don't care if the 5S would be either new or refurbished. So, my question is, could I maybe get a 5S as a replacement, instead of another 5C?
    Green iPhone 5C 8GB Sprint
    Message was edited by: jalyn_taylor
    Message was edited by: jalyn_taylor

    No.
    As provided,  you will get the exact same model, storage, color, etc

  • BW 3.5 - Issue with formula variable with replacement path

    Dear experts,
    I'm facing an issue with formula variable with replacement path.
    Just to clarify, I know replacement paths is raising a lot of questions but I've been using this functionnality extensively in the past, both in 7.0 and 3.5, so I'm not looking for basic information about how to use it.
    I'm trying to setup a simple report that would show total values per plant of Purchase Order < 100 €
    To do so I've setup a calculated key figure as follow:
    VAR1 * ("PO value" < 100 ) * "PO value"
    VAR1 is a formula variable with replacement path on 'purchase order' and value attribute 'constant =1'.
    (The report has to show values summarized by plant but should not show the detail PO by PO, so I'm not looking at a solution based on condition)
    The report as characteristic "plant" in rows and my CKF in columns.
    Now let's take an example. I have 3 POs in Plant 1:
    PO1 -> 150€
    PO2 -> 90€
    PO3 -> 80€
    Because of the variable with replacement path, the result in my query should be:
    plant1 = 170 (even though characteristic "purchase order" is not in my rows, system should evaluate PO one by one and return values only for those two that are below 100).
    But the result coming is 320, which is wrong.
    I've done the same report on many other 3.5 systems and it worked perfectly, and I am not able to get proper support from SAP OSS who keep saying that this functionnality is not ready in 3.5 (although I've provided screenshot of this working on another 3.5 system!!! how frustrating...)
    They have also pointed to problems of Before and After aggregation but that has absolutely no impact. Once again, the scenario is working perfectly on other 3.5 systems with the same query design, so i'm sure it has nothing to do with Query Designer options.
    Would anyone have ever come to an equivalenet problem? I'm wondering whether the DB itself could not play a role in the variable with ref  characteristic 'constant =1' ...
    Any though is welcome!
    thanks

    Hi,
    The text variable is replaced when the exact date is clear for this key figure column according to the restriction.
    To achive this, please make sure that either the variable is directly restricted in the key figure selection, or that the date characteristic is in drilldown.
    Regards,
    Patricia

  • Find and replace smart quotes with straight quotes?

    I understand I can turn off smart quotes so that I can type straight quotes, but I need to replace hundreds of curly smart quotes with straight quotes, is there a feature that will let me do this? I am using FM8.
    Thanx,
    Willian

    I am using FM9....so I don't know if the same shortcuts apply, but this is what I found out last week.
    Use the Find and Replace tool:
    With smart quotes turned off and the Num Lock key turned on:
    Alt0147 will give you beginning quotation marks
    Alt0148 will give you ending quotation marks
    In the Find box use ALT0147 or ALT0148 for the beginning or ending quotes. When you click in the box and type
    one of the shortcuts the correct quote will be shown in the box.
    In the replace box type the regular straight quotes on your keyboard.
    I was thrilled that it would work!...course you do have to do them separately and be careful not to replace the curly quotes
    that you want to leave in your document.
    Hope this helps using FM8....
    ls

  • Use VBA and Excel to open Dreamweaver HTML (CS5), find and replace text, save and close

    I wish to use VBA and Excel to programmatically open numbered Dreamweaver HTML (CS5) and find and replace text in the code view of these files, save and close them.
    I have  5000 associations between Find: x0001 and Replace: y0001 in an Excel sheet.
    I have the VBA written but do not know how to open, close and save the code view of the ####.html files. Please ... and thank you...
    [email protected]

    This is actually the code view of file ####.html that I wish to find and replace programmatically where #### is a four digit number cataloguing each painting.... In 1995 I thought this was clever... maybe not so clever now :>)) Thank you for whatever you can do Rob!
    !####.jpg!
    h2. "Name####"
    Oils on acrylic foundation commercial canvas - . xx X xx (inches) Started
    Back of the Painting In Progress </p> </body> </html>
    Warmest regards,
    Phil the Forecaster, http://philtheforecaster.blogspot.ca/ and http://phils-market.blogspot.ca/

  • How to get a macbook pro replacement under warranty?

    I bought my Macbook pro 6 months ago, and it's still under warranty right now. I used some laptops of SONY VAIO & Microsoft before, and I did not experience any problems with them in the first 2 years. This year, I decided to give Macbook pro a try because I have heard many compliments about this laptop from my friends and advertisements. When I opened the box and used it in the 1st time, I noticed that the button CAPS LOCK wasn't good, and I had to press it 2-3 times to make it work. It has happened for 6 months, until now. I felt a little bit disappointed, but I still use it because I am an easy customer. But recently, whenever I turn on the SLEEP MODE for my laptop and work with my laptop later on, my laptop often experiences the PAUSE or freezing. I don't know how to describe it, but there is a round circle with rainbow colors appear on the screen and pause everything/programs is running. My laptop has never been felt out or scratch. It's just 6 months since the day I purchased the laptop. I should not experience this trouble with my laptop because I think the Macpro is better than the SONY VAIO or other laptops. I feel like I was sold a refurbished Mac, and I am really disappointed. My friend told me to bring my Mac to be fixed in Apple store, but I don't want to continue using a fixed, refurbished Mac. Can I get a replacement? If I bought it in Bestbuy, could I got replacement in Apple Store or Bestbuy store?

    Can I get a replacement?
    No - see below
    whenever I turn on the SLEEP MODE for my laptop and work with my laptop later on, my laptop often experiences the PAUSE or freezing.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    but there is a round circle with rainbow colors appear on the screen and pause everything/programs is running.
    Troubleshoot the spinning beach ball
    When I opened the box and used it in the 1st time, I noticed that the button CAPS LOCK wasn't good, and I had to press it 2-3 times to make it work. It has happened for 6 months
    You are still under warranty.  Call Apple Care. Make sure you get a case number as all repairs have an additional 90 days of warranty. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - You have the standard one year Apple warranty.
    #4 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired.

  • I have three different ipods with music on them and have had to replace our computer as it was in a fire. How can we combine the ipods into one ipod.

    We had to replace our computer due to a fire and lost many of the fiels which were on them. Many were music files for the ipods, we have thre. Also, do not have ID's and passwords to the iTunes store.
    How can we combine the information so that they are all in each one or at least compbine everything into one ipod?

    Just so you know the method suggested by Nelsonleee will cost your $29.95 USD, Yamipod is free.

Maybe you are looking for

  • Ipod classic recognised as external disc, but not by itunes

    I've had a 120gb Classic for a while and more recently got an iphone. I had no problems with either, until recently. When I attach my classic, itunes does not recognise that it is there, yet it still appears as an external drive on my desktop. I am n

  • Mac Book Pro 15" inch late 2011 airdrop not showing up

    Hi everyone, I hope someone can help me... I have recently bought a late 2011 mbp 15" I was trying to use airdrop, but I'd didn't appeared on the sidebar and nor in the finder preferences. Please help me !! Thanks...

  • Mail / address book application problem with SL

    since SL was installed in my Mac Book when I try to send an email to various adresses te application (mail) quits suddenly and a dialog box indicates an error has occurred so that i must call the application again. Have called up ACPP on thos but did

  • Cant transfer address book to new torch 9810

    I have a torch 9800 that is linked to the blackberry enterprise server. I have backed it up many times through the BB desktop software on my imac. I recently got a new torch 9810 linked to an enterprise server as well. I switched devices using the BB

  • ****Posting Galleries! HELP! ****

    HI! I am working on a website for my company. and i have to switch website programs from front page to microsoft expressiond web 3! and i cant seem to figure out how to post galleries on that program! so i was wondering if someone could tell me how t