LDAP Admin & Reporting Tool has a comprehensive list of LDAP Directory Object reports (LDAP Object Reports are only available with LDAP Admin & Reporting Tool and LDAP plus AD Help Desk Tool). All reports except for a few can be easily customized to fit your needs, you can easily add or remove more attributesto your report, set the report search base etc. Below you can find detailed information on how these reports are created.
LDAP All Objects ReportAll Objects Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE
LDAP All Objects Created Today ReportAll Objects Created Today Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and createTimestamp <= CurrentEndofDay and createTimestamp >=CurrentStartofDay subtreescope
LDAP All Objects Created Yesterday ReportAll Objects Created Yesterday Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where createTimestamp <= CurrentEndofDay -1 days and createTimestamp >=CurrentStartofDay -1 days subtreescope
LDAP All Objects Created in Last 7 Days ReportAll Objects Created in Last 7 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where createTimestamp >= CurrentTimestamp -7 days subtreescope
LDAP All Objects Created in Last 30 Days ReportAll Objects Created in Last 30 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where createTimestamp >= CurrentTimestamp -30 days subtreescope
LDAP All Objects Created in Last 60 Days ReportAll Objects Created in Last 60 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where createTimestamp >= CurrentTimestamp -60 days subtreescope
LDAP All Objects Created in Last 90 Days ReportAll Objects Created in Last 90 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where createTimestamp >= CurrentTimestamp -90 days subtreescope
LDAP All Objects Created between.. ReportAll Objects Created between the dates specified is created using the following sqlldap statement, you can specify from and to timestamp in the popup dialog.Select cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where createTimestamp >$TimeStamp1 and createTimestamp <= TimeStamp2 subtreescope
LDAP All Objects Modified Today ReportAll Objects Modified Today Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp <= CurrentEndofDay and modifyTimestamp >=CurrentStartofDay subtreescope
LDAP All Objects Modified Yesterday ReportAll Objects Modified Yesterday Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp <= CurrentEndofDay -1 days and modifyTimestamp >=CurrentStartofDay -1 days subtreescope
LDAP All Objects Modified in Last 7 Days ReportAll Objects Modified in Last 7 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp >= CurrentTimestamp -7 days subtreescope
LDAP All Objects Modified in Last 30 Days ReportAll Objects Modified in Last 30 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp >= CurrentTimestamp -30 days subtreescope
LDAP All Objects Modified in Last 60 Days ReportAll Objects Modified in Last 60 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp >= CurrentTimestamp -60 days subtreescope
LDAP All Objects Modified in Last 90 Days ReportAll Objects Modified in Last 90 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp >= CurrentTimestamp -90 days subtreescope
LDAP All Objects Modified between.. ReportAll Objects Modified between the dates specified is created using the following sqlldap statement, you can specify from and to timestamp in the popup dialog.Select cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp >= $Timestamp1 and modifyTimestamp <= $Timestamp2 subtreescope
LDAP All Objects Specified Attribute is null or not presentAll Objects where specified attribute is null report is created using the following sqlldap statement, you can specifiy the attribute in the popup dialog.Select mail, cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where $Attribute is null subtreescope
LDAP All Objects Specified Attribute is not null or presentAll Objects where specified attribute is not null report is created using the following sqlldap statement, you can specifiy the attribute in the popup dialog.Select mail, cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where $Attribute is not null subtreescope
|
LDAP Admin & Reporting Tool User Reports give detailed information on users, below you can find detailed information on how these reports are created.
LDAP All Users ReportAll Users Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp,businessCategory from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson subtreescope
LDAP All Users Created Today ReportAll Users Created Today Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and createTimestamp <= CurrentEndofDay and createTimestamp >=CurrentStartofDay subtreescope
LDAP All Users Created Yesterday ReportAll Users Created Yesterday Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and createTimestamp <= CurrentEndofDay -1 days and createTimestamp >=CurrentStartofDay -1 days subtreescope
LDAP All Users Created in Last 7 Days ReportAll Users Created in Last 7 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp,businessCategory from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and createTimestamp >= CurrentTimestamp -7 days subtreescope
LDAP All Users Created in Last 30 Days ReportAll Users Created in Last 30 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and createTimestamp >= CurrentTimestamp -30 days
LDAP All Users Created in Last 60 Days ReportAll Users Created in Last 60 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and createTimestamp >= CurrentTimestamp -60 days
LDAP All Users Created in Last 90 Days ReportAll Users Created in Last 90 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and createTimestamp >= CurrentTimestamp -90 days
LDAP All Users Created between.. ReportAll Users Created between the dates specified is created using the following sqlldap statement, you can specify from and to timestamp in the popup dialog.Select cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and createTimestamp >= $Timestamp1 and createTimestamp <= $Timestamp2 subtreescope
LDAP All Users Modified Today ReportAll Users Modified Today Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and modifyTimestamp <= CurrentEndofDay and modifyTimestamp >=CurrentStartofDay subtreescope
LDAP All Users Modified Yesterday ReportAll Users Modified Yesterday Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and modifyTimestamp <= CurrentEndofDay -1 days and modifyTimestamp >=CurrentStartofDay -1 days subtreescope
LDAP All Users Modified in Last 7 Days ReportAll Users Modified in Last 7 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and modifyTimestamp >= CurrentTimestamp -7 days
LDAP All Users Modified in Last 30 Days ReportAll Users Modified in Last 30 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp >= CurrentTimestamp -30 days subtreescope
LDAP All Users Modified in Last 60 Days ReportAll Users Modified in Last 60 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp,businessCategory from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and modifyTimestamp >= CurrentTimestamp -60 days subtreescope
LDAP All Users Modified in Last 90 Days ReportAll Users Modified in Last 90 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and modifyTimestamp >= CurrentTimestamp -90 days
LDAP All Users Modified between.. ReportAll Users Modified between the dates specified is created using the following sqlldap statement, you can specify from and to timestamp in the popup dialog.Select cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and modifyTimestamp >$Timestamp1 and modifyTimestamp <= $Timestamp2 subtreescope
LDAP All Users Specified Attribute is null or not presentAll Users where specified attribute is null report is created using the following sqlldap statement, you can specifiy the attribute in the popup dialog.Select mail, cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and $Attribute is null subtreescope
LDAP All Users Specified Attribute is not null or presentAll Users where specified attribute is not null report is created using the following sqlldap statement, you can specifiy the attribute in the popup dialog.Select mail, cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=top and objectClass=person and objectClass=organizationalPerson and objectClass=inetOrgPerson and $Attribute is not null subtreescope
|
LDAP Admin & Reporting tool give ldap administrators and developers a quick view of all available groups, below you can find detailed information on how these reports are created.
LDAP All Groups ReportAll Groups Report is created using the following sqlldap statement (Depending on Directory Server ObjectClass parameters will be adjusted accordingly)Select cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames
LDAP All Groups Created Today ReportAll Groups Created Today Report is created using the following sqlldap statement (Depending on Directory Server ObjectClass parameters will be adjusted accordingly)Select cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and createTimestamp <= CurrentEndofDay and createTimestamp >=CurrentStartofDay subtreescope
LDAP All Groups Created Yesterday ReportAll Groups Created Yesterday Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and createTimestamp <= CurrentEndofDay -1 days and createTimestamp >=CurrentStartofDay -1 days subtreescope
LDAP All Groups Created in Last 7 Days ReportAll Groups Created in Last 7 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and createTimestamp >= CurrentTimestamp -7 days subtreescope
LDAP All Groups Created in Last 30 Days ReportAll Groups Created in Last 30 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and createTimestamp >= CurrentTimestamp -30 days subtreescope
LDAP All Groups Created in Last 60 Days ReportAll Groups Created in Last 60 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and createTimestamp >= CurrentTimestamp -60 days subtreescope
LDAP All Groups Created in Last 90 Days ReportAll Groups Created in Last 90 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and createTimestamp >= CurrentTimestamp -90 days subtreescope
LDAP All Groups Created between.. ReportAll Groups Created between the dates specified is created using the following sqlldap statement, you can specify from and to timestamp in the popup dialog.Select cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and createTimestamp >= $Timestamp1 and createTimestamp <=$Timestamp2 subtreescope
LDAP All Groups Modified Today ReportAll Groups Modified Today Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and modifyTimestamp <= CurrentEndofDay and modifyTimestamp >=CurrentStartofDay subtreescope
LDAP All Groups Modified Yesterday ReportAll Groups Modified Yesterday Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and modifyTimestamp <= CurrentEndofDay -1 days and modifyTimestamp >=CurrentStartofDay -1 days subtreescope
LDAP All Groups Modified in Last 7 Days ReportAll Groups Modified in Last 7 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where modifyTimestamp >= CurrentTimestamp -7 days subtreescope
LDAP All Groups Modified in Last 30 Days ReportAll Groups Modified in Last 30 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and modifyTimestamp >= CurrentTimestamp -30 days subtreescope
LDAP All Groups Modified in Last 60 Days ReportAll Groups Modified in Last 60 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and modifyTimestamp >= CurrentTimestamp -60 days subtreescope
LDAP All Groups Modified in Last 90 Days ReportAll Groups Modified in Last 90 Days Report is created using the following sqlldap statementSelect cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and modifyTimestamp >= CurrentTimestamp -90 days subtreescope
LDAP All Groups Modified between.. ReportAll Groups Modified between the dates specified is created using the following sqlldap statement, you can specify from and to timestamp in the popup dialog.Select cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and modifyTimestamp >$Timestamp1 and modifyTimestamp <=$Timestamp2 subtreescope
LDAP All Groups Specified Attribute is null or not presentAll Groups where specified attribute is null report is created using the following sqlldap statement, you can specifiy the attribute in the popup dialog.Select mail, cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and $Attribute is null subtreescope
LDAP All Groups Specified Attribute is not null or presentAll Groups where specified attribute is not null report is created using the following sqlldap statement, you can specifiy the attribute in the popup dialog.Select mail, cn,creatorsName,createTimestamp,modifiersName,modifyTimestamp from RootDSE where objectClass=groupOfUniqueNames and $Attribute is not null subtreescope
|