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 wOOdy-Soft 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: *

  • Users: tpms2000
  • Content: Threads
  • Order by date
  1. tpms2000

    Processes, Process Id's and full command lines

    Is there a Windows function that gives similar information to the "ps" command in Unix, specifically: Processes, Process Id's and, most importantly, full command lines? I believe there are utilities such as CmdLine from DiamondCS (not tried it yet). Is there a Windows (undocumented?) feature to...
  2. tpms2000

    Mapping (listening) ports to services

    I am completely new to this so apologies in advance if it's a dumb question. I am writing an installation guide (for an IBM product on Windows) - part of which has the following - Check that the following ports are free: a) 80 (HTTP) b) 383 and 636 (LDAP) c) 9080 (Websphere) If I run...
  3. tpms2000

    Why does the *** prompt appear

    The Rexx at the end of this message asks the user to enter a number. If a particular dataset containing this number exists the dataset is displayed. The question is - When the code runs and the dataset does exist, instead of displaying it immediately, the *** prompt appears (I am not at the...
  4. tpms2000

    Complete Beginner's Guide to MVS Assembler?

    Can anyone point me to some useful sites for an absolute beginner in MVS Assembler. I found the books in Bookman too difficult. I'd like to learn to write Assembler routines which would be called from my Rexx code. Many thanks
  5. tpms2000

    1. Counting records 2. Wait

    1. How to count the number of records in a file ? a) EXECIO * DISKR etc falls over at about 250,000 whether it's put on the stack or in a stem. b) If it's a PDS (or I copy it to a PDS) the stats only show a maximum of 65536 even if there's more than that in the file. 2. How to wait a few seconds...
  6. tpms2000

    Selection on a scrolling panel

    Sample scrolling panel problem: Sel Dataset name _ level1.level2.a Y level1.level2.b Y level1.level2.c _ level1.level2.d I select .b and .c for some action. Situation 1 If there's no problem (i.e. no error message generated) then I should see: Sel Dataset name _...
  7. tpms2000

    ISPF Selection Panel - Mixing selections and data

    Apologies for the long winded question re ISPF panels - THE BACKGROUND TO THE PROBLEM: Part of a basic selection panel: )BODY + - - - - Handover Log - - - - } Option ===>_ZCMD +...
  8. tpms2000

    JCL SDSF JOBNAME JOBID

    Re the JOBNAME and JOBID that appears on screen when a Jcl is SUBmitted: Can these two values be captured? Are they held in some variable. How does MVS generate the next JOBID? I'd like to submit a job more than once, keep a record of the JOBID and try and use that info to send a print of the...
  9. tpms2000

    Julian Dates

    How can I convert a Julian date to either yymmdd or ccyymmdd? /* convert a given Julian date to ccyymmdd */ x = DATE('S','03112','J'); say x /* works fine */ /* convert a given ccyymmdd to a Julian date */ x = DATE('J','2003112','S'); say x /* doesn't work; rc 40 */ Thanks Jeff

Part and Inventory Search

Back
Top