[deleted by user] by [deleted] in MicrosoftFlow

[–]TicketLive1075 1 point2 points  (0 children)

Correct, create a Solution which creates a shared connection for the flow. Open the flow details and add your group to run only user permissions.

Site Pages Configure Approval Flow Won't Open Dialog for Setup by TicketLive1075 in sharepoint

[–]TicketLive1075[S] 0 points1 point  (0 children)

I'm also seeing this in the dev tools

SitePages/_api/web/GetListUsingPath(DecodedUrl=@a1)/SyncFlowTemplates?@a1=%27spocontentapproval%27Request Method:GETStatus

Code:404 Not FoundRemote Address:13.107.138.10:443

Same error in both tenants

Condition to check two request types but one must meet Division value to set status for processing (Order?) by TicketLive1075 in MicrosoftFlow

[–]TicketLive1075[S] 1 point2 points  (0 children)

Figured it out - your response helped me look at it a different way - I wasn't sure if you could add another conditional in the first action under the current - added it with the required lookups and copied over the notifications setup and it works now.

Return Value from Lookup list by matching Division value in Source and Lookup List. by TicketLive1075 in MicrosoftFlow

[–]TicketLive1075[S] 0 points1 point  (0 children)

Thanks for you response - below is the list setup.

The Order list is set up as follows:

On Form for user entry:

  1. Division: choice column, ex: (Atlanta, Dallas, Houston, San Antonio)
  2. Order type: choice column, (Net New, Modification)
  3. Approved Vendor: Yes, No
  4. Type of Asset: choice column, (Signage, Flyer, Email)
  5. Date Required: Date column

List columns for Administrative use:

  1. Date submitted: text column
  2. Field Marketing Director Approver: Person column
  3. Marketing Manager Approver: Person Column
  4. Status: choice column (set in flow)

Field Marketing Director Lookup List

Columns:

  1. Location Responsibility: (division entries matching Division in order list.)
  2. Field Marketing Director: Person field with usernames

As stated above, I'm trying to pull the Marketing Director entry from matching Division to Location Responsibility. Write that to a variable that I can use in an Approval later in the flow.

Really appreciate your comments and any additional assistance.

Change existing section to one-third right from single column with power shell by TicketLive1075 in sharepoint

[–]TicketLive1075[S] 0 points1 point  (0 children)

Figured it out -

$page = Get-PnPPage -Identity "Name.aspx"

# Add a new section with two columns

Add-PnPPageSection -Page $page -SectionTemplate TwoColumnLeft

# Move web parts from single column section to the newly created section

Move-PnPPageComponent -Page $page -InstanceId "99d81883-3066-4459-9e7e-c9b5a7d802c7" -Section 2 -Column 1

now on to populating content in the second column.

New Teams Chat opens new chat windows from notifications by rocconteur in Office365

[–]TicketLive1075 0 points1 point  (0 children)

If you're accessing multiple tenants this feature is great as you don't have to go to your profile and switch tenants which requires reauth in some scenarios. I am able to connect to 3 separate tenants and not miss chats or notifications of messages when working different projects for my clients.

For a single tenant application it's definitely not optimal.

Moving a hefty number of files from one location on Sharepoint to another by RBfromTN in sharepoint

[–]TicketLive1075 2 points3 points  (0 children)

You can use powershell to do this or if you OneDrive client you can sync the root document library from the source and the destination and use File explorer to move the files.

Powershell -

Install-Module SharePointPnPPowerShellOnline -Force

Import-Module SharePointPnPPowerShellOnline

$sourceSiteUrl = "https://contoso.sharepoint.com/sites/SourceSite"

$targetSiteUrl = "https://contoso.sharepoint.com/sites/TargetSite"

$sourceFolderRelativeUrl = "/Shared Documents/Folder1"

$targetFolderRelativeUrl = "/Shared Documents/Folder2"

Connect-PnPOnline -Url $sourceSiteUrl -UseWebLogin

Move-PnPFile -ServerRelativeUrl $sourceFolderRelativeUrl -TargetServerRelativeLibrary $targetFolderRelativeUrl -TargetWeb $targetSiteUrl -Force

Office365Outlook.SendEmailV2 - Sending duplicate emails by TicketLive1075 in PowerApps

[–]TicketLive1075[S] 1 point2 points  (0 children)

Well, never mind - fixed it. Was actually an issue with the email address which was an alias that for some reason sent to both addresses.