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)
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24 17 @Anil_g 7 @ManishSolanki 13 @eetuRobo 5 @David_MA 10 @VishnuReddy1997 5 @SpongYe 9JhonatanOB19932 (tie) @Nived_Nambiar 8 @maltie 2 (tie) @PA-Noob 2 (tie) @LukeMcG 2 (tie) @tgut03 2 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate @Deenuji 12@ManishSolanki 19 @Anil_g 10 @NathanAlvares24 17 @VishnuReddy1997 6 @Expiscornovus 10 @Tjan 5 @Nived_Nambiar 10 @eetuRobo 3 @SudeepGhatakNZ 8 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2 Anil_g2 SharonS2
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages