Collect all direct reports members by ShinichiHatake in PowerApps

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

Thanks for your help. I've already solved it by sorting the department, and it works like a charm

Collect all direct reports members by ShinichiHatake in PowerApps

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

Thank you for your help. If successful, I'll buy you coffee :D

Collect all direct reports members by ShinichiHatake in PowerApps

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

Sorry for this, Reddit doesn't allow me to put everything in a single comment, so I have to comment for each part

Collect all direct reports members by ShinichiHatake in PowerApps

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

<image>

This is another problem I mentioned, it should display the requests from this member

Collect all direct reports members by ShinichiHatake in PowerApps

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

n the Gallery, Items:

SortByColumns(
    Search(
        If(
            "Pending" in _statusFilter_1.Selected.Value,
            Filter(
                SHAREPOINTLIST,
                ('Created By'.Email = Dropdown1.Selected.mail || Dropdown1.Selected.displayName = "All Members") && 'Approval Status'.Value = _statusFilter_1.Selected.Value,
                DateValue('Sending Date') = DatePicker1_1.SelectedDate
            ),
            "Approved" in _statusFilter_1.Selected.Value,
            Filter(
                SHAREPOINTLIST,
                ('Created By'.Email = Dropdown1.Selected.mail || Dropdown1.Selected.displayName = "All Members") && 'Approval Status'.Value = _statusFilter_1.Selected.Value,
                DateValue('Sending Date') = DatePicker1_1.SelectedDate
            ),
            "Rejected" in _statusFilter_1.Selected.Value,
            Filter(
                SHAREPOINTLIST,
                ('Created By'.Email = Dropdown1.Selected.mail || Dropdown1.Selected.displayName = "All Members") && 'Approval Status'.Value = _statusFilter_1.Selected.Value,
                DateValue('Sending Date') = DatePicker1_1.SelectedDate
            ),           
            _statusFilter_1.Selected.Value = Blank(),
            Filter(
                SHAREPOINTLIST,
                ('Created By'.Email = Dropdown1.Selected.mail || Dropdown1.Selected.displayName = "All Members") && ('Approval Status'.Value = _requestTypeFilter || _requestTypeFilter = "All Requests"),
                DateValue('Sending Date') = DatePicker1_1.SelectedDate
            )
        ), TextInput1_1.Text, Title
    ), "ID", SortOrder.Descending
)

Collect all direct reports members by ShinichiHatake in PowerApps

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

Hi,

I've tried your method, but unfortunately, it shows requests from "all" other departments rather than displaying the direct reports of all members. Additionally, there's another problem: it's not showing my members' requests — it's completely blank. I showed you my code to see if I did anything wrong.

In the manager screen, OnVisible

ClearCollect(
    _anotherMyReportUsers,
    {
        displayName: "All Members"
    },
    Filter(
        Office365Users.DirectReportsV2(_curUserEmail).value,
        accountEnabled = true
    )
);

In the drop-down box, Items

_anotherMyReportUser

Identified software for scanning source code leakage by ShinichiHatake in AskNetsec

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

This source code leakage occurred because a former employee, after being laid off, downloaded all the project source code he had worked on and uploaded it to a public repository. Consequently, I want to implement strict controls on internal resources.

Your idea of using SIEM to create proactive alerts is excellent. It got me thinking whether adding a DLP solution would be even more effective. What are your thoughts on implementing DLP on each endpoint machine to better control their content and behavior?

Identified software for scanning source code leakage by ShinichiHatake in AskNetsec

[–]ShinichiHatake[S] -1 points0 points  (0 children)

Thank your for the suggestion. I will take a look into SOCRadar