1. Place an image field2. Specify the Image URL and embed the image3. Hide the image field4. When you calculation succeeds, display the image field.To show/hide an Image using script:Nith
Presume that your Date field has the value pattern as DD/MM/YYYYYou can convert it's rawvalue into number of days using the following script in FormCalcvar firstDate = Date2Num(DateField1.rawValue,"DD/MM/YYYY")now firstDate will have the number of days since epoch.Next step you can add 1 to the firs...
Use parameterized query to avoid this issue.insert into mytable (id, desc) values (?, ?);The two parameters (? marks) can be replaced with actual values using XPATH Expression.If you do this, you query will execute without throwing any error.Nith
This can be done!Do not let the Operation Stall because of Invalid Principal. Because this cannot be retried using AdminUI.Instead, stall the Branch so that you can retry the Branch through AdminUI.Catch the Invalid Exception from AssignTask activity and connect to a Stall activity (as shown in the ...
Find out the protocol and port used to receive emails from your email server.Default values are given below (for MS Exchange Server):SMTP - 25 (Only for Sending Emails)POP3 - 110IMAP - 143POP3s - 995 (SSL)IMAPs - 993 (SSL)---------------------You can verify connectivity by using TELNET command from ...
You can do that by using LiveCycle Java API.The ApplicationManager class provides a number of methods to play with LCapps.see the below link for documentation:http://help.adobe.com/en_US/livecycle/9.0/programLC/javadoc/com/adobe/idp/applicationmanager/client/ApplicationManager.htmlNith