|
|
| Author |
Message |
krk_kumar1
New User
Joined: 14 Mar 2006 Posts: 39
|
|
|
|
Hi,
I need to use the CEEDAYS and CEEDATES IBM date routines to convert the date.when i try to call from my CICS program as shown below th call fails with 4038(the abend 4038 is due to your COBOL application dynamically calling a module that is not available). I'am sure that its available since there are programs which uses this routine.
| Code: |
CALL CEEDAYS USING WS-CCYYMMDD-DATE ,
WS-PICSTR ,
WS-LILIAN ,
OMITTED |
has anyone faced this scenario before? |
|
| Back to top |
|
 |
References
|
|
 |
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2216 Location: At my coffee table
|
|
|
|
| krk_kumar1 wrote: |
| I'am sure that its available since there are programs which uses this routine. |
Are those programs also CICS programs?
Have they been compiled and linked under the same process? |
|
| Back to top |
|
 |
krk_kumar1
New User
Joined: 14 Mar 2006 Posts: 39
|
|
|
|
| Thanks for the quick reply CICS guy.i'am not sure how CEEDAYS and CEEDATES are compiled and linked because they are IBM provided routines i don't have any control over them with respect to compile. |
|
| Back to top |
|
 |
dick scherrer
Global Moderator
Joined: 23 Nov 2006 Posts: 15201 Location: 221 B Baker St
|
|
|
|
Hello,
Possibly some additional library is needed in the load library concatenation? |
|
| Back to top |
|
 |
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2216 Location: At my coffee table
|
|
|
|
| krk_kumar1 wrote: |
| Thanks for the quick reply CICS guy.i'am not sure how CEEDAYS and CEEDATES are compiled and linked because they are IBM provided routines i don't have any control over them with respect to compile. |
It doesn't matter how they were compiled and linked......
| Me wrote: |
| Are those programs also CICS programs? |
the programs that
| you wrote: |
| there are programs which uses this routine |
| Me wrote: |
| Have they been compiled and linked under the same process? |
'They' being
| you wrote: |
| there are programs which uses this routine |
|
|
| Back to top |
|
 |
Earl Haigh
Active User
Joined: 25 Jul 2006 Posts: 457
|
|
|
|
Since you say other programs in your environment uses these,
here is a hint'
WHY NOT ASK SOME OF YOUR CO-WORKERS, OR PERHAPS
A CALL TO YOUR CICS TECHNICAL SUPPORT ? |
|
| Back to top |
|
 |
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 5052 Location: Atlanta, GA
|
|
|
|
| Quote: |
| i'am not sure how CEEDAYS and CEEDATES are compiled and linked because they are IBM provided routines i don't have any control over them with respect to compile. |
And you don't need to know if your site approved method for accessing them is appropriate -- they will be available if the site support group has their libraries placed in the region. |
|
| Back to top |
|
 |
Bill O'Boyle
Senior Member
Joined: 14 Jan 2008 Posts: 1260 Location: South Carolina, USA
|
|
|
|
Calling both of these LE Callable Service routines (as well as most others), requires the 4th parm be present (the 12-Byte Feedback-Area) in the parmlist, because upon return, you need to test the first 2-Bytes and determine whether the call was successful (X'0000') or not.
Do not omit this parm.
Bill |
|
| Back to top |
|
 |
|
|