carriage return stamp online


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users carriage return stamp online
# 1  
Old 11-21-2003
Question carriage return stamp online

hi all,

someone knows why the carriare return on txseries-aix don't work?

exsample:
i have:
01 TESTATA-INIZIO.
03 TESTA-NL1 PIC X.
03 R-TESTA1.
05 FILLER PIC X(70) VALUE SPACE.
05 DATA-ST1 PIC 9999/99/99 BLANK WHEN ZERO.
05 FILLER PIC X(05) VALUE SPACE.
05 ORA-ST1 PIC 99.99 BLANK WHEN ZERO.
05 FILLER PIC X(15) VALUE SPACE.
05 FILLER PIC X(05) VALUE 'PAG.'.
05 PAG-ST PIC ZZZ VALUE ZERO.
05 TESTA1-RC1 PIC X.
05 TESTA1-NL1 PIC X.
05 TESTA1-NL2 PIC X.

*
03 R-TESTA2.
05 F PIC X(02) VALUE SPACE.
05 F PIC X(16) VALUE 'FUNZ. CLIENTE : '.
05 ST-CAGE-CLI PIC X(11) VALUE SPACE.
05 F PIC X(02) VALUE SPACE.
05 ST-DAGE-CLI PIC X(20) VALUE SPACE.
05 FILLER PIC X(46) VALUE SPACE.
05 COD-CLI PIC X(11) VALUE SPACE.
05 FILLER PIC X(03) VALUE SPACE.
05 DIV-CLI PIC X(02) VALUE SPACE.
05 TESTA2-RC1 PIC X.
05 TESTA2-NL1 PIC X.
05 TESTA2-NL2 PIC X.


then
if i MOVE BYTE-CR2 TO TESTA1-RC1 before

EXEC CICS SEND TEXT FROM (TESTATA-INIZIO)
LENGTH (LUNG-TESTA-INIZIO)
NLEOM
PRINT
ERASE
END-EXEC.

I DON'T SEE R-TESTA2
instead if i move spaces to TESTA1-RC1 i can see the follow data.

thanks in advance
# 2  
Old 11-21-2003
I don't see a definition for BYTE-CR2. Is that a figurative constant like SPACE?

The term "carriage return" was developed when printers had a printing device actually mounted on a carriage. Each time that a character was printed the carriage would advance to the next print position. The function of a "carriage return" character was to cause the carriage to return to the first print position. More printing characters at this point would print on top of what was already printed. To go to the next line, you had to send a "carriage return" and a "line feed".

If a display cannot display overstrikes, a sequence like "a b c CR d e f " would cause the "def" to be displayed in positions 1 through 3. The "abc" was simply clobbered.
# 3  
Old 11-21-2003
DEFINITION

HI,

thanks for the answer, but i know the meaning of carriage return.
THE PROBLEM IS THAT THIS PROGRAM ON MAINFRAME-MVS-CICS
WORK GOOD WITH THE CARRIAGE RETURN,
INSTEAD ON AIX-TXSERIES DON'T WORK GOOD

******** CARRIAGE RETURN
01 CAR-CR PIC S9(4) COMP VALUE +13.
01 CONTR-CR REDEFINES CAR-CR.
05 BYTE-CR1 PIC X.
05 BYTE-CR2 PIC X.

THANKS AGAIN
# 4  
Old 11-21-2003
Try making that:

VALUE +10

and see if that works. If it does, you really should rename the variables use NL rather than CR.

If it fails, be sure that BYTE-CR2 has the value. On some machines it could be BYTE-CR1 that gets the 10 while BYTE-CR2 gets the 0.
# 5  
Old 11-21-2003
hi,

it works but with value +10 do new line, not carriage return.
# 6  
Old 11-21-2003
Isn't that what you want? What result do you want with something like

a b c N/L d e f

Are you looking to see the d typed on top of the a? Not all printers can do that.
# 7  
Old 11-21-2003
The program use carriage return for exsample for the BOLD character.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Remove carriage return

I need to remove the carriage return comes inbetween the record. Need to have CR only at the end. I used the below command. tr -d '\n' < filewithcarriagereturns > filewithoutcarriagereturns But its removing all the CR and giving one line output. Input File: 12345 abcdegh... (11 Replies)
Discussion started by: srvn_saru
11 Replies

2. Shell Programming and Scripting

Substitute \n with carriage return

Hello all, I've a flat file in the following format: AB\001\CDED\001\ABC\001\nEG\001\HIJF\001\EFG\001\nHI\003\HIUL\003\HIJ\003 And I want to substitute \n with the carriage return. Any help is appreciated! Regards, - Seth (8 Replies)
Discussion started by: sethmj
8 Replies

3. Shell Programming and Scripting

Carriage return ksh

Hello, How do i usecarriage return in ksh. I want to do an echo "bla bla" and another echo "bla bla" will appear and replace the first echo on screen. I tried: until ; do echo "bla bla \r" done please advice. Thanks. (3 Replies)
Discussion started by: LiorAmitai
3 Replies

4. Shell Programming and Scripting

Search_Replace with a Carriage Return

Hey folks, I've been working on this for some time. Seems simple, but I'm stumped. I need the following data format: New_York:Commercial Geology Geophysics Petrophysics Production_Engineering Reservoir_Engineering Pasadena:Commercial ... (5 Replies)
Discussion started by: leepet01
5 Replies

5. Shell Programming and Scripting

2 carriage return within a record

Hi all, need your help in replacing carriage return in a record. Input: col1|col2|col3|col4|col5|col6|col7|col8|col9|col10 1|aa|bb|cc|dd|eee eee|ff|ggggg|hh hhh|iii 2|zz|yy|xx|ww|vv|uu|tt|ss|rr Output: col1|col2|col3|col4|col5|col6|col7|col8|col9|col10... (12 Replies)
Discussion started by: agathaeleanor
12 Replies

6. Shell Programming and Scripting

Lost carriage return when assign

Hello . Now i have a different problem, lost "carriage return" when assigning a variable. The assignation is done in a peculair way but its ok. The variable "v_tmp" have spaces and carriage return. Its created with v_tmp=`echo $i | awk '.........'` And the assignation where i lost all the... (6 Replies)
Discussion started by: trutoman
6 Replies

7. UNIX for Dummies Questions & Answers

carriage return and linefeed

hi can anyone please tell me the difference between carriage return, linefeed and newline ? (2 Replies)
Discussion started by: streetfi8er
2 Replies

8. Shell Programming and Scripting

Dont want carriage return

I have observed with print & echo, they produce carriage return <CR> or newline, after they display string next to them. Is there anyway to avoide these <CR> after the intended string is displayed? (3 Replies)
Discussion started by: videsh77
3 Replies

9. Shell Programming and Scripting

Capture carriage return.

I try to test the carriage return in a variable. $ LENGTH=`expr $VARIABLE : ".*"` will return the length of the variable. But this doesn't work if $VARIABLE has zero length. Any help will be well appreciated. Thanks in advance. Giovanni (4 Replies)
Discussion started by: gio123bg
4 Replies

10. Shell Programming and Scripting

carriage return/line feeds

Hello, I have a file that has got carriage returns in it and I want to take them out. Anyone know how I can do this in a ksh? thanks (4 Replies)
Discussion started by: pitstop
4 Replies
Login or Register to Ask a Question