Hi All
I want to cancel the meeting room/meetings which has already schedule. So, there are 2 scenarios, 1st, Cancel a meeting which I schedule and 2nd, just want to cancel the meeting which is schedule. Please suggest
Kind Regards
Ashwani
Hi @AG_learning ,
Could you please share a bit more about your scenario?
Do you want to delete meetings in your Outlook calendar?
If you want to delete the meeting event from your Outlook Event, please consider take a try with the following workaround:
Set the OnStart property of the App control to following:
ClearCollect( /* <-- Display default Birthday Calendar folder events when you load your app */
EventsCollection,
Office365.V2CalendarGetItems(LookUp(Office365.CalendarGetTablesV2().value, name="Birthdays").id).value
)
Add a Dropdown control (Dropdown1) in your app, set the Items property to following:
Office365.CalendarGetTablesV2().value
set the OnChange property of the Dropdown box to following:
ClearCollect(
EventsCollection,
Office365.V2CalendarGetItems(Dropdown1.Selected.id).value
)
Add a Gallery control in your app, set the Items property to following:
EventsCollection
add a "Remove" icon within your Gallery, set the OnSelect property to following:
Office365.CalendarDeleteItemV2(Dropdown1.Selected.id, ThisItem.Id);
ClearCollect(
EventsCollection,
Office365.V2CalendarGetItems(Dropdown1.Selected.id).value
)
After that, re-load your app (fire the OnStart property of the App), please consider take a try with above solution, then check if the issue is solved.
Note: Above solution would be able to delete events shown up in your Outlook Calendar folder. You could not delete events within other user's Outlook calendar or a shared Outlook calendar (there is no way to achieve this in PowerApps currently).
Best regards,
Thanks for sharing the reponse. It is working perfectly, If i want to delete any calendar item.... Good, Thanks.
Delete function just removing the calendar item. Is it possible, to share the "Cancel" Invititaion to all, if I am the orgniser..
And, if someone elase is organiser then intimate to organiser that I'll not able to attend the meeting.
Thanks for your thoughts & solution.
Kind Regards
Ashwani
Hi @AG_learning ,
Do you want to share the "Cancel" Invititaion to other users within this meeting?
If you want to share the "Cancel" Invititaion to other users within this meeting, I afraid that there is no way to achieve your needs in PowerApps currently.
Currently, there is no way or functions supported to share "Cancel" Invititaion of an Outlook event meeting to other users. If you would like this feature to be added in PowerApps, please submit an idea to PowerApps Ideas Forum:
https://powerusers.microsoft.com/t5/PowerApps-Ideas/idb-p/PowerAppsIdeas
Best regards,
Thanks for your response.
I found something on google. Please suggest, if it can help me.
https://docs.microsoft.com/en-us/connectors/office365/#respond-to-an-event-invite-(v2)
If yes, please suggest, how it will work.. as I am not able to use it.
Kind Regards
Ashwani
Hi @AG_learning ,
Based on the needs that you mentioned, I afraid that the "Respond to an event invite" action of Office 365 Outlook connector could not achieve your needs.
The "Respond to an event invite" action of Office 365 Outlook connector is used to send an response to an event which sent to you. It could nto be used to share a "Cancel" invitiation to other users.
If you want to use this action to send an response to the event sent to you, please consider add a Button/Icon within your Gallery, then set the OnSelect property to following:
Office365.RespondToEventV2(
ThisItem.Id,
"accept", /* <-- three available values -- "accept", "decline" and "tentativelyAccept" */
{
Comment:"",
SendResponse: true
}
)
Please consider take a try with above solution, check if the issue is solved.
Best regards,
Hi @v-xida-msft
Nice solution.
1. Is there any way to access Room Calendar (rooms which we set under resources in Exchange) and delete an item there?
2. do ordinary users need a specific access rights on that?
Regards
I would also like to be able to cancel a room from powerapps. Deleting the event wont cancel the room, it only deletes from your own agenda but not from the room agenda.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
186 | |
53 | |
41 | |
36 | |
30 |
User | Count |
---|---|
240 | |
75 | |
71 | |
69 | |
65 |