Hi Community, this seems like a bug (IMHO) in flow logic/code...
I have a flow that creates a word document in SharePoint, using a date format as part of the saved file name (to avoid overwriting a file with same name) see below:
This works just fine when the name referred to above by 'Insured Name' does not contain any numbers, but as soon as it does then flow fails with incorrect use of ISO 8601 FormatDateTime error. I spent days trying to figure this out even removing all reference to date or trying to timestamp the document with that ReportDate expression. The failure is easily repeatable by putting any numbers in the Insured Name, my example was a party called "Company 882". Which flow interprets as being
and the update file properties error
So the file gets created in SharePoint, but obviously all the dynamic content created by forms does not pass through to the document due to this error. The flow will complete successfully if I remove the "882" part of the company name, but that just means I have created a workaround and not fixed the problem. Anyone got ideas on how to get around this, one would think using a date/time stamp on a file name should not be an issue...
Solved! Go to Solution.
"# ###.00" will work as a format string in Text() the same way it works in Excel. It will show digits for each of the # signs unless the digit is 0, then it will display a blank. In your example you would want
"### ###.00"
@Pstork1 , thanks so much for pointing me in the right direction, here is what I eventually went with and the values are formatted exactly as I wanted:
I still see a strange error on the Update File Properties section, even thought the file is created and the SharePoint columns are populated.
I sense this latest error is why the actual quick parts in the word document aren't updated like I explained in this post.... Re: HEEEEEELLLLLLP PLEASE - Opening created word f... - Power Platform Community (microsoft.com)
Can you show a screenshot of how the update file properties of the created file is configured. I suspect you are doing something to try to get the file name programmatically and that is why the extra numbers are an issue. What does the ParseDateTime function look like?
Hi Pstork1,
Hopefully this is what you are looking for:
Define FormatDateTime through compose action expression and use it as part of naming the file to create (I put the various expressions into the note on each action):
Output for these two steps shows the same as when the flow completes successfully (funny enough):
Run2 (Failed) output:
Run 1 (successful) output:
Raw inputs of above successful run shown here:
Raw outputs of above successful run shown here:
{
"statusCode": 200,
"headers": {
"Transfer-Encoding": "chunked",
"Vary": "Origin,Accept-Encoding",
"X-NetworkStatistics": "0,525568,0,0,554,0,23726",
"X-SharePointHealthScore": "2",
"X-MS-SPConnector": "1",
"Range": "bytes=0-343749",
"X-SP-SERVERSTATE": "ReadOnly=0",
"DATASERVICEVERSION": "3.0",
"SPClientServiceRequestDuration": "1658",
"X-DataBoundary": "None",
"X-1DSCollectorUrl": "https://eu-mobile.events.data.microsoft.com/OneCollector/1.0/",
"X-AriaCollectorURL": "https://eu-mobile.events.data.microsoft.com/Collector/3.0",
"SPRequestGuid": "cda373b6-31ed-4e73-bf1f-a6121b55028a",
"request-id": "cda373b6-31ed-4e73-bf1f-a6121b55028a",
"MS-CV": "tnOjze0xc06/H6YSG1UCig.0",
"Strict-Transport-Security": "max-age=31536000",
"X-FRAME-OPTIONS": "SAMEORIGIN",
"Content-Security-Policy": "frame-ancestors 'self' teams.microsoft.com *.teams.microsoft.com *.skype.com *.teams.microsoft.us local.teams.office.com *.powerapps.com *.yammer.com *.officeapps.live.com *.office.com *.stream.azure-test.net *.microsoftstream.com *.dynamics.com *.microsoft.com securebroker.sharepointonline.com;",
"MicrosoftSharePointTeamServices": "16.0.0.23102",
"X-Content-Type-Options": "nosniff",
"X-MS-InvokeApp": "1; RequireReadOnly",
"Timing-Allow-Origin": "*",
"x-ms-apihub-cached-response": "true",
"x-ms-apihub-obo": "false",
"Cache-Control": "max-age=0, private",
"Date": "Sun, 27 Nov 2022 16:21:34 GMT",
"P3P": "CP=\"ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI\"",
"X-AspNet-Version": "4.0.30319",
"X-Powered-By": "ASP.NET",
"Content-Type": "application/json; charset=utf-8",
"Expires": "Sat, 12 Nov 2022 16:21:32 GMT",
"Last-Modified": "Sun, 27 Nov 2022 16:21:32 GMT",
"Content-Length": "621"
},
"body": {
"ItemId": 2,
"Id": "%252fCommercial%2bReports%252fChristow%2bP-2022-11-27%2b16_21_24.docx",
"Name": "Christow P-2022-11-27 16_21_24.docx",
"DisplayName": "Christow P-2022-11-27 16_21_24.docx",
"Path": "/Commercial Reports/Christow P-2022-11-27 16_21_24.docx",
"LastModified": "2022-11-27T16:21:35Z",
"Size": 343750,
"MediaType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"IsFolder": false,
"ETag": "\"{BBF2179D-F795-4D8F-B13F-5871F69720E8},2\"",
"FileLocator": "dataset=aHR0cHM6Ly9pcnNzYS5zaGFyZXBvaW50LmNvbQ==,id=JTI1MmZDb21tZXJjaWFsJTJiUmVwb3J0cyUyNTJmQ2hyaXN0b3clMmJQLTIwMjItMTEtMjclMmIxNl8yMV8yNC5kb2N4"
Then the Update file properties is the following (nowhere in the Update file properties do I do any date formatting, I merely pass the value of the "Assessment Date" forms field directly), the only date parsing is for "ReportDate" above and it is only used in the naming of the file (trying to keep file names unique in SharePoint):
Here is a screenshot of the same flow with a different client that worked exactly as expected:
and below the redacted raw input:
{
"host": {
"connectionReferenceName": "shared_sharepointonline",
"operationId": "PatchFileItem"
},
"parameters": {
"dataset": "https://xxxxxx.sharepoint.com",
"table": "025ff210-952f-49f9-8a07-5361a3e2a64d",
"id": 2,
"item/Title": "xxx xxxx Report",
"item/DET_x0020_Accompanied_x0020_by": "xxxxxx",
"item/DET_x0020_Assessment_x0020_Date": "11 November 2022",
"item/DET_x0020_Broker_x0020_Contact": "xxx xxx xx",
"item/DET_x0020_Current_x0020_Insured_x0020_Covers": "123 456 789.00",
"item/DET_x0020_Insured_x0020_Name": "xxxxx",
"item/DET_x0020_Metropolitan_x0020_Municipality": "xxxx",
"item/DET_x0020_Permission_x0020_Granted": "xxxx",
"item/DET_x0020_Physical_x0020_Address1": "xxxxx, xxxx xxx",
"item/DET_x0020_Policy_x0020_Number": "xxx-xxxx",
"item/DET_x0020_Property_x0020_name": "xxxxx",
"item/DET_x0020_Province": "Gauteng",
"item/DET_x0020_Requestor": "xxxxx",
"item/DET_x0020_Surveyor": "xxxxx (xxxxxx)",
"item/DET_x0020_Town_x0020_or_x0020_Township": "xxxx",
"item/EML_x0020_Business_x0020_interruption": "xxxxx",
"item/EML_x0020_Crime_x0020_classification": "xxxx",
"item/EML_x0020_Fire_x0020_calculation_x0020__x0025__x0020_conservative": "000",
"item/EML_x0020_Fire_x0020_calculation_x0020__x0025__x0020_worst_x0020_case": "000",
"item/EML_x0020_Fire_x0020_calculation_x0020_worst_x0020_case": " xxxxx.",
"item/EML_x0020_Fire_x0020_classification": "xxx xxx",
"item/OB_x0020_Establishment_x0020_zone_x0020_type": "xxxx xxx",
"item/OB_x0020_Audible_x0020_fire_x0020_alarm": " xxx",
"item/OB_x0020_Buildings_x0020_summary": "xxxxxxxxx.",
"item/OB_x0020_Buildings_x0020_description": "xxxxx",
"item/OB_x0020_Establishment_x0020_process_x0020_conducted": "xxx",
"item/OB_x0020_Ceiling_x0020_Insulation": "xxx",
"item/OB_x0020_Ceiling_x0020_types": "xxx ",
"item/OB_x0020_Ceiling_x0020_options": "xxx",
"item/OB_x0020_Communal_x0020_clubhouse": "xxx.",
"item/OB_x0020_Confidential_x0020_underwriting_x0020_notes": "xxxx",
"item/OB_x0020_Construction_x0020_type": "brick and mortar xxxx",
"item/OB_x0020_Cooking_x0020_extraction_x0020_systems_x0020_or_x0020_ducting": "xxx xxx",
"item/OB_x0020_Cooking_x0020_extraction_x0020_systems_x0020_or_x0020_ducting_x0020_service_x0020_contracts": "xxxx",
"item/OB_x0020_CSIR_x0020_lightning_x0020_risk_x0020_determination": "Low (xxx)",
"item/OB_Description_of_buildings": "xxxx",
"item/OB_x0020_Door_x0020_types": "The xxx",
"item/OB_x0020_Door_x0020_options": "xxx",
"item/OB_x0020_Drainage_x0020_adequacy": "is xxx ",
"item/OB_x0020_Drainage_x0020_direction": "xxx",
"item/OB_x0020_Drainage_x0020_drainpipes": "xxx",
"item/OB_x0020_Drainage_x0020_impact": "xxx",
"item/OB_x0020_Driveways_x0020_areas": "xxx",
"item/OB_x0020_Electrical_x0020_Lighting": "xxxx",
"item/OB_x0020_Electrical_x0020_reticulation_x0020_backup_x0020_generator_x0020_or_x0020_UPS_x0020_supply": "xxx",
"item/OB_x0020_Electrical_x0020_reticulation_x0020_solar_x0020_supply_x0020_routing": "xxx",
"item/OB_x0020_Electrical_x0020_reticulation_x0020_wiring_x0020_state": "xxx",
"item/OB_x0020_Elevators_x0020_and_x0020_escalators_x0020_operational_x0020_state": "xxx",
"item/OB_x0020_Emergency_x0020_escape_x0020_routes": "xxx.",
"item/OB_x0020_Emergency_x0020_escape_x0020_routes_x0020_signage": "xxx.",
"item/OB_x0020_Establishment_x0020_additional_x0020_common_x0020_property_x0020_structures": "xxx.",
"item/OB_x0020_Establishment_x0020_ownership_x0020_type": "xxx",
"item/OB_x0020_Establishment_x0020_structure_x0020_levels": "xxx",
"item/OB_x0020_Establishment_x0020_structure_x0020_type": "xxx",
"item/OB_x0020_Explosion_x0020_hazards": "xxx",
"item/OB_x0020_Explosion_x0020_hazards_x0020_risk": "xxx",
"item/OB_x0020_Fire_x0020_department_x0020_access": "xxx",
"item/OB_x0020_Fire_x0020_department_x0020_distance_x0020__x0028_km_x0029_": "xx",
"item/OB_x0020_Fire_x0020_department_x0020_name": "xxx",
"item/OB_x0020_Fire_x0020_equipment_x0020_servicing": "xxx",
"item/OB_x0020_Fire_x0020_extinguisher_x0020_requirements_x0020_": "xxx\nNo xxx xx",
"item/OB_x0020_Fire_x0020_Extinguishers": "xxx",
"item/OB_x0020_Fire_x0020_hose_x0020_reels": "xxx",
"item/OB_x0020_Fire_x0020_hydrants_x0020_in_x0020_street": "xxx",
"item/OB_x0020_Fire_x0020_hydrants_x0020_on_x0020_property": "xxx",
"item/OB_x0020_Fire_x0020_sprinkler_x0020_systems": "xxxx",
"item/OB_x0020_Fire_x0020_teams": "xxxx",
"item/OB_x0020_Firewall_x0020_division": "xxxx",
"item/OB_x0020_Flammable_x0020_substance_x0020_stores": "xxx",
"item/OB_x0020_Flammable_x0020_substances_x0020_list": "xxxx",
"item/OB_x0020_Flammable_x0020_substances": "xxxx",
"item/OB_x0020_Flammable_x0020_substances_x0020_storage_x0020_certification": "xxxx",
"item/OB_x0020_Flood_x0020_hazard_x0020_index": "xxxx.",
"item/OB_x0020_Floor_x0020_types": "xxxx",
"item/OB_x0020_Floor_x0020_materials": "xxx",
"item/OB_x0020_Gas_x0020_installation": "xxxx",
"item/OB_x0020_Gas_x0020_Storage": "xxxx",
"item/OB_x0020_General_x0020_and_x0020_tenants_x0020_liability_x0020_": "xxxx",
"item/OB_x0020_General_x0020_and_x0020_tenants_x0020_liability_x0020_items": "xxxx.",
"item/OB_x0020_General_x0020_fire_x0020_protections_x0020_compliance": "xxx",
"item/OB_x0020_Ground_x0020_slope": "xxxx",
"item/OB_x0020_Ground_x0020_slope_x0020_retaining_x0020_walls": "xxxx.",
"item/OB_x0020_Hazardous_x0020_chemical_x0020_substances_x0020_list": null,
"item/OB_x0020_Hazardous_x0020_chemical_x0020_substances": "xxxx",
"item/OB_x0020_Hot_x0020_works": "xxx",
"item/OB_x0020_Housekeeping": "xxx",
"item/OB_x0020_Lightning_x0020_conductors": "xxx.",
"item/OB_x0020_Mining_x0020_activities": "xxxx",
"item/OB_x0020_Number_x0020_of_x0020_elevators_x0020_or_x0020_escalators": "0",
"item/OB_x0020_Number_x0020_of_x0020_floor_x0020_levels_x0020_or_x0020_floors_x0020_within_x0020_the_x0020_structure": "0",
"item/OB_Number_of_guest_x002d_rooms_within_hotel_or_guest_house": "0",
"item/OB_x0020_Number_x0020_of_x0020_structures_x0020_or_x0020_erected_x0020_buildings": "1",
"item/OB_x0020_Open_x0020_water_x0020_source_x0020_or_x0020_water_x0020_bodies_x0020_distance_x0020__x0028_m_x0029_": "0",
"item/OB_x0020_Open_x0020_water_x0020_source_x0020__x002d__x0020_water_x0020_bodies_x0020_": "xxx",
"item/OB_x0020_Parking_x0020_basement": "xxx.",
"item/OB_x0020_Parking_x0020_open_x0020_areas": "xxx",
"item/OB_x0020_Perimeter_x0020_fencing_x0020_options": "xxx",
"item/OB_x0020_Perimeter_x0020_fencing": "xxxx ",
"item/OB_x0020_Business_x0020_type": "xxxx",
"item/OB_x0020_Property_x0020_front": "xxx",
"item/OB_x0020_Public_x0020_access_x0020_signage": "xxx.",
"item/OB_x0020_Public_x0020_access_x0020_to_x0020_property": "xxx",
"item/OB_x0020_Rising_x0020_water_x0020_level_x0020_proximity": "xxxx ",
"item/OB_x0020_Rising_x0020_water_x0020_level_x0020_threat": "xxxx",
"item/OB_x0020_Roof_x0020_materials": "xxx",
"item/OB_x0020_Roof_x0020_type": "xxx roof",
"item/OB_x0020_SAWS_x0020_lightning_x0020_strikes_x0020_per_x0020_annum": "xxx",
"item/OB_x0020_Smoke_x0020_control_x0020_extraction_x0020_systems": "xxxx",
"item/OB_x0020_Smoke_x0020_detection": "xxx.",
"item/OB_x0020_Spray_x0020_painting": "xxxx",
"item/OB_x0020_Subsidence_x0020_and_x0020_landslip": "xxxx",
"item/OB_x0020_Open_x0020_areas_x0020_or_x0020_vacant_x0020_land_x0020_": "xxxx.",
"item/OB_x0020_Open_x0020_areas_x0020_or_x0020_vacant_x0020_land_x0020_fire_x0020_threat": "xxxx",
"item/OB_x0020_Swimming_x0020_pools_x0020_fishponds_x0020_or_x0020_water_x0020_features": "xxxx.",
"item/OB_x0020_Thatch_x0020_condition": "",
"item/OB_x0020_Thatch_x0020_fireplaces": "",
"item/OB_x0020_Thatch_x0020_structure_x0020_average_x0020_size_x0020__x0028_m2_x0029_": "0",
"item/OB_x0020_Thatch_x0020_structure_x0020_distance_x0020_from_x0020_main_x0020_structure_x0020__x0028_m_x0029_": "0",
"item/OB_x0020_Thatch_x0020_structures": "xxxx",
"item/OB_x0020_Truss_x0020_type": "xxxx",
"item/OB_x0020_Twin_x0020_booster_x0020_connection": "xxx",
"item/OB_x0020_Wall_x0020_types": "xxx",
"item/OB_x0020_Wall_x0020_options": "xxx",
"item/OB_x0020_Waste_x0020_management": "xxx",
"item/OB_x0020_Water_x0020_damage": "xxx.",
"item/OB_x0020_Water_x0020_reticulation": "xxx.",
"item/OB_x0020_Water_x0020_supply": "xxxx.",
"item/OB_x0020_Wendy_x0020_house_x0020_or_x0020_timber_x0020_shed_x0020_distance_x0020_from_x0020_main_x0020_structure_x0020__x0028_m_x0029_": "0",
"item/OB_x0020_Wendy_x0020_house_x0020_or_x0020_timber_x0020_shed_x0020_end_x0020_of_x0020_sentence": "",
"item/OB_x0020_Wendy_x0020_houses_x0020_or_x0020_timber_x0020_shed_x0020_structures": "xxxx.",
"item/OB_x0020_Window_x0020_frame_x0020_type": "xxxx",
"item/OB_x0020_Window_x0020_glass_x0020_type": "xxx",
"item/REQ_x0020_Building_x0020_requirement_x0020_risk_x0020_assessment_x0020_rating": "xxxx",
"item/REQ_x0020_Building_x0020_requirements_x0020_or_x0020_recommendations_x0020_": "xxxx",
"item/REQ_x0020_Building_x0020_requirements_x0020_or_x0020_recommendations_x0020_list": null,
"item/REQ_x0020_Electrical_x0020_reticulation": "xxxx",
"item/REQ_x0020_Electrical_x0020_reticulation_x0020_list": null,
"item/REQ_x0020_Fire_x0020_equipment_x0020_servicing": "xxx",
"item/REQ_x0020_Fire_x0020_hose_x0020_reels": "xxxx",
"item/REQ_x0020_Fire_x0020_hydrant": "xxx",
"item/REQ_x0020_Fire_x0020_requirements_x0020_and_x0020_recommendations_x0020_": "xxxx",
"item/REQ_x0020_Fire_x0020_requirements_x0020_risk_x0020_rating_x0020_": "xxx",
"item/REQ_x0020_Fire_x0020_sprinkler_x0020_systems": "xxx",
"item/REQ_x0020_Fire_x0020_teams": "xxx",
"item/REQ_x0020_Gas_x0020_installation_x0020_and_x0020_Cooking_x0020_Extraction_x0020_Systems": "xxx",
"item/REQ_x0020_Gas_x0020_Storage": "xxx",
"item/REQ_x0020_Hazardous_x0020_chemical_x0020_or_x0020_flammable_x0020_substances_x0020_storage_x0020_": "xxx",
"item/REQ_x0020_Hot_x0020_works": "xxxx",
"item/REQ_x0020_Housekeeping": "xxx",
"item/REQ_x0020_Liability_x0020_requirements": "xxxx.",
"item/REQ_x0020_Smoke_x0020_control_x0020_extraction_x0020_systems": "xxx",
"item/REQ_x0020_Smoke_x0020_detection_x0020_or_x0020_fire_x0020_alarm_x0020_": "xxx",
"item/REQ_x0020_Spray_x0020_painting": "xxx.",
"item/REQ_x0020_Spray_x0020_painting_x0020_tenant_x0020_name": "",
"item/REQ_x0020_Twin_x0020_booster_x0020_connection": "xxx",
"item/REQ_x0020_Waste_x0020_management": "xxx"
}
}
output to Sharepoint:
Hope this helps...
I hope you got my reply as I don't see it here?
Didn't see a reply. Please send again.
Don't know what happened with first reply post but herewith an abridged one...
and below the code from update file properties
{
"inputs": {
"host": {
"connectionName": "shared_sharepointonline",
"operationId": "PatchFileItem",
"apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline"
},
"parameters": {
"dataset": "https://xxxxx.sharepoint.com",
"table": "025ff210-952f-49f9-8a07-5361a3e2a64d",
"id": "@outputs('Create_new_file_based_off_the_template_file')?['body/ItemId']",
"item/Title": "Assessment Report",
"item/DET_x0020_Accompanied_x0020_by": "@outputs('Get_form_response_details')?['body/rddff6c459df34cf59d534107c45c14f3']",
"item/DET_x0020_Assessment_x0020_Date": "@outputs('Get_form_response_details')?['body/r53c7723956a44d0a84170e7a7f4807d3']",
"item/DET_x0020_Broker_x0020_Contact": "@outputs('Get_form_response_details')?['body/rc6bcaf3de1914dc694ea4ef7a1dc2153']",
"item/DET_x0020_Current_x0020_Insured_x0020_Covers": "@concat(slice(variables('InsuredValue'), 0, 3), ' ', slice(variables('InsuredValue'), 3, -3), ' ', formatDateTime(parseDateTime(slice(variables('InsuredValue'), -3, -2), 'en-US', '%M'), '%M', 'en-US'), formatDateTime(parseDateTime(slice(variables('InsuredValue'), -2, -1), 'en-US', '%M'), '%M', 'en-US'), formatNumber(length(variables('InsuredValue')), '0.00'))",
"item/DET_x0020_Insured_x0020_Name": "@outputs('Get_form_response_details')?['body/r256118b5a0e64a058d52c18c57260748']",
"item/DET_x0020_Metropolitan_x0020_Municipality": "@{outputs('Get_form_response_details')?['body/rd07304f520d04410b1007e0d693e475f']}@{outputs('Get_form_response_details')?['body/rc66d9f4eb1e043daad0e990f0f50c4f3']}@{outputs('Get_form_response_details')?['body/r907d6d99b34e42ddadeef4f36cf0e5c6']}@{outputs('Get_form_response_details')?['body/r7d17f99743d84931969c5a4ef2e5daa4']}@{outputs('Get_form_response_details')?['body/rf741516e9a45434fa8aea1c8be9bde7f']}@{outputs('Get_form_response_details')?['body/r2b97ed1eb6084de582223c59d4d54a54']}@{outputs('Get_form_response_details')?['body/r82462833f1e84627bff5c7c20838cf3d']}@{outputs('Get_form_response_details')?['body/re09f8e0d40244dcea7348b5026c47633']}@{outputs('Get_form_response_details')?['body/r8e6c2af7a7c046978ccede5b29c1241b']}@{outputs('Get_form_response_details')?['body/r9d65030d10bf491cb56e2559451e5136']}@{outputs('Get_form_response_details')?['body/rd26ca28dcab54a2e89e98d17c8fe5f2b']}@{outputs('Get_form_response_details')?['body/r8b5572587de24c4e977d19aae94c37a6']}@{outputs('Get_form_response_details')?['body/rb8f8ff255e8a4f0c958a093b9fa15178']}@{outputs('Get_form_response_details')?['body/r5f28e3d2106d4fc480a1864554f7af99']}@{outputs('Get_form_response_details')?['body/r618d5738599e47eab18607820d521297']}@{outputs('Get_form_response_details')?['body/r2785ddee3e1b42c384b93edb1885350d']}@{outputs('Get_form_response_details')?['body/rb36d75bc48d3462ca059402229ffc51c']}@{outputs('Get_form_response_details')?['body/rc629ef440fb14721baf374828a964881']}@{outputs('Get_form_response_details')?['body/ra3bada602db8455b9313b9ca05d0e6c4']}@{outputs('Get_form_response_details')?['body/rae1d387f5a8c4a9e9d0d0ab77e55b060']}@{outputs('Get_form_response_details')?['body/ra83fefbf01a7430681dfe38d5679422d']}@{outputs('Get_form_response_details')?['body/rc0d75b87038640889826887872d115da']}@{outputs('Get_form_response_details')?['body/r56676a33e7c64ae680f4397b04c338f1']}@{outputs('Get_form_response_details')?['body/r56264d6f63a64a1da179a7f24fca7f68']}",
"item/DET_x0020_Permission_x0020_Granted": "@outputs('Get_form_response_details')?['body/r4a09ce1c0c2c4c6996174471f0edc028']",
"item/DET_x0020_Physical_x0020_Address1": "@outputs('Get_form_response_details')?['body/r74e73ad223774395bbed7a0b0c8b0c0b']",
"item/DET_x0020_Policy_x0020_Number": "@outputs('Get_form_response_details')?['body/r3952aef565ec4438beef597cdc94cc16']",
"item/DET_x0020_Property_x0020_name": "@outputs('Get_form_response_details')?['body/r01fc5fc0ad624adea3d7961b837b0d0b']",
"item/DET_x0020_Province": "@outputs('Get_form_response_details')?['body/r0b4611e0480c4a619e90e39ac3cadcc3']",
"item/DET_x0020_Requestor": "@outputs('Get_form_response_details')?['body/r9a05fc4eab854212a69d6589fee51313']",
"item/DET_x0020_Surveyor": "@outputs('Get_form_response_details')?['body/ra4bbf40e5b5c4909aca9dd82613755f4']",
"item/DET_x0020_Town_x0020_or_x0020_Township": "@{outputs('Get_form_response_details')?['body/rf6e8441c5c3a45d89a824f479773e9d2']}@{outputs('Get_form_response_details')?['body/r79567a356abd439a8b598d2a66b53ae3']}@{outputs('Get_form_response_details')?['body/rfc4998cfcc9948cc85d8e324b463b95a']}@{outputs('Get_form_response_details')?['body/rac7aa68ad59048799c07ee0f2a6c21cc']}@{outputs('Get_form_response_details')?['body/rdb47adf7765544cabe25a519491b8f33']}@{outputs('Get_form_response_details')?['body/r963709583e374d08bf19b46b8d11ed3d']}@{outputs('Get_form_response_details')?['body/r345f1b84546e476d8cabdf75d3baf4e4']}@{outputs('Get_form_response_details')?['body/r77e7e9093f214e02859373d10a6ccbac']}@{outputs('Get_form_response_details')?['body/r0aca3158949d4c23b88b506b54521b76']}@{outputs('Get_form_response_details')?['body/r71e997e2d050475a99cd0d5e4405e40b']}@{outputs('Get_form_response_details')?['body/r3336708d8f694002906865a50f5687be']}@{outputs('Get_form_response_details')?['body/r6ccbcd6a8e86458097169b3d664a7fe9']}@{outputs('Get_form_response_details')?['body/r6048f6bd71fb4f9caa5f2d8d895abb3a']}@{outputs('Get_form_response_details')?['body/r2bfbc8ec913b4c7782cdd0130b11e9dc']}@{outputs('Get_form_response_details')?['body/re60018cdf2f44e80babc27df98bf2fda']}@{outputs('Get_form_response_details')?['body/r57ddc1acd88d4fe1abbc10856b20b332']}@{outputs('Get_form_response_details')?['body/rc501d7ad4f08408fbd5fc9079a4785d1']}@{outputs('Get_form_response_details')?['body/re4fc61d16a3e441cafb18f64967c063d']}@{outputs('Get_form_response_details')?['body/r3516815e87d245dc889b6323fdd7d8b7']}@{outputs('Get_form_response_details')?['body/r16829155b1af4b90ae6797ba3a8d3591']}@{outputs('Get_form_response_details')?['body/r0b5b4f8f7032495eaaa4506219cc6ce9']}@{outputs('Get_form_response_details')?['body/r0a6194388fa54d038c113da2a4514661']}",
"item/EML_x0020_Business_x0020_interruption": "@outputs('Get_form_response_details')?['body/rabca946e74a44f73b5ff279d6697337c']",
"item/EML_x0020_Crime_x0020_classification": "@outputs('Get_form_response_details')?['body/rfeb2e90da5b44b8b95931123d2f001f7']",
"item/EML_x0020_Fire_x0020_calculation_x0020__x0025__x0020_conservative": "@outputs('Get_form_response_details')?['body/rff918b455b8c4d009fb76b6cf7f62e28']",
"item/EML_x0020_Fire_x0020_calculation_x0020__x0025__x0020_worst_x0020_case": "@outputs('Get_form_response_details')?['body/r6871e9be0f6742a29718643b3d78745a']",
"item/EML_x0020_Fire_x0020_calculation_x0020_worst_x0020_case": "@outputs('Get_form_response_details')?['body/r8c0f26e5a10f41b58fb60554aa7905fe']",
"item/EML_x0020_Fire_x0020_classification": "@outputs('Get_form_response_details')?['body/rd4cab7c0af2a49cda90a8199ae847044']",
"item/OB_x0020_Establishment_x0020_zone_x0020_type": "@outputs('Get_form_response_details')?['body/rc384fb52eccf4821a98570602c0cd2aa']",
"item/OB_x0020_Audible_x0020_fire_x0020_alarm": "@outputs('Get_form_response_details')?['body/r82af4d95beae440ca2683c7d52a79cb9']",
"item/OB_x0020_Buildings_x0020_summary": "@outputs('Get_form_response_details')?['body/ra7b631590c6140f2995f3e376d04fb05']",
"item/OB_x0020_Buildings_x0020_description": "@outputs('Get_form_response_details')?['body/r4b0ec61f1231403b9cf9619272082d86']",
"item/OB_x0020_Establishment_x0020_process_x0020_conducted": "@outputs('Get_form_response_details')?['body/re316dba585284d8f8f7b61df4ba29842']",
"item/OB_x0020_Ceiling_x0020_Insulation": "@outputs('Get_form_response_details')?['body/r0554aeb2e6fc48a78ec5d1bc575eed05']",
"item/OB_x0020_Ceiling_x0020_types": "@outputs('Get_form_response_details')?['body/r798b37afa70c4266a1544721d95e51cf']",
"item/OB_x0020_Ceiling_x0020_options": "@outputs('Format_string_-_Ceiling_types')",
"item/OB_x0020_Communal_x0020_clubhouse": "@outputs('Get_form_response_details')?['body/rb042c60fdfd1472d90d043731c8d9ed1']",
"item/OB_x0020_Confidential_x0020_underwriting_x0020_notes": "@outputs('Get_form_response_details')?['body/r58ea8e7d0e9b4175adf144d40c757542']",
"item/OB_x0020_Construction_x0020_type": "@outputs('Get_form_response_details')?['body/r58bef7818be548a6a4e2b59fbe09b2cd']",
"item/OB_x0020_Cooking_x0020_extraction_x0020_systems_x0020_or_x0020_ducting": "@outputs('Get_form_response_details')?['body/rf92a05383e0944a8b24fe310ac953abc']",
"item/OB_x0020_Cooking_x0020_extraction_x0020_systems_x0020_or_x0020_ducting_x0020_service_x0020_contracts": "@outputs('Get_form_response_details')?['body/r4f0bf50711e64f7b88344ac642b5810e']",
"item/OB_x0020_CSIR_x0020_lightning_x0020_risk_x0020_determination": "@outputs('Get_form_response_details')?['body/r6ded0a597cc2401d84c61bc2c2075bb1']",
"item/OB_Description_of_buildings": "@outputs('Get_form_response_details')?['body/r00b18a760942465bb1e9de43a0904a5f']",
"item/OB_x0020_Door_x0020_types": "@outputs('Get_form_response_details')?['body/r0c2ad121e5b34a48a1af2d0f05dac02f']",
"item/OB_x0020_Door_x0020_options": "@outputs('Format_string_-_Door_types')",
"item/OB_x0020_Drainage_x0020_adequacy": "@outputs('Get_form_response_details')?['body/r70871932d2f643958557c43fb638b56d']",
"item/OB_x0020_Drainage_x0020_direction": "@outputs('Get_form_response_details')?['body/r644817fe325f4d72bc85d6bd050ff943']",
"item/OB_x0020_Drainage_x0020_drainpipes": "@outputs('Get_form_response_details')?['body/r647baf64fe064f69bc87f2ecfbb35af5']",
"item/OB_x0020_Drainage_x0020_impact": "@outputs('Get_form_response_details')?['body/r5a562f90ee8041bc8aff1ceb3db661b4']",
"item/OB_x0020_Driveways_x0020_areas": "@outputs('Get_form_response_details')?['body/re8910f8f27a54b0c83e246e310184d56']",
"item/OB_x0020_Electrical_x0020_Lighting": "@outputs('Format_string_-_Electric_lighting')",
"item/OB_x0020_Electrical_x0020_reticulation_x0020_backup_x0020_generator_x0020_or_x0020_UPS_x0020_supply": "@outputs('Get_form_response_details')?['body/ra6bd0280ad7a4f6da539b29433e604eb']",
"item/OB_x0020_Electrical_x0020_reticulation_x0020_solar_x0020_supply_x0020_routing": "@outputs('Get_form_response_details')?['body/r6cb86d749815428ea14ff8bfe78d2a6d']",
"item/OB_x0020_Electrical_x0020_reticulation_x0020_wiring_x0020_state": "@outputs('Get_form_response_details')?['body/r215ee3ff5596482da4dda8fc0888975a']",
"item/OB_x0020_Elevators_x0020_and_x0020_escalators_x0020_operational_x0020_state": "@outputs('Format_string_-_Elevators_operational_state')",
"item/OB_x0020_Emergency_x0020_escape_x0020_routes": "@outputs('Get_form_response_details')?['body/r43a4930c7883409e88afc0451ac27bc0']",
"item/OB_x0020_Emergency_x0020_escape_x0020_routes_x0020_signage": "@outputs('Get_form_response_details')?['body/rce323fdf5f274cf7819c9bd46c3047c9']",
"item/OB_x0020_Establishment_x0020_additional_x0020_common_x0020_property_x0020_structures": "@outputs('Format_list_-_Additional_common_property_structures')",
"item/OB_x0020_Establishment_x0020_ownership_x0020_type": "@outputs('Get_form_response_details')?['body/rff4c65d2cc494129bc5abf3bf7a6a323']",
"item/OB_x0020_Establishment_x0020_structure_x0020_levels": "@outputs('Get_form_response_details')?['body/r3cfe9b3df47d4b949e362280b58e77f1']",
"item/OB_x0020_Establishment_x0020_structure_x0020_type": "@outputs('Get_form_response_details')?['body/r5b62429024ad48ed94cc2c53cef3cca5']",
"item/OB_x0020_Explosion_x0020_hazards": "@outputs('Get_form_response_details')?['body/rb7140094f9394bc2bf9883c053bbb64e']",
"item/OB_x0020_Explosion_x0020_hazards_x0020_risk": "@outputs('Get_form_response_details')?['body/rc62d0527e38242d3a024cdd3cfae8243']",
"item/OB_x0020_Fire_x0020_department_x0020_access": "@outputs('Get_form_response_details')?['body/r18fe3163bb2448d095b9c519fecb9de2']",
"item/OB_x0020_Fire_x0020_department_x0020_distance_x0020__x0028_km_x0029_": "@outputs('Get_form_response_details')?['body/re404db6c31264bebbad6c582dc3f84b3']",
"item/OB_x0020_Fire_x0020_department_x0020_name": "@outputs('Get_form_response_details')?['body/r38dfa6f091ee4f898e1ad86d2719d355']",
"item/OB_x0020_Fire_x0020_equipment_x0020_servicing": "@outputs('Get_form_response_details')?['body/rf72171c45f8644e6b191e682f58bedc6']",
"item/OB_x0020_Fire_x0020_extinguisher_x0020_requirements_x0020_": "@outputs('Format_list_-_Fire_extinguisher_requirements')",
"item/OB_x0020_Fire_x0020_Extinguishers": "@outputs('Get_form_response_details')?['body/r4732178bfa484eaea9e45698a75ba7a1']",
"item/OB_x0020_Fire_x0020_hose_x0020_reels": "@outputs('Get_form_response_details')?['body/re55ce66e299f430fbe9922e2170650a8']",
"item/OB_x0020_Fire_x0020_hydrants_x0020_in_x0020_street": "@outputs('Format_string_-_Fire_hydrants_in_street')",
"item/OB_x0020_Fire_x0020_hydrants_x0020_on_x0020_property": "@outputs('Get_form_response_details')?['body/rf560ea23d96c4726a24912d1c22ebadf']",
"item/OB_x0020_Fire_x0020_sprinkler_x0020_systems": "@outputs('Get_form_response_details')?['body/r1fa1b1a2dd3c4d6a8510662ff011b3b5']",
"item/OB_x0020_Fire_x0020_teams": "@outputs('Get_form_response_details')?['body/raa76c771da904de0b3592268af7f633e']",
"item/OB_x0020_Firewall_x0020_division": "@outputs('Get_form_response_details')?['body/r1895f97b25324ca4838fc2b9793c7bb7']",
"item/OB_x0020_Flammable_x0020_substance_x0020_stores": "@outputs('Get_form_response_details')?['body/r7ca9ddbff8254dc49e494aeb923978c5']",
"item/OB_x0020_Flammable_x0020_substances_x0020_list": "@outputs('Format_list_-_Flammable_substances_list')",
"item/OB_x0020_Flammable_x0020_substances": "@outputs('Get_form_response_details')?['body/rf797f73ab353403b8f180639198c8010']",
"item/OB_x0020_Flammable_x0020_substances_x0020_storage_x0020_certification": "@outputs('Get_form_response_details')?['body/r3001bfa7c250471d9ca4a5bb36018400']",
"item/OB_x0020_Flood_x0020_hazard_x0020_index": "@outputs('Get_form_response_details')?['body/rcc0349918d054907a47b1feab98efd78']",
"item/OB_x0020_Floor_x0020_types": "@outputs('Get_form_response_details')?['body/rc080fa7ea17f4816af24b751428af2bb']",
"item/OB_x0020_Floor_x0020_materials": "@outputs('Format_Floor_types_to_nice_string')",
"item/OB_x0020_Gas_x0020_installation": "@outputs('Get_form_response_details')?['body/r74547b96580f4b3fb56af4f3567f3ab9']",
"item/OB_x0020_Gas_x0020_Storage": "@outputs('Get_form_response_details')?['body/rc865d0ce5d2f4a33bb98600d785369a3']",
"item/OB_x0020_General_x0020_and_x0020_tenants_x0020_liability_x0020_": "@outputs('Get_form_response_details')?['body/r75104596ad2b49648c49ce277446c1fe']",
"item/OB_x0020_General_x0020_and_x0020_tenants_x0020_liability_x0020_items": "@outputs('Format_string_-_General_and_tenants_liability_items')",
"item/OB_x0020_General_x0020_fire_x0020_protections_x0020_compliance": "@outputs('Get_form_response_details')?['body/r1995851c4a014ce898582ce0672b01d8']",
"item/OB_x0020_Ground_x0020_slope": "@outputs('Get_form_response_details')?['body/rafa0573d47ee4718b5f548560ea499f3']",
"item/OB_x0020_Ground_x0020_slope_x0020_retaining_x0020_walls": "@outputs('Get_form_response_details')?['body/r380e5926ad014a08be7b029a2fa544c5']",
"item/OB_x0020_Hazardous_x0020_chemical_x0020_substances_x0020_list": "@outputs('Format_list_-_Hazardous_chemical_substances')",
"item/OB_x0020_Hazardous_x0020_chemical_x0020_substances": "@outputs('Get_form_response_details')?['body/r2cbbdb711f1744c0bd98cb9937804801']",
"item/OB_x0020_Hot_x0020_works": "@outputs('Get_form_response_details')?['body/re65e9ffde5604da0b82532bce0557486']",
"item/OB_x0020_Housekeeping": "@outputs('Get_form_response_details')?['body/rca6242670a154dafb51aa2c2c7decf7f']",
"item/OB_x0020_Lightning_x0020_conductors": "@outputs('Get_form_response_details')?['body/r78a1f0fd2c8e4aa488d47ab774f05f93']",
"item/OB_x0020_Mining_x0020_activities": "@outputs('Get_form_response_details')?['body/r5c33fbba6ba84b988f3f04b0de3d3a7c']",
"item/OB_x0020_Number_x0020_of_x0020_elevators_x0020_or_x0020_escalators": "@variables('Noofescalators')",
"item/OB_x0020_Number_x0020_of_x0020_floor_x0020_levels_x0020_or_x0020_floors_x0020_within_x0020_the_x0020_structure": "@outputs('Get_form_response_details')?['body/ref1e009833c046749b9e96bd79b7616c']",
"item/OB_Number_of_guest_x002d_rooms_within_hotel_or_guest_house": "@variables('Noofguestrooms')",
"item/OB_x0020_Number_x0020_of_x0020_structures_x0020_or_x0020_erected_x0020_buildings": "@outputs('Get_form_response_details')?['body/rdfbfb09ebd324fec988597f8625d9b9c']",
"item/OB_x0020_Open_x0020_water_x0020_source_x0020_or_x0020_water_x0020_bodies_x0020_distance_x0020__x0028_m_x0029_": "@variables('Waterdistance')",
"item/OB_x0020_Open_x0020_water_x0020_source_x0020__x002d__x0020_water_x0020_bodies_x0020_": "@outputs('Get_form_response_details')?['body/r2ae53216fd634b5d8df81b1b126e3680']",
"item/OB_x0020_Parking_x0020_basement": "@outputs('Get_form_response_details')?['body/r8d718eb6ffe14124aff60b482cd34c6e']",
"item/OB_x0020_Parking_x0020_open_x0020_areas": "@outputs('Get_form_response_details')?['body/ra141e51f80f0471f8eea1259cd64bc77']",
"item/OB_x0020_Perimeter_x0020_fencing_x0020_options": "@outputs('Format_string_-_Perimeter_fencing_features')",
"item/OB_x0020_Perimeter_x0020_fencing": "@outputs('Get_form_response_details')?['body/r4acb85252e464904a852252540e4132f']",
"item/OB_x0020_Business_x0020_type": "@outputs('Get_form_response_details')?['body/r313fcd3ae24e4a8bb2f5bdb59d96d334']",
"item/OB_x0020_Property_x0020_front": "@outputs('Get_form_response_details')?['body/r9d663127135f4957bd6e3c232e7a5ac8']",
"item/OB_x0020_Public_x0020_access_x0020_signage": "@outputs('Get_form_response_details')?['body/ra1b2691d63214431a051a816cf44da40']",
"item/OB_x0020_Public_x0020_access_x0020_to_x0020_property": "@outputs('Get_form_response_details')?['body/r0673a8a35b7a420391de61d0b86547ed']",
"item/OB_x0020_Rising_x0020_water_x0020_level_x0020_proximity": "@outputs('Get_form_response_details')?['body/rf8401bf2e906408d8cbdf795fc7c53d8']",
"item/OB_x0020_Rising_x0020_water_x0020_level_x0020_threat": "@outputs('Get_form_response_details')?['body/r5e77467b93a1444dac610594cf50e609']",
"item/OB_x0020_Roof_x0020_materials": "@outputs('Get_form_response_details')?['body/r26f6b2ea5cbb4edd9e042efe771ad515']",
"item/OB_x0020_Roof_x0020_type": "@outputs('Get_form_response_details')?['body/r31577a59a1984c329b03368ba9bdc14a']",
"item/OB_x0020_SAWS_x0020_lightning_x0020_strikes_x0020_per_x0020_annum": "@outputs('Get_form_response_details')?['body/r7eb446ec56b74ddcb970287217e4a733']",
"item/OB_x0020_Smoke_x0020_control_x0020_extraction_x0020_systems": "@outputs('Get_form_response_details')?['body/r288f2cf092f64245b7d58226aff0bcec']",
"item/OB_x0020_Smoke_x0020_detection": "@outputs('Get_form_response_details')?['body/r2a29cf69239d4f2199d36bda8ac84c75']",
"item/OB_x0020_Spray_x0020_painting": "@outputs('Get_form_response_details')?['body/r37c25916f05943e286f299167633924b']",
"item/OB_x0020_Subsidence_x0020_and_x0020_landslip": "@outputs('Get_form_response_details')?['body/r9a72ee23b25449cf81119abb37477f4e']",
"item/OB_x0020_Open_x0020_areas_x0020_or_x0020_vacant_x0020_land_x0020_": "@outputs('Get_form_response_details')?['body/r35c3e329d55d4f9f958addcc143fc8f9']",
"item/OB_x0020_Open_x0020_areas_x0020_or_x0020_vacant_x0020_land_x0020_fire_x0020_threat": "@outputs('Get_form_response_details')?['body/rf69379b44fae4fe9a9b7cb87887c003a']",
"item/OB_x0020_Swimming_x0020_pools_x0020_fishponds_x0020_or_x0020_water_x0020_features": "@outputs('Format_list_-_Swimming_pools_and_water_features')",
"item/OB_x0020_Thatch_x0020_condition": "@outputs('Get_form_response_details')?['body/rb02a5c319f9d4481879bed6cff428f4b']",
"item/OB_x0020_Thatch_x0020_fireplaces": "@outputs('Get_form_response_details')?['body/rde0b0022eccd4c29a96a0aec4d58c5bb']",
"item/OB_x0020_Thatch_x0020_structure_x0020_average_x0020_size_x0020__x0028_m2_x0029_": "@variables('Thatchsize')",
"item/OB_x0020_Thatch_x0020_structure_x0020_distance_x0020_from_x0020_main_x0020_structure_x0020__x0028_m_x0029_": "@variables('Thatchdistance')",
"item/OB_x0020_Thatch_x0020_structures": "@outputs('Get_form_response_details')?['body/r9d60a4fbe07a420d8edffeb2e56f9e6e']",
"item/OB_x0020_Truss_x0020_type": "@outputs('Get_form_response_details')?['body/r6c1cc86a6c0e45bea14f580f75a14b60']",
"item/OB_x0020_Twin_x0020_booster_x0020_connection": "@outputs('Get_form_response_details')?['body/r86b0e8c436da43a298c722fd25c9cb4e']",
"item/OB_x0020_Wall_x0020_types": "@outputs('Get_form_response_details')?['body/r861cc6e514894487b9a1f91878052d99']",
"item/OB_x0020_Wall_x0020_options": "@outputs('Format_string_-_Wall_types')",
"item/OB_x0020_Waste_x0020_management": "@outputs('Get_form_response_details')?['body/r40276cd51e1d47399f08e820902f0489']",
"item/OB_x0020_Water_x0020_damage": "@outputs('Get_form_response_details')?['body/rdcb65678f45c474fb842b762ffb7803f']",
"item/OB_x0020_Water_x0020_reticulation": "@outputs('Get_form_response_details')?['body/r8930388f41e84ac3a1c0712b615264d2']",
"item/OB_x0020_Water_x0020_supply": "@outputs('Get_form_response_details')?['body/r0b9f43ef6e954a00bd9a76ee59ff7ad0']",
"item/OB_x0020_Wendy_x0020_house_x0020_or_x0020_timber_x0020_shed_x0020_distance_x0020_from_x0020_main_x0020_structure_x0020__x0028_m_x0029_": "@variables('Wendydistance')",
"item/OB_x0020_Wendy_x0020_house_x0020_or_x0020_timber_x0020_shed_x0020_end_x0020_of_x0020_sentence": "@outputs('Get_form_response_details')?['body/r507c15bb49834cba928bfb907438beac']",
"item/OB_x0020_Wendy_x0020_houses_x0020_or_x0020_timber_x0020_shed_x0020_structures": "@outputs('Get_form_response_details')?['body/r99efa171d4724940bb1e09089edd535e']",
"item/OB_x0020_Window_x0020_frame_x0020_type": "@outputs('Get_form_response_details')?['body/r7db6ecf7cecd4474ac13bfc4937e0f86']",
"item/OB_x0020_Window_x0020_glass_x0020_type": "@outputs('Format_string_-_Window_glass')",
"item/REQ_x0020_Building_x0020_requirement_x0020_risk_x0020_assessment_x0020_rating": "@outputs('Get_form_response_details')?['body/r4512d777aaee404aacb0613cbea29a5e']",
"item/REQ_x0020_Building_x0020_requirements_x0020_or_x0020_recommendations_x0020_": "@outputs('Get_form_response_details')?['body/rf771edced4a34098a1841307327990e0']",
"item/REQ_x0020_Building_x0020_requirements_x0020_or_x0020_recommendations_x0020_list": "@outputs('Format_string_-_Req_building_requirements_and_recommendations_list')",
"item/REQ_x0020_Electrical_x0020_reticulation": "@outputs('Get_form_response_details')?['body/r6405bec05c704af2a4211aca3746e081']",
"item/REQ_x0020_Electrical_x0020_reticulation_x0020_list": "@outputs('Format_list_-_Req_electrical_reticulation_list')",
"item/REQ_x0020_Fire_x0020_equipment_x0020_servicing": "@outputs('Get_form_response_details')?['body/r0540d56b3c594f04876d141457b5994c']",
"item/REQ_x0020_Fire_x0020_hose_x0020_reels": "@outputs('Get_form_response_details')?['body/r67712dd89ff54a3bbc31cc7dae49a63f']",
"item/REQ_x0020_Fire_x0020_hydrant": "@outputs('Get_form_response_details')?['body/r25eb63e3ae6445728f8c7acab8c3e4a7']",
"item/REQ_x0020_Fire_x0020_requirements_x0020_and_x0020_recommendations_x0020_": "@outputs('Get_form_response_details')?['body/r969f2d563e734cce8aa21f76165ee814']",
"item/REQ_x0020_Fire_x0020_requirements_x0020_risk_x0020_rating_x0020_": "@outputs('Get_form_response_details')?['body/r3e4874760b4f479ab3d206c366339752']",
"item/REQ_x0020_Fire_x0020_sprinkler_x0020_systems": "@outputs('Get_form_response_details')?['body/r17523e6ca7e44971a4a1d7066565e162']",
"item/REQ_x0020_Fire_x0020_teams": "@outputs('Get_form_response_details')?['body/r2115e3ad630f49da91aa8ef1dedae2b1']",
"item/REQ_x0020_Gas_x0020_installation_x0020_and_x0020_Cooking_x0020_Extraction_x0020_Systems": "@outputs('Get_form_response_details')?['body/r275aef1e0b6c477b9127a990133ab700']",
"item/REQ_x0020_Gas_x0020_Storage": "@outputs('Get_form_response_details')?['body/r8997e5c3f0e14cc1af3fda61d3322ef1']",
"item/REQ_x0020_Hazardous_x0020_chemical_x0020_or_x0020_flammable_x0020_substances_x0020_storage_x0020_": "@outputs('Get_form_response_details')?['body/re1fd499b641945b7b25d50b521bb1b16']",
"item/REQ_x0020_Hot_x0020_works": "@outputs('Get_form_response_details')?['body/r235b92d22de34c7f9206352e85500914']",
"item/REQ_x0020_Housekeeping": "@outputs('Get_form_response_details')?['body/r45b7cf9289bd47f9a6ef53285688433c']",
"item/REQ_x0020_Liability_x0020_requirements": "@outputs('Get_form_response_details')?['body/ref84245cd0a24c6b8f1f1ba9f0da3ba5']",
"item/REQ_x0020_Smoke_x0020_control_x0020_extraction_x0020_systems": "@outputs('Get_form_response_details')?['body/r0220b06a083243138d6db2a9fa9777ce']",
"item/REQ_x0020_Smoke_x0020_detection_x0020_or_x0020_fire_x0020_alarm_x0020_": "@outputs('Get_form_response_details')?['body/r23ac931d2c6b4467913b6f608b3e9da3']",
"item/REQ_x0020_Spray_x0020_painting": "@outputs('Format_string_-_Spray_painting_recommendations')",
"item/REQ_x0020_Spray_x0020_painting_x0020_tenant_x0020_name": "@outputs('Get_form_response_details')?['body/rc28c64599e3b4f3fa967da5f5c64c187']",
"item/REQ_x0020_Twin_x0020_booster_x0020_connection": "@outputs('Get_form_response_details')?['body/r8421523d490f4b26a40d12a22de03f0f']",
"item/REQ_x0020_Waste_x0020_management": "@outputs('Get_form_response_details')?['body/r61e64a5c700448ccad475970b8aac1ec']"
},
"authentication": "@parameters('$authentication')"
},
"metadata": {
"operationMetadataId": "39e42ee1-0f94-427e-bf9c-db31c090d372"
}
}
hope this helps
I tried twice now to post, I think it is because I tried to include the actual code from the update file properties that it somehow just disappears ...
Create file:
Update file properties:
screenshot of code... (you will see there is no formatdatetime anywhere in the update file properties ...
I hope this saves and posts now...
Based on the original error message I would take a look at the formulas you are using for your Current insured covers. In the Concat() you are parsing pieces out of the file name. I think the addition of the numbers in the name is throwing off that calculation. I would take that Concat() and put it in a Compose action just prior to your update action to see what the formula is really generating. That should help you figure out what needs to be changed to fix your Concat(). I suspect you'll need to use some other special character between the name and the date so you can parse them out to seperate them better.
@Pstork1 thanks for the reply, I have moved the concat action out of the update file properties, I also did a compose on my actual date component for the file name and that part works just fine.
I guess it's my fault for not really checking what that concat action was doing (I used the sample option under expressions to generate the statement and the data format was as I expected it so just went ahead and applied it).
The variable piece declared is straightforward
The formatting not so much, pretty much I have a string of numbers which I want to format to look like an accounting format of numbers...
The values come in as
123456789 and I want to format them as 123 456 789.00
or
12345678 and I want it to display as 12 345 678.00
In excel you could use something like "# ###.00" to format the cell If I could do that here it just might work. If you have a way of doing that I think my situation would be solved.
"# ###.00" will work as a format string in Text() the same way it works in Excel. It will show digits for each of the # signs unless the digit is 0, then it will display a blank. In your example you would want
"### ###.00"
@Pstork1 , thanks so much for pointing me in the right direction, here is what I eventually went with and the values are formatted exactly as I wanted:
I still see a strange error on the Update File Properties section, even thought the file is created and the SharePoint columns are populated.
I sense this latest error is why the actual quick parts in the word document aren't updated like I explained in this post.... Re: HEEEEEELLLLLLP PLEASE - Opening created word f... - Power Platform Community (microsoft.com)
Episode Fourteen of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft PM Jocelyn Panchal, alongside the latest news, videos, product reviews, and community blogs. Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show. Show schedule in this episode: 00:00 Cold Open 00:32 Show Intro 01:10 Jocelyn Panchal Interview 24:10 Blogs & Articles 29:50 Outro & Bloopers Check out the blogs and articles featured in this week’s episode: https://www.nathalieleenders.com/Blog/index.php/;focus=STRATP_com_cm4all_wdn_Flatpress_42136159&path=?x=entry:entry230511-101930#C_STRATP_com_cm4all_wdn_Flatpress_42136159__-anchor @NathLeenders https://www.keithatherton.com/posts/2023-05-12-msbuild2023-cloud-skills-challenge/ @MrKeithAtherton https://elliskarim.com/2023/05/13/how-to-find-files-in-onedrive-that-match-a-naming-pattern/ @MrCaptainKarim https://www.linkedin.com/pulse/my-fond-memories-scottish-summit-2022-pranav-khurana/ @pranavkhuranauk https://www.linkedin.com/feed/update/urn:li:activity:7061777660745560064/?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%28V2%2Curn%3Ali%3Aactivity%3A7061777660745560064%29 @thevictordantas Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse. This episode premiered live on our YouTube at 12pm PST on Thursday 18th May 2023. Video series available at Power Platform Community YouTube channel. Upcoming events: Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas Join our Communities: Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.
Welcome to our May 2023 Community Newsletter, where we'll be highlighting the latest news, releases, upcoming events, and the great work of our members inside the Biz Apps communities. If you're new to this LinkedIn group, be sure to subscribe here in the News & Announcements to stay up to date with the latest news from our ever-growing membership network who "changed the way they thought about code". LATEST NEWS "Mondays at Microsoft" LIVE on LinkedIn - 8am PST - Monday 15th May - Grab your Monday morning coffee and come join Principal Program Managers Heather Cook and Karuana Gatimu for the premiere episode of "Mondays at Microsoft"! This show will kick off the launch of the new Microsoft Community LinkedIn channel and cover a whole host of hot topics from across the #PowerPlatform, #ModernWork, #Dynamics365, #AI, and everything in-between. Just click the image below to register and come join the team LIVE on Monday 15th May 2023 at 8am PST. Hope to see you there! Executive Keynote | Microsoft Customer Success Day CVP for Business Applications & Platform, Charles Lamanna, shares the latest #BusinessApplications product enhancements and updates to help customers achieve their business outcomes. S01E13 Power Platform Connections - 12pm PST - Thursday 11th May Episode Thirteen of Power Platform Connections sees Hugo Bernier take a deep dive into the mind of co-host David Warner II, alongside the reviewing the great work of Dennis Goedegebuure, Keith Atherton, Michael Megel, Cat Schneider, and more. Click below to subscribe and get notified, with David and Hugo LIVE in the YouTube chat from 12pm PST. And use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show. UPCOMING EVENTS European Power Platform Conference - early bird ticket sale ends! The European Power Platform Conference early bird ticket sale ends on Friday 12th May 2023! #EPPC23 brings together the Microsoft Power Platform Communities for three days of unrivaled days in-person learning, connections and inspiration, featuring three inspirational keynotes, six expert full-day tutorials, and over eighty-five specialist sessions, with guest speakers including April Dunnam, Dona Sarkar, Ilya Fainberg, Janet Robb, Daniel Laskewitz, Rui Santos, Jens Christian Schrøder, Marco Rocca, and many more. Deep dive into the latest product advancements as you hear from some of the brightest minds in the #PowerApps space. Click here to book your ticket today and save! DynamicMinds Conference - Slovenia - 22-24th May 2023 It's not long now until the DynamicsMinds Conference, which takes place in Slovenia on 22nd - 24th May, 2023 - where brilliant minds meet, mingle & share! This great Power Platform and Dynamics 365 Conference features a whole host of amazing speakers, including the likes of Georg Glantschnig, Dona Sarkar, Tommy Skaue, Monique Hayward, Aleksandar Totovic, Rachel Profitt, Aurélien CLERE, Ana Inés Urrutia de Souza, Luca Pellegrini, Bostjan Golob, Shannon Mullins, Elena Baeva, Ivan Ficko, Guro Faller, Vivian Voss, Andrew Bibby, Tricia Sinclair, Roger Gilchrist, Sara Lagerquist, Steve Mordue, and many more. Click here: DynamicsMinds Conference for more info on what is sure an amazing community conference covering all aspects of Power Platform and beyond. Days of Knowledge Conference in Denmark - 1-2nd June 2023 Check out 'Days of Knowledge', a Directions 4 Partners conference on 1st-2nd June in Odense, Denmark, which focuses on educating employees, sharing knowledge and upgrading Business Central professionals. This fantastic two-day conference offers a combination of training sessions and workshops - all with Business Central and related products as the main topic. There's a great list of industry experts sharing their knowledge, including Iona V., Bert Verbeek, Liza Juhlin, Douglas Romão, Carolina Edvinsson, Kim Dalsgaard Christensen, Inga Sartauskaite, Peik Bech-Andersen, Shannon Mullins, James Crowter, Mona Borksted Nielsen, Renato Fajdiga, Vivian Voss, Sven Noomen, Paulien Buskens, Andri Már Helgason, Kayleen Hannigan, Freddy Kristiansen, Signe Agerbo, Luc van Vugt, and many more. If you want to meet industry experts, gain an advantage in the SMB-market, and acquire new knowledge about Microsoft Dynamics Business Central, click here Days of Knowledge Conference in Denmark to buy your ticket today! COMMUNITY HIGHLIGHTS Check out our top Super and Community Users reaching new levels! These hardworking members are posting, answering questions, kudos, and providing top solutions in their communities. Power Apps: Super Users: @WarrenBelz, @LaurensM @BCBuizer Community Users: @Amik@ @mmollet, @Cr1t Power Automate: Super Users: @Expiscornovus , @grantjenkins, @abm Community Users: @Nived_Nambiar, @ManishSolanki Power Virtual Agents: Super Users: @Pstork1, @Expiscornovus Community Users: @JoseA, @fernandosilva, @angerfire1213 Power Pages: Super Users: @ragavanrajan Community Users: @Fubar, @Madhankumar_L,@gospa LATEST COMMUNITY BLOG ARTICLES Power Apps Community Blog Power Automate Community Blog Power Virtual Agents Community Blog Power Pages Community Blog Check out 'Using the Community' for more helpful tips and information: Power Apps , Power Automate, Power Virtual Agents, Power Pages
Super Users – 2023 Season 1 We are excited to kick off the Power Users Super User Program for 2023 - Season 1. The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts. Super User Season 1 | Contributions July 1, 2022 – December 31, 2022 Super User Season 2 | Contributions January 1, 2023 – June 30, 2023 Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile. Power Apps Power Automate Power Virtual Agents Power Pages Pstork1* Pstork1* Pstork1* OliverRodrigues BCBuizer Expiscornovus* Expiscornovus* ragavanrajan AhmedSalih grantjenkins renatoromao Mira_Ghaly* Mira_Ghaly* Sundeep_Malik* Sundeep_Malik* SudeepGhatakNZ* SudeepGhatakNZ* StretchFredrik* StretchFredrik* 365-Assist* 365-Assist* cha_cha ekarim2020 timl Hardesh15 iAm_ManCat annajhaveri SebS Rhiassuring LaurensM abm TheRobRush Ankesh_49 WiZey lbendlin Nogueira1306 Kaif_Siddique victorcp RobElliott dpoggemann srduval SBax CFernandes Roverandom schwibach Akser CraigStewart PowerRanger MichaelAnnis subsguts David_MA EricRegnier edgonzales zmansuri GeorgiosG ChrisPiasecki ryule AmDev fchopo phipps0218 tom_riha theapurva takolota Akash17 momlo BCLS776 Shuvam-rpa rampprakash ScottShearer Rusk ChristianAbata cchannon Koen5 a33ik Heartholme AaronKnox okeks Matren David_MA Alex_10 Jeff_Thorpe poweractivate Ramole DianaBirkelbach DavidZoon AJ_Z PriyankaGeethik BrianS StalinPonnusamy HamidBee CNT Anonymous_Hippo Anchov KeithAtherton alaabitar Tolu_Victor KRider sperry1625 IPC_ahaas zuurg rubin_boer cwebb365 Dorrinda G1124 Gabibalaban Manan-Malhotra jcfDaniel WarrenBelz Waegemma drrickryp GuidoPreite metsshan If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances. Once they are received the list will be updated.
We are excited to share the ‘Power Platform Communities Front Door’ experience with you! Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well. Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities. Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform. Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.
We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida. Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more. Register today: https://www.powerplatformconf.com/
User | Count |
---|---|
39 | |
30 | |
30 | |
27 | |
10 |
User | Count |
---|---|
78 | |
43 | |
30 | |
29 | |
17 |