Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. imrexx

    finding the duplicate and original records.

    Hi I think i need to post this question in JCL forum. but i didn't find that forum. Any one Please help me in this. I need to read the file and when a record is duplicate then i need to get both the duplicate and original record in a dataset. This need to be done in a JCL with either sort or...
  2. imrexx

    Why do these strings compare ?

    This operator('=') might take max of 9 digits for comparision. try this operator '=='(Strictly equal) which give you the expected result. Thanks Imran
  3. imrexx

    Cursor positon in Each Record

    Hi Frank Thanks for the help The thing is i dont know what's there in the dataset. When it reads it shud analyse it and it needs to get me the column number of the start position of the string Could you please give me the skeleton of the code how it looks like if possible Please suggest on...
  4. imrexx

    Cursor positon in Each Record

    Hi i was doing a tool in Rexx in Mainframe In that i have a situation in which i need to read each record or line from a dataset which is in EDIT session. After i read i need to get its cursor position (Start position of the record) For Example i have 3 records...
  5. imrexx

    To transfer commands between EDIT session in mainframe to/from REXX

    Hi Frank Thanks for Info. Thats great I do this for some other reason. In Changeman if we EDIT and if the Changeman is down then we cannot get the work last done. So, to overcome this i do the automatic save tool which will get all the changes and the info to a Dataset. Thanks Imran
  6. imrexx

    To transfer commands between EDIT session in mainframe to/from REXX

    Hi I am doing a REXX tool in Mainframe which takes a backup of a dataset while we EDIT the same dataset as we have facility in MS WORD. So, in this when i run my tool in background and the user can also do their work Simultaneously. For this i need to accept the commands(Like PF Keys) which...
  7. imrexx

    Rexx for getting a attributes of datasets into a file

    Try This Example /***********************Rexx***********************/ FILE_NAME="'Ur FILE_NAME'" dsinfo=LISTDSI(FILE_NAME) IF DSINFO == 0 THEN DO SAY 'Data Set...
  8. imrexx

    Reading PF keys in REXX?

    Thanks a lot Frank.
  9. imrexx

    Question on Wait in Rexx?

    Im Mainframe.
  10. imrexx

    Question on Wait in Rexx?

    Hi i am doing a program which do an autosave similar which MSWORD does. For that i need to hold my REXX program for sometime and then i shud proceed using wait routine i wrote it manually. But if i use this program by passing a macro in any other EDIT session it hangs. Coz of running a REXX...
  11. imrexx

    Reading PF keys in REXX?

    Hi Frank Thanks for your valuable information. Could you please give me an example to handle those interrupts?
  12. imrexx

    Reading PF keys in REXX?

    Hi i am doing a REXX program which executes recursively and it needs to stop by pressing a particular PF keys or quitting from the current screen. i.e. it starts executing by giving a macro in current EDIT screen. when user quits the current screen the REXX program shud stop. Could any1 pls...

Part and Inventory Search

Back
Top