Search results

  1. S

    Write trigger help

    TRIGGER PROCEDURE FOR WRITE OF POD_DET OLD BUFFER OLD_POD_DET. {mfdeclre.i } for first pod_det where pod_det.pod_line = 1 no-lock : end.
  2. S

    Write trigger help

    TRIGGER PROCEDURE FOR WRITE OF POD_DET OLD BUFFER OLD_POD_DET. for first pod_det where pod_det.pod_line = 1 no-lock: end.
  3. S

    Write trigger help

    Thanks for reply . 1. Progress version is 10.1c 2. Unix 3. We are trying to find the find first record where pod_line = 1 when we are writing the record for the pod_line = 2 in the WRITE trigger of pod_det. 4. Cannot change cursor of the pod_det when executing the trigger --- Is the error we...
  4. S

    Write trigger help

    I am writing the write trigger on pod_det where pod_line and pod_part are the fields. When i am writing to pod_line = 2 I want to get the records of pod_line = 1 and do some validation's. But when i use find first in the write trigger for pod_det table i get the cursor error. Can anyone help me...
  5. S

    Not able to get the NODE-VALUE from XML file

    Hi thanks a lot for the reply , can you please see my code and tell where exactly i should drill down again. because the after the "element" next statement also i am able to get the name of the node in this MESSAGE "hNoderef:NAME : " hNoderef:name(This coming fine) SKIP BUT the next statements...
  6. S

    Not able to get the NODE-VALUE from XML file

    I have written the code to read the XML files as shown in the code section. But i am not able to get the value . Only the node name is come but not the value . Can anyone let me know whats the issue is DEF VAR hDoc AS HANDLE NO-UNDO. DEF VAR hRoot AS HANDLE NO-UNDO. DEF VAR good AS LOGICAL...
  7. S

    3rd party application triggering QAD code

    Hi, I have an requirement where the 3rd party application will send the request through webservices(XML format) to QAD and QAD should able to process the request and send back the response . I know there is a Qxtend tool available but as we dont have that tool is there any means this can be...
  8. S

    An "-" issue (hyphen)

    When i trying to import the file which contains "-" for example 445;777;88;hi;uu;678 123;abc;tt;-;yy;456 ---- (hyphen is before "yy" ) I am getting the previous value that is "uu" and when i keep the second record which contains - as first I am getting blank. But if i use other notations...
  9. S

    XML error 9082

    I want to catch the error in XML. When there is opening root tag but not closing one .......Example :- I have XML " <abc><xyz></xyz>" . Here there is no closing tag ... So when i write the code DEF VAR hDoc AS HANDLE NO-UNDO. DEF VAR hRoot AS HANDLE NO-UNDO. DEF VAR good AS LOGICAL NO-UNDO...
  10. S

    CIM program running slow in Q2008 version of mfg/pro

    I have written CIM programs for standard screens in mfg/pro like rsshmt.p and all BUT i the CIM load is taking time then EB version . Can anyone please help me on this.
  11. S

    Email Through Windows

    Thanx for reply but here we are not using OUTLOOK or any such things we want to send the mail normal as per we send in UNIX using mailx. Is there anything of such kind in GUI .
  12. S

    Email Through Windows

    I want to send EMAIL through Windows(GUI Version). In Unix i am sending through mailx . Please can anyone help me on how to send the mail through windows(GUI version).
  13. S

    how to pass temp table ?

    There are lot of options to pass temp-table u can pass temp-table as an handle parameter or u can also send the temp-table as normal output-input parameter abc.p(input table abc),BUT passing as an handle is an good option.
  14. S

    Problem of CTRL-C while FTP

    hi thanx for ur replies i handled this situation by checking the log file generated while doing FTP(log.txt)...and then undo that variable.......
  15. S

    Problem of CTRL-C while FTP

    I have a program which has one variable defined as Def var a as int. ( There is no NO-UNDO) . And when in code i have return code in repeat loop and when the code is before FTP and i press CTRL-C the value is getting UNDONE but when user presses the ctrl-c when in FTP process the value is not...
  16. S

    Stream Issue

    I have following stream for generating the CIM file .... output stream arquivo to 'zzprmptr1cg.cim'. for each tt-carga no-lock: put stream arquivo '"' at 01 tt-carga.t-site '" ' skip '"' at 01 tt-carga.t-fornec '" ' skip...
  17. S

    importing .csv file issue

    I have .csv file which has values as following "abc","bb","cc","test,12","kk" "abc","bb","cc","test,yy","kk" I am importing this .csv file as input value from (<file_path>) Repeat: import unformatted m_data ......... End. I am importing the data but the data marked in...
  18. S

    .cv issue

    I have a file which has 58 comma seperated values. And also there will be files which have more values. If the file has more columns then 58 then it should display wrror message. I have used the code by taking the array of 58 and importing it.But if i take array of 58 even if tough records...
  19. S

    Importing specific data from .csv

    I have .csv file containing 60 columns and i want the records of only 39 42 and 45 columns and store in Temp table.does anyone know the solution for thnis
  20. S

    Incremental Backup Issue

    When Incremental backup was taken it is seen that volume is very huge and not normal .Can anyone let me know what the issue will be.
Top