Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: cdfly
  • Content: Threads
  • Order by date
  1. cdfly

    Current workflow step

    Hello, I'm developing a report that shows the workflow name and the current step it's on, does any one know how to determine what step a workflow is on in the database? Thanks
  2. cdfly

    Using dropdown list for parameter

    Hello, I have a report that needs to use the month in a filter. I have a dropdown list that has the month name as the label and the integer equivalent as the value. I tried creating a filter Month([my db date filed]) = Parameter:Month_Name but it gives an error “The arguments to the following...
  3. cdfly

    Count > X Parameter

    Hello, I have a report that needs to display records that have counts > the number a user specifies. Is there way to create a parameter that prompts the user, I'm not seeing that option in the Report Builder. Thanks
  4. cdfly

    Verify Notification Agent is running

    Hello, Is there a way to verify that the Consumer Agent is running for notifications? Our notifications have quit working, all the notifications seem to be sitting in the LLEventQueue table but they never get moved out by Agent 9000. Thanks
  5. cdfly

    Extended data with CreateObjectEx

    Hello, When creating a node using the CreateObjectEx method should I be able to specify the extendedData also? I’m using the code below, the node is created successfully but the extendedData is always null LLValue extData = new LLValue().setAssoc(); LLValue createInfo = (new...
  6. cdfly

    Returning node id when adding documents with LAPI

    Hello, I'm using Java and LAPI to upload documents with the LAPI_DOCUMENTS.AddDocument method. After the document is added I need to perform some other custom operations in the database. Does LAPI have a method to return the node or node id of the document that was just added, if not do you...
  7. cdfly

    Like clause in Livelink Reports

    hello, I am creating a Livelink report that I need to use a LIKE clause in WHERE subwork_title LIKE '%SOME TITLE%'This is failing when I try and run the report with a message that says there's an unclosed quotation mark. The sql is is fine because I've tested it in Query Analyzer. Do the % signs...
  8. cdfly

    Audit user name

    Hello, I have a module that is used to upload multiple files, the HTML page uses an applet that does the file uploading and it also uses its own certificate to connect to the server. The problem I'm having is that when I look under the Audit properties for the file after it's been uploaded it...
  9. cdfly

    SSL connection with PKCS11

    Hello, I have an applet that needs to make a SSL connection to an IIS server so that it can upload some files. The connection needs to use the users smart card. I'm able to read the card and get the certs but when I try to make the connection I get a "HTTP Error 403.7 - Forbidden: SSL client...
  10. cdfly

    Cookie domain

    Hello, I'm trying to add a cookie and then rediect it the page to another machine. The cookie is only visible when the page is redirected to a site on the same machine. As long as I set the cookie domain to "localhost" and pass the cookies to a page on the same machine I can read the cookie. If...
  11. cdfly

    Disconnected Edit

    Hello, I have a DTS that have a couple of steps that use a SQL Server connection. I need to be able to install the DTS on other servers but when I try to use the Disconnected Edit it keeps throwing error message complaining about the database not being found, login error, etc. Doesn't the...
  12. cdfly

    SAX Parser

    Hello, Has anyone used the SAX parser, I'm trying to parse an xml document and I keep getting errors when I try to SetCharactersHandler or SetStartElementHandler When I look in the debug window I see these errors KOSClass::DotInvoke( |SAXParser=01FA18B8|.#530016b3 ) unknown feature type
  13. cdfly

    Add item to fQueryString

    Hello, I am trying to add a dynamic parameter to the fQueryString to a custom module. Can someone give me an example how to do this? I tried just appending the parameter e.g .fQueryString+='&d=21' but when I do that each time the module is called then another parameter is appended, when I open...
  14. cdfly

    Form objects in HTTP request

    Hello, I have a form that has an array of controls with the same name. In Livelink can I pull the controls into assoc or list directly from the request, something like C sharps Request.Form["control name"]? Thanks
  15. cdfly

    Submit a form to a script

    Hello, I have requirement that calls for the user to submit a form and then display updates on the form while the module is running through its code. The will be entering data into the form as well as uploading a file. In other applications I could just set the target of the form to a hidden...
  16. cdfly

    Bulk Upload Error

    Hello, I'm troubleshooting an existing bulk upload module we are using in Livelink 9.5.1. The module allows users to select multiple files and then upload them. All works well until more than 20 files are selected, it fails with the following error on the 21st file. I've set breakpoints but it...
  17. cdfly

    Add column error when using AFTER clause

    Hello, I need to add a column to an existing table using a script. I get an error when I use the AFTER clause. Here's the statement: ALTER TABLE testTable Add newColumn varchar(200) NULL AFTER someColumnName We are using SQL Server 2000. There error I'm getting is: Incorrect syntax near...
  18. cdfly

    Edit OSpace

    Hello, I've never used the LiveLink builder before. I need to be able to edit an ospace and then export it to another directory. I make the changes to the ospace, compile and save it but when i open it back up in the builder my changes are not there. Can someone give me the steps on how to...
  19. cdfly

    Add item permission in oscript

    Hello, I'm new to Livelink and I need to be able to set a permission on a folder to "Add items" in oscript. Is there a constant for that? I've noticed others like $PSee and $PSeeContents, would Add items be something like $PAddItems ? Thanks

Part and Inventory Search

Back
Top