How to execute a set of JCL statements from a COBOL program ?


Using EXEC CICS SPOOL WRITE(var-name) END-EXEC command. var-name is a COBOL host structure containing JCL statements.



Explore posts in the same categories: Cobol Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • How to execute a set of JCL statements from a COBOL program?
  • Using EXEC CICS SPOOL WRITE(var-name) END-EXEC command. var-name is a COBOL host structure containing JCL statements....
  • What is a bind?
  • Binding is a process that creates the access path logic for the sql statements within a cobol program. after precompilation...
  • How can I use a variable for the columns/tables in the select statements ?
  • SQL Server can contain both static sql statements and dynamic sql statements. In comparison with static sql statements, dynamic sql...
  • What Happens when you execute a program?
  • When you execute a program on your UNIX system, the system creates a special environment for that program. This environment...
  • What divisions, sections and paragraphs are mandatory for a COBOL program ?
  • IDENTIFICATION DIVISION and PROGRAM-ID paragraph are mandatory for a compilation error free COBOL program....
  • What divisions, sections and paragraphs are mandatory for a COBOL program ?
  • IDENTIFICATION DIVISION and PROGRAM-ID paragraph are mandatory for a compilation error free COBOL program....
  • Explain open SQL vs native SQL?
  • ABAP Native SQL allows you to include database-specific SQL statements in an ABAP program. Most ABAP programs containing database-specific SQL...
  • What is an in line PERFORM When would you use it Anything else to say about it ?
  • The PERFORM and END-PERFORM statements bracket all COBOL II statements between them. The COBOL equivalent is to PERFORM or PERFORM...
  • What is an in line PERFORM ? When would you use it ? Anything else to say about it ?
  • The PERFORM and END-PERFORM statements bracket all COBOL II statements between them. The COBOL equivalent is to PERFORM or PERFORM...
  • What is the advantage of using stored procedure over the SQL queries ?
  • Writing the SQL statements inside our code is usually not a good idea. In this way you expose your database...

    Comments are closed.