Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Frederick Tybalt

Pages: [1] 2 3 4 5 6 ... 9
1
Loading using arsadmin load command also does not put a 87 log message

2
MP Server / Re: Adding a new user to a usergroup using ARSXML
« on: July 01, 2015, 02:36:06 AM »
Try add command and use error handling to update if already exists.

4
Report Indexing / Re: Invalid generic index file format
« on: April 28, 2015, 12:06:27 AM »
I don't think there is any such label in generic indexer.

8.5+ should have a strict validation of the labels, while previous versions should have ignored it..

Would it possible to attach the entire index file?

5
Report Indexing / Re: Multiple reports inside a single file...
« on: March 26, 2015, 05:17:27 AM »
We had a similar requirement for one of my previous customer, but the report names and count are fixed.

So we captured the report name/ID as one of the index . The report names/IDs are also populated in the Database mapping field so that the report names are listed in the search box and the user can choose the report and do a search.

Hope this helps.

6
General / Re: Cache threshold
« on: February 12, 2015, 06:16:26 AM »
arsmaint command line can override it with -x and -n params.

7
MP Server / Re: Hiding the application/folder to users
« on: February 06, 2015, 07:11:41 AM »
Removing the permission will hide it.

8
Programmatically this can be also searched on tables.. System log tables are stored as SL2, SL3, .... 

9
Other / Re: ARSULOAD.DLL
« on: January 08, 2015, 12:13:51 AM »
Try this. It worked for me.

Code: [Select]
#include <arscsxit.h>
#include <stdio.h>

ArcI32
ARSCSXIT_EXPORT
ARSCSXIT_API
LOADEXIT( ArsCSXitLoadExit *load )
{

   printf("LOAD ID : %s",load->load_id);

   ArcI32 rc;

   rc = 0;

   return( rc );
}



Output :

Code: [Select]
OnDemand Load Id = >5018-1-0-14FAA-14964-14964<
Loaded 1 rows into the database
Document compression type used - OD77.  Bytes Stored = >908< Rows = >1<
LOAD ID : 5018-1-0-14FAA-14964-14964


10
Other / Re: ARSULOAD.DLL
« on: January 05, 2015, 06:04:45 AM »
I guess it prints the address

Try
printf("%p",*load_id); 

instead of

printf("%p",load_id); 

11
MP Server / Re: Viewing reports as AFP rather then PDF
« on: December 01, 2014, 06:23:06 AM »
As far as I had seen these issues are common with AFP, to resolve these issues proper font mapping needs to be done.

12
MP Server / Re: arsagperms and arsfolperms
« on: December 01, 2014, 03:17:01 AM »
This was based on my research.

Convert the integer to binary and 1 denotes permissions are set and 0 other wise.

Permission attributes from top to bottom to be mapped to bits Right to Left

Code: [Select]
SQL : Select Id, Agid,  dec2bin(Doc_Perms)  From Arsagperms

Oracle Function :
CREATE OR REPLACE FUNCTION dec2bin (N in number) RETURN varchar2 IS
  binval varchar2(64);
  N2     number := N;
BEGIN
  while ( N2 > 0 ) loop
     binval := mod(N2, 2) || binval;
     N2 := trunc( N2 / 2 );
  end loop;
  return binval;
END dec2bin;



13
MP Server / Re: MODULE APKSRIAX HAS RETURNED WITH RETURN CODE 12
« on: October 27, 2014, 08:03:50 AM »
Also check if the directory has enough space

14
MP Server / Re: CMOD 8.5 and Windows server 2012
« on: October 09, 2014, 06:19:34 AM »
I have a dev version CMOD 8.5 setup on Win server 2012. So far I did not see any issues.

15
MP Server / Re: OnDemand on LINUX
« on: October 09, 2014, 06:16:16 AM »
Yes, on RHEL or SLES. Linux has its traditional pros and cons over windows. Cons W.r.t to CMOD that I can think off is, Windows has a GUI for config and for Linux it needs to be done manually.  Thick client needs windows.

Pages: [1] 2 3 4 5 6 ... 9