Search results

  1. P

    How to write a xml file using break by

    Hi , Thanks for the reply. yes, tt_woorder is my dataset and I want that temp table data to be export in xml output per site.
  2. P

    How to write a xml file using break by

    Hi, Thanks for your query. yes I am trying to separate xml per site, I have tried your query but it throws the following error **SERIALIZE-ROW is not a queryable attribute for TEMP-TABLE widget. (4052). my temp table is having below values ┌────────────────────────────────────────...
  3. P

    How to write a xml file using break by

    Here is my query .. I am trying break the file with site while writing it. FOR EACH tt_Woorder NO-LOCK BREAK BY tt_Woorder.tt_site: IF LAST-OF (tt_Woorder.tt_site) THEN DO: DATASET dsproductionPlan:write-xml("file", lXmlPathName ,true, ?,?, false, false). END. end.
Top