IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

why a data item of usage type comp donot accept values


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
achusarath

New User


Joined: 21 Mar 2007
Posts: 26
Location: kerala

PostPosted: Fri Apr 20, 2007 9:33 am
Reply with quote

hi,

please tell why a data item declared as

01 A pic 9(4) comp do not accept values through accept verb.
Back to top
View user's profile Send private message
achusarath

New User


Joined: 21 Mar 2007
Posts: 26
Location: kerala

PostPosted: Fri Apr 20, 2007 9:35 am
Reply with quote

Code:
DENTIFICATION DIVISION.     
  PROGRAM-ID. XYZ.             
  DATA DIVISION.               
  WORKING-STORAGE SECTION.     
  01 A PIC 9(4) COMP.         
  PROCEDURE DIVISION.         
  P1.                         
      ACCEPT A               
      DISPLAY A.             
      STOP RUN.           
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Fri Apr 20, 2007 12:25 pm
Reply with quote

Hi achu

It should work correctly.As far as I know there is no restriction to ACCEPT as per the datatype.What is the value you are trying to enter??Are you getting any error message?
Thanks
Arun
Back to top
View user's profile Send private message
agkshirsagar

Active Member


Joined: 27 Feb 2007
Posts: 691
Location: Earth

PostPosted: Fri Apr 20, 2007 1:26 pm
Reply with quote

Quote:
As far as I know there is no restriction to ACCEPT as per the datatype

No you can not.

ACCEPT is only capable of handling BYTE streams, not binary(COMP) data.
It is not allowed to code COMP field in ACCEPT field.
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Fri Apr 20, 2007 1:43 pm
Reply with quote

arcvns wrote:
It should work correctly.As far as I know there is no restriction to ACCEPT as per the datatype.
You really should double check the Fine Manual prior to making such a broad statement.
"identifier-1
Can be a group item or an elementary alphabetic, alphanumeric, alphanumeric-edited, numeric-edited, external decimal, DBCS, national, or external floating-point data item."
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Fri Apr 20, 2007 2:01 pm
Reply with quote

Hi all

Thanks for correcting me
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Store the data for fixed length COBOL Programming 1
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts SCOPE PENDING option -check data DB2 2
Search our Forums:

Back to Top