View previous topic :: View next topic |
Author |
Message |
rajeev5174 Beginner
Joined: 05 Jun 2007 Posts: 25 Topics: 10
|
Posted: Wed Dec 29, 2010 12:25 pm Post subject: Reading remote ESDS files |
|
|
Hi,
In our application customer has given a ESDS file that is defined as
remote. we inputted the below API for the same. But the application is
throwing out as "erorred" Could some one please let me know where is the issue?
Code: |
EXEC CICS STARTBR
FILE (FC-DDNAME)
SYSID(REMOTE-FILE-SYSID)
KEYLENGTH(4)
GTEQ
RIDFLD (FC-RBA)
END-EXEC
|
Here when executed is giving file not found condition
Code: |
EXEC CICS READNEXT
DATASET(FC-DDNAME)
RIDFLD(FC-RBA)
KEYLENGTH(4)
SYSID(REMOTE-FILE-SYSID)
INTO(FC-DATA)
LENGTH(FC-LENGTH)
RESP(WS-CICS-RESP)
RESP2(WS-CICS-RESP2)
END-EXEC.
|
Regards
Ron |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
|
|