Can any one plz explain the concept of INFSR, *PSSR, INFDS
AND PSDS, I' confusing about PSDS and *PSSR, Wat is the
difference btw them, wat PSDS will do????

Answer Posted / jeganath

PSDS is a program status data structure.
*PSSR is a subroutine to handle error occured in the program

Whenever there is error occured in the program, the status
defined in the PSDS get changed to some value based on type
of error,

at the same time the control transferred to *PSSR
subroutine , from there we can handle the error based on
the status value from PSDS.

we can rollback or we can modify/reset value based on
requirement

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

1. What is bound-by-call and bound-by-reference? 2. Where and why is *Nomain used? 3. What are the difficulties faced by programmers when using service programs? 4. Explain the different ways of parsing and compiling XML in iSeries.

5392


which program rpg or cl is efficent to update a transaction onto a database file and why ?

739


what do you mean by an input subfile, what are the keywords required?

766


what is file information data structure?

1361


what was the robotech rpg?

680






can anybody help me to solve this problem. the program that i m checking display error message saying "Record format for file AJDSPFFD does not match model file and decimal error. how to solve this problem. The AJDSPFFD is snapshot the AJTLOG that is the audit trail list.

2274


what is the necessary keyword needed to scroll subfile records?

695


What is ment by record level identifier?

647


how do I declare a table or array in rpg iv?

732


What is the difference between iter and do?

668


what is an online rpg?

723


Suppose we have one database file and it is used by 5 programs and in 3 program we have to add some records in datbase file s what is the impact on other program?

1447


1.Load an runtime array of length 99 from the pf and you want to handle all the possible errors?

2367


what is the procedure and explain about real time scenario.

1473


Q:HI friends accually ihave one problem plesase let me know the alternate code of this code. Related field description of code: Add a field, CALvsPRD, "Calendar Day Starts Before/After Production Day" to the parameter set WRKORDER which accepts values 'A' or 'B' o B = Calendar Day Starts Before Production Day o A = Calendar Day Starts After Production Day o Any other value indicates the production and calendar dates are always the same. code: Automatic Execution Of *INZSR Subroutine /Z01 * retrieves WRKORDER field values. /Z01 * Calculate default Production Date and return it to caller. /Z01 * Production date defaults to system date /Z01 C Eval P@Pdate = %DATE() /Z01 * unless Calendar date starts Before PDN(production) date and /Z01 * system time is before PDN Start Time then /Z01 * PDN date is yesterday. /Z01 C If W@CALvsPRD = 'B' and /Z01 C %TIME() < %TIME (W@Strtime) /Z01 C Eval P@Pdate -= %Day(1) /Z01 * unless Calendar date starts After PDN date and /Z01 * system time is *GE PDN(production) Start Time then /Z01 * PDN date is tomorrow. /Z01 C ElseIf W@CALvsPRD = 'A' and W@Strtime > *Zero and /Z01 C %TIME() >= %TIME (W@STrtime) /Z01 C Eval P@Pdate += %Day(1) /Z01 C EndIf /Z01 C Eval *InLr = *On

2005