GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Mainframe
Go To First  |  Previous Question  |  Next Question 
 Mainframe  |  Question 8 of 55    Print  
My CICS Screen looks like this.

Enter Notes Print/No Print
___________________ N
___________________ N
___________________ N
___________________ N
___________________ N
___________________ N
___________________ N

This is an existing screen, Whenever i type on the notes field, once it reaches to the end of the line it skips to print field and if we type any thing there it will skip to second line of the notes field.

My requirement is:

1. If i type data until end of the notes line, it should skip to second line of notes rather that print field.

If the first point is not feasible,
2. While entering data on the notes field, at the end of the line it should give a beep, so that the user can understand that he has reached the end of line.

Any ideas are appreciated.

  
Total Answers and Comments: 2 Last Update: March 09, 2006     Asked by: Prashanth 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
March 02, 2006 01:31:25   #1  
brabhu        

RE: My CICS Screen looks like this. Ente...

last byte of the unprotect field givung the autoskip command in ur map designed it will skip to next unprotect field and ot is not overwrite of N.


 
Is this answer useful? Yes | No
March 09, 2006 07:27:23   #2  
Minoo Member Since: January 2006   Contribution: 8    

RE: My CICS Screen looks like this. Ente...

As per my understanding

if we want to restrict the user/to make him stop not to enter further any thing we can take care this by making use of Stopping technique which is a one byte field as soon as it reaches the last byte of the field it halts there and even for this u can make use of skipping technique which jumps to the next unprotected field.

This how we can make use of


 
Is this answer useful? Yes | No

 Related Questions

I have 3 files . 2 files have millions of records.These 2 files have one ( empnumber) common record field. i want to put those records in 3rd file , such that which records having same number in key field (empnumber)in these two files ?
Read Answers (9) | Asked by : mark

I have one view which is derived from the table "A" and table"B". can i delete a row from this view? and after deleting what will be the data of table A and B?
Read Answers (4) | Asked by : sachin

Latest Answer : COMMAND IS JUSTMAPME*&# ...
Read Answers (2) | Asked by : venkatraman

My CICS Screen looks like this. Enter Notes Print/No Print ___________________ N ___________________ N ___________________ N ___________________ N ___________________ N ___________________ N ___________________ N This is an existing screen, Whenever i type on the notes field, once it reaches to the end of the line it skips to print field and if we type any thing there it will skip to second line of the notes field. My requirement is: 1. If i type data until end of the notes
Read Answers (2) | Asked by : Prashanth

Latest Answer : Let us take an example:Total no.of Items = 50 (MAX-ITEM)Total no.of items per page = 8 (PG-ITEM)So, initially display should start with item number one. Whenever you come to the scroll screen display the first 8 items and display page down key alone.User ...
Read Answers (3) | Asked by : viji

Latest Answer : RACF is Resource Access Control Facilty. It is used for logging access violations, authenticating users/groups and protecting access to sub-systems ...
Read Answers (5) | Asked by : prem123

In what situation do we use more than one map/mapset? Does, using more than 1 map/mapset will display all the maps continuously on CICS screen? Do we need to use PgDown and PgUp to view the entire mapset?
Read Answers (2) | Asked by : CICS map

A CICS PGM 'P1' has T1,T2,T3 Transactions. If there is a T1 Transaction can be invoked in the system at that time. How many tasks are available in the system?
View Question | Asked by : bashamfs

If i'm trying to populate an Array with some data, it is giving ABENDU4038.The Array - element (record) size is 70 and the Array Size is 99,999. It is Abending after populating some 10,074 elements 
View Question | Asked by : smitha_bdr

When executing a CICS program that updates DB2 tables, if the program performs a LINK to another CICS modules and the Database changes have not been commited, will the process Rollback the database changes 
Latest Answer : CICS have special future for data Base updates i.e. TWO FACE COMMIT. On completion of CICS program, syncpoint will execute which will commit the changes from CICS end and request for DB2 Commit. For this question, here there is no explicit DB2 Commit ...


 Sponsored Links

 
Related Articles

Breaking up XML into Relational Data

Breaking up XML into Relational Data While the preceding example shows how to construct an XML representation over relational data the example in this section illustrates how you can shred XML data back into relational data This reverse operation can be useful if your application works with relation
 

Querying Data with Oracle XQuery

Querying Data with Oracle XQuery Starting with Oracle Database 10g Release 2 you can take advantage of a full featured native XQuery engine integrated with the database With Oracle XQuery you can accomplish various tasks involved in developing PHP Oracle XML applications operating on any kind of dat
 

Retrieving XML Data

Retrieving XML DataTo retrieve XML data from an XMLType table you can use a SELECT SQL statement just as you would if you had to query a relational table For example to select the employee with the id set to 100 from the employees XMLType table discussed in the preceding section you might issue the
 

Using XMLType for Handling XML Data in the Database

Using XMLType for Handling XML Data in the Database Being an object type XMLType can not only be used to store XML data in the database but also to operate on that data via its built in methods Regardless of the storage model you choose XMLType provides a set of XML specific methods to operate on XM
 

Using Oracle Database for Storing, Modifying, and Retrieving XML Data

Using Oracle Database for Storing Modifying and Retrieving XML Data With Oracle XML DB you have various XML storage and XML processing options allowing you to achieve the required level of performance and scalability One of the most interesting things about Oracle XML DB is that it allows you to per
 

ODP.NET - Techniques to Improve Performance while Retrieving Data

ODP NET Techniques to Improve Performance while Retrieving Data Performance tuning is a great subject in Oracle Volumes of books would not be enough to cover every aspect of performance tuning in Oracle However in this section we will only discuss the fundamental performance techniques while working
 

ODP.NET - Populating a Dataset with a Single Data Table

ODP NET Populating a Dataset with a Single Data Table A dataset is simply a group of data tables These data tables can be identified with their own unique names within a dataset You can also add relations between data tables available in a dataset mosgoogle The following code gives you the details o
 

ODP.NET - Retrieving Typed Data

ODP NET Retrieving Typed Data While retrieving values from OracleDataReader we can extract information available in individual columns of a particular row either by using column ordinal position values or column names mosgoogle Retrieving Typed Data Using Ordinals ODP NET provides data specific enum
 

ODP.NET - Retrieving Data Using OracleDataReader

ODP NET Retrieving Data Using OracleDataReader OracleDataReader is simply a read only and forward only result set It works only if the database connection is open and it makes sure that the connection is open while you are retrieving data As the data that it retrieves is read only it is a bit faster
 

ODP.NET - Fundamental ODP.NET Classes to Retrieve Data

ODP NET Fundamental ODP NET Classes to Retrieve Data To retrieve data from an Oracle database using ODP NET we need to work with a few of the ODP NET classes At this point we will discuss the most fundamental classes available in ODP NET for retrieving data mosgoogle The following is the list of fun
 

About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape