All Tags »
SmartObject (RSS)
Showing page 1 of 3 (29 total posts)
-
There are several ways to approach this.
If you want to delete the data outside of a workflow at design time, you could just use SQL Management Studio and go to the K2 SmartBox database table that holds your data and delete all the rows. You could also download a tool like K2 Commander from blackmarket to do this. ...
-
You can always open up the SmartBox table for the SmartObject you created and modify the table schema to incorporate a default value there. Keep in mind the caveat to this is you may lose those default values if you repeatedly publish your SmartObject to the SmartBox.
Another option would be to 'hard-code' some kind of value in the artifact ...
-
Attached is a project with two forms. If you want to play with the code and watch it work: - deploy the Attachments.sodx SmartObject - Open the web app solution - debug (F5) default.aspx - make sure the BPHostServer is to your BP Server - make ...
-
Henk:
I use the following Syntax:
SELECT [Position], PrincipalFROM [DirectorsBoard.getCompanyDirectors]WHERE (CompanyID = @CompanyID)
You'll have to do something like this when there are required parameters:SOCommand cmd = new ...
-
I have had this error and have been able to resolve it by closing and reopening Visual Studio and/or restarting the blackpearl service on the blackpearl server.
I have a blog post which has some additional tips on debugging failed deployments with cryptic error messages which you should check out if the above doesn't work for ...
-
Using SmartObjects in a CultureInfo with a different number format (e.g. German) there is a problem storing decimal values.
When I store the values I can use the number format of the invariant culture as a number format provider in the ToString method:
NumberFormatInfo nfi = ...
-
I am writing a webservice to expose data collected in my process to a website.
I am access the data using the GetList method of the particular SmartObject. When I use a SQLDataReader, I am able to retrieve my results, but when I access this in code, I get no results returned, and no errors. If I change it to use the Load method and specify the ...
-
When I try to open a SmartObject activity and click the ellipse in the context browser I get the following error.
I have checked the console and if gives the same error. The only thing that is different is I recently installed Release 0803 on my client machine.
Any suggestions.
-
I built a small SmartObject using two fields. One is a text field and the other is an attachment. Both are fields in an InfoPath form. When I open the SmartObject Activity the text field is the only item that shows up. I need to map the file attachment as well. Has anyone else seen this or know something?
-
Hello,
unfortunatly I can't find a desciption of the possible SmartObject Datatype.
What are the differences between Text and Memo?
How many characters can be stored in Text?
1