cigaras
Explorer
Member since ‎12-12-2014

User Statistics

  • 15 Posts
  • 0 Solutions
  • 1 Kudos given
  • 0 Kudos received

User Activity

I have this sample query: SELECT 1 AS tag, null AS parent, row_num AS [enc_obj!1!row_num] FROM sa_rowgenerator(1, 2) ORDER BY 3 FOR JSON EXPLICIT; I get this as a result: [ { "enc_obj": [ ...
C# function:public static byte[] Test(byte[] argbBytes) { return argbBytes; }PB declaration:FUNCTION Blob Test(Blob argbBytes) LIBRARY "TestLibrary1.dll" ALIAS FOR "Test"PB call:Blob lbl_Blob1, lbl_Blob2 lbl_Blob1 = Blob("test", EncodingAnsi!) lb...
I have a DataWindow with a column with a height.autosize=yes property.If DataWindows property Print.Preview is switched off everything looks as intended:However if I switch the property on for a better representations of how the report will look on p...
I have a datawindow with some data, and have a XML export template defined. Some values in mentioned datawindow are null or empty, Is it possible to hide empty elements in export XML?Example:Datawindow:namesurnameJohnSmithMarryJaneDoeXML looks like t...
I have 3 freeform datawindows, named A, B and C. C is a nested report of B, B is a nested report of A and A is a main report.Report A is very simple, and has only one nested report B in it (in real life there are more, but one is enough to show my po...