Skip to Main Content

Cloud Platform

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Cant able to generate reports for all if implemented multiselecting ?

3774846Dec 26 2024

SELECT EXTN_ATTRIBUTE_CHAR014 AS SCHOOL_NAME,
ORGANIZATION_NAME AS ACCOUNT_NAME,
ORGANIZATION_TYPE AS ACCOUNT_TYPE,
PARTY_NUMBER AS ACCOUNT_NUMBER
FROM HZ_ORGANIZATION_PROFILES org
WHERE :p_account_name IS NULL
OR ORGANIZATION_NAME IN (:p_account_name)
there is relational operator error for this
SELECT EXTN_ATTRIBUTE_CHAR014 AS SCHOOL_NAME,
ORGANIZATION_NAME AS ACCOUNT_NAME,
ORGANIZATION_TYPE AS ACCOUNT_TYPE,
PARTY_NUMBER AS ACCOUNT_NUMBER
FROM HZ_ORGANIZATION_PROFILES org
WHERE ORAGANIZTION_NAME IN (:p_account_name)

for this i am unable to generate all names records but can generate single name or multiple select values

Comments
Post Details
Added on Dec 26 2024
0 comments
21 views