optiodesignstudio.blogspot.com
OPTIO FORUM: How to use Substr in Optio
http://optiodesignstudio.blogspot.com/2008/10/how-to-use-substr-in-optio.html
Wednesday, October 8, 2008. How to use Substr in Optio. Use the following function to cut the string. PrimaryInput.General.OrderType[StartPos, FromCharacter- ToCharacter]. Ie =PrimaryInput.General.OrderType[1, 2- 3]. Posted by Ashish Vishwakarma (Oracle Certified Professional). Subscribe to: Post Comments (Atom). My Other Blog http:/ oracleappscollection.blogspot.com/. Ashish Vishwakarma (Oracle Certified Professional). Pune, Maharashtra, India. Oracle Apps Technical Specialist. View my complete profile.
optiodesignstudio.blogspot.com
OPTIO FORUM: How to Generate Duplicate Copies of a Layout
http://optiodesignstudio.blogspot.com/2008/10/how-to-generate-duplicate-copies-of.html
Tuesday, October 14, 2008. How to Generate Duplicate Copies of a Layout. Write the below code in the Code After Propery of the Layout which is to be duplicated. CALL "BMDuplicateOutput" WITH 3, "nts". LET @ CopyCounter = 1. Nts" is the Name of the Layout and 3 is the number of duplicate copies. If you want to change any text for the 2nd copy or 3rd copy then write the below code on the Code Before Property of any of the Header Field. IF @ CopyCounter = 2 THEN. LET g Header Label="Original".
optiodesignstudio.blogspot.com
OPTIO FORUM: How to Hide and Unhide a Layout in Optio
http://optiodesignstudio.blogspot.com/2008/10/how-to-hide-and-unhide-layout-in-optio.html
Friday, October 10, 2008. How to Hide and Unhide a Layout in Optio. Define a Global Variable at Input Data- Code Before. Ie GLOBAL g Print Flag = FALSE. Modify the Flag value as per your scenario. Ie write the below code at Layout- Code Before. IF PrimaryInput.Shipping Instructions.FreightCode="PU" THEN. LET g Print Flag = TRUE. LET g Print Flag = FALSE. Put the Boolean variable Flag at When To Execute Property of Layout i.e. G Print Flag Note: Don't put equal"=" sign. Subscribe to: Post Comments (Atom).
optiodesignstudio.blogspot.com
OPTIO FORUM: How to show Line Numbers at Run Time
http://optiodesignstudio.blogspot.com/2008/10/how-to-show-line-numbers-at-run-time.html
Monday, October 6, 2008. How to show Line Numbers at Run Time. Declare and Assign a Global Variable in Inputs Property Code Before i.e. GLOBAL g Sl No = 0. Go to the Layout Section and Write the below code in Repeating Frames "Code Before" Property LET g Sl No = g Sl No 1. Take a variable Text use any tag and write the below code at Run Time- Contents LET =g Sl No. Posted by Ashish Vishwakarma (Oracle Certified Professional). Subscribe to: Post Comments (Atom). Pune, Maharashtra, India.
optiodesignstudio.blogspot.com
OPTIO FORUM: How to sum the Line Amounts or Calculation
http://optiodesignstudio.blogspot.com/2008/10/how-to-sum-line-amounts-or-calculation.html
Tuesday, October 7, 2008. How to sum the Line Amounts or Calculation. Define a Global Variable using following command GLOBAL g Tot = 0. On XML Editor Open the Property window of the Item for which you want to sum the amount. Write the below code on "Code After" Dialog Box. LET gTot = gTot Order.OrderLine{ Counter1}.Item{ Counter2}.QtyOrdered. Take a Global Variable and Write the below code on run-time value- Contens. = gTot. Posted by Ashish Vishwakarma (Oracle Certified Professional).
optiodesignstudio.blogspot.com
OPTIO FORUM: How to format Number in 999,999,999.99 format
http://optiodesignstudio.blogspot.com/2008/10/how-to-format-number-in-99999999999.html
Wednesday, October 8, 2008. How to format Number in 999,999,999.99 format. Use the following function. PICTURE("# #,# #,# #.# ", g item qty). Posted by Ashish Vishwakarma (Oracle Certified Professional). Subscribe to: Post Comments (Atom). This forum is for those users and developers who want to share knowledge, experiences, and open source code with regards to OPTIO Design Studio. If you have anything to share then please email me ashish.vishwakarma@gmail.com. Pune, Maharashtra, India.
optiodesignstudio.blogspot.com
OPTIO FORUM: How to use Multilingual Font in Optio
http://optiodesignstudio.blogspot.com/2008/10/how-to-use-multilingual-font-in-optio.html
Friday, October 3, 2008. How to use Multilingual Font in Optio. Place the New Font File at " My Documents Optio DesignStudio 7.8 ttf" Dir. Go to Flow Tools. Change the type Phase. Save the Device File. Go to format and font Substitution. Open the Device file you save in previous step. Associate new custome type Phase Name with the downloaded windows font. Use tne new created font while developing report. Posted by Ashish Vishwakarma (Oracle Certified Professional). Subscribe to: Post Comments (Atom).