Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



IBM AS400 Interview Questions
Questions Answers Views Company eMail

What is the purpose of STRCMTCTL command?

1 1955

What are the system objects required for journalling?

1 1857

What are the different definition levels in Data Description Specifications?

1 1961

What the difference between Source Physical File and Physical File?

1 2770

What are all the different types of access path?

1 1929

What is the default value for the number of increment for the physical file?

1 1671

When does the DFT keyword in PF be used?

1 1912

What is Multi-format logical file?

1 1921

What is the Select and Omit criteria in logical file?

1 2130

Can fields be concatenated INa logical file level?

1 1872

When would the ALL keyword be used?

1 1914

What are the different types of keywords in display files?

1 2155

What is difference between CAT, TCAT, BCAT?

1 4182

What are the different types of messages in CL?

1 1891

How to trap errors in CL?

1 2030


Un-Answered Questions { IBM AS400 }

what is sflinz and sflrna?

1573


what do we can do with the embedded sql statements?

1103


what are the different methods to access seu?

1141


what is the maximum number of record formats in dspf?

1735


What is a record lock error?

1808


how can I automatically refresh a web page?

1094


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.

6616


what are the different commands used in rlu ?

2488


If i change any file through application after entering data , how to check which file is updated through applications . For call stack we takes esc 3 then we chose 11..But What is answer of below qtn..?

1950


what is the maximum number of subfiles that can specified in a display file ?

1860


what is the difference between packed decimal and zoned decimal?

3337


which are the figurative constants used in rpg?

1391


where can you specify an indicator in lokup operation?

1885


what keyword must be used with protect keyword ?

1826


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.

3537