From: Matthew Ferris To: Ted Holt
Can someone help with the syntax of the Open Query File (OPNQRYF) command? I have two questions:
1. Is the following the proper way to code the %VALUES parameter?
QRYSLT('RESPT *EQ %VALUES( + "A7" "A8" "A9" "X5") *AND + PRDNO *EQ "' *CAT &PRDNO + *CAT '" ...ETC. I wish to select records for a given product number that has a response type equal to one of these values.
2. Can the range parameter be used on character as well as numeric data? I want to select records that fall within a date range, but I don't want to hard-code dates. If the dates are in character variables, can I use the range parameter? If so, what is the syntax? I tried something like the following, but it didn't seem to work.
QRYSLT('SHPDAT *EQ + %RANGE('&BEGDT' '&ENDDT')') From: Ted Holt To: Matthew Ferris
You're right (if you finish the expression).
QRYSLT('RESPT *EQ %VALUES("A7" + "A8" "A9" "X5") *AND PRDNO *EQ + "' *CAT &PRDNO *CAT '"') Range works for character data, but you need to concatenate double quotes around the range values.
QRYSLT('SHPDAT *EQ %RANGE("' + *CAT &BEGDT *CAT '" "' *CAT + &ENDDT *CAT '")') If &BEGDT is 931001 and &ENDDT is 931015, this should resolve to:
QRYSLT('SHPDAT *EQ + %RANGE("931001" "931015")') Hope you get it running!
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.
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:
LATEST COMMENTS
MC Press Online