Jump to content

SpFilenameFromPid: Difference between revisions

From EDM2
Created page with "Retrieves the full-qualified file name of the module running in the process with the specified process id. '''Syntax:''' filename = spFilenameFromPid ( pid ) '''Parameter:''..."
 
Ak120 (talk | contribs)
 
(3 intermediate revisions by 2 users not shown)
Line 12: Line 12:
  SAY RIGHT(p.i,5,' ') || ' ' || spFilenameFromPid(p.i)
  SAY RIGHT(p.i,5,' ') || ' ' || spFilenameFromPid(p.i)
  [...]
  [...]
[[Category:SpUtils]]

Latest revision as of 19:16, 26 February 2017

Retrieves the full-qualified file name of the module running in the process with the specified process id.

Syntax: filename = spFilenameFromPid ( pid )

Parameter: pid – process id of the process which module filename is to be retrieved.

Returns: filename of process module.

Example Code: (part of spGetPidList example code)

/* ps.cmd (spUtils Example Code) */
[...]
SAY RIGHT(p.i,5,' ') || ' ' || spFilenameFromPid(p.i)
[...]