Home | Forums | Contact | Search | Syndication  
 
 [login] [create account]   Tuesday, November 26, 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!
 Architect Forums - SalesLogix Scripting & Customization
Forum to discuss writing script in Architect plugins for SalesLogix & general SalesLogix customization topics (for Windows client only). View the code of conduct for posting guidelines.
Forums RSS Feed


 Back to Forum List | Back to SalesLogix Scripting & Customization | New ThreadView:  Search:  
 Author  Thread: SLX Error
Zion Baby
Posts: 3
 
SLX ErrorYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 10 Aug 06 12:38 PM
fiogf49gjkf0d
We used SLX in my company and many times each day we encounter the error;

General: error on line: 36 – Unspecified failure
Context: DataGrid
@0: Basic Ticket: META Ticket Activity DataGrid WhenChange Status: 0xFFFFFFFF

Pls how do we go about resolving this problem to stop occurring.
[Reply][Quote]
Ryan Farley
Posts: 2265
slxdeveloper.com Site Administrator
Top 10 forum poster: 2265 posts
 
Re: SLX ErrorYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 10 Aug 06 12:41 PM
fiogf49gjkf0d
It references line 36 of the basic script "Ticket: META Ticket Activity DataGrid WhenChange Status". What is on line 36 (and 35) of this script? Was this script customized?
[Reply][Quote]
Ryan Farley
Posts: 2265
slxdeveloper.com Site Administrator
Top 10 forum poster: 2265 posts
 
Re: SLX ErrorYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 10 Aug 06 12:45 PM
fiogf49gjkf0d
Thread moved from "slxdeveloper.com Announcements" forum to "SalesLogix Scripting & VBScript" forum.
[Reply][Quote]
David Nunnally
Posts: 206
 
Re: SLX ErrorYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 11 Aug 06 8:16 AM
fiogf49gjkf0d
I would look for a legacy form/script even if it is not released causing the error. I have seen these before caused by legacy items. Do you get the error as Admin and users or just users?
[Reply][Quote]
Zion Baby
Posts: 3
 
Re: SLX ErrorYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 05 Oct 06 6:59 PM
fiogf49gjkf0d
I have checked and no changes were made. I pretty new to SLX so it took a while to navigate the forms and the scripts and vefiry this info.
Line 36 is the end of the script below is the script for


Option Explicit
sub main
'*********************************************************************************************************
' Description: Ticket Activity DataGrid WhenChange
' Purpose : Updates the Description Memo control when an Activity record is selected by the user
' Called By : Support Views:Ticket:Support Ticket Activity DataGrid WhenChange event
' Inputs: : Current TicketActivity record
' Written : 06/2001 dbell
' Updates :
'*********************************************************************************************************
call slx_Specific

'*********************************************************************************************************
' place your customization code here
'*********************************************************************************************************
end sub

sub slx_Specific()
dim strActivityID as string
dim lngActivityHandle as long
dim strDummy as string
dim strActivitySQL as string

strActivityID = dbGridGetSelectedIDs ("DataGrid") 'the user just clicked this record

if strActivityID = "" then 'the user didn't select anything, just clear the memo field
SetPropertyOf "mmComments","Text",""
else 'go get TICKETACTIVITY.ACTIVITYDESC and populate the memo field
strActivitySQL = "SELECT ACTIVITYDESC FROM TICKETACTIVITY WHERE TICKETACTIVITYID = '" & strActivityID & "'"
lngActivityHandle = dbOpenSQL (strActivitySQL, True) 'read-only
strDummy = dbMoveTo (lngActivityHandle, "LAST")
SetPropertyOf "mmComments","Text", dbGetValue (lngActivityHandle, "ACTIVITYDESC")
dbClose lngActivityHandle
end if
end sub
[Reply][Quote]
Zion Baby
Posts: 3
 
Re: SLX ErrorYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 05 Oct 06 7:01 PM
fiogf49gjkf0d
We get this error as users.
[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): 11/26/2024 4:13:27 PM