LiveCycle Form Calling Processes

Hi,
Our application use .Net, LiveCycle form and process management. From form (rendered within .Net application, open by Adobe Pro) calling back end process for validation. Since by default the authentication to process is enabled, I'm trying to find out a way to pass user credential when invoking the process. User logs in from .Net application. Anyone has resolved same issue?
Thanks,
Xiaoying

That can't be true.  I created a form using LiveCycle Designer and I can currently see it and fill it in on the reader.  I would love to send the form to someone so they can tell me what I did right becuase I can't seem to create any more forms that I am able to view.  Is there anyone I can send that file to to have a look at and give me some feedback?

Similar Messages

  • Acroread 8.1.2 unable to process PDF 1.6 documents generated by Adobe LiveCycle Forms 7.0

    Our workflow uses LiveCycle Forms to generate PDF 1.6 documents with embedded JavaScript and XML. These PDFs work fine with Adobe Reader 8.1.2 on Windows; they display correctly, the interactive fields work as expected and the documents can be printed properly.
    However, acroread 8.1.2 on Solaris is not able to process the same documents correctly. When we run acroread headlessly as follows:
    cat xxx.pdf | acroread -toPostScript -level2 > xxx.ps
    the resulting PostScript file displays a message saying "To view the full contents of this document, you need a later version of the PDF viewer. You can upgrate to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html"
    I have confirmed that we are using the latest version of acroread for Solaris.
    Does anyone have any insight into why this message is being generated by acroread 8.1.2?
    edit: acroread is able to process other PDFs as above without problem. It only has problems with PDFs generated by LiveCycle Forms which include embedded JavaScript and XML.

    Neha,
    Thanks for the response.
    We are running acroread headlessly since it is on a remote server that we access via telnet. Without an XServer session, I can't tell whether acroread is able to read and display the PDF files normally. However, we can view the PDFs with Adobe Reader 8.1.2 on Windows and the acroread -toPostScript command-line that we are using does work properly with other PDFs.
    I will email you a copy of a problematic PDF shortly.
    Regards,
    Steven Dickson

  • Connecting to a Database from a LiveCycle form

    Good morning everyone,
    I've been working at understanding how to connect to a database via my livecycle form and up to here, i can easilly enough connect to an ACCESS DB.
    I created an ODBC,
    a simple 1 table MS Access DB
    and a simple form that connects to that DB via the ODBC.
    My question is, how do i set this up if i want my clients to use this form? i cant really have that ODBC installed on all their machines, so how can i have this setup instead?
    I do have access to a LiveCycle server, but i only have the Extended reader module installed, nothing else. Can it be done and if so, how would i go about setting this up?
    If i can get that to work, this would open up a lot of possibilities where i work at.
    So what i need is a way to mimic that ODBC setup, but without having to create 5000 ODBC connections on my clients machines
    If you need clarifications on anything, please don't hesitate to  ask.
    Thank you yet again,
    PAtrick

    Hi Patrick,
    You can create a process in workbench which will make the JDBC calls and bring the data (See this - http://help.adobe.com/en_US/livecycle/9.0/services.pdf)
    Then you can use the SOAP endpoint of this process in the LiveCycle form and invoke the process
    Hope this helps.
    ~Varun

  • What happened to LiveCycle Form Manager?

    Hello.
    Our company is trying to implement an e-Form solution that could help us managing our e-Form documents. We found Adobe LiveCycle and think it is the best option but we want to figure out something we don´t get yet. We see that in LiveCycle 7.2 there was the LiveCycle Form Manager that was used to publish all forms, in their native formats, to a centralized form repository, leverage user profiles for data prepopulation upon form access.provide access and enable forms search through a Web interface and maintain version and access controls. In the Adobe LiveCycle ES we don´t find that module. Which module can give us the same functionalities that were offered with the Form Manager? Do we need to buy the entire suite?
    In the future we are planning to buy the whole suite, but for now we would like to start only with the basic services the Form Manager used to offer.
    Thanks for any help.

    When you install the Process Management Solution Component you get a new Web Application called "LiveCycle Workspace ES". This is not Form Manager, which is no longer distributed. But it would typically fulfill many of the operations that you are already familiar with using Form Manager; such as Starting a new Work flow activity, Browsing Tasks in a ToDo List and viewing your process history.
    Workspace is a more Agile (Flash based) Web UI. One important difference is that it lists the work flow processes that you may initiate (not just a library of forms). Then the process will determine the actual form in the Repository that will be displayed in the UI.

  • How to kill Forms Runaway Process using 95% CPU and running for 2 hours.

    We had a situation at E-Business Suite customer (using Oracle VM server) where some of Form processes were not being cleared by form timeout settings automatically.
    Also when user exits the form session from front end, the linux form process (PID) and DB session did not exit properly, so they got hung.
    They were spiking CPU and memory usage and causing e-business suite to perform slowely and ultimately causing VM host to reboot the production VM guest (running on Linux).
    We could see the form processes (PIDs) using almost 100% cpu with "top" command and running for a long time.
    Also we verified those Form Sessions did not exist in the application itself.
    ie. Using from Grid Control -> OAM-> Site Map -> Monitoring (tab) -> "Form Sessions".
    It means that we could safely kill that form process from Linux using "kill -9 <PID>" command.
    But that required a continuous monitoring and manual DBA intervention as customer is 24x7 customer.
    So, I wrote a shell script to do the following;
    •     Cron job runs every half an hour 7 days a week which calls this shell script.
    •     Shell script runs and tries to find "top two" f60webmx processes (form sessions) using over 95% cpu with 2 minutes interval.
    •     If no process is found or CPU% is less than 95%, it exits and does nothing.
    •     If top process is found, it searches for its DB session using apps login (with hidden apps password file - /home/applmgr/.pwd).
    a.     If DB session is NOT found (which means form process is hung), it kills the process from unix and emails results to <[email protected]>
    b.     If DB session is found, it waits for 2 hours so that form process times automatically via form session timeout setting.
    It also emails the SQL to check the DB session for that form process.
    c.     If DB session is found and it does not timeout after 2 hours,
    it kills the process from unix (which in turn kills the DB session). Output is emailed.
    This are the files required for this;
    1. Cron job which calls the shell script looks like this;
    # Kill form runaway process, using over 95% cpu having no DB session or DB session for > 2hrs
    00,30 * * * * /home/applmgr/forms_runaway.sh 2>&1
    2. SQL that this script calls is /home/applmgr/frm_runaway.sql and looks like;
    set head off
    set verify off
    set feedback off
    set pagesize 0
    define form_client_PID = &1
    select count(*) from v$session s , v$process p, FND_FORM_SESSIONS_V f where S.AUDSID=f.audsid and p.addr=s.paddr and s.process='&form_client_PID';
    3. Actual shell script is /home/applmgr/forms_runaway.sh and looks like;
    # Author : Amandeep Singh
    # Description : Kills runaway form processes using more than 95% cpu
    # and Form Session with no DB session or DB session > 2hrs
    # Dated : 11-April-2012
    #!/bin/bash
    . /home/applmgr/.bash_profile
    PWD=`cat ~/.pwd`
    export PWD
    echo "`date`">/tmp/runaway_forms.log
    echo "----------------------------------">>/tmp/runaway_forms.log
    VAR1=`top -b -u applmgr -n 1|grep f60webmx|grep -v sh|grep -v awk|grep -v top|sort -nrk9|head -2|sed 's/^[ \t]*//;s/[ \t]*$//'| awk '{ if ($9 > 95 && $12 = "f60webmx") print $1 " "$9 " "$11 " "$12; }'`
    PID1=`echo $VAR1|awk '{print $1}'`
    CPU1=`echo $VAR1|awk '{print $2}'`
    TIME1=`echo $VAR1|awk '{print $3}'`
    PROG1=`echo $VAR1|awk '{print $4}'`
    PID_1=`echo $VAR1|awk '{print $5}'`
    CPU_1=`echo $VAR1|awk '{print $6}'`
    TIME_1=`echo $VAR1|awk '{print $7}'`
    PROG_1=`echo $VAR1|awk '{print $8}'`
    echo "PID1="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    echo "PID_1="$PID_1", CPU%="$CPU_1", Running Time="$TIME_1", Program="$PROG_1>>/tmp/runaway_forms.log
    echo " ">>/tmp/runaway_forms.log
    sleep 120
    echo "`date`">>/tmp/runaway_forms.log
    echo "----------------------------------">>/tmp/runaway_forms.log
    VAR2=`top -b -u applmgr -n 1|grep f60webmx|grep -v sh|grep -v awk|grep -v top|sort -nrk9|head -2|sed 's/^[ \t]*//;s/[ \t]*$//'| awk '{ if ($9 > 95 && $12 = "f60webmx") print $1 " "$9 " "$11 " "$12; }'`
    PID2=`echo $VAR2|awk '{print $1}'`
    CPU2=`echo $VAR2|awk '{print $2}'`
    TIME2=`echo $VAR2|awk '{print $3}'`
    PROG2=`echo $VAR2|awk '{print $4}'`
    PID_2=`echo $VAR2|awk '{print $5}'`
    CPU_2=`echo $VAR2|awk '{print $6}'`
    TIME_2=`echo $VAR2|awk '{print $7}'`
    PROG_2=`echo $VAR2|awk '{print $8}'`
    HRS=`echo $TIME1|cut -d: -f1`
    exprHRS=`expr "$HRS"`
    echo "PID2="$PID2", CPU%="$CPU2", Running Time="$TIME2", Program="$PROG2>>/tmp/runaway_forms.log
    echo "PID_2="$PID_2", CPU%="$CPU_2", Running Time="$TIME_2", Program="$PROG_2>>/tmp/runaway_forms.log
    echo " ">>/tmp/runaway_forms.log
    # If PID1 or PID2 is NULL
    if [ -z ${PID1} ] || [ -z ${PID2} ]
    then
    echo "no top processes found. Either PID is NULL OR CPU% is less than 95%. Exiting...">>/tmp/runaway_forms.log
    elif
    # If PID1 is equal to PID2 or PID1=PID_2 or PID_1=PID2 or PID_1=PID_2
    [ ${PID1} -eq ${PID2} ] || [ ${PID1} -eq ${PID_2} ] || [ ${PID_1} -eq ${PID2} ] || [ ${PID_1} -eq ${PID_2} ];
    then
    DB_SESSION=`$ORACLE_HOME/bin/sqlplus -S apps/$PWD @/home/applmgr/frm_runaway.sql $PID1 << EOF
    EOF`
    echo " ">>/tmp/runaway_forms.log
    echo "DB_SESSION ="$DB_SESSION >>/tmp/runaway_forms.log
    # if no DB session found for PID
    if [ $DB_SESSION -eq 0 ] then
    echo " ">>/tmp/runaway_forms.log
    echo "Killed Following Runaway Forms Process:">>/tmp/runaway_forms.log
    echo "-------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "PID="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    kill -9 $PID1
    #Email the output
    mailx -s "Killed: `hostname -a` Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    else
    # If DB session exists for PID
    if [ ${exprHRS} -gt 120 ]; then
    echo $DB_SESSION "of Database sessions exist for this forms process-PID="$PID1". But its running for more than 2 hours. ">>/tmp/runaway_forms.log
    echo "Process running time is "$exprHRS" minutes.">>/tmp/runaway_forms.log
    echo "Killed Following Runaway Forms Process:">>/tmp/runaway_forms.log
    echo "-------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "PID="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    kill -9 $PID1
    #Email the output
    mailx -s "`hostname -a`: Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    else
    echo "Process running time is "$exprHRS" minutes.">>/tmp/runaway_forms.log
    echo $DB_SESSION "of Database sessions exist for PID="$PID1" and is less than 2 hours old. Not killing...">>/tmp/runaway_forms.log
    echo "For more details on this PID, run following SQL query;">>/tmp/runaway_forms.log
    echo "-----------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "set pages 9999 lines 150">>/tmp/runaway_forms.log
    echo "select f.user_form_name, f.user_name, p.spid DB_OS_ID , s.process client_os_id,, s.audsid, f.PROCESS_SPID Forms_SPID,">>/tmp/runaway_forms.log
    echo "to_char(s.logon_time,'DD-Mon-YY hh:mi:ss'), s.seconds_in_wait">>/tmp/runaway_forms.log
    echo "from v\$session s , v\$process p, FND_FORM_SESSIONS_V f">>/tmp/runaway_forms.log
    echo "where S.AUDSID=f.audsid and p.addr=s.paddr and s.process='"$PID1"' order by p.spid;">>/tmp/runaway_forms.log
    mailx -s "`hostname -a`: Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    fi
    fi
    else
    #if PID1 and PID2 are not equal or CPU% is less than 95%.
    echo "No unique CPU hogging form processes found. Exiting...">>/tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    fi
    If you have the same problem with some other unix and DB processes, the script can be easily modified and used.
    But use this with thorough testing first (by commenting out <kill -9 $PID1> lines.
    Good luck.
    Edited by: R12_AppsDBA on 19/04/2012 13:10

    Thanks for sharing the script!
    Hussein

  • How to use Adobe LiveCycle Forms Standard / Pro to leverage features in Adobe Reader

    Can someone please tell me how to use the Adobe LiveCycle Forms Standard or Pro module to leverage features in Adobe Reader? Do you also need to have the Reader Extensions Module?
    The forms data sheet says that it is possible to leverage features in Adobe Reader but does not go on to detail how.

    Depends on your deployment pattern.  You can just use Reader Extensions if you're publishing forms on a site, if you need to prefill or perform other processing on the template then LiveCycle Forms is needed.  If you want to render to HTML5 for tablet support then Forms Pro is needed.

  • Form created with Livecycle Designer with a SQL database - do you need LiveCycle Forms installed?

    Hello,
    I'm REALLY hoping someone here can help me, I have spent over four hours on the phone to Adobe in the last 3 days and I'm getting no where what-so-ever. I can't even find out where /how to complain about it! (but thats another story)
    Here's my situtation:
    I work for a company with approx 140 staff. On one computer, we have Adobe Livecycle Designer ES installed, and we have used that program to create a form which has a link to a SQL database.
    The link in this form doesn't work on the other computers which has the basic (free) Adobe Reader. From doing research within these forums
     , I have found that the form will not work on other computers unless they have Adobe Livecycle forms installed on their machines. 
    What I need to know (and what they cannot seem to tell me when I call), is two things:
    Is it correct that in order to use a form created in Livecycle Designer which has a link to a SQL database, that the machine must have LiveCycle forms installed?
    How much does Adobe LiveCycle Forms costs?
    PLEASE, if you can answer this question, I would REALLY appriciate it....
    Thank you!

    I presume you are asking if you need Livecycle Forms ES? Forms ES is a component of the livecycle software suite intended as a document service which will be installed on a server within the organisation. A couple of things this document service can do is to render XDP into multiple formats (PDF, html, etc.), execute script server side (for example the database connection) on behalf of the client (reader, etc.), integrate with backend components, etc. So no you do not install this on each client.
    For database connections to work, you either have a server with Forms ES installed which can connect on each clients behalf (ie. Client->Forms ES Server->Database), or you have a reader-extended PDF to allow connections to be use in the free basic Reader (i.e. direct calls to the database or using web service calls to your own database components). However, reader-extended pdf would probably require Reader Extensions ES component installed on a server (you once off extend your developed pdf through this and then hand it out to each of the end users). Not sure if the Acrobat Reader extensions will cover this functionality since I have not tried that. I dont think it does. Otherwise you would need full acrobat on each client.
    How much database integration is your form actually doing at the moment? read only? Full access? And how many clients do you expect to hit your database? Depending on what you need the form to do, there is always the option to try and build the integration yourself. Do simple http submits from the browser (hosting reader as a plugin) to some component somewhere which in turn hits your database. Wouldnt require additional licensing but alot more development work.
    As for cost for the various components, thats a question only Adobe can answer for you since they all sit squarely in the enterprise space and licensing for that is not as simple as off the shelf products.
    Maybe someone else has a view on it or has an alternative.

  • Attachment Buttons not coming in Task TS17900101 of HCM Forms and Process

    Hi ,
    We are using HCM Forms and process for changing employee organization unit which is linked with workflow for approvals.
    In this workflow we are calling standard task TS17900101 .Till now every thing is working fine but the problem is with attachments as their is a requirement to show attachments button with this Approve and Reject Task. But as per my knowledge SAP has not given any option to attach documents with this task which is however only possibe through TS17900100.
    So can u suggest any way to attach documents with Approve and Reject Task which is TS17900101.
    Thanks,
    Rahul

    Hi,
    i have the same problem and no idea how to solve it.
    Please let me know, what enhancing module pool code helped you
    Thanks,
    Galina

  • Standards or Best Practices on limits to Adobe LiveCycle forms as data input tools?

    We are trying to determine whether we should be using Adobe LiveCycle forms for our user input pages, or use a web input form (jsf) that is part of the application server. The data captured would then be rendered in multiple output forms. (printing, etc) We've proofed that it can be done, but our experience so far is that to achieve the complex business rules, validations and calculations, there is a lot of javascript code to write. Has there been any industry assessment or best practices on determining when it is best to use a web form vs Adobe Livecycle form for capturing user input? especially when there is a lot of strict validation and business rule, backend data calls, etc?   Our input requirements also differ significantly from our output requirements- where we will definitely be using LiveCycle forms.

    It sounds like you need use the adobe schema in MII so the output of your transaction matches it.
    Regards,
    Jamie

  • Integrate Weblogic with LiveCYcle Forms...

    Hello,<br /><br />I am new to LiveCycle and started to integrate Weblogic 8.1 with LiveCycle Forms. I have donwloaded samples and it is pretty clear what are my integration options. I am going to use Interactive HTML feature.<br /><br />I am using .jsp file which has some header, footer and navigation stuff. This JSP need to include the html generated by livecycle forms. As I understand - there are 2 options:<br /><br />1. Use <jsp:include> to call Servet which calls RenderForm<br />2. Use a Custom Tag which calls RenderForm.<br /><br />Due to some design limitations, I have to use option # 2.<br /><br />Adobe Samples has a tag library whcih has a similar tag - TagIncludeSource. But the source code for it is not included in sample.<br /><br />Does anybody has the source code for it, or can somebody point me to similar code?<br /><br />Thanks in advance.

    It does seem to be only happening with Adobe files, yes. I am not personally a LiveCycle user but it was brought to my attention by my LiveCycle users. I don't believe there are any LiveCycle add-ons in the SharePoint environment. I am simply choosing check-out from the dropdown in the browser. With Photoshop files, I have an Edit Document option in the document library. With Illustrator and LiveCycle files, I access with Open with Explorer.
    Another clue is that I found that upon saving the files, in addition to what I describe above, it apparently performs a delete action because the previous versions of the file end up in the recycle bin. Strange stuff.
    Naturally Microsoft Office files don't have this same problem. I tested with a couple other random applications: Notepad, Camtasia, and had no such issues.

  • HCM forms and Processes - Adobe

    Hi,
    I am working on HCM forms and processes( not QISRs ). I want to populate a drop down list based on the selection of another dropdown list, how can we acheive this in Adobe forms. Should I go about configuring some back end generic service? if so how will the backend service get triggered based on my selection.. Any idea on this is highly appreciated
    Thanks.

    Hi
    To archive  above functionality we can use  below simple method, if u r expectig same functionality through operations and custom event give me some time i need to recall some functioality(At present i am unable to acces MY SAP)
    Let my BADI name is   Z_Positions .
    Letu2019s define two attributes in my BADI like E_DATE and DD1.
    For to understand better create one methods as same as input and out parameters of Get_Help_Values method.
    So my methods is F4_Vac_Pos
    Method:- F4_Vac_Pos
                Read the entered  value of the Effective date (by reading service datasets with passing key as filename =E_Date)
    Once if we able to read the Effective date, cheek is initialize are not(value is there or not).
         If it is not initialize go ahead else return.
         If it is not initialize fill all vacant positions in DD1  based on by passing key as readied 
                       Effective date.
    Call this methods in get_help_values  method.
    From Configuration side:-
    Created Effective_date  and  F4_DD1attributes.
    Add your custom generic service to form (let assume  service no is 200 ).
    Go to the assignment of custom generic service; map the F4_DD1 form attributes to the BADI attribute DD1 and cheek default value and value help.
    The same way map form Effective_date attribute to BADI E_date (donu2019t select value help option)
    Now adobe java script:-
    Write the below piece of code on click method of button
    xfa.record.CONTROL_PARAM.ISR_EVENT.value = "USER_EVENT_CHECK";
    ContainerFoundation_JS.SendMessageToContainer(event.target, "submit", "", "", "", "");
    Data Flow:-
    Once the date is selected, click on the Button. As we know already for every round trip get_help_values method will call. Now it will call.
    As already effective date value is mapped to one of the custom badi attribute, so we are able to read this value through service data set.
    While filling DD1 values we are filtering data based on effective date. Now at badi level we are filtered vacant position based on effective date.
    As this one is mapped to F4_DD1 form attribute, once round trip is completed u will see filtered vacant position based on effective date.

  • Livecycle Form only captures data for 1st subsform, Help!

    Relative novice LiveCycle User. Creaded a Membership dus renewal form and with help of Acrobat Expert her sonfigured 3 subform which come into view depending on selections of user.
    Problem is the only the 1st 4 fields in the form show up on the Responses file, and when collecting data, only the 1t of fields out of about 25 collect data, the subform after the first one do not colelct date.
    Hit a wall here, trying to get the form to process all fields. Even downloaded a tutorial with a script to process al fields, but do not know how to install this script.\
    WIlling to pay ffor time of someone who can diagnose and correct this problem.
    Form is at:
    http://www.dh-llc.us/ES_Form_RK2.pdf
    Thanks in advance for any help.
    dana hoffman
    Hoffman International Investigations, LLC
    [email protected]
    303 863-9600
    www.dh-llc.us

    http://forums.adobe.com/community/livecycle/livecycle_es/livecycle_designer_es

  • What are theadvantages and disadvantages of HR Forms and processes

    Hi Experts,
    Greetings!
    Please let me know the use of and advantages of HR Forms and processes, What is the role of SAP HR/HCM Consultant role while implementing HR Forms and Processes.
    Thanks in advance.
    Regards,
    Ram

    Hi,
    In HCM Processes and Forms  the SAP HR consultnat define the
    Process -  it means "Depiction of a HR process flow in Personnel Administration using elements from HR Administrative Services."
    ISR Scenario -  it means "Used to call up an interactive form in a form-based process within HR Administrative Services. In the Internet Service Request (ISR) scenario you specify which form is used and the layout of the form."
    Form Scenario -  Together with the assigned ISR scenario, the form scenario provides the basis for a form-based process such as "Transferu201C.
    This type of process runs through several roles that are integrated using interactive forms, and ends by modifying the HR master data.
    A form scenario comprises one interactive form and is assigned to one ISR scenario.
    Please find the following is the Best document on it .
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/1d63953fce3566e10000000a11466f/frameset.htm
    Go thorw propery here you can find also how to use this in ESS and MSS .

  • Forms Runtime Process

    Hi,
    It is my understanding that only one forms runtime process is spawned per session.
    Is this the case? So everytime you call a new form you shouldnt be opening a new
    forms runtime process correct?
    Thanks!

    Hi
    CALL_FORM, OPEN_FORM, NEW_FORM are the Built-ins that will help us in creating “Multiple Form Applications”.
    This built-in is used to invoke more than one form in a single session.
    So everytime you call a new form you shouldnt be opening a new forms runtime process correct?If you are using
    NEW_FORM, you are starting a new form and terminating the current EXISTING form.
    OPEN_FORM opens the new Form but also keeps the calling form open and running.
    The third way to execute another form is the
    CALL_FORM builtin. This would call a new form and suspend execution of the calling form. Once the called form is exited, the control is returned to the calling form.
    Usefull to see the On-Line help & pls Study this link...
    http://dbdeveloper.narod.ru/97521f.html
    Hope this helps
    Regards,
    Abdetu...

  • Get values in a popup window into the livecycle forms

    Hi,
    Is it possible to get the values in a popup window in a livecycle form or assign the values in a poup window into livecycle form?
    Thanks

    Hi,
    There is a method in the Acrobat SDK called execDialog that can be called from within an XFA Form. You can pass values to and from a dialog using this method. It is a bit involved and therefore I strongly recommend AcroDialog, which is a plugin for Acrobat from Windjack Solutions (http://windjack.com/product/acrodialogs/).
    You can use this graphical interface to create dialogs and hten copy the script into your XFA Form.
    Hope that helps,
    Niall

Maybe you are looking for