Assuming collection is required, the following 15 results were found.
with a product line item list. If I run this code, I would get the error: Expecting ZC_SUBFORM_250 expression found COLLECTION expression Another error you may get when using the deluge script is: LIST value cannot be assigned to 'mySubform' -- or --...
an error if overbooked, no error if not: To return an error (I know we set the function to return "Map" and are using a "Collection" but a Collection is either a list or a map): // return response as error popup v_OutputMessage = "Sorry! Leave has been...
it runs the following deluge script: // only run if true if(input.Copy_Monday_to_the_Other_Days) { // init c_Tuesday = Collection(); c_Wednesday = Collection(); c_Thursday = Collection(); c_Friday = Collection(); c_Saturday = Collection(); // // loop...
subform "Usual Shift" c_Employee.Usual_Shift.clear(); // // great now let's build a ZohoCreator subform c_UsualShift = Collection(); for each v_WorkDay in m_ShiftBuildUp.keys() { info v_WorkDay; // // format the opening time and closing time v_StartTime...
GDPR Privacy Policyhttps://www.joellipman.com/static-items/gdpr-privacy-policy.html
compilation of all content on this site is the exclusive property of JoelLipman.com, with copyright authorship for this collection by JoelLipman.com, and is protected by international copyright laws. Trade Marks JoelLipman.com's trademarks and trade...
of the 1st element in the 1st form, which will be the Search for Keywords Input Box. The path would look like this (a collection of objects starts at 0): Code: document.forms[0].elements[0].value Now if you want to show the value of the element in a...
r_Record in l_AllRecords { // set an if condition if(r_Record.Type == "Subform1") { // store the first subform into a collection c_SubformRows = r_Record.mySubform1; } // set an else if condition else if(r_Record.Type == "Subform2") { // store the...
Privacy Policyhttps://www.joellipman.com/static-items/privacy-policy.html
statement applicable to the website in question. Controlling your personal information You may choose to restrict the collection or use of your personal information in the following ways: whenever you are asked to fill in a form on the website, look for...
SSRS / MDX Date Querieshttps://www.joellipman.com/articles/microsoft/ssrs/ssrs-mdx-date-queries.html
I find myself using date ranges endlessly as I've been working in SSRS. The below is derived from a collection of various sources across the web as well as some of my own. These are what worked in my environment: WinXP, BIDS (vs2008), TFS (vs2010), SSRS...
Edit the ForEach Loop Container (or double-click on it) Under General, give it a reasonable name of your choice Under Collection, select as Enumerator the "Foreach File Enumerator" Select the source folder which contains all the files to loop through...
the constraints and information about the values of attributes or text-only elements union Defines a simple type as a collection (union) of values from specified simple data types unique Defines that an element or an attribute value must be unique...
a report on the form "Partners Quote": Add new action item Name your action item Name the workflow Execute the action for Collection of record (this step is very important!) And you should have something like the following: Click through on "Add New...
the numbers on the right of your keyboard are enabled. Which numbers you might ask? Well every character is built of a collection of digits that are to be entered in their specific order. Search for "Alt Codes" or "Symbol Codes" in a search engine for a...
get line items from source and populate this subform l_QuotedItems = r_QuoteDetails.get("Product_Details"); c_LineItems = Collection(); for each m_LineItem in l_QuotedItems { r_Row = Quotes.Line_Items(); r_Row.Product = m_LineItem.get("Product");...
A collection of code snippets I seem to be regularly using to generate a dynamic map of system values held in a ZohoBooks instance. Why? Rather than hard-coding and having a ton of if..then statements, I can feed these maps a textual value and it...