Recent content by sanjaypiplodiya

  1. S

    Delete browse column

    Thank You Very Much. It's Done.
  2. S

    Delete browse column

    I have refined the format in ROW-DISPLAY trigger. ON ROW-DISPLAY OF br_table-2 IN FRAME F-Main DO: ttMargin.Amount:FORMAT IN BROWSE br_table-2 = ">>>999". END. It's working fine but when When I try to reset the value in this browse column then it's throwing an error Invalid use of browse...
  3. S

    Delete browse column

    I have tried like this: lhColumn = BROWSE br_table-2:GET-BROWSE-COLUMN(2). lhColumn:LABEL = "Adjustment". lhColumn:FORMAT = ">>>999". But it does change the format of 1st row only.
  4. S

    Delete browse column

    Can I change the Format of "Amount" Column at Run time? I need to change it from ">>>9.99" to 999.
  5. S

    Delete browse column

    1) Progress 9.1E 2) Windows XP 3) DEFINE BROWSE br_table-2&ANALYZE-SUSPEND _UIB-CODE-BLOCK _DISPLAY-FIELDS br_table-2 V-table-Win _STRUCTURED QUERY br_table-2 NO-LOCK DISPLAY ttMargin.range-no COLUMN-LABEL "Range" FORMAT ">9":U WIDTH 12 ttMargin.Amount COLUMN-LABEL "Amount" FORMAT...
  6. S

    Delete browse column

    Hi, Could anyone tell me how to delete Column from Browser?
  7. S

    Import XML

    Thank you very much Stefan for all your support on particular this topic.
  8. S

    Import XML

    DATASET dsOrder:FILL(). is the way to fill the data in dataset?
  9. S

    Import XML

    Can anyone help me please how to assign these read values(from XML) into a dataset? I haven't got any idea from documents .
  10. S

    Import XML

    Thanks Stefan, Now I have understood the basic working with XML. Now how to create a API dataset? I have to assign the XML fields(which we have read) into API dataset. or can we assign the required XML fields directly into API dataset instead of loading into a temp-table?
  11. S

    How to get attribute value from XML?

    Thank you very much stefan. I have it working now. It was first time for me to working with XML. Thaks again for your support.
  12. S

    How to get attribute value from XML?

    How to get attribute value from XML? How to get the value of inumber & idate if you have used SAX-READER? <Fields> <Field Name="Number/Numer" Type="inumber">A-N456702</Field> <Field Name="Date/DateFac" Type="idate">20090512</Field>
  13. S

    Import XML

    CREATESAX-READER hParser. RUN sax.p PERSISTENTSET hHandler. hParser:HANDLER = hHandler. hParser:SET-INPUT-SOURCE("FILE", "c:\temp\import.xml").hParser:SAX-PARSE( ) NO-ERROR. then external procedure contains all the callbacks routines. it's not working. Can you help me?
  14. S

    Import XML

    I can read those fields as well. But when I am calling an external procedure to implement the same logic it's throwing me the following error: SAX parser error: SAX-PARSE-FIRST, Error parsing file: Could not determine base pathname of the file. (14586)
  15. S

    Import XML

    Can we populate the imported data in a report? If yes then how? I was trying to populate the data like: deftemp-table tt-invoice field name as charfield identifier as charfield number as int. def var vl_ok as log no-undo. vl_ok = TEMP-TABLE...
Top