Question:
Hi,
I have created a web template for a query containing exceptions. When Iexecute in the browzer, I get the exceptions with active or inactive state. However, I also want to see the values for the exceptions shown in the browzer to enable the users to change as they like. I will appreciate your help.
Thanks.
BWN
Answer:
You could create an exception variable for the user to enter the value to set the exception to, if that is what you are trying to do.
Answer:
I created an exception but I want to display that by default. I mean, I want to see the exception to the left of activate icon. I do not want to use the display every time. I need help on this.
Thanks.
BWN
Answer:
If you are using web query designer, embed this at the end of your HTML. It will create a legend of your exception conditions. You may need to add or delete depending on how many breaks you have in your exception handling.
<TABLE cellSpacing=1 cellPadding=1 width="100%" border=0>
<TBODY>
<TR>
<td class "SAPBEXBorderLessFlexBoxTtl">Legend:
</td>
</TR>
</TBODY>
</TABLE>
<TABLE cellSpacing=1 cellPadding=1 width="75%" border=1>
<FONT face="Arial Black" color=black <>
<TBODY>
<TR>
<td title=" Good 1" nowrap class="SAPBEXexcgood1">
<A class=SAPBEXexcgood1 title="Context Menu for good 1" >
</A>
</td>
<TD vAlign=top>
<font face=ARIAL,SANS-SERIF color=#000000 size=-2>
200% and over
</font>
</TD>
</TR>
<TR>
<td title=" Good 3" nowrap class="SAPBEXexcgood3">
<A class=SAPBEXexcgood3 title="Context Menu for good 3" >
</A>
</td>
<TD vAlign=top>
<font face=ARIAL,SANS-SERIF color=#000000 size=-2>
100% to 199%
</font>
</TD>
</TR>
<TR>
<td title=" Critical 4" nowrap class="SAPBEXexcCritical4">
<A class=SAPBEXexcCritical4 title="Context Menu for Critical 4">
</A>
</td>
<TD vAlign=top>
<font face=ARIAL,SANS-SERIF color=#000000 size=-2>
75% to 99%
</font>
</TD>
</TR>
<TR>
<td title=" Critical 5" nowrap class="SAPBEXexcCritical5">
<A class=SAPBEXexcCritical5 title="Context Menu for Critic 5" >
</A>
</td>
<TD vAlign=top>
<font face=ARIAL,SANS-SERIF color=#000000 size=-2>
50% to 74%
</font>
</TD>
</TR>
<TR>
<td title=" Bad 7" nowrap class="SAPBEXexcBad7">
<A class=SAPBEXexcBad7 title="Context Menu for Bad 7">
</A>
</td>
<TD vAlign=top>
<font face=ARIAL,SANS-SERIF color=#000000 size=-2>
1% to 49%
</font>
</TD>
</TR>
<TR>
<td title=" Critical 9" nowrap class="SAPBEXexcBad9">
<A class=SAPBEXexcBad9 title="Context Menu for Bad 9" >
</A>
</td>
<TD vAlign=top>
<font face=ARIAL,SANS-SERIF color=#000000 size=-2>
0%
</font>
</TD>
</TR>
</TABLE>
</p>
</TD>
</TR>
</TBODY>
</TABLE>
</TD>