16
Tue, Apr
7 New Articles

The CL Corner: More on ILE CEE Date and Time APIs

CL
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Everybody loves Saturdays and Sundays, right? Well, no. Sometimes applications don't.

 

In the first column in this series, we looked at the Get Current Local Time (CEELOCT) and Convert Lilian Date to Character Format (CEEDATE) APIs. Today, we will review the Convert Date to Lilian Format (CEEDAYS) and Calculate Day of Week from Lilian Date (CEEDYWK) APIs.

 

The CEEDAYS API allows us to convert any date in the range of October 15, 1582, through December 31, 9999, inclusive. The API documentation can be found here, and I've repeated the API's parameter list below:

 

Required Parameter Group:

1

input_char_date

Input

VSTRING

2

picture_string

Input

VSTRING

3

output_Lilian_date

Output

INT4


  Omissible Parameter:

4

fc

Output

FEEDBACK

 

The CEEDAYS API is essentially the CEEDATE API in reverse. The first parameter, input_char_date, is a formatted date value such as 05/20/2008, 20080520, or 080520 for May 20, 2008, and the second parameter, picture_string, is a variable-length character string describing how to interpret the input_char_date parameter. The formatting options, and there are many, can be found in the CEEDAYS API documentation. The third parameter, output_Lilian_date, is the Lilian-formatted date that represents the value of the input_char_date parameter. As we know from the first column in this series, the Lilian value 155447 would be equivalent to the Gregorian date May 20, 2008. The fourth parameter, fc, is the common error code structure used by CEE APIs.

 

The following program, GREGTOLIL, will convert a Gregorian date in format YYYYMMDD to a Lilian-formatted value, add 60 to this value, convert this result to a MM/DD/YYYY value, and then display the formatted result. While I've hard-coded the duration (60 days) and the picture string, you could just as easily have these as parameters to the GREGTOLIL program.

    Pgm        Parm(&YYMDGreg)                              

    Dcl        Var(&YYMDGreg)   Type(*Char) Len(8)          

    Dcl        Var(&CurLilDate) Type(*Int)                  

    Dcl        Var(&NewLilDate) Type(*Int)                  

    Dcl        Var(&NewGregDt)  Type(*Char) Len(32)         

                                                            

    CallPrc    Prc(CEEDAYS) Parm((&YYMDGreg) ('YYYYMMDD') + 

                 (&CurLilDate) (*Omit))                     

                                                             

    ChgVar     Var(&NewLilDate) Value(&CurLilDate + 60)     

                                                            

    CallPrc    Prc(CEEDATE) Parm((&NewLilDate) +            

                 ('MM/DD/YYYY') (&NewGregDt) (*Omit))       

                                                            

    SndPgmMsg  Msg(&NewGregDt) ToPgmQ(*Ext)                 

    EndPgm

 

Running GREGTOLIL with 'CALL GREGTOLIL ('20080321')' will result in the message 05/20/2008 being displayed. Likewise, 'CALL GREGTOLIL ('20080325')' will result in the message 05/24/2008 being displayed.

 

Depending on how this calculated date is to be used, this value 05/24/2008 may or may not be a concern. The potential problem is that if we look at a calendar, we see that May 24, 2008, falls on a Saturday. For some applications, this is OK; for others, we might want to move the date out to the following Monday. Can this be handled within our program?  The answer of course is yes.

 

The Calculate Day of Week from Lilian Date (CEEDYWK) API takes as input a Lilian-formatted date and returns the day of week. The API documentation can be found here, and the parameter list is shown below:

 

Required Parameter Group:

1

input_Lilian_date

Input

INT4

2

output_day_no

Output

INT4


  Omissible Parameter:

3

fc

Output

FEEDBACK

 

