Thanks for your time, Kilian and Sachin. I appreciate the help, as I learn Outsystems. Note that I don't have history as a software developer. Rather, i'm a "spreadsheet jockey". That's not an excuse...just a fact to be aware of....
As a novice, I've never posted a module; I'll look for instructions. Until then, here's a quick overview of my messy work :)
A list (table) of holiday records were created in a prior step/module. I can see the records in both the server and local tables. Each holiday record specifies U.S. holidays that are either "major" or "minor" holidays (using a Boolean, set early in this flow, after the 'for each'), providing an attribute central to business logic that's used to update hotel-room nightly pricing-specification records in another table (LocalPriceSpec).
We update the PriceSpec records based on date; there's one PriceSpec record for each date of the year (i.e., 365 PriceSpec records).
The GetHolidayList 'for each' cycles through each holiday record, and the holiday's date is set in a local variable ("PriceSpecNight"). Then, the objective is to get and update LocalPriceSpec records (using the UpdateLocalPriceSpecForSync Client Action). This Client Action references a query (GetLocalPriceSpec) that contains a filter referencing the holiday's date, and it uses the date to identify (and get) the one LoalPriceSpec record.
So...I'm wondering: could it be that the GetLocalPriceSpec query isn't executed from within the UpdateLocalPriceSpecForSync Client Action? Do I need to explicitly trigger the query and then pass the resulting record into the Client Action?
