To get no of documents created last month in the environment

Certified Associate Developer

Hi,

I have a requirement where I need to get the total no of documents created last month in the environment.

I have added all the document folders in a constant and tried to fetch the documents count but I'm getting an error as "The passed parameter(s) are of the wrong type. Received the type List of Folder."

a!localVariables(
local!document: folder(
cons!DMF_DOCUMENT_FOLDERS_LIST,
"documentChildren"
),
sum(
a!forEach(
items: local!document,
expression: todate(document(fv!item, "dateCreated")) > today()-30,
)
)
)

Can anyone please help me.

  Discussion posts and replies are publicly visible