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


How to get cursor position from system in CICS environment ?

Answers were Sorted based on User's Feedback



How to get cursor position from system in CICS environment ?..

Answer / arun singh

There are three approches to cursor positioning.
1)static positioning.
by placing "IC" in the attrib parameter of DFHMDF for a
particuler field.
EX. DFHMDF POS=(3,16)
ATTRIB=(UNPROT,FSET,IC)
LENGTH=8
2)Dynamic symbolic positioning.
by using the symbolic name of the field
MOVE -1 TO THE LENGTH FIELD.
3)USING THE CURSOR IN THE SEND MAP.
EX. EXEC CICS SEND
MAP('............')
MAPSET('.........')
CURSOR(100)
END-EXEC.
the cursor will be placed at the position 100 of the
terminal relative to zero.......

Is This Answer Correct ?    23 Yes 7 No

How to get cursor position from system in CICS environment ?..

Answer / pof

EIBCPOSN ( from EIBBLK) gives a number
int(EIBCPOSN /80) + 1 gives line #
1 + EIBCPOSN - 80 *(int(EIBCPOSN /80)) gives column #

Is This Answer Correct ?    18 Yes 3 No

How to get cursor position from system in CICS environment ?..

Answer / amiya ranjan

You can get ur cursor position from EIBCPOSN.
give
COPY DFHAID in working storage.
from eibcposn you will get your cursor position.
suppose you have 80 columns in your screen and if your cursor is in 2nd row and 3rd column then your eibcposn is 80+3 =83
so by dividing it with 80 you will get 1 and adding 1 you will get your row number. Similarly you can get your column position by calculating with above formula given by Pof.

thanks.

Is This Answer Correct ?    13 Yes 0 No

How to get cursor position from system in CICS environment ?..

Answer / venkat

to get the cursor pos of cics environment by the concept
of 'eibcposn'.by copy this dfhbmsca we can achive this.

Is This Answer Correct ?    8 Yes 2 No

How to get cursor position from system in CICS environment ?..

Answer / guest

Get it from EIBCURPOS !

Is This Answer Correct ?    12 Yes 7 No

How to get cursor position from system in CICS environment ?..

Answer / ajeet singh

eibcposn

Is This Answer Correct ?    5 Yes 1 No

How to get cursor position from system in CICS environment ?..

Answer / harsha

1 Divide EIBCPOSN by 80.
2 Save the Quotient. Add 1 to it to get the ROW.
3 Remainder will be your column number.

Is This Answer Correct ?    6 Yes 2 No

How to get cursor position from system in CICS environment ?..

Answer / jerinjose

EXEC CICS SEND CONTROL CURSOR(23)
END-EXEC

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More JCL Interview Questions

WHAT IS DUMMY IN JCL? HOW TO USE IT? CAN ANYBODY SEND PROGRAM ON THIS?

3 Answers  


a jcl has 2 steps. How to code the jcl such that if step1 abends, then step2 runs. Else, job terminates with step1?

1 Answers   IBM,


common jcl abends??

2 Answers   ADP, Wipro,


How to Enter The Spool Area In Real Time?

7 Answers   IBM,


What will happen when we try to pass data from JCL to COBOL using PARM parameter without declaring the length field in Linkage Section?

2 Answers   IBM,


we define the array like this 01 array 02 veg occurs 10 times 03 days occurs 6 times 04 cost pic 9(5). but why don't we write it as 01 array 02 veg occurs 10 times 03 days occurs 6 time 04 cost pic 9(5). is there any error will occur ,what is it? and why don't 01,02,03 not contain picture clause? if we put pic in those is there any error will occur what is it will occur?

1 Answers   Fidelity,


what is fixed length and variable length and difference between them

1 Answers   CGI, Wipro,


How would I code JCL to copy a gdg data set G001v00 and create a gdg Data set G001v01

2 Answers  


what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?

0 Answers   IBM,


Can there be 2 job statements in a JCL? If yes what is the purpose of doing tha?

3 Answers  


suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want exicute step 3 and step 7 only how we specify condition ?

5 Answers  


when does a dataset go uncataloged?

0 Answers   IBM,


Categories