Hello,
I have a procedure within an Oracle package that returns a type which matches the rowtype of a table which I have an entity for:
TYPE user_preference_rec_type is table of User_Preference%rowtype;
PROCEDURE GetUserPreference ( p_UserID USERS.Login%TYPE , p_Pref_Name PIDI_USER_PREFERENCE.PREFERENCE_NAME%TYPE, p_recordset OUT user_preference_rec_type );
Now, since the User_Preference table is an entity in my model, I'd like to be able to project the output onto that entity.
But in the designer, when I try to refresh from the database, even though I check off that SP, it won't come into the Catalog explorer and I don't see any reference to it within the log.
Once I have the data in my entity, I'd like to be able to modify it and save changes back to the database.
Thanks,
Ronnie