pre-form [message #281563] |
Sun, 18 November 2007 06:55 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
roni_a180
Messages: 45 Registered: October 2007
|
Member |
|
|
hi
i want to create a dynamic combo box. the following code working in sql statement. but not working in forms level
select map_userid,map_userid from SECU_VERIFY_MAPPEDUSER where map_verify_eventid =0125 and MAP_USER_BRID = '||v_branch|| ' and setupuserid = '||v_user);
v_branch in global parameter and v_user is global parameter
but the following part is working
select map_userid,map_userid from SECU_VERIFY_MAPPEDUSER where map_verify_eventid =0125 and MAP_USER_BRID = '||v_branch);
can u help me anybody
|
|
|
Re: pre-form [message #281564 is a reply to message #281563] |
Sun, 18 November 2007 07:03 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
|
Try this
select map_userid,map_userid from SECU_VERIFY_MAPPEDUSER where map_verify_eventid =0125 and MAP_USER_BRID = '||''''||v_branch||''''||' and setupuserid = '||''''||v_user||'''';
|
|
|