TRFCTL Command in OPM CL Programs

TRFCTL Command in OPM CL Programs.
TRFCTL Command in OPM CL Programs, CALL STACK, PGM PROGRAM, Difference between CALL and TRFCTL Command, ibmi, as400 and sql tricks, as400 tutorial, ibmi tutorial
TRFCTL Command in OPM CL Programs

Transfer control command for CL programming

TRFCTL COMMAND is used to call the specified program, pass the control to the called program and remove the calling program from the return CALL STACK. So the control cannot be returned back to the calling program when called program ends.

Example

TRFCTL PGM1 PARM(parm1)
  • Suppose, from command line we called PGM1 and PGM1 calls PGM2, then control transfers to PGM2 from PGM1 and when PGM2 ends the control came back to PGM1. However, this is not the case with TRFCTL command, here when PGM2 TRFCTL PGM3 then control returns to PGM1 since PGM2 is now removed from the call stack.
  • Suppose, from command line we called PGM2 and PGM2 TRFCTL PGM3, then control returns to command line since PGM2 is now removed from the call stack.
  • Note

  • TRFCTL Command valid in OPM CL program.
  • TRFCTL command is not supported in ILE CL.
  • Only PARM can be passed to this program no return value since calling program got removed from the call stack once TRFCTL command gets invoked.
  • You may like these posts

    • CALL and CALLPRC command in CL CALL and CALLPRC Introduction CALL Command is used to call another program whereas CALLPRC command calls a bound procedure named on the command. C…
    • Check if IFS directory exists through CL program In this article, we will learn how to check if IFS directory exists using CL program. We can achieve this easily in RPGLE program …
    • Passing Variable Length fields between RPG and CL RPG IV program or procedures supports the variable length fields(using the VARYING keyword), however ILE CL does not support the …
    • Reading PF in CL programCL program to read a database file and show its field’s value on the console and help out every time before reading a new record from the file Before readi…
    • Reading Record from multiple PF in CLIf we want to declare more than one file in a CL program then we have to use the Open Identifier(OPNID) by specifying the unique value in OPNID…
    • TRFCTL Command in OPM CL Programs Transfer control command for CL programming TRFCTL COMMAND is used to call the specified program, pass the control to the called program and rem…

    Post a Comment