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...


1.How can you search an entire source file for a particular
field name?

2.How can you find the differences between two versions of
the source for the same program?

3.What is a hidden field as it relates to a sub file?

4.How do you display a sub file that has no records in the
sub file?

Answers were Sorted based on User's Feedback



1.How can you search an entire source file for a particular field name? 2.How can you find the ..

Answer / swetha p rao

1. TO find the field name in list of programs of a source
physical file then we give 25 option and Shift + F1 which
selects all the program sources and there we can specifiy
the name of the field.

2. we take an option 54 and give the other program name for
comparision.

3. Subfile hidden is not visible on the subfile but can be
used in the cases like storing the RRN number for that
particular record.we can update the value evrytime with RRn
value.so that it can be used in program.

4. If the subfile doesnt have any records we set on the
Control Format indicator and set off the Display indicator

Is This Answer Correct ?    9 Yes 1 No

1.How can you search an entire source file for a particular field name? 2.How can you find the ..

Answer / vaiv20

1. Is it source physical file u are referring to or
Physical file?
2. Using option 54 against one version in wrkmbrpdm and
mentioning the other version when prompted for the member
to be compared with.
3. Hidden field on a subfile or display file can be defined
aa a variable that wont be displayed on the screen. In
subfile u can define hidden fields at the control record
format as well as at each subfile record level.

Is This Answer Correct ?    3 Yes 0 No

1.How can you search an entire source file for a particular field name? 2.How can you find the ..

Answer / swetha p rao

we can display a subfile without records. but we have to
handle it in program,

If RRN >0
set on display and control indicators
else
Seton control and set off display indicator
Endif

Exfmt Screen

Is This Answer Correct ?    3 Yes 0 No

1.How can you search an entire source file for a particular field name? 2.How can you find the ..

Answer / sourabh

1. Through READE opcode
4. With the help of SFLINZ keyword. Use this keyword in
display file with indicator (suppose 33).
After the Do loop where the data has been sent to buffer but
not written on the subfile, use the following code


IF RRN = 0 (OR 1 DEPEND FOR WHICH VALUE U HAD INITIALIZED IT)
MOVE *ON TO CONTROLLER INDICATOR
MOVE *IN33 *ON
MOVE *OFF TO CONTROLLER INDICATOR

Is This Answer Correct ?    4 Yes 2 No

1.How can you search an entire source file for a particular field name? 2.How can you find the ..

Answer / ugandhar

3. Sub file hidden is not visible on the subfile but can be
used in the case like storing the RRN number for that
perticular record. This is as per one of our friend answer
and also we can use this hidden variables in subfile in
different senarios like if have more than one subfile
screen in single subfile and all screens are related to a
single file or firm. If you want to read the values from
all the screens at a time this subfile hidden variables are
very helpfull. Only thing is you need to declare the
variables as hidden which are available in second or
third..and not available in first with same name and
attributes. If you perform readc on single sflfrmt you can
get all values from all screens.

Is This Answer Correct ?    1 Yes 0 No

1.How can you search an entire source file for a particular field name? 2.How can you find the ..

Answer / indraneel

1. In wrkmbrpdm screen enter option=25, then shift + F1.
Enter the test that you want to search. Results will be
shown. If the search string needs to be searched in
particular source hit F16.

2. Enither one can use CMPPFM command or option 54.

3. Hidden field is just like any other field in subfile.
Only difference you will not be able to specifiy position
location for the field. That is why it is called hidden
field.

4. Use SFLINZ keyword. Before doing the EXFMT to control
record set on the SFLINZ controlling indicator.

Is This Answer Correct ?    1 Yes 0 No

1.How can you search an entire source file for a particular field name? 2.How can you find the ..

Answer / k.s.prathapa reddy

1.By using FNDSTRPDM command.

2.By using CMPPFM command.

3.RRN

4. By setting on SFLINZ keyword.
Write an empty record to the subfile and then display
the subfile-contorl record.

Is This Answer Correct ?    1 Yes 0 No

1.How can you search an entire source file for a particular field name? 2.How can you find the ..

Answer / ram

4.ANS. We Cannot display a subfile without records.

It gives MCH1202(decimal data Error).

Is This Answer Correct ?    0 Yes 12 No

Post New Answer

More RPG400 Interview Questions

What is the purpose of Panel Groups?

4 Answers  


what is importance of 'MAPFLD' IN OPNQRYF FILE ?

2 Answers  


3 members in a databasefile .how to read records from all the members?????????

4 Answers   CTS,


I want to declare the number of elements of an array dynamically in RPGLE ? Is it possible? If yes, then how do I do it ?

2 Answers  


what are the parameters of jobd?give in detail.&what are the parameters of subsystem...????

1 Answers   CTS,


how can we can we the data decimal error?how can we open such file in support

1 Answers  


How can we access Interactive job LDA in Batch Job?. and How we can access a file in interactive QTEMP lib in Batch job?.

4 Answers   IBM,


How do you proceed in case your active AS400 session has got disconnected suddenly, how can you get back to your session ? Is it possible??

1 Answers  


Can we found a record existance in a file w/o reading the file?

6 Answers   Traitsys Technologies,


1. Which Built-In-Function will you use to achieve the following functionality? CLONO1NO2NO3 Factorl÷÷+OpcdeFactor2++÷ResultLenDHHiLoEq C QTY IFLT *ZERO C QTY MULT -1 QTY C ENDIF a) %ABS b) %TRIM c) %TRIMS d) %UNS

3 Answers   IBM,


i 'm new to as/400.in an interview i was asked this question.give a practical example for passing information or data through local data area. I know only that data area is an object used to store tiny bits of data or it can store one value at a time and it is used to store frequently changing values or datas.thats all i know about data area can any one tell me how local data area and user defined data area are used to pass data between jobs with a example or coding.thanks in advance.

2 Answers   CTS,


How I can reread the physical file in CL program once the end of file reached in same CL program.

20 Answers   IBM,


Categories