Reminders Portlets in SDF Custom Objects

You can create Reminders portlets in SuiteCloud Development Framework (SDF) using the publisheddashboard SDF custom object. For information about the appropriate context, see Published Dashboards as XML Definitions.

A Reminders portlet displays important tasks in NetSuite, such as things that are past due or soon due to be completed. You can define a reminders portlet in a published dashboard using the reminders element.

You can define the following kinds of reminders:

For each reminder, highlighting can be defined using the highlightingrules element. For the list of possible color values, see reminders_highlighting_rules_colors.

The following example defines a reminder that is highlighted red when there are 5 or more employes with authorization expiring in the next 15 days.

          <reminder>
    <days>15</days>
    <id>EMPLOYEESWITHEXPIRINGAUTHORIZATION</id>
    <highlightingrules>
        <rule>
            <color>RED</color>
            <greaterthanorequalto>5</greaterthanorequalto>
        </rule>
    </highlightingrules>
</reminder> 

        

The following global options can be specified for all reminders in the portlet:

Reminders can be specified in the following locations of the reminders portlet:

The following example defines a Reminders portlet with several reminders as part of a published dashboard object:

          <publisheddashboard scriptid="custpubdashboard_reminders">
    <center>ACCOUNTCENTER</center>
    <locknewbar>F</locknewbar>
    <lockshortcuts>F</lockshortcuts>
    <name>Reminders</name>
    <notes/>
    <roles>
        <role>
            <role>HUMAN_RESOURCES_GENERALIST</role>
       </role>
    </roles>
    <dashboards>
        <dashboard>
            <centertab>BASICCENTERHOMEHOME</centertab>
            <layout>THREE_COLUMN</layout>
            <mode>UNLOCKED</mode>
            <leftcolumn>
                <reminders>
                    <isminimized>F</isminimized>
                    <showzeroresults>T</showzeroresults>
                    <headline>
                        <reminder>
                            <days>5</days>
                            <id>EMPLOYEESWITHUPCOMINGANNIVERSARY</id>
                            <highlightingrules>
                                <rule>
                                    <color>BLUE</color>
                                    <greaterthanorequalto>1</greaterthanorequalto>
                                </rule>
                            </highlightingrules>
                        </reminder>
                        <reminder>
                            <days>7</days>
                            <id>EMPLOYEESWITHUPCOMINGBIRTHDAY</id>
                        </reminder>
                    </headline>
                    <other>
                        <reminder>
                            <id>[scriptid=customsearch_emps_kwolfe]</id>
                        </reminder>
                    </other>
                </reminders>
            </leftcolumn>
        </dashboard>
    </dashboards>
</publisheddashboard> 

        

Related Topics

Supported Published Dashboard Object Portlets
Analytics Portlets in SDF Custom Objects
Calendar Portlets in SDF Custom Objects
Custom Portlets in SDF Custom Objects
Custom Search Portlets in SDF Custom Objects
Event Scheduler Portlets in SDF Custom Objects
Key Performance Indicator (KPI) Portlets in SDF Custom Objects
Key Performance Indicator (KPI) Scorecard Portlets in SDF Custom Objects
KPI Meter Portlets in SDF Custom Objects
Links Portlets in SDF Custom Objects
List Portlets in SDF Custom Objects
My Login Audit Portlets in SDF Custom Objects
Gantt Chart Portlets in SDF Custom Objects
Project Info Portlets in SDF Custom Objects
Project Profitability Portlets in SDF Custom Objects
Project Links Portlets in SDF Custom Objects
Quick Search Portlets in SDF Custom Objects
Recent Records Portlets in SDF Custom Objects
Recent Reports Portlets in SDF Custom Objects
Report Snapshot Portlets in SDF Custom Objects
Search Form Portlets in SDF Custom Objects
Settings Portlets in SDF Custom Objects
Tasks Portlets in SDF Custom Objects
Trend Graph Portlets in SDF Custom Objects

General Notices