Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Multiple validations in dynamic action
suppose your item is p1_item1, p1_item2 validation-- PL/SQL Function Body Returning Error Text begin if :p1_item1 is null and :p1_item2 is null then return 'both item should not empty'; elsif :p1_item1 is null and :p1_item2 is not null then return 'p1_item1 should not empty'; elsif :p1_item2 is nullRead more
suppose your item is p1_item1, p1_item2
validation– PL/SQL Function Body Returning Error Text
begin
See lessif :p1_item1 is null and :p1_item2 is null then
return ‘both item should not empty’;
elsif :p1_item1 is null and :p1_item2 is not null then
return ‘p1_item1 should not empty’;
elsif :p1_item2 is null and :p1_item1 is not null then
return ‘p1_item2 should not empty’;
end if;
end;
—replace error message as your requirement
Always Execute===> yes
Bi Publisher Report: Single query, Multiple Layouts
@Vinish Please Help me.
@Vinish Please Help me.
See lessHow to make filed as Read only through java script
Thanks, It's working. Can we do the same for sub Region, for example, i have to change caption of Static Conent but no luck. can you please suggest some idea.
Thanks,
It’s working.
Can we do the same for sub Region, for example, i have to change caption of Static Conent but no luck.
can you please suggest some idea.
See lessHow to highlight row based on condition using Classic Report
Hi pavlos, are you using plugging for nested report ?
Hi pavlos,
are you using plugging for nested report ?
How to make filed as Read only through java script
keep the following css property at the "advanced" section of the item Custom Attributes==> style="pointer-events: none;"
keep the following css property
See lessat the “advanced” section of the item
Custom Attributes==> style=”pointer-events: none;”
Bi Publisher Report: Single query, Multiple Layouts
APEX_UTIL.GET_PRINT_DOCUMENT ( p_report_data IN CLOB, p_report_layout IN CLOB, p_report_layout_type IN VARCHAR2 default 'xsl-fo', p_document_format IN VARCHAR2 default 'pdf', p_print_server IN VARCHAR2 default NULL) RETURN BLOB; Try it.
Show value from database link on oracle apex 20
Hi Vinish, I find a way to solve my problem on Apex. On DB, I create view by <code> materialized view refresh force on demand start with </code> And when I run on select list of page item, it shows me value.
Hi Vinish, I find a way to solve my problem on Apex.
On DB, I create view by
<code>
materialized view refresh force on demand start with
</code>
And when I run on select list of page item, it shows me value.
See lessHow to highlight row based on condition using Classic Report
Thanks a lot! It works for parent region, but doesn't work for nested child region. I would like to disable hover, background color is changed to default when mouse is over highlighted row
Thanks a lot!
It works for parent region, but doesn’t work for nested child region.
I would like to disable hover, background color is changed to default when mouse is over highlighted row
See lessHow to highlight row based on condition using Classic Report
step -1 give class name for your report like-- emp at report region , appearance section "CSS Classes" => emp step -2 create a dynamic action at page load action == execute javascript code like-- //-- replace your conditional column with "DEPTNO", AND ALSO REPLACE TEXT =='10' WITH YOUR CONTENT $(Read more
step -1
give class name for your report like– emp
at report region , appearance section “CSS Classes” => emp
step -2
See lesscreate a dynamic action at page load
action == execute javascript code
like–
//– replace your conditional column with “DEPTNO”, AND ALSO REPLACE TEXT ==’10’ WITH YOUR CONTENT
$(‘.emp [headers=DEPTNO]’).each(function(){
console.log($(this).text());
var text=$(this).text();
if (text == ’10’){
$(this).closest(“tr”).children().css({“background-color”:”red”});
}
});
Failure to expand APEX tree after refresh
I have rewritten my page and still get the same result. This is the same behaviour on Edge, Firefox, and Chrome. On IE, I don't know since I can't even log in to the APEX site on that browser. My antivirus software is Norton 360. Would this have an effect?
I have rewritten my page and still get the same result. This is the same behaviour on Edge, Firefox, and Chrome. On IE, I don’t know since I can’t even log in to the APEX site on that browser.
My antivirus software is Norton 360. Would this have an effect?
See less