Difference between revisions of "Archiving Records"

From SmartWiki
Jump to: navigation, search
 
(36 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Overview==
 
==Overview==
This article outlines the procedures for archiving and unarchiving records within the SmartSimple Cloud system. It covers how to manage records' visibility by toggling their archived status, thereby improving system performance and ensuring data is easily retrievable when needed. Key features include filtering records based on their archival status, detailed steps for using the Batch Update feature for both archiving and unarchiving, and the use of the @archived@ system variable for conditional visibility and editing of records.
+
This article outlines the procedures for archiving and unarchiving records within the SmartSimple Cloud system. It covers how to manage records' visibility by toggling their archived status, thereby improving system performance and ensuring data is easily retrievable when needed. Key features include filtering records based on their archival status, detailed steps for using the Batch Update feature for both archiving and unarchiving, and the use of the '''@archived@''' system variable for conditional visibility and editing of records.
  
 
Additionally, the article describes an alternative method for unarchiving records individually through custom JavaScript, offering a solution for a custom control.
 
Additionally, the article describes an alternative method for unarchiving records individually through custom JavaScript, offering a solution for a custom control.
  
 
==Configuration - Essentials==
 
==Configuration - Essentials==
 +
'''Important''': You can only access record archiving functionality from UTA L1 record level. When archiving L1 records all associated L2 and L3 activities will be automatically archived.
 +
 
===Archiving Records===
 
===Archiving Records===
1 In order to archive records navigate to UTA Level 1 list view with those records.
+
1. In order to archive records, navigate to UTA Level 1 list view with those records.
2 Use the Search / Filter option to return the list of records that are to be archived.
 
3 Once the search is complete select desired records to archive using the toggle next to each record or use select all if you wish to archive all records visible in the list view.
 
 
 
: [[Image:archive1.png]]
 
 
 
4 Click on the '''Batch Update''' icon.
 
5 Select '''Archiving''', then from the '''Update Archiving''' select '''Archived''' option.
 
6 To complete the process press '''Update''' at the bottom of the Batch Update window.
 
7 Click '''Update''' in the popup window to confirm your decision.
 
8 Selected objects are now archived.
 
 
 
  
 +
2. Use the Search / Filter option to return the list of records that are to be archived.
  
: [[Image:ArchivingBatchUpdate.png]]
+
3. Once the search is complete, select desired records to archive using the toggle next to each record or use select all if you wish to archive all records visible in the list view.
==Search Records==
 
Searches can be filtered based on whether or not the object has been archived.
 
  
: [[Image:SearchArchived.png]]
+
: [[Image:archive1.png|800px]]
: The above image of the Level 1 search shows how to filter for only records that have been Archived.
+
4. Click on the '''Batch Update''' icon.
: To filter for records that are not archived simply search using normal criteria.
 
==Archive Records==
 
1 Use the Search / Filter option to return the list of records that are to archived.
 
  
2 Once the search is complete select the records to be archived using the check boxes in the search screen.
+
5. Select '''Archiving''', then from the '''Update Archiving''' select '''Archived''' option.
  
: [[Image:Archive.png]]
+
6. To complete the process, press '''Update Applications''' at the bottom of the Batch Update window.
3 Click the Batch Update button.
 
  
4 In the resulting screen select the Archived option from the '''Update Archive to''' drop-down list.
+
: [[Image:archive2.png|800px]]
 +
7. Click '''Update Applications''' in the pop-up window to confirm your decision.
  
: [[Image:ArchiveSelect.png]]
+
: [[Image:archive3.png]]
5 Then click the '''Batch Update''' button.
+
8. Selected records are now archived.
  
6 Click OK on any windows related to the execution of workflows.
+
===Unarchiving Records===
 +
1. In order to unarchive records, navigate to UTA Level 1 list view with those records.<br />2. Use the '''Advanced Search''' to return the list of records that are to be unarchived.
  
: [[Image:ArchiveWorkflow.png]]
+
'''[[Image:archive4.png|800px]]'''
7 User should get a confirmation screen to notify them that everything has been updated successfully.
 
  
: [[Image:ArchiveConfirmation.png]]
+
3. In the list of '''Standard Fields''', select '''Archived Applications'''.<br />4. Press '''Search'''.<br />5. A list with all archived records will be displayed in a list view.<br />6. Select desired records to unarchive using the toggle next to each record or use select all if you wish to archive all records visible in the list view.
8 The list view should also update to reflect that fact that the selected records have now been archived.
 
  
==Unarchive Records==
+
'''[[Image:archive5.png|800px]]'''
1 Use the Search / Filter option to return the list of Archived records.
 
  
2 Select the records to be unarchived using the check boxes in the search screen.
+
7. Click on the '''Batch Update''' icon.<br />8. Select '''Archiving''', then from the '''Update Archiving''' select '''Not Archived''' option.<br />9. To complete the process, press '''Update Applications''' at the bottom of the Batch Update window.
  
3 In the resulting screen select the Not Archived option from the '''Update Archive to''' drop-down list.
+
'''[[Image:archive2.png|800px]]'''
  
: [[Image:Unarchive.png]]
+
10. Click '''Update Applications''' in the popup window to confirm your decision.
4 Then click the '''Batch Update''' button.
 
  
5 Click OK on any windows related to the execution of workflows.
+
'''[[Image:archive3.png]]'''
  
6 User should get a confirmation screen to notify them that everything has been updated successfully.
+
11. Select L1 records are now unarchived. They will be listed with all other records in a list view.
  
: [[Image:ArchiveConfirmation.png]]
+
===Search for Archived Records===
7 The list view should also update to reflect that fact that the selected records are no longer archived.
+
1. In order to find archived records, navigate to UTA Level 1 list view with those records.
  
 +
2. Archived records can be found only by using '''Advanced Search''' (icon located to the right of the filter dropdown).
  
 +
'''[[Image:archive6.png|800px]]'''
  
==Referencing the field==
+
3. In the advanced search criteria dropdown boxes, select '''Application/ Common Fields''' then in the list of fields select '''Standard Fields / Archived Applications'''.
You can use the @archived@ variable to reference the archive status of a UTA L1 object, where 1 = Archived and 0 = Not-Archived.
 
  
This can be used within conditional statements such as visibility and edit conditions to display/hide fields based on the object's archive status.
+
4. Click the '''Search''' button.
  
 +
5. A list of archived records will be returned in the list view.
  
 +
===Variable Processor===
 +
You can use the '''@archived@''' variable to reference the archive status of a UTA L1 record, where 1 = Archived and 0 = Not-Archived.<br />
 +
This can be used within conditional statements such as visibility and edit conditions to display/hide fields based on the record's archive status.
  
==Unarchiving records without using Batch Update==
+
==Configuration - Advanced==
An alternative method for unarchiving involves using [[Pandora]] in a custom javascript button. The sample code below is to be used within a [[Custom Field Type: Read Only – System Variables]] field.
+
===Unarchiving records using Pandora===
 +
An alternative method for unarchiving involves using [[Pandora]] in a custom JavaScript button. The sample code below is to be used within a [[Custom Field Type: Read Only – System Variables]] field.
  
 
This method is best used in combination with a report built to list all archived records, with a hyperlink for each record.
 
This method is best used in combination with a report built to list all archived records, with a hyperlink for each record.
Line 110: Line 100:
 
==See Also==
 
==See Also==
 
* [[Batch Update]]
 
* [[Batch Update]]
 +
* [[Variable Processor]]
  
 
[[Category:Universal Tracking Application]]
 
[[Category:Universal Tracking Application]]

Latest revision as of 08:23, 5 April 2024

Overview

This article outlines the procedures for archiving and unarchiving records within the SmartSimple Cloud system. It covers how to manage records' visibility by toggling their archived status, thereby improving system performance and ensuring data is easily retrievable when needed. Key features include filtering records based on their archival status, detailed steps for using the Batch Update feature for both archiving and unarchiving, and the use of the @archived@ system variable for conditional visibility and editing of records.

Additionally, the article describes an alternative method for unarchiving records individually through custom JavaScript, offering a solution for a custom control.

Configuration - Essentials

Important: You can only access record archiving functionality from UTA L1 record level. When archiving L1 records all associated L2 and L3 activities will be automatically archived.

Archiving Records

1. In order to archive records, navigate to UTA Level 1 list view with those records.

2. Use the Search / Filter option to return the list of records that are to be archived.

3. Once the search is complete, select desired records to archive using the toggle next to each record or use select all if you wish to archive all records visible in the list view.

Archive1.png

4. Click on the Batch Update icon.

5. Select Archiving, then from the Update Archiving select Archived option.

6. To complete the process, press Update Applications at the bottom of the Batch Update window.

Archive2.png

7. Click Update Applications in the pop-up window to confirm your decision.

Archive3.png

8. Selected records are now archived.

Unarchiving Records

1. In order to unarchive records, navigate to UTA Level 1 list view with those records.
2. Use the Advanced Search to return the list of records that are to be unarchived.

Archive4.png

3. In the list of Standard Fields, select Archived Applications.
4. Press Search.
5. A list with all archived records will be displayed in a list view.
6. Select desired records to unarchive using the toggle next to each record or use select all if you wish to archive all records visible in the list view.

Archive5.png

7. Click on the Batch Update icon.
8. Select Archiving, then from the Update Archiving select Not Archived option.
9. To complete the process, press Update Applications at the bottom of the Batch Update window.

Archive2.png

10. Click Update Applications in the popup window to confirm your decision.

Archive3.png

11. Select L1 records are now unarchived. They will be listed with all other records in a list view.

Search for Archived Records

1. In order to find archived records, navigate to UTA Level 1 list view with those records.

2. Archived records can be found only by using Advanced Search (icon located to the right of the filter dropdown).

Archive6.png

3. In the advanced search criteria dropdown boxes, select Application/ Common Fields then in the list of fields select Standard Fields / Archived Applications.

4. Click the Search button.

5. A list of archived records will be returned in the list view.

Variable Processor

You can use the @archived@ variable to reference the archive status of a UTA L1 record, where 1 = Archived and 0 = Not-Archived.
This can be used within conditional statements such as visibility and edit conditions to display/hide fields based on the record's archive status.

Configuration - Advanced

Unarchiving records using Pandora

An alternative method for unarchiving involves using Pandora in a custom JavaScript button. The sample code below is to be used within a Custom Field Type: Read Only – System Variables field.

This method is best used in combination with a report built to list all archived records, with a hyperlink for each record.

The process for the user will be:

  1. The report is run where a record can be filtered according to search criteria.
  2. The user will click on a hyperlink into the record where the "Unarchive" button will be exposed.
  3. Upon clicking the button, the record will be unarchived where it will now re-appear when searched within the UTA.


//Displays a button where when clicked will call the "unarchive()" function

<input class="Button" type="Button" value="Unarchive Record" />
<script type="text/javascript">// <![CDATA[
function unarchive(){
	updatefields('archived',0);  //Sets Archived flag to 0
}

function updatefields(fieldname,fielddata){
	ss_developer_key="xxxxx";   //Enter Developer Key
	var gbappid=xxxxx;   //Enter application ID
	
	var addfields="opportunityid,"+fieldname;
	var rset=new ssRecordSet(null);
	rset.addfieldnames(addfields);
	var idx=rset.getnewrecnumber();
	rset.addfieldvaluebyname(idx,'opportunityid','@opportunityid@');
	rset.addfieldvaluebyname(idx,fieldname,fielddata);
	var rs=levelone_update(false ,'',gbappid,rset);
}
// ]]></script>

See Also