Search results

  1. P

    Crystal Reports Help needed

    Dear All , Good Day! We are using Code39Wide-Regular Fonts in the crystal report for bar codes. While converting this report to the PDF format from Crystal viewer, we are getting the following error. It seems like this particular font cannot be embedded with PDF format. Error - Failed to...
  2. P

    Sign of the times

    I am intrested where shall I contact/Send the resume? Please advise. Philip P oommen
  3. P

    Start and stop db from Application icon

    Hi, What would be the better solution for the below requirement? We are having a server, in which around 20+ databases are running with different versions of Progress(9 & 10) for 20 different customers. This server we are using for replicate the customer issues. Most of the time we are not using...
  4. P

    Are things getting that bad?

    It would be great, If any one can give the e-mail Id for this vacancy source. Regards Philip P oommen
  5. P

    Client 1 was inactive for more than 30 minutes.

    Hi , I have quick question to Guru Tom. Is there any significance with this time 00:29:57.507+2300 because seems like this wait-for is resetting at midnight 12::( because the clint was idle from evening 06:00clock. then it should kicked out by 06:30 but why this night 12:30 ? give some...
  6. P

    Client 1 was inactive for more than 30 minutes.

    Dear All, Please help me if you have faced similar issues. Please refer KB P3955 and P 15531. In regedit I set 30min as timeout. For a particular client I need to overide this timeout. So I am using following code in the main block to make this client active. procedure p_DisplayBrowse has...
  7. P

    Server - Client Load balancing

    Dear All, Kindly give some thoughts on this issue. Now we are acessing the system via Remote client Setup. We login remotely to the server and acessing the application. I think here all the process taking palce in the Server itself. I would like to process some work in the client side as...
  8. P

    Logic to disconnect an idle client

    Thank a lot for your Reply. Regards Philip
  9. P

    Logic to disconnect an idle client

    Thank a lot for your reply. Kindly review the following Link KB P15531. http://progress.atgnow.com/esprogress/jsp/AnswerControls.jsp?directSolutionLink=1&tabs=true&docPropValue=p15531 We are setting ClientTimeOut in the Server. See the Log file [2008/11/03@08:54:49.464-0800] P-3800...
  10. P

    Logic to disconnect an idle client

    Dear All , Kindly help me in disconnect an idle client , if he/she idle for more than a specified time. 1. I tried in the Server HKEY_LOCAL_MACHINE\SOFTWARE\PSC\PROGRESS\101B\STARTUP , put a new string value and put the value as 5. Then start the client kept it for more than 5 min idle BUT...
  11. P

    Editable browser Export

    Dear ALL, Kindly HELP me TO EXPORT the data TO Excel. My CODE IS working fine WITH regular browser however it IS NOT working WITH Editable browsers. I have the HANDLE OF a browser vBrwHandle AND a FIRST SELECTED ROW. THEN following CODE work fine WITH the EXPORT. WHEN I USE an editable...
  12. P

    storing index or primary key combination in a character variable

    Virtual system Table. If you look into the data dictionary Set show hidden table menu on, then u can see a set of table created by Progress to store all the schema details. U can see the table names starts with _ . Eg. _index, _Table etc... You may not get the required info from a single table...
  13. P

    storing index or primary key combination in a character variable

    I think you can use VST tables for that. Regards Philip P Oommen
  14. P

    declare size of extent at run time

    Let me know the version of Progress you are working. In 10.1B following code is working fine . DEFINE VARIABLE i-lint AS CHARACTER EXTENT NO-UNDO. EXTENT(i-lint) = 3. ASSIGN i-lint[1] = "a" i-lint[2] = "b" i-lint[3] = "c". DISP i-lint[1] i-lint[2] i-lint[3]. Regards Philip P Oommen
  15. P

    declare size of extent at run time

    Hi, I think i version 10 has a facility of dynamic array. DEFINE VARIABLE i-lint AS INTEGER EXTENT NO-UNDO. EXTENT(i-lint) = 3. ASSIGN i-lint[1] = 6 i-lint[2] = 7 i-lint[3] = 8. DISP i-lint[1] i-lint[2] i-lint[3]. You can put this n value instead of that 3 I put. Hope this will...
  16. P

    Clarification required reg TEMP-TABLE

    Saravankumar, Thanks for the posting.Could you please tell me why you need to define an temp-table with in an internal procedure. Simple answer is Progress architecure is like that If you follow the structural guidelines for a procedure file, you place all your internal procedures at the...
  17. P

    Temp-table blank record

    Discard the last posting. This is because you are creating a blank record even though the last line is blank. Put a Do transaction as shown below. DEF TEMP-TABLE l-example FIELD field1 FIELD field2... INPUT FROM example.csv. Do Transaction: REPEAT: CREATE l-example. IMPORT...
  18. P

    Temp-table blank record

    Most probably This is because of a control character in the CSV input file at the end . U can see this, if you open that external file in any dos editor. Easy way to avoid this by skipping the loop if the input line is blank Regards Philip P Oommen
  19. P

    -s exceeded. Raising STOP condition

    Hi. We migrated from Progress 91E to OE10B. The code was working just fine under 91E, but after switching to OE10B, we started getting the system error "-s exceeded. Raising STOP condition and attempting to write stack trace to file 'procore'. Consider increasing -s startup parameter.". If...
  20. P

    call procedure in 2 smart viewers

    As quick response please try the following In Viewer1 create new internal procedure called test then write message "Hello" view as alert-box buttons ok. In viewer2 put button and write PUBLISH "test". Add a New smart-link between viewer1 to Viewer2 name should be test Run the window and...
Back
Top