message's in find button [message #603405] |
Mon, 16 December 2013 00:39 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/a59247482a11edb9544247f102223e8d?s=64&d=mm&r=g) |
mist598
Messages: 1195 Registered: February 2013 Location: Hyderabad
|
Senior Member |
|
|
Hi all,
I wrote to display message's in the find button
begin
IF :HOPE_FORECAST_CONTROL.sales_channel IS NOT NULL THEN
finalstr := finalstr || 'AND SALES_CHANNEL =' || ( ':HOPE_FORECAST_CONTROL.SALES_CHANNEL' );
Go_block('HOPE_FORECAST_DATA');
dfinalstr := Get_block_property('HOPE_FORECAST_DATA', default_where);
Set_block_property('HOPE_FORECAST_DATA', default_where, finalstr);
Execute_query();
ELSE
[color=red]fnd_message.Set_string('Please Select Any One Of The Item');
fnd_message.show; [/color]
END IF;
end;
When i select without lov and click on the find button show the above message , but here when i select another (fiscal_year) click on the find button it shows 'Please Select Any One Of The Item' messages i don't need this message when i select the lov . What is the problem of the above code please suggest me.
Thank you
|
|
|
|
|
|
|