nerdexam

70-158 · Question #23

Your company network includes Forefront Identity Manager (FIM) 2010. The FIM server has the following XPath query: /Request[Target = /Group[Type = 'Security'] and Operation = 'Put' and CreatedTime…

The correct answer is D. To identify requests made to modify a security group within the last 7 days. The XPath query identifies Forefront Identity Manager (FIM) requests whose target is a security group, the operation is a 'Put' (create or modify), and the request itself was initiated within the last seven days.

Submitted by ashley.k· Mar 4, 2026Configure Business Rules and Workflows

Question

Your company network includes Forefront Identity Manager (FIM) 2010. The FIM server has the following XPath query: /Request[Target = /Group[Type = 'Security'] and Operation = 'Put' and CreatedTime >= op:subtract- dayTimeDuration-from-dateTime(fn:current- dateTime(), xs:dayTimeDuration('P7D'))] What is the function of the XPath query?

Options

  • ATo identify security groups created within the last 7 days.
  • BTo identify security groups modified within the last 7 days.
  • CTo identify requests made to modify a security group more than 7 days ago.
  • DTo identify requests made to modify a security group within the last 7 days.

How the community answered

(50 responses)
  • A
    6% (3)
  • B
    22% (11)
  • C
    12% (6)
  • D
    60% (30)

Why each option

The XPath query identifies Forefront Identity Manager (FIM) requests whose target is a security group, the operation is a 'Put' (create or modify), and the request itself was initiated within the last seven days.

ATo identify security groups created within the last 7 days.

This choice incorrectly states the query identifies security groups directly, and 'Put' can also mean modify, not exclusively create.

BTo identify security groups modified within the last 7 days.

This choice incorrectly states the query identifies security groups directly, rather than requests targeting security groups.

CTo identify requests made to modify a security group more than 7 days ago.

The 'CreatedTime >= ...' condition means 'within the last 7 days', not 'more than 7 days ago'.

DTo identify requests made to modify a security group within the last 7 days.Correct

The query begins with '/Request', indicating it targets request objects. 'Target = /Group[Type = 'Security']' specifies that the request's target is a security group, and 'Operation = 'Put'' signifies a modification or creation action. The condition 'CreatedTime >= op:subtract-dayTimeDuration-from-dateTime(fn:current-dateTime(), xs:dayTimeDuration('P7D'))' precisely filters for requests created within the last 7 days.

Concept tested: FIM XPath query for request filtering

Topics

#XPath Queries#Request Processing#FIM Portal#Security Groups

Community Discussion

No community discussion yet for this question.

Full 70-158 Practice