Home | Forums | Contact | Search | Syndication  
 
 [login] [create account]   Thursday, April 25, 2024 
 
slxdeveloper.com Community Forums  
   
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
 Administration Forums - Database Administration
Forum to discuss SQL Server or Oracle database administration related to SalesLogix databases. View the code of conduct for posting guidelines.
Forums RSS Feed


 Back to Forum List | Back to Database Administration | New ThreadView:  Search:  
 Author  Thread: Archiving..?
Libin
Posts: 38
 
Archiving..?Your last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 24 Mar 11 1:53 AM
fiogf49gjkf0d

Hi,


Is there any kind of archiving within the saleslogix application? Is there any method to archive the old data/accounts, is any such kinda functionality available within Saleslogix application... I'm talkinga bout SLX 6.2 here..!!

[Reply][Quote]
Adam Travers
Posts: 113
 
Re: Archiving..?Your last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 24 Mar 11 4:24 AM
fiogf49gjkf0d

Hi,


You can create a team called archive and only allow the Administrator access to it. Then, instead of deleting Accounts you can move them to the Archive team by either running a mass update through Tools | Realign Territories


Moving forward, you can also add an Archive value to the Account Status pick list and then run a mass update on a weekly schedule.


We have also implemented an Acrhive button for one our customers which only the SLX admin users have access to Archive the data on an ad-hoc using basis using the below script:


Sub Button1Click(Sender)


If MsgBox (Application.Translator.Localize("You are about to archive this account (and contacts)") & vbCRLF & "It will not be deleted, and can be recovered if required." & vbCRLF & vbCRLF & _
       Application.Translator.Localize("Are you sure you want to do this - as you will lose access to it!"), vbYESNO + vbExclamation + vbDefaultButton2, Application.Translator.Localize("Warning")) = vbNO Then
              exit sub
    End If


    Dim strSQL, objAcc, AccID
    AccID = Application.BasicFunctions.CurrentAccountID


    ' Modify SeccodeID to "hide" the contact - sets it to the team "Archive"


    strSQL = "update account set seccodeid = 'FDEMOA00000Q', UserField10 = 'Archived' where accountid = '" & AccID & "'"



    Set objAcc = Application.GetNewConnection
    objAcc.Execute strSQL,,adExecuteNoRecords
    If ErrorCheck(Application.Translator.Localize("Error updating (Account) information:")) > 0 Then exit sub


    Set objCon = Nothing
    Application.BasicFunctions.RefreshMainView


End Sub


Sub CanDelete


btnArchive.Enabled = False


    Select Case Application.BasicFunctions.CurrentUserID
        Case "UDEMOA00000I" ' Lee Hogan
            btnArchive.Enabled = True
        Case "ADMIN"
            btnArchive.Enabled = True
    End Select


End Sub

[Reply][Quote]
 Page 1 of 1 
  You can subscribe to receive a daily forum digest in your user profile. View the site code of conduct for posting guidelines.

   Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
 

 
 slxdeveloper.com is brought to you courtesy of Ryan Farley & Customer FX Corporation.
 This site, and all contents herein, are Copyright © 2024 Customer FX Corporation. The information and opinions expressed here are not endorsed by Sage Software.

code of conduct | Subscribe to the slxdeveloper.com Latest Article RSS feed
   
 
page cache (param): 4/25/2024 2:58:59 PM