Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 942103
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T22:13:10+00:00 2026-05-15T22:13:10+00:00

This probably isn’t as complicated as it should be, but Business Objects seems to

  • 0

This probably isn’t as complicated as it should be, but Business Objects seems to be very, very strict in how types are used versus SQL Developer. Here’s the piece of the statement in question:

ship_date between '01' || '-' || w_current_ora_month || '-' || to_char(to_date(w_last_day, 'DD-MON-RR HH:MI:SS AM'), 'yy') and to_char(to_date(w_last_day, 'DD-MON-RR HH:MI:SS AM'))

w_current_ora_month VARCHAR2(3) is filled via:

SELECT to_char(sysdate,   'MON')
  INTO w_current_ora_month
  FROM dual;

w.last_day DATE is filled via:

SELECT trunc(LAST_DAY('01' || '-' || w_current_ora_month || '-' || to_char(w_year)))
    into w_last_day
    from dual

Why am I getting a Not Valid Month error when pulling from Business Objects? I’ve already found the Business objects is way strict on types, so I’m wondering if I’m doing something wrong here. All of this works fine in SQL developer, but I’ve had to tweak this statement over and over again to try to get it to work when Business Objects uses it.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T22:13:11+00:00Added an answer on May 15, 2026 at 10:13 pm

    You’re relying on implicit conversion from strings to dates, which is always a bad idea.

    If you have to convert to a string then back to a date, always use to_date and a date mask. Otherwise you’re depending on the NLS variables, which can be changed within a session (almost certainly the cause of your problem).

    However, in this case, you don’t have to. Your condition can be simplified to:

    ship_date between trunc(sysdate,'MON') and last_day(trunc(sysdate))
    

    As @APC pointed out, if your field contains a time component, you’ll want to get everything through the end of the last day of the month. This can be achieved several ways:

    ship_date between trunc(sysdate,'MON') 
                  and last_day(trunc(sysdate))+(86399/86400)
    
    ship_date between trunc(sysdate,'MON') 
                  and add_months(trunc(sysdate,'MON'),1)-(1/86400)
    
    ship_date >= trunc(sysdate,'MON') 
        and ship_date < add_months(trunc(sysdate,'MON'),1)
    

    I tend to prefer the last version as it’ll continue to work if you decide to change the field to a TIMESTAMP down the road.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This probably has a simple answer, but I must not have had enough coffee
This probably sounds really stupid but I have noo idea how to implement jquery's
Okay, so this probably sounds terribly nefarious, but I need such capabilities for my
Ok, this probably has a really simple answer, but I've never tried to do
This is probably a silly question, but curiosity has gotten the better of me.
This is probably a really simple jQuery question, but I couldn't answer it after
This is probably a really stupid newbie-sounding question to you developer type people, but
I'm aware that there probably isn't a perfect solution to my question (this sounds
Which IoC container is the easiest to get started with. This probably equates to
This is probably best shown with an example. I have an enum with attributes:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.