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 array in as400? What are the types of array?

1109

Is qgpl a user library or system library?

1 1838

What is program status data structure(psds) in as400?

1078

How to see all members of a file?

1 1687

What is logical file in as400? What are the types of logical file?

1 1616

What is source physical file?

1 1699

What is the difference between crtdupobj and copyf?

1199

What is compiler directive in as400? Give example of compiler directive.?

1092

What is dynslt?

1204

What is data structure in as400? What is the use of data structure?

1076

How to see all record formats used in a file?

1 2184

How can we create subsystem in as400?

1 1587

How can we arrange duplicate records in a file?

1081

What are the record format field mapping options in cpyf?

1018

What is the use of jdftval in as400?

1394


Un-Answered Questions { IBM AS400 }

can I touch the array during treatments?

1170


what is the favicon.ico request that my site receives now and then?

1100


what is rpg fixed logic cycle?

1201


what is the function of crtdupobj command?

2061


What is the purpose of record level identifier?

1123


what is the difference between udate and the system date?

2054


Write a CL program which will run a batch job at 1 am every night

1089


the output from my cgi is correctly interpreted by ms internet explorer, whereas netscape navigator would display it as a plain text. What should I do to have also netscape interpreting the html output from my cgi?

1070


Difference Between Skip Before & Space Before?

1216


Hi Viewers can any body explain me how to update and ahange the already existed data in physical file using subfile ? please explain me with the code if possible?

5130


seqence numbers in cobol

3114


how can I control from my cgis the cache of a remote browser?

1163


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

1174


How Many Specs Are There In Rpg & Which Are They?

1097


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.

3487