The CEEDYWK API has two required parameters and one omissible parameter. The first parameter, input_Lilian_date, is the Lilian date value we want to determine the day of week for. The second parameter, output_day_no, is a signed 4-byte integer value (TYPE(*INT) in CL) and is an output from the API. When output_day_no is 1, the input_Lilian_date is a Sunday, 2 is a Monday, and so on through 7, which indicates Saturday. With this knowledge, we can now have a modified program, GREGTOLIL2, which adds a minimum of 60 days to the input date and a maximum of 62 in the case of the calculated date falling on a Saturday. The source for GREGTOLIL2 is shown below.

 

       Pgm        Parm(&YYMDGreg)                              

    Dcl        Var(&YYMDGreg)   Type(*Char) Len(8)          

    Dcl        Var(&CurLilDate) Type(*Int)                  

    Dcl        Var(&NewLilDate) Type(*Int)                  

    Dcl        Var(&DayOfWeek)  Type(*Int)                  

    Dcl        Var(&NewGregDt)  Type(*Char) Len(32)         

                                                            

    CallPrc    Prc(CEEDAYS) Parm((&YYMDGreg) ('YYYYMMDD') + 

                 (&CurLilDate) (*Omit))                     

                                                            

    ChgVar     Var(&NewLilDate) Value(&CurLilDate + 60)     

                                                             

    CallPrc    Prc(CEEDYWK) Parm((&NewLilDate) (&DayOfWeek) +

                 (*Omit))                                   

                                                            

    If         Cond(&DayOfWeek = 1) Then(ChgVar +           

                 Var(&NewLilDate) Value(&NewLilDate + 1))  

    If         Cond(&DayOfWeek = 7) Then(ChgVar +          

                 Var(&NewLilDate) Value(&NewLilDate + 2))  

                                                            

    CallPrc    Prc(CEEDATE) Parm((&NewLilDate) +           

                 ('MM/DD/YYYY') (&NewGregDt) (*Omit))      

                                                           

    SndPgmMsg  Msg(&NewGregDt) ToPgmQ(*Ext)                 

    EndPgm                                                 

 

Running GREGTOLIL2 with 'CALL GREGTOLIL2 ('20080325')' will now result in the message 05/26/2008 being displayed rather than the previous 05/24/2008 value of GREGTOLIL.

 

So that's the program. Or is it? While GREGTOLIL2 does avoid calculating dates that fall on a Saturday or Sunday, you might, if you again look at your calendar, notice that May 26 is a holiday in the United States. If we didn't want to generate dates on weekends, it's probably safe to assume we don't want to be generating dates that are holidays either. In the next column in this series, we'll look at one possible solution that addresses how to handle holidays. We won't be using any additional CEE APIs beyond what you already know. Rather, the discussion will be directed to other capabilities of CL.                                  

 

One bit of advice seems appropriate before I close. When using the CEEDATE API to return a Lilian date in character format, you might recall that one option is to have the day of week returned in a format such as Saturday, 24 May 2008. This may make you think you don't need to call the CEEDYWK API as you could just look for the character string "Saturday." This would work in some cases, but I wouldn't recommend it. The exposure is that this string, along with the character string "May," can be translated into various languages. If you are running in the United States with National Language Version 2924 installed, you would get Saturday, but in a different language environment, you may very well get character strings returned such as Samstag (German) or субботу (Russian). When you need to determine the day of week, use the CEEDYWK API so that the parameter output_day_no will be the value 1 for Saturday, independent of what National Language Version your program might be running in. Even for companies that do business in only one country, I recommend writing any application as if it might run anywhere in the world. You never know what acquisitions your company may make in the future, and I strongly believe in writing applications that, where possible, can accommodate future changes...especially if, as in this case, calling CEEDYWK is the only effort required.

 

Having said that, in the next column, we'll actually stop using CEEDYWK! For flexibility purposes, I do not want each application program determining if a given day is Saturday, Sunday, or a holiday and then making adjustments to the calculated date. You can be sure that as soon as we do that, the company will decide to start working every other Saturday and you'd have to change all of your programs! We will be looking at a much more flexible approach, one that minimizes the likelihood of application maintenance in order to accommodate company calendar changes. But that doesn't mean you shouldn't use CEEDYWK in other situations. There are many times when you may want to know the day of the week, and CEEDYWK will be just what you need.

More CL Questions?             

Wondering how to accomplish a function in CL? Send your CL-related questions to me at http://b9.mail.yahoo.com/ym/brucevining.com/Compose?To=This email address is being protected from spambots. You need JavaScript enabled to view it.. I'll see what I can do about answering your burning questions in future columns.

Bruce Vining

Bruce Vining is president and co-founder of Bruce Vining Services, LLC, a firm providing contract programming and consulting services to the System i community. He began his career in 1979 as an IBM Systems Engineer in St. Louis, Missouri, and then transferred to Rochester, Minnesota, in 1985, where he continues to reside. From 1992 until leaving IBM in 2007, Bruce was a member of the System Design Control Group responsible for OS/400 and i5/OS areas such as System APIs, Globalization, and Software Serviceability. He is also the designer of Control Language for Files (CLF).A frequent speaker and writer, Bruce can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it.. 


MC Press books written by Bruce Vining available now on the MC Press Bookstore.

IBM System i APIs at Work IBM System i APIs at Work
Leverage the power of APIs with this definitive resource.
List Price $89.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: