How to get pop-up for entering some value on it by user on Adobe INTERACTIV

Hello
We are developing a interactive adobe form,
1) User would like get some popups for entering the values in the popup and clicking either OK or CONTINUE, pls. let me know how to handle this?
2) can i get CALENDER, when user tries to input DATE entry? how its?

Hi,
You can create a subform overlapping you main body page and you can use this subform as pop-up.
You just need to do following things:
1. Create a subform over you main body page in the area where you want to show the pop-up, say SF_POPUP is the name of this subform.
2. Give it a background colour(So that it looks different from the main page).
3. On this subform SF_POPUP, create the fields you want the user to enter. along with these fields create a button 'OK' or 'Continue' as per your requirement.
4. Write the below code on click event of this button:
    SF_POPUP.presence = "Hidden".
5. On you main body area create a button to show this popup and write the below code on it:
   SF_POPUP.presence = "Visible".
6. By default set this popup SF_POPUP as hidden from subform properties.
Hope this will help for your first requirement, for your second requirement Arvind has already given a solution.
Regards,
Vaibhav

Similar Messages

  • How to get week & quarter for entered date

    I need help on below query
    1) when i enter date, it should bring previous & further week of that month. As per my requirement my week starts from Saturday to Friday. Lets say that i am entering 24.01.2006, then it should bring week 1 from 7th Jan to 13th Jan 206, 14th Jan to 20th Jan 2006 & so on.
    2) Similarly when i enter date as above , i want data coming on quarter basis instead of week..
    I will be highly thankfull to you for the help..
    Regards
    [HASAN]

    HI
    try HR_99S_GET_QUARTER.
    type-pools: p99sg.
    data: l_week type P99SG_QUARTER.
    CALL FUNCTION 'HR_99S_GET_QUARTER'
      EXPORTING
        IM_DATE             = sy-datum
      IM_ABKRS            =
      IM_PERMO            =
    IMPORTING
       EX_QUARTER          = l_week.
      EX_RETURNCODE       =
              write:/ l_week-begda.
               write:/ l_week-endda.
    Message was edited by: Harikishore Sreenivasulu

  • This is really a SQL question. How to get a record for the max value

    I have a table ZTX with the following fields and values
    VBELN  POSNR SEQNR DESCRIPTION
    3001             10   001  Desc1
    3001             10   002  Desc2
    3001             10   003  Desc3
    I want to create a query so that I can join tables VBAK-VBELN, and VBAP and ZTX. So that I only get the row of ZTX which has max (SEQNR) i.e 003 in this case. How can I write the SQL statement. Is there a way to write a single SQL statement which can retrieve from all three table VBAK, VBAP and ZTX maybe with a subquery or do I really have to first take the results of VBAK and VBAP join into internal table then fire query on ZTX.
    Thanks for reading

    Something like this
    Select * into table my_table from ztx as z
    join vbak as b on b~vbeln = z~vbeln
    join vbap as p on p~vbeln = z~vbeln " maybe posnr also?
    where
    z~seqnr = ( select max( seqnr ) from ztx where vbeln = z~vbeln ).

  • I keep getting pop ups to enter apple Id and password

    I keep getting pop ups to enter apple I'd and password

    Do NOT click on popups or webpages offering updates to Firefox.
    You appear to be posting from something other than Firefox (Internet Explorer ?)
    Are you able to post a screenshot, it is probably a scam.
    * [[How do I create a screenshot of my problem?]] <br /> (Please use a .jpeg or .png type compressed image; not some massive high resolution bitmap)
    (Note AFAIK Firefox is soon to start a campaign to upgrade outdated versions but even that will be through the ordinary Firefox interface not through popups)
    Please see
    *[[Update Firefox to the latest version]]
    **[[Firefox failed to update - how to update manually]]

  • How to get Open Balance for the year and Total Ending Balance?

    For a given account, how to get Open Balance for the year (Cumulative Ending Balance) and Total Ending Balance (Cumulative Ending Balance)?
    Is there any function module available? or should I read from some tables? Please advice.

    Hello Paul,
    You could try calling one of the following BAPIs - see which one meets your requirement. They are documented well so shouldn't be a problem finding out the correct one for your requirements.
    BAPI_GL_GETGLACCBALANCE      
    BAPI_GL_GETGLACCCURRENTBALANCE
    BAPI_GL_ACC_GETBALANCE      
    BAPI_GL_ACC_GETCURRENTBALANCE
    BAPI_GL_ACC_GETPERIODBALANCES
    BAPI_COND_VAL_DECRE_BALANCES
    You might have to put in some of your own logic after the BAPI call to get what you want.
    Hope this helps,
    Cheers,
    Sougata.
    p.s. Also look at FM FAGL_GET_ACCOUNT_BALANCE
    Edited by: Sougata Chatterjee on May 7, 2008 11:47 AM

  • How to Get Missing Dates for Each Support Ticket In My Query?

    Hello -
    I'm really baffled as to how to get missing dates for each support ticket in my query.  I did a search for this and found several CTE's however they only provide ways to find missing dates in a date table rather than missing dates for another column
    in a table.  Let me explain a bit further here -
    I have a query which has a list of support tickets for the month of January.  Each support ticket is supposed to be updated daily by a support rep, however that isn't happening so the business wants to know for each ticket which dates have NOT been
    updated.  So, for example, I might have support ticket 44BS which was updated on 2014-01-01, 2014-01-05, 2014-01-07.  Each time the ticket is updated a new row is inserted into the table.  I need a query which will return the missing dates per
    each support ticket.
    I should also add that I DO NOT have any sort of admin nor write permissions to the database...none at all.  My team has tried and they won't give 'em.   So proposing a function or storable solution will not work.  I'm stuck with doing everything
    in a query.
    I'll try and provide some sample data as an example -
    CREATE TABLE #Tickets
    TicketNo VARCHAR(4)
    ,DateUpdated DATE
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-01')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-05')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-07')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-03')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-09')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-11')
    So for ticket 44BS, I need to return the missing dates between January 1st and January 5th, again between January 5th and January 7th.  A set-based solution would be best.
    I'm sure this is easier than i'm making it.  However, after playing around for a couple of hours my head hurts and I need sleep.  If anyone can help, you'd be a job-saver :)
    Thanks!!

    CREATE TABLE #Tickets (
    TicketNo VARCHAR(4)
    ,DateUpdated DATETIME
    GO
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-01'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-05'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-07'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-03'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-09'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-11'
    GO
    GO
    SELECT *
    FROM #Tickets
    GO
    GO
    CREATE TABLE #tempDist (
    NRow INT
    ,TicketNo VARCHAR(4)
    ,MinDate DATETIME
    ,MaxDate DATETIME
    GO
    CREATE TABLE #tempUnUserdDate (
    TicketNo VARCHAR(4)
    ,MissDate DATETIME
    GO
    INSERT INTO #tempDist
    SELECT Row_Number() OVER (
    ORDER BY TicketNo
    ) AS NROw
    ,TicketNo
    ,Min(DateUpdated) AS MinDate
    ,MAx(DateUpdated) AS MaxDate
    FROM #Tickets
    GROUP BY TicketNo
    SELECT *
    FROM #tempDist
    GO
    -- Get the number of rows in the looping table
    DECLARE @RowCount INT
    SET @RowCount = (
    SELECT COUNT(TicketNo)
    FROM #tempDist
    -- Declare an iterator
    DECLARE @I INT
    -- Initialize the iterator
    SET @I = 1
    -- Loop through the rows of a table @myTable
    WHILE (@I <= @RowCount)
    BEGIN
    --  Declare variables to hold the data which we get after looping each record
    DECLARE @MyDate DATETIME
    DECLARE @TicketNo VARCHAR(50)
    ,@MinDate DATETIME
    ,@MaxDate DATETIME
    -- Get the data from table and set to variables
    SELECT @TicketNo = TicketNo
    ,@MinDate = MinDate
    ,@MaxDate = MaxDate
    FROM #tempDist
    WHERE NRow = @I
    SET @MyDate = @MinDate
    WHILE @MaxDate > @MyDate
    BEGIN
    IF NOT EXISTS (
    SELECT *
    FROM #Tickets
    WHERE TicketNo = @TicketNo
    AND DateUpdated = @MyDate
    BEGIN
    INSERT INTO #tempUnUserdDate
    VALUES (
    @TicketNo
    ,@MyDate
    END
    SET @MyDate = dateadd(d, 1, @MyDate)
    END
    SET @I = @I + 1
    END
    GO
    SELECT *
    FROM #tempUnUserdDate
    GO
    GO
    DROP TABLE #tickets
    GO
    DROP TABLE #tempDist
    GO
    DROP TABLE #tempUnUserdDate
    Thanks, 
    Shridhar J Joshi 
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • How to get F4 help for Standard Text Key of a operation based on Order type

    Hi Experts,
      How to get F4 help for Standard Text Key (STK) of a operation based on Order type entered in selection screen. The F4 help should give the STK of related order type. At the same time the F4 help for Task Types based on Notification type. How to acheive the above two. Please provide the table names or any search help name if exists or Function modules...
    Thanks in Advance.
    Regads,
    Bujji

    Hi Guys,
       Any help on this...
    Regards,
    Bujji
    Edited by: Bujji on Dec 22, 2008 12:42 PM
    Edited by: Bujji on Jan 5, 2009 2:00 PM

  • How to get more features for Captivate 6

    Hi all,
    I've installed Captivate 6 on my laptop at work, I use it for creating training material for our project management system. I was just looking at some Adobe video tutorial and there are some features shown in the videos that I can't find on my captivate (for example Drag and Drop interaction, some particular widget like "Hangman" etc...). I tried to download them, clicking on the "Download more interactions" but there are any available. So, is there a way to get those features, at least those shown in your video tutorial for Captivate 6?
    Thank you very much
    Elena

    Hello,
    thank you for your answer.
    I have the version 6.0, so maybe I can't get those features because of the version that I have.
    Even if I click on "Download more" on the Interactions window, there are no Interactions available, but is it a problem related to my version or it's because there aren't available new features?
    Thank you very much,
    Elena Bettarini
    Date: Thu, 14 Nov 2013 00:40:11 -0800
    From: [email protected]
    To: [email protected]
    Subject: How to get more features for Captivate 6
        Re: How to get more features for Captivate 6
        created by Lilybiri in Adobe Captivate - View the full discussion
    Hello and welcome,
    I cannot remember for the Hangman interaction anymore, but Drag&Drop was only available for subscription users, for version 6.1.0.3190 Maybe it was not clear in the video you are pointing at, that not all features were available for box licenses. Which version do you have?
    Lilybiri
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5841167#5841167
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5841167#5841167
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5841167#5841167. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Adobe Captivate at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How to get pop-up screen in modulepool

    Hi Guru,
    how to get pop-up screen when press push button from one screen.
    what is the code to do even i selected screen as module dialog box at screen attributes i am getting but normal full screen i am getting. pls tell me how to get pop-up screen when i press push button.
    regards,

    hi,
    write the logic of POP up int he PAI event of the Screen
    case sy-ucomm.
    when 'Push button'.
       Logic for popup button.
    endcase.
    Logic for POPUP :
        CALL FUNCTION 'POPUP_WITH_2_BUTTONS_TO_CHOOSE'
          EXPORTING
            diagnosetext1 = 'The combination of Run Date & Identification'(001)
            diagnosetext2 = 'already exist. Do you want to display ?'(002)
            textline1     = space
            text_option1  = 'YES'(003)
            text_option2  = 'NO'(004)
            titel         = 'Processing selection'(005)
          IMPORTING
            answer        = v_answer.
          CALL FUNCTION 'POPUP_TO_CONFIRM'                      "#EC *
            EXPORTING
              text_question  = 'Message For Confirmation'
              text_button_1  = 'YES'
              text_button_2  = 'NO'
              default_button = '1'
              display_cancel_button = ' '
              start_column   = 25
              start_row      = 6
            IMPORTING
              answer         = v_answer
            EXCEPTIONS
              text_not_found = 1
              OTHERS         = 2.
    Regards,
    Deepthi.

  • How to get money back for Nokia n97?

     Hi Guys!
     I gave up with Nokia N97!!! I have a lot of problems with it. All of them are known. While this 2,5 months of using the device I was so **bleep** off and felt very uncomfortable while using it! Is that what we paid $700 for?? To see how good it is in the official video commercial and how damn SLOW, buggy and how bad the hardware is? I waited for software update and was hoping to see nice and fast device, oh! and working GPS! Instead - it's still the same "smart" which is most worse on nokia market. That's enough!    
     So now I have this question: How to get money back for Nokia n97 after 2,5 months of usage? or maybe exchange to n900? I will call to customer care center soon but maybe  someone of you have done this already and you can give some tips? 
     Thank You! 
     Cheers
     Hi guys!

    put it up for sale, you have used it for over 30 days nokia will not give you a refund. sell it and buy yourself another device in this case. im giving mine away to a friend. he likes the n97 so its a win win
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • How to get pc-doctor for win7?

    How to get pc-doctor for win7?  Thanks.
    This question was solved.
    View Solution.

    Hi,
    The PC Doctor version that HP had  provided on some PCs using VISTA was licensed software.  If you are still running VISTA then your can burn a bootable CD containing PC Doctor. A non-OEM license for PC Doctor is quite expensive the last time that I had checked.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Can any body tell me how to get a call for adobe interview for a flex developer post for 2.6 years??

    can any body tell me how to get a call for adobe interview for a flex developer post for 2.6 years??

    hi,
    there's some microsoft support to this issue. check here http://support.microsoft.com/kb/2008385 
    regards.
    From out of Nowhere

  • Not getting Pop-Up for rejection in CRM Worklist

    Hello all,
    I am working on CRM workflows and we are on EHP 6 where for Generic User Decision Task we can give Justification as required or mandatory.
    When I create a task with approve and reject buttons and make Rejection Reason as mandatory on Reject it works fine in SBWP inbox ,when I try to execute same from CRM Worklist I wont get the POP-UP to give rejection reason.
    Please let me know how to get the popup for rejection in CRM worklist.

    Hi Lohit
    I am not sure if note pop-up is available for CRM WebUi or even UWL. It's only for backend.
    However, you can try note 1964571 - which is for similar functionality for Extended Notifications. Not sure if CRWebUI will call the same components and would analyze the additional parameters of SAP_WAPI_DECISION_READ.
    Also, does CRM UI has the same XML config as for the UWL? if yes, then you can configure the XML to provide a popup for mandatory decision note.
    Here is one link:
    http://help.sap.com/saphelp_nw04s/helpdata/EN/7a/df014b037141ca9afc6433ed42b519/content.htm
    Regards,
    Modak.
    PS: you might want to raise an OSS message, referencing the functionality of note 1643764 and then asking if that is available for CRM Worklist.

  • How to get an answer for Support Request Number 12...

    How to get an answer for Support Request Number 1277702580 ?

    Has your speed problem been resolved, or do you need assistance?
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How to get internet settins for i phone4

    how to get internet settins for i phone4

    An Apple AirPort is a router, so you're covered there. The only other device required is a modem, and there are many of them from which to choose. Does your ISP supply one, and if so, can you determine its model number?
    Modems can be purchased for $30. You first need to ask your ISP what equipment they plan to supply, if anything. Modems are commonly supplied for $0, to be returned if and when you cancel their service. Some ISPs want to supply a modem but charge you a rental fee. Whatever that fee is, it's not worth it.

Maybe you are looking for

  • Timestamp problem in Forms 10g

    In a 10g form (using 10g database, running on MS-W2000, Linux-Redhat) Record 1 is entered and saved at 12-JAN-2006 13:20:49. Record 2 is entered and saved at 12-JAN-2006 13:21:25. Then, these 2 records have the timestamp reversed upon retrieval: Reco

  • After using video capture device to copy VHS to DVD, burnt DVD will play on computer but not

    After using video capture device to copy VHS to DVD, burnt DVD will play on computer but not on DVD player. Tech support for the VCD said my HP DVD burning software has to burn "DVD Video and not DVD data" and to check with HP. How can i check myself

  • Creating a discussion board/forum using Flash

    Ok I checked the WWW and used search here but I keep ending up with dead ends or inactive sites.  Is it possible to create a forum using Flash? If yes, does anyone know a resource I can use or examples I can see?

  • Toplink Workbench Exceptions …….

    When I tried to open a Toplink project (project.mwp) generated by Toplink 9.0.3 in the newer version 9.0.4, I got the following errors during the conversion process. What should I do to correct this issue? Many thanks for the help. Throwable Class Na

  • Error de ensamblaje... iTunes 10.5

    Tengo Windows vista en mi equipo y no puedo actuAlizar iTunes a 10.5. Cuando intentaba actualizaron desde el progrma me daba problemas pk había errores durante la instalación del ensamblaje, por esto lo borre entero para descargarlo desde la web de A