Search results

  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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.
  7. 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).
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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
  13. 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.
  14. S

    Stream Issue

    I have this piece of code Define Steam s1. Output Stream s1 To C:\text.txt. For each Customer No-lock: Put Stream s1 Name skip. Display name. End. Close Stream S1. This code is working fine in one environment Means its creating the file as well as dislayin the output on terminal ...
  15. S

    Data Extraction Issue

    I have the file in which i have the entries as "abc","bbb","kkk,ggg,ttt","uuu" . As per the entries i have shown i am using "," as delimiter for extraction data from file.BUT the value kkk,ggg,ttt is one string itself not sperate and this type of string may be in other entries in file also. So...
  16. S

    Begining Balance and Closing Balance of an item

    Hi , Can anyone tell me how do we get the Begining and ending balance of an item from particular date to particular date for particular site.
  17. S

    Documentation for .i's used in mfg/pro

    Hi, Where can we get the documents related to .i used in Mfg/Pro like mfdtitle.i mfdtrailer.i and so on .
  18. S

    What is the difference {mfselbpr.i} and {mfselprt.i}

    What is the difference {mfselbpr.i} and {mfselprt.i} can anyone please help me on this difference
  19. S

    Question on FETCHING exact DATA

    Hi, I have one question. I have one Town table which contains the data as "YORK", "YORKSHIRE" etc. And there is one program which passes an input string as "YORKSHIREABC" . And i have to write the program to find the exact value of town and pass it back. I cant us "="...
  20. S

    Problem in loading .d File

    Hi, I have to load the .d file which has 3 fields. The first field contains the sequence which should automatically insert the record as it creates. So i have the .d file with two values. Ex: Table structure contains customer_id name city , Where customer_id has sequence . SO i have .d file...
Top