Skip to main content
September 29, 2022
Solved

To get no of documents created last month in the environment

  • September 29, 2022
  • 9 replies
  • 0 views

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.

    Best answer by harshitb6843

    local!document: a!flatten(
      a!forEach(
        items: cons!DMF_DOCUMENT_FOLDERS_LIST,
        expression: folder(fv!item, "documentChildren")
      )
    ),

    9 replies

    Participating Frequently
    September 29, 2022

    Can you share the screenshot for the values which you have in your local variable actually this is working I tried using the same code it is working. Have you tested it?

    September 29, 2022

    Hi Ujjwal,

    PFB screenshot with the values in the constant.

    The code is working with individual folder. But I want for list of all the document folders in the environment.

    Participating Frequently
    September 29, 2022

    Ohhh I took it like you are storing folder in the constant.

    harshitb6843
    September 29, 2022

    The error is very specific. If it is not working with a list, you might have to iterate through that so you can pass an individual folder instead a list.

    September 29, 2022

    Hi Harshit,

    Yeah, it worked when I passed individual folder but I want for list of all the document folders in the environment. Could you please help if we have any way other than this.

    harshitb6843
    September 29, 2022

    local!document: a!flatten(
      a!forEach(
        items: cons!DMF_DOCUMENT_FOLDERS_LIST,
        expression: folder(fv!item, "documentChildren")
      )
    ),