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


I have a Field which is of size 9(4). In the Screen if I enter
the value for this field as 1234, it showing it as Valid. But if
I enter only one or two digits, zeros should be appended in the
remaining places. For example: When u enter 1 in the screen the
output should be 0001. When you enter 12, output should be 0012.
How to achieve this in the program?

Answers were Sorted based on User's Feedback



I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, i..

Answer / y@$w@nth

Sorry for the above answer i thought zeros should be supressed.

When at the time of defining the field in the map we can
code PICOUT option for eg:

SUPFIELD DFHMDF POS=(**,**),
LENGTH=4,
ATTRIB=(UNPROT,FSET),
PICOUT='9(4)',
PICIN='9(4)'

If zeros should be supressed then code following

SUPFIELD DFHMDF POS=(**,**),
LENGTH=4,
ATTRIB=(UNPROT,FSET),
PICOUT='z(3)9',
PICIN='z(3)9'

Correct me if i am wrong

Is This Answer Correct ?    8 Yes 0 No

I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, i..

Answer / guest

With the help of PICOUT 9999 in DFHMDF.

Is This Answer Correct ?    4 Yes 2 No

I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, i..

Answer / veena

In Attrib=(UNPROT,FSET,NUM),

Num in the Attrib gives zeroes when digits are entered.

Is This Answer Correct ?    0 Yes 0 No

I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, i..

Answer / girish kumar

IN THE MAP JUST U CODE PICIN AS X(LENGTH) AND NEVER CODE THE
ANYTHING IN THE "INITIAL" JUST GIVE A BLANK SPACE.
FOR EX: IF YOU ARE DOING ADDITION USE
FUNCTION NUM VALUES(NO1I) PIC X(5).
FUNCTION NUM VALUES(NO2I) PIC X(5).
THEN COMPUTE NO1I + NO2I.

CODE LIKE THIS IN APPLICATION PROGRAM
I GET THE EXACT RESULT.

Is This Answer Correct ?    0 Yes 0 No

I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, i..

Answer / kavin

just move low-values to map variables.

Is This Answer Correct ?    0 Yes 0 No

I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, i..

Answer / girish kumar

code like this for the addtion.

functional num value of (input field1)
finctional num value of (input field2)

example.

functional num value(IN1)
functional num value(IN2)
SUM=ADD THE ABOVE TO FIELDS

TRY THIS IT WILL REALLY WORKS

NOTE= give the picture clause is ALPHA NUMARIC

Is This Answer Correct ?    0 Yes 2 No

I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, i..

Answer / y@$w@nth

When at the time of defining the field in the map we can code
PICOUT option for eg:

SUPFIELD DFHMDF POS=(**,**),
LENGTH=4,
ATTRIB=(UNPROT,FSET),
PICOUT=z(3)9,
PICIN=z(3)9

Correct me if i am wrong

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More CICS Interview Questions

How are VSAM files Read in CICS pgms?

4 Answers   IBM,


Specify CICS transaction initiation process. (From the perspective of CICS control programs and control tables.)

2 Answers   IBM,


Define an aica abend?

0 Answers  


Specify the CICS command used to read a VSAM record starting with prefix ?F?. Code all the relevant options.

2 Answers   IBM,


What is the option that is used to erase all unprotected fields during a SEND MAP operation?

5 Answers   Kanbay,


What is CECI?

5 Answers   IBM,


What is the component?what are the different components there using cobol and cics

2 Answers   IBM, SPIC,


In a CICS program, how will you read a VSAM file?

0 Answers  


Explain floating maps with illustration.

1 Answers   IBM,


Mention the option (along with argument type) used in a CICS command to retrieve the response code

3 Answers  


What command do you issue to delete a record in a transient data queue ?

1 Answers   IBM,


Which is the EIB field that gives the date when a task was started?

1 Answers  


Categories