Q.1.What is differences in STRDBG and STRISDB debugging
commands?
2.Where we should use STRDBG and STRISDB Debugging commands?
Answers were Sorted based on User's Feedback
Answer / reecha
Sorry for the above mistake ,i have mistakenly wriiten...
the correct answer :
1.STRDBG can be used in both RPGIII & RPGIV
2.STRISDB can be used only in RPG III
| Is This Answer Correct ? | 35 Yes | 1 No |
Answer / svankipu
See!
Actually!
STRDBG can be used for both RPG/400 & RPGILE(RPGIV)
STRISDB can be used only for RPG/400.
Also STRDBG can be used for both Interactive & Batch pgms,
whereas STRISDB has to be used only for Interactive programs.
It's a bad idea to use STRISDB even in RPG/400, because it
consumes lot of resources & is very slow.
On the contrary STRDBG is very fast & can be used almost in
all the scenarios.
Therefore STRISDB needs to be used when the pgm is invoked
through menus/application screens & not called directly.
However try to avoid using STRISDB to the max. extent possible.
Thanks!
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / swetha p rao
STRDBG can be used to debug both batch and interactive
programs where as STRISDB can be used only in interactive
pograms
| Is This Answer Correct ? | 12 Yes | 22 No |
Answer / ankur saini
hello friend this is ankur "Fresher"
well there are three program model
1. OPM original pgm model
2. EPM Extented pgm model
3. ILE Interactive lanaguage envirnoment
SO for opg hve clp and rpg prms ,strisdb is for this model only
and strdbg is for ILE
I HOPE SOMEONE REALLYY SATISFY WITH IT !!!
| Is This Answer Correct ? | 2 Yes | 12 No |
Answer / reecha
both STRDBG & STRISDB can be used in both RPGIII & RPGIV
whereas u cannot use STRISDB in RPGIII
| Is This Answer Correct ? | 2 Yes | 33 No |
What is Spool file, Why is it required?
I have created a command that display Source file and library. Now i want that when i enter library name and press f4 on Source file, pgm should display all the PF- SRC's in that Library. For F4 option i have used Choice program but since only limited paramters are passed in Choice pgm i am not able to paas library name and further can't call a pgm that will display list of Source files. Below is the Code snippet for CMD type object :- CMD PROMPT('Source Scan for HUB Standard') PARM KWD(SOURCE) TYPE(*CHAR) LEN(1) RSTD(*YES) + VALUES(N A) MIN(1) + CHOICE('N,A') PARM KWD(SRCFILE) TYPE(FILE) RSTD(*NO) + PROMPT('SOURCE FILE') FILE: QUAL TYPE(*NAME) LEN(10) RSTD(*NO) EXPR (*YES) + CHOICE(*PGM) + CHOICEPGM (XXXXXLIB/YYYPGM) QUAL TYPE(*NAME) LEN(10) DFT(*LIBL) + SPCVAL((*LIBL)) EXPR(*YES) PROMPT ('Library') Below is the Choice pgm:- PGM PARM(&PARM1 &PARM2) DCL VAR(&PARM1) TYPE(*CHAR) LEN (21) DCL VAR(&PARM2) TYPE(*CHAR) LEN (2000) IF COND(%SST(&PARM1 1 10) = 'CHOICE ' *AND + %SST(&PARM1 11 10) = 'SRCFILE ' *AND + (%SST(&PARM1 21 1) = 'C' *OR %SST (&PARM1 + 21 1) = 'P')) THEN (DO) /* (%SST(&PARM1 21 1) = 'C' *OR %SST (&PARM1 + */ CHGVAR VAR(&PARM2) VALUE('Name, F4 for List') ENDDO IF COND(%SST(&PARM1 1 10) = 'CHOICE ' *AND + %SST(&PARM1 11 10) = 'SRCFILE ' *AND + %SST(&PARM1 21 1) = 'P') THEN (DO) CHGVAR VAR(&PARM2) VALUE('Name, F4 for List') CALL PGM(GTSQL) PARM ('XXXXLIB') return ENDDO Thanks in Advance for looking into.
What are the types of data structure in as400?
what is a program described file in rpg?
how many key fields does cl required
An rpg program is processing an openquery file.The file is declared in update mode in F spec.Can we update this file? Please explain?
how do you specify the number of records to roll in a subfile ?
can a single screen format occupy a screen area above and below a subfile format ?
what is clile code get last digit in numarice value
Hi,Please give me the the answer for these quesitons? 1.what is IFS and ICF and RAPE amd DISKET fils? explain with example please? 2.What is the difference between POST AND SPACE OPCODES? 3.Can anybody tell me default printerfile command and object type?
In which specification Data Structures can be defined?
why we sometimes use same file name in FILE and TOFILE in OVRDBF and sometimes different??please tell