programacion rpg - gestión de errores y excepciones

11
Ingeniero Giovanny Guillén Bustamante Especialista Certificado IBM i PMP SCRUM MASTER Ingeniero Giovanny Guillén Bustamante Especialista Certificado IBM i PMP SCRUM MASTER

Upload: giovanny-guillen

Post on 23-Jan-2018

162 views

Category:

Software


7 download

TRANSCRIPT

Page 1: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

Page 2: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

1. %Error y %Status

2. Estructura de datos de archivo InfDs

3. Estructura de datos de programa Sds

4. Subrutina *PSSR e InfSr

5. Monitor On-Error

Page 3: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

%Error y %Status

▪ Mediante el especificador (e) de error se pueden controlar y capturar los errores de operación.

➢ Permite validar si sedetectó un error en elprocesamiento delarchivo.

➢ Indicador dedetección de error.

➢ Valida el código de errordevuelto.

Page 4: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

%Error y %Status

▪ Tabla de códigos de error

Page 5: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

Estructura de datos de archivo InfDs

Page 6: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

Estructura de datos de programa Sds

Page 7: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

Subrutina *PSSR e InfSr

Page 8: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

Subrutina *PSSR e InfSr

Page 9: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

Subrutina *PSSR e InfSr

Page 10: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

monitor;

exsr mainline;

on-error 1217;

callp halt('File ORDER not found - check library list.');

on-error *FILE;

dump;

callp halt('File error occurred - check dump.');

on-error;

dump;

callp info('Program error occurred - check dump.');

endmon;

*inlr = *on;

Page 11: Programacion RPG - Gestión de Errores y Excepciones

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER

Ingeniero Giovanny Guillén Bustamante

Especialista Certificado IBM i – PMP – SCRUM MASTER