Navigating travel expenses in the public sector can be intricate, especially when it comes to adhering to per diem rates. To address this, I developed the GSA Per Diem Connector for Power Platform, aiming to simplify access to essential travel expense data. For those looking to delve deeper into per diem rates, the U.S. General Services Administration (GSA) offers comprehensive information. Additionally, the GSA Per Diem API, which serves as the backbone of this connector, provides detailed insights into the rate data.
Per diem rates, set by the U.S. General Services Administration (GSA), are daily allowances allotted to federal employees to cover lodging, meals, and incidental expenses when traveling for work. These rates are crucial for budgeting and expense management in government-related travel.
Developing this connector involved aligning with Microsoft’s certification submission guidelines, ensuring both functionality and compliance. The approval signifies the connector’s readiness to serve the public sector’s specific needs.
The GSA Per Diem Connector seamlessly integrates with Power Platform, granting users immediate access to up-to-date GSA per diem rates. This integration is key for accurately calculating travel expenses and streamlining expense reporting processes. For more in-depth information and a detailed exploration of the connector’s capabilities, visit the official GSA Per Diem Rates connector page on Microsoft Learn.
The connector is specifically designed to:
The GSA Per Diem Connector offers a variety of actions to retrieve per diem rates, each tailored to different requirements. Here’s a breakdown of these actions and how they can be utilized:
Retrieve Rates by City, State, and Year
Retrieve Rates for All Counties in a State
Retrieve Rates by ZIP Code
Lodging Rates for Continental US
Mapping ZIP Codes to Destination IDs
Each of these actions is designed to make accessing and utilizing per diem rate data as seamless and efficient as possible, ensuring your Power Platform solutions are both robust and compliant with federal travel regulations.
Incorporating the GSA Per Diem Connector into Power Platform enhances travel-related applications with essential per diem rate data. Here’s a brief guide on how to utilize the connector in both Power Automate and Power Apps.
The entire sample app can be downloaded here: Sample Power App
PowerFx code for OnSelect of Location gallery.
Set(varPerDiemRates, GSAPerDiem.GetPerDiemRatesByCityStateAndYear(ThisItem.City, ThisItem.State, Dropdown1.SelectedText.Value).rates);
If(
CountRows(varPerDiemRates) = 0,
Set(
noLocationFound,
true
);
Set(
varMeals,
Blank()
);
//Set(varHotelMonths, Table({}));
Clear(colHotelMonths);
Set(
varCity,
Blank()
);
Set(
varState,
Blank()
);
Set(
varYear,
Blank()
);
,
Set(
noLocationFound,
false
);
Set(
varMeals,
Index(
Index(
varPerDiemRates,
1
).rate,
1
).meals
);
Set(
varCity,
Index(
Index(
varPerDiemRates,
1
).rate,
1
).city
);
Set(
varState,
Index(
varPerDiemRates,
1
).state
);
Set(
varYear,
Index(
varPerDiemRates,
1
).year
);
ClearCollect(
colHotelMonths,
Index(
Index(
varPerDiemRates,
1
).rate,
1
).months.month
);
)
I am pleased to offer the public sector a practical tool in the GSA Per Diem Connector, simplifying the management of travel expenses in alignment with federal guidelines.
Discover the GSA Per Diem Connector’s capabilities within your Power Platform environment. For further information or support, feel free to reach out.
Original Post http://www.richardawilson.com/2024/01/enhancing-public-sector-travel-with-gsa.html