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

CONNECT:DIRECT CASE= for OS systems


IBM Mainframe Forums -> All Other Mainframe Topics
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Tracy Lynne Baer

New User


Joined: 25 Jan 2013
Posts: 3
Location: USA

PostPosted: Fri Jan 25, 2013 2:58 am
Reply with quote

I am trying to use the CASE=Yes process parameter on the Submit statement.
Code:
 SUBMIT DSN=xxx.proc -
        &FILE="&xxxDSN" -
        &APPLID=xxxP    -
        &TESTPRODFLAG=T -
        SUBNODE=SNODE   -
        CASE=YES         
   EXIT   


The receiver needs the DSN to be lower case, however, when I send it, they receive it in upper case.

Is there an order? or is this in the wrong part of the process. The only thing I get from the internet or manuals is:

CASE = Y | YES | N | NO
specifies whether parameters associated with accounting data, user ID, password, and data set name in the command and in the submitted Process are to be case sensitive. The default is NO.

Any help is appreciated.
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Fri Jan 25, 2013 3:02 am
Reply with quote

What does the process itself look like?
Back to top
View user's profile Send private message
Tracy Lynne Baer

New User


Joined: 25 Jan 2013
Posts: 3
Location: USA

PostPosted: Fri Jan 25, 2013 5:14 am
Reply with quote

Code:
CDPEP7BT  PROCESS PNODE=&PNODE  -                                     
          SNODE=&SNODE          -                                     
          &V1=%SUBDATE1         -                                     
          &V2=%SUBTIME                                                 
          SYMBOL &xxxDSN=\'\ || ACH999999999D || &V1 || T || &V2 || - 
          0000 || \'\                                                 
    /* COPY FILE FROM xxxxxxxxx TO xxxxx SERVER */                       
COPYFILE COPY    FROM (                                          -     
                 DSN=TPEPD.TESTB.xxxxxx                       -     
                 DISP=(SHR)                                      -     
                 )                                               -     
                 TO (                                            -     
                 DSN="&xxxDSN"                                -     
                 DISP=NEW                                        -     
            SYSOPTS=":DATATYPE=TEXT:XLATE=YES:STRIP.BLANKS=NO:"  -     
                 )                                                     
      SUBMIT DSN=xxxxxx.proc -                                         
             &FILE="&xxxDSN" -                                         
             &APPLID=ACHP    -   
             &TESTPRODFLAG=T -   
             SUBNODE=SNODE   -   
             CASE=YES           
         EXIT


code' d
Back to top
View user's profile Send private message
Tracy Lynne Baer

New User


Joined: 25 Jan 2013
Posts: 3
Location: USA

PostPosted: Fri Jan 25, 2013 11:31 pm
Reply with quote

We figured it out. I had to put the CASE=YES (the 'YES' must be spelled out) on the SUBMIT COMMAND. For us, this is in our control card where we do the SIGNON, not in the PROCESS itself.

Code:
     SIGNON                                     
     SUBMIT PROC=XXXXXXX                 -     
            &PNODE=XXXXXX                     -     
            &SNODE=XXXXXXXX                -     
            CASE=YES                             
     SIGNOFF                                     


code' d again


I removed the CASE= statement out of the PROCESS as well.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Sat Jan 26, 2013 12:32 am
Reply with quote

Good to hear it is working - thank you for letting us know icon_smile.gif

d
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 -> All Other Mainframe Topics

 


Similar Topics
Topic Forum Replies
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts Connect Direct 6.3 for Z/OS All Other Mainframe Topics 20
No new posts How to go into a subprogram in IBM De... IBM Tools 5
No new posts Zunit Test case editor error Testing & Performance 4
No new posts Getting TWA in CICS program while con... CICS 14
Search our Forums:

Back to Top