Recent content by shireeshn

  1. S

    Steps required for Migration

    Exp always counts, u may already come across this type of problem and you may already done some analysis and u have good hands on this type of problems. If u can frame those words into steps in genric way. Situation ====== Normally what u will do when u got this situation like Char mode and...
  2. S

    Steps required for Migration

    we are now in Character based we want to migrate to latest version of OE. can any one suggest me the steps or analysis involved in migration to latest version The customer requirement Object Oriented design along with SOA architecture is a MUST and he is asking to have Progress...
  3. S

    OE Arcitect

    what shall i do, shall i go head with OE arcitect or normal editor and appbuilder.
  4. S

    OE Arcitect

    yes i have.
  5. S

    OE Arcitect

    I have installed OE2A, I want to use OE Arcitect. Is this good then Editor and Appbuilder. If Good , then plz tell how to go head with arcitect. no cvs is there in my arcitect, how to link cvs? I want to start my application. i dont know where to give my ini file and startup procedure...
  6. S

    replacing

    do we have any othere tools in windows ?
  7. S

    coding is fine,but i did not understood how it works

    casper it not clear fully, ur program is clear but in this statment RETURN rev(SUBSTRING(ll,2)) + SUBSTRING(ll,1,1). 1) in every statment is it returns some value or calling function again or both ? 2) where does this string get added ?
  8. S

    replacing

    casper what this "sed" tool does ?
  9. S

    coding is fine,but i did not understood how it works

    reversing of string, output is comming correct. FUNCTION rev RETURNS CHAR(INPUT ll AS CHAR). IF LENGTH(ll) = 1 THEN RETURN ll. ELSE DO: RETURN rev(SUBSTRING(ll,2)) + SUBSTRING(ll,1,1). END. END. DISP rev("shireesh"). can any one explain me how it works.
  10. S

    replacing

    thanks casper for formatting.. :) iam working on 9.1D version. iam moveing all the tables from one database to other, if i want to change the source code of this will be manual work. so iam trying to make by code. like all the tables of ABC database will be moved to AAA database. main...
  11. S

    replace with other database

    iam not able to give this in a text in correct formmat.
  12. S

    replace with other database

    ABC is a database, in this database i have one table with same name ABC. I want to replace the database ABC with other DATABASE name AAA example :- 1) find abc.def where abc.def.def-code = abc.ghi.def-code no-lock no-error. 2) find abc.abc where abc.abc.def-code = abc.ghi.def-code no-lock...
  13. S

    replacing

    ABC is one database, in this database i have one table with same name ABC. I want to replace the database ABC with other DATABASE name AAA example :-1) find abc.def where abc.def.def-code = abc.ghi.def-code no-lock no-error.2) find abc.abc where abc.abc.def-code = abc.ghi.def-code no-lock...
  14. S

    crystal reports

    hi schaapie, i am not lanching the crystal report using comhandle. it is lanched by using crwprt.i.. for this also it works ? is this code related to this ?
  15. S

    crystal reports

    Hi all, i have moved my table from one database to other database in progress. and i created my views for crystal reports. new database --> A old database --> B i have a problem in crystal reports due to moveing the tables to other database, but still linking of table in crystal...
Top