Jdeveloper 11.1.2.0.0 Aduit rules problem.

Hi All,
I am using JDeveloper 11.1.2.0.0. I have created some custom audit rules and its working fine .But i cant override the warning or error messages. I have follwoed by the following steps.
Tools -->Preferences -->Audit -->Profile -->Rule -- > Java SE --> Java -->Names --> UnConventional Parameter Name.
Convetion : Alternate
Pattern : [\<p].*
Severity : Error
Style : Parameter
This expression [\<p].* to validate the parameters are start with 'p' .
I applied the above rule into the below code.
public class Test {
        public static void funct1 () {
            System.out.println ("Inside funct1");
        public static void main (String[] args) {
            int val;
            System.out.println ("Inside main");
            funct1();
            System.out.println ("About to call funct2");
            val = funct2(8);
            System.out.println ("funct2 returned a value of " + val);
            System.out.println ("About to call funct2 again");
            val = funct2(-3);
            System.out.println ("funct2 returned a value of " + val);
        public static int funct2 (int val1) {
            System.out.println ("Inside funct2 with param " + val1);
            return val1 * 2;
}It's showing the following result.
Parameter name args should match pattern "[\<p].*"
Now i want to change this message like thi "Parameters start with 'p'" .
How can i change this message ?
Please any one give some idea..
Thanks,
Vass Lee

I guess you can't do this. Looks like the messages are not customizable.
Timo

Similar Messages

  • Update rule problem - validation of "sales/cost w/ tax" keyfigure

    BW Gurus,
        Hi to all, i have this update rule problem at "sales/cost w/tax" keyfigure here is the senario.
        Our Goverment mandatory implemented an additional 2% tax from the original 10%, this will affect our report on sales, and also the BW "sales/cost w/ tax" key figure.
        My question is How can I validated the effectivity of the new tax? i have tax 10% from previous sales and 12% on the current sales. What "date field" can I use to validated this. I am using /BIC/CS2LIS_13_VDITM stucture to get the data i need.
    Thanks in Advance
    Joven

    Hi,
    Till to day how are extracting the data for tax(original 10%) is it available directly in 2LIS_13_VDITM ?
    Usually all taxes( condition types) can be extracted by the data source 2LIS_13_VDKON.Discuss with SD team, they may give the condition type used for different taxes.
    With rgds,
    Anil Kumar sharma .P

  • Mail rules problem

    Hi everyone
    I'm using a MacBook Pro 10.7.4, I'm having rules problems in Mail.
    I run a Graphic design and photography company, I have folders set up for 20-30 clients, when emails come in from a certain client they go straight to that client folder.
    Equally, I have a 'Personal' folder, emails from friends should go to there.
    Recently though for some reason ALL of my sent items have started to flood into a client folder, a lot of my client emails are going to a general folder and personal emails are not going to the right folders.
    Does anyone have a second to advise what might be causing this, or even better - a potential fix for this problem, it's making me a little crazy and adding to my workload daily.
    Hope to hear from you.
    best regards
    Alex

    hello. When you say the sent items flood a client folder, do you mean, duplicates, or the actual sent mail goes there?
    I have been trying to look into why periodically, things I send go into drafts folder.
    Sounds like an issue that needs updating.. maybe we should "report bug to apple" maybe..

  • Business Rule - Problem with Validation Execution

    I'm running into an issue where conditional Validation Execution is not working as expected. The background is that i have an Entity Object containing a few string attributes on which i must apply Regular Expression business rules to make sure only characters in a certain range is set. I am using a Not Matches regex on the following:
    .*[^\u0020-\uD7FF].*1 attribute is required, 2 are optional. The problem I am experiencing is with the 2 optional attributes.
    Since these are optional, I intended to use the Validation Execution tab so that the Rule is executed only when the attribute is not null. For example, here is what i tried for an attribute named Comments:
    Comments != nullNo validation occurred when I entered an invalid value, such as a string containing line breaks, in a corresponding ADF Faces page. For the heck of it, i experimented by setting the validation execution to the opposite of what i should be - in other words, trigger validation if the attribute is null, such as:
    Comments == nullWith this, the validation occurred as expected.
    Is this a bug, or am I misunderstanding something? I'm not particularly good with RegEx - is it possible this is due to some nuance of the expression?
    Version: JDeveloper 11.1.1.6.
    Thanks-
    -george

    i'm not sure if this is the correct answer or a workaround to the issue i had asked about. Given that caveat, if anyone else ever runs across this thread, what i found worked was to not use the attribute name in the Validation Execution tab's expression, but instead to just newValue as in the following:
    newValue != null

  • Custom Rule - Problem in passin values From Rule Container to WF Container?

    Hi Guys,
    I am having hard time passing values back from my custom rule. I have created a custom rule to determine the agents in PFAC which takes in the Person number as import element of container. It determines the Manager as agent and I am passing Managers Person Number back to workflow. If he dont approve the Request then it will be passed to his boss. In this case I will pass this imported Mangers Person number back to rule so that his boss will be determined as agent. I  have created ZRULE function module. I am passing value back from Rule container to Workflow Container using following code.
    swc_set_element ac_container 'SUPERPERNR'  lf_super_pernr.
    I have created a element SUPERPERNR on rule container and workflow container as well .The problem is in the Rule container I am not able to create SUPERPERNR as export parameter. The tick mark is grayed out and there is no option for setting it as export.
    My question is do I have create a Export element on Rule container or Not? If i just write the code
    ( swc_set_element ac_container 'SUPERPERNR'  lf_super_pernr ) will it set the value in WF container? In my case it is not setting. I have to bind the values from rule container to WF container and if My rule container element is not allowing me to click the tick mark as export how can i pass value of of rule container back to WF Container?
    Please help me guys.
    Thanks,
    Manish.

    Hi Manish,
         Same scenario I have developed in my system. This all steps I did in my system.
    1) Created a Z function module which takes import parameter (Parameter name = 'EMP') in the
        format 'US100123'.
    2) This in turn fetches back the supevisor or boss as an export parameter (Parameter name = 'BOSS') in
         the format 'US100245'.
    3) This function module is attached to a BUS object(SWO1).
    4) While attaching this function module to BUS object you need not do any manual coding it is done
        automatically.
    5) Implement, release and generate this BUS object.
    6) Create a new variable in your workflow (Parameter name = 'ZSUPERVISOR') for storing the value
        which is returned by the Z method.
    7) Create a new task.
    8) Put in your BUS object name, then your Z method name, select background processing checkbox.
    9) Press save, it will ask for transfer of missing elements, select yes.
    10) Then you will see a green button below your Z method name click on it.
    11) Top portion contains your Z method variables, below to it you have the import parameter window in
          this window you should have &EMP& -> &EMP&., below to import parameter window you have
          export parameter window in this window you should have &BOSS& <- &BOSS&. (This is method
          binding).
    12) Now click on enter button then click on back button it will generate the task binding automatically
         just press yes.
    13) Now click on binding exist button.
    14) Here you have the Workflow container variables as well as the system container variables.
    15) In the import parameter window left portion is for your workflow variables and right portion is for your 
          method variables. In my case i had sent workflow initiator and fetched his supervisor. The Import
          parameter binding was &WF_INTIATOR& -> &EMP&. and the export parameter binding part was
          &ZSUPERVISOR& <- &BOSS&.
    16) Save the task and run the workflow.
    Regards.
    Vaibhav Patil.

  • JDeveloper 10.1.3.2  , Portlet + Liferay Portal problem with JSR168 portlet

    When i create a portlet using JDeveloper 10.1.3.2 or 9.0 + portlet extension when i deploy it to Liferay Portal all versions and when i add the portlet somewhere the portal console prints me infinitive stacktrace... and the portlet never viewed
    i think the problem is somewhere in the dispatching dont know ..
    any ideas ?

    Hi,
    if you connet to OTN via a proy server, make sure this is configured in the JDeveloper preferences for browser and proxy settings. The username and password is your OTN account
    Frank

  • Release Rules Problem

    Hi All,
    While Settin Up the OM,there existing a problem in Release Rules:-
    in tab Inventory in (Define Release rules form) when i go to select the warehouse ,i can not find any organizations defined . it appears empty.
    thanks.

    are you on 11.5.9 or 11.5.10? This issue has been reported in 11.5.9 but I belived it is resolved in 11.5.10. Please check patch 4688704 for more details.
    thanks
    Vikrant

  • Update rule problem - while data load

    Hi friends,
    I got the following error while doing initialisation for 2lis_02_sgr.
    "ABORT was set in the customer routine 9998
    Error 1 in the update "
    In the forum i searched for this error and this error is something related to the start routine in my update rule.
    But i dont know whats wrong with my routine.
    Im giving the start routine below,pls go through this and give me your suggestions..
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    <i>TABLES /bic/AZMM_PUR100 .
    DATA:  T_PUR1 LIKE /bic/AZMM_PUR100 OCCURS 0 WITH HEADER LINE.</i>
    $$ end of global - insert your declaration only before this line   -
    The follow definition is new in the BW3.x
    TYPES:
      BEGIN OF DATA_PACKAGE_STRUCTURE.
         INCLUDE STRUCTURE /BIC/CS2LIS_02_SGR.
    TYPES:
         RECNO   LIKE sy-tabix,
      END OF DATA_PACKAGE_STRUCTURE.
    DATA:
      DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
           WITH HEADER LINE
           WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    FORM startup
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
               MONITOR_RECNO STRUCTURE RSMONITORS " monitoring with record n
               DATA_PACKAGE STRUCTURE DATA_PACKAGE
      USING    RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
    if abort is not equal zero, the update process will be canceled
      CLEAR: T_PUR1[] ,
             T_PUR1,
             ABORT.
      SELECT * INTO TABLE T_PUR1 FROM /bic/AZMM_PUR100.
      IF SY-SUBRC EQ 0.
        SORT T_PUR1 BY DOC_DATE
                       DOC_ITEM
                        DOC_NUM.
      ELSE.
        MONITOR-msgid = sy-msgid.
        MONITOR-msgty = sy-msgty.
        MONITOR-msgno = sy-msgno.
        MONITOR-msgv1 = sy-msgv1.
        MONITOR-msgv2 = sy-msgv2.
        MONITOR-msgv3 = sy-msgv3.
        MONITOR-msgv4 = sy-msgv4.
        append MONITOR.
      if abort is not equal zero, the update process will be canceled
             ABORT = 1.
      ENDIF.
       ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.
    Thanks & Regards
    Ragu

    thanks gimmo and a.h.p,
    i have done the correction as you said,pls verify that.
    And also kindly explain me what is the reason for this start routine,what exactly it does???
    CLEAR: T_PUR1[] ,
             T_PUR1,
             ABORT.
      SELECT * INTO TABLE T_PUR1 FROM /bic/AZMM_PUR100.
      IF SY-SUBRC EQ 0.
        SORT T_PUR1 BY DOC_DATE
                       DOC_ITEM
                        DOC_NUM.
    abort = 0.    (  added  abort = 0 as per your suggestion )
      ELSE.
        MONITOR-msgid = sy-msgid.
        MONITOR-msgty = sy-msgty.
        MONITOR-msgno = sy-msgno.
        MONITOR-msgv1 = sy-msgv1.
        MONITOR-msgv2 = sy-msgv2.
        MONITOR-msgv3 = sy-msgv3.
        MONITOR-msgv4 = sy-msgv4.
        append MONITOR.
      if abort is not equal zero, the update process will be canceled
             ABORT = 1.
    exit. ( added exit as per your suggestion )
      ENDIF.
       ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.
    Thanks & Regards
    ragu

  • DW CS3: Template & CSS Rules problems

    Dreamweaver CS3 Templates and CSS Rules.
    I've built a basic html page with a header, navigation links and main content area, then saved this as a template with the content area as the edit region.
    When I create new html pages from this template I want to insert Divs in the edit region for each new page, which I can successfully do, but for some reason Dreamweaver is not allowing me to create new CSS Rules for each new Div? So I'm not able to control position, text layout, colours etc for the new content. So my question is how do I do this?
    I got around this with the current website by creating the template with virtually all of the content for the entire website firstly, then deleting as necessary for each page, which I know is the wrong way to build html site pages from a template!
    I wonder if someone could please point me in the right direction to get me back on track? Any pointers would be very much appreciated.
    Thanks in advance.

    Yes, there is a meta tag at the start of the CSS rules. Here's a copy and paste of the code generated in DW CS3. Template was created from a html doc...
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
        background-color: #FFFFFF;
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    body,td,th {
        font-family: Arial, Helvetica, Helvetica Neue, Verdana;
        font-size: medium;
    #container {
        background-color: #E6E6E6;
        width: 900px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    #banner_image {
        padding-top: 5px;
        padding-bottom: 5px;
        background-color: #FFFFFF;
        margin-right: auto;
        margin-left: auto;
    #navigation {
        background-color: #E6E6E6;
        text-align: center;
        padding: 10px;
    #navigation ul {
        margin: 0px;
        padding: 0px;
    #navigation li {
        list-style-type: none;
        display: inline;
        margin-right: 40px;
        margin-left: 40px;
    #navigation a {
        color: #333333;
        font-size: 90%;
        text-decoration: none;
    #navigation a:hover {
        color: #FF3300;
        font-size: 90%;
        text-decoration: none;
    #spacer {
        background-color: #E6E6E6;
        text-align: center;
        padding: 10px;
        margin-top: 10px;
        margin-right: 25px;
        margin-bottom: 10px;
        margin-left: 25px;
        font-size: small;
    #content_area {
        background-color: #666666;
        margin-top: 10px;
        margin-right: 25px;
        margin-bottom: 10px;
        margin-left: 25px;
        padding-top: 20px;
        padding-right: 10px;
        padding-bottom: 20px;
        padding-left: 10px;
    #copyright_footer {
        background-color: #FFFFFF;
        text-align: center;
        padding: 10px;
        font-size: small;
        margin-top: 10px;
        margin-right: 0px;
        margin-bottom: 10px;
        margin-left: 0px;
        clear: both;
    #navigation_lower {
        background-color: #E6E6E6;
        text-align: center;
        padding: 10px;
    #navigation_lower ul {
        margin: 0px;
        padding: 0px;
    #navigation_lower li {
        list-style-type: none;
        display: inline;
        margin-right: 40px;
        margin-left: 40px;
    #navigation_lower a {
        color: #333333;
        font-size: 90%;
        text-decoration: none;
    #navigation_lower a:hover {
        color: #FF3300;
        font-size: 90%;
        text-decoration: none;
    -->
    </style>
    </head>

  • Site Matching Rules -- Problem   (OAS 10.1.2)

    I hit the URL: http://fvmwt1.cellexchange.com:8080/fvmadmin/+wcdebug
    WebCache matches:
    Request matches configured site fvmwt1.cellexchange.com:80.
    How can port 80 possibly match port 8080? I don't get it !!
    The trace is:
    Web Cache Debug Info: N;ecid=9449308294433,0
    Event Log from Cache: fvmwt1.cellexchange.com-WebCache
    [11/Sep/2006:14:27:15 -0400] [req-info] [ecid: 9449308294433,0] [client: 10.0.1.209] [host: fvmwt1.cellexchange.com:8080] [url: /fvmadmin/]
    [11/Sep/2006:14:27:15 -0400] [trace 11331] [ecid: 9449308294433,0] Request matches configured site fvmwt1.cellexchange.com:80.
    [11/Sep/2006:14:27:15 -0400] [trace 11304] [ecid: 9449308294433,0] Cache miss request.
    [11/Sep/2006:14:27:15 -0400] [trace 11224] [ecid: 9449308294433,0] Site fvmwt1.cellexchange.com:80 matches site-to-server mapping fvmwt1.cellexchange.com:80.
    [11/Sep/2006:14:27:15 -0400] [trace 11227] [ecid: 9449308294433,0] Request is routed to origin server fvmwt1.cellexchange.com:7778 using load balancing.
    [11/Sep/2006:14:27:15 -0400] [trace 11408] [ecid: 9449308294433,0] URL does not match any caching rule.
    [11/Sep/2006:14:27:15 -0400] [trace 11400] [ecid: 9449308294433,0] non-200 OK HTTP status code response code of 404
    Not Found
    The requested URL /fvmadmin/ was not found on this server.
    My webcache.xml is:
    <?xml version="1.0" encoding='ISO-8859-1'?>
    <CALYPSO xmlns="http://www.oracle.com/iAS/EMComponent/webcache" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oracle.com/iAS/EMComponent/webcache dtds/webcache.xsd">
    <VERSION DTD_VERSION="10.1.2.0.0"/>
    <GENERAL>
    <CLUSTER NAME="FvmWebCacheCluster" QUORUM="1" PINGURL="/_oracle_http_server_webcache_static_.html" PINGINTERVAL="10" PINGRETRY="5" PROPAGATE_INVALIDATION="YES"/>
    <SECURITY SSLSESSIONTIMEOUT="3600">
    <USER TYPE="INVALIDATION" PASSWORDHASH="BFFFE8BB82EE917ECF0C6054EF3047A83EC617DD" Key="TYPE PASSWORDHASH"/>
    <USER TYPE="MONITORING" PASSWORDHASH="BFFFE8BB82EE917ECF0C6054EF3047A83EC617DD" Key="TYPE PASSWORDHASH"/>
    <SECURESUBNET ALLOW="ALL"/>
    <DEBUGINFO HEADER="YES" EVENTLOG="YES" HTMLCOMMENT="NO" SWITCHSTRING="+wcdebug"/>
    <HTTPREQUEST MAXTOTALHEADERSIZE="819000" MAXSINGLEHEADERSIZE="8152"/>
    </SECURITY>
    <COMPRESSION LEVEL="3"/>
    <EVENTLOG FILENAME="event_log" TIMESTYLE="LOCAL" ECID="YES" Key="FILENAME">
    <ROLLOVER FREQUENCY="WEEKLY" TIMESTYLE="LOCAL" Key="NAME">
    <SCHEDULE TIME="00000" Key="TIME"/>
    </ROLLOVER>
    </EVENTLOG>
    <!-- to mimic that of portal config -->
    <INVALIDATIONINDEX>
    <INDEXPARAM VALUE="_provider_id" Key="VALUE"/>
    <INDEXPARAM VALUE="_portlet_id" Key="VALUE"/>
    <INDEXPARAM VALUE="_reference_path" Key="VALUE"/>
    </INVALIDATIONINDEX>
    <WATCHDOG ENABLE="YES" PINGENABLED="YES" PINGINTERVAL="15" PINGTIMEOUT="30" PINGURL="/_oracle_http_server_webcache_static_.html" PINGRETRY="3"/>
    <GLOBALCACHINGRULES TREATPARAMETERSASSET="YES" SORTPARAMETERSBYNAMEONLY="YES" COOKIESESSIONTRACKING="NO" GLOBALSESSIONTRACKING="NO">
    <SEARCHKEYOPTIONS ENABLE="YES" MAXSEARCHKEYSPERDOC="20"/>
    <ERRORPAGES>
    <ERRORPAGE TYPE="NETWORK" URI="/network_error.html" Key="TYPE URI"/>
    <ERRORPAGE TYPE="BACKLOGREACHED" URI="/busy_error.html" Key="TYPE URI"/>
    <ERRORPAGE TYPE="PARTIALPAGE" URI="/esi_fragment_error.txt" Key="TYPE URI"/>
    <ERRORPAGE TYPE="PORTALNETWORK" URI="/portal_network_error.xml" Key="TYPE URI"/>
    </ERRORPAGES>
    <SESSIONS>
    <SESSIONDEF NAME="JSESSIONID" COOKIENAME="JSESSIONID" URLPARAM="jsessionid" COMMENT="OracleAS 10g JServSessionIdroot in Jserv.OSE" DEFAULTVALUE="default" Key="NAME"/>
    <ORIGINSERVERBINDING SESSIONNAME="JSESSIONID" SBMECHANISM="SBST" Key="SESSIONNAME"/>
    </SESSIONS>
    <EXPIRATION>
    <EXPIRATIONRULE NAME="EXPID.0" CLOCKSTART="NONE" EXPIRESECS="0" MAXTIMEINCACHEAFTER="0" VALIDITYAFTER="10" Key="NAME"/>
    <EXPIRATIONRULE NAME="EXPID.1" CLOCKSTART="CACHE_ENTRY" EXPIRESECS="300" MAXTIMEINCACHEAFTER="0" VALIDITYAFTER="10" Key="NAME"/>
    <EXPIRATIONRULE NAME="EXPID.2" CLOCKSTART="CACHE_ENTRY" EXPIRESECS="3600" MAXTIMEINCACHEAFTER="360" VALIDITYAFTER="10" Key="NAME"/>
    </EXPIRATION>
    <CACHEABILITY>
    <CACHEABILITYRULE NAME="cache image" CACHE="YES" COMMENT="This rule caches all .gif, .png, .bmp, .jpg and .jpeg files. These file formats are sufficiently compressed and should *not* be further compressed by Web Cache." COMPRESS="NO" ENABLED="YES" COMPRESSFORNETSCAPE="YES" CANOUTPUTESI="YES" SSLONLY="NO" Key="NAME">
    <SELECTORS>
    <URLEXP EXP="\.(gif|jpe?g|png|bmp)$" TYPE="REGEX" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="NO" POST="NO"/>
    </SELECTORS>
    <EXPIRATIONREF EXPREF="EXPID.2"/>
    </CACHEABILITYRULE>
    <CACHEABILITYRULE NAME="cache compress css" CACHE="YES" COMMENT="This rule caches all .css files. Netscape has known issues with compressed cascading style sheet files." COMPRESS="YES" COMPRESSFORNETSCAPE="NO" ENABLED="YES" CANOUTPUTESI="YES" SSLONLY="NO" Key="NAME">
    <SELECTORS>
    <URLEXP EXP=".css" TYPE="FILEEXT" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="NO" POST="NO"/>
    </SELECTORS>
    <EXPIRATIONREF EXPREF="EXPID.1"/>
    </CACHEABILITYRULE>
    <CACHEABILITYRULE NAME="cache uix-jdev js" CACHE="YES" COMMENT="This rule caches all UIX-JDev .js files without compression." COMPRESS="NO" COMPRESSFORNETSCAPE="NO" ENABLED="YES" CANOUTPUTESI="YES" SSLONLY="NO" Key="NAME">
    <SELECTORS>
    <URLEXP EXP="/jsLibs/.*\.js$" TYPE="REGEX" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="NO" POST="NO"/>
    </SELECTORS>
    <EXPIRATIONREF EXPREF="EXPID.1"/>
    </CACHEABILITYRULE>
    <CACHEABILITYRULE NAME="cache compress js" CACHE="YES" COMMENT="This rule caches all .js files. Netscape has known issues with compressed javascript files. This is not an issue for HTML with embedded javascript." COMPRESS="YES" COMPRESSFORNETSCAPE="NO" ENABLED="YES" CANOUTPUTESI="YES" SSLONLY="NO" Key="NAME">
    <SELECTORS>
    <URLEXP EXP=".js" TYPE="FILEEXT" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="NO" POST="NO"/>
    </SELECTORS>
    <EXPIRATIONREF EXPREF="EXPID.1"/>
    </CACHEABILITYRULE>
    <CACHEABILITYRULE NAME="cache compress html" CACHE="YES" COMMENT="This rule caches all .htm and .html files. This file format is ideal for compression by Web Cache." COMPRESS="YES" ENABLED="YES" COMPRESSFORNETSCAPE="YES" CANOUTPUTESI="YES" SSLONLY="NO" Key="NAME">
    <SELECTORS>
    <URLEXP EXP="\.html?$" TYPE="REGEX" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="NO" POST="NO"/>
    </SELECTORS>
    <EXPIRATIONREF EXPREF="EXPID.1"/>
    </CACHEABILITYRULE>
    <CACHEABILITYRULE NAME="cache swf" CACHE="YES" COMMENT="This rule caches all .swf files. This file format is sufficiently compressed and should *not* be further compressed by Web Cache." COMPRESS="NO" ENABLED="YES" COMPRESSFORNETSCAPE="YES" CANOUTPUTESI="YES" SSLONLY="NO" Key="NAME">
    <SELECTORS>
    <URLEXP EXP=".swf" TYPE="FILEEXT" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="NO" POST="NO"/>
    </SELECTORS>
    <EXPIRATIONREF EXPREF="EXPID.2"/>
    </CACHEABILITYRULE>
    <CACHEABILITYRULE NAME="cache pdf" CANOUTPUTESI="YES" COMMENT="" COMPRESS="NO" COMPRESSFORNETSCAPE="NO" ENABLED="YES" CACHE="YES" SSLONLY="NO" Key="NAME">
    <SELECTORS>
    <URLEXP EXP=".pdf" TYPE="REGEX" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="NO" POST="NO"/>
    </SELECTORS>
    <EXPIRATIONREF EXPREF="EXPID.2"/>
    </CACHEABILITYRULE>
    <CACHEABILITYRULE NAME="cache jsp" CANOUTPUTESI="YES" COMMENT="" ENABLED="YES" CACHE="NO" SSLONLY="NO" Key="NAME" COMPRESS="YES" COMPRESSFORNETSCAPE="YES">
    <SELECTORS>
    <URLEXP EXP="\.jsp$" TYPE="REGEX" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="YES" POST="NO"/>
    </SELECTORS>
    </CACHEABILITYRULE>
    <CACHEABILITYRULE NAME="cache actions" CANOUTPUTESI="YES" COMMENT="" ENABLED="YES" CACHE="NO" SSLONLY="NO" Key="NAME" COMPRESS="YES" COMPRESSFORNETSCAPE="YES">
    <SELECTORS>
    <URLEXP EXP="\.do$" TYPE="REGEX" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="YES" POST="NO"/>
    </SELECTORS>
    </CACHEABILITYRULE>
    </CACHEABILITY>
    <MAXCACHEABLECONTENTLENGTH MAXCONTENTLENGTH="100" Key="MAXCONTENTLENGTH"/>
    </GLOBALCACHINGRULES>
    <ACCESSLOGSTYLES>
    <XLFFORMAT NAME="CLF" SEPARATOR="SPACE" WITHDIRECTIVE="NO" Key="NAME">
    <XLFFIELD NAME="c-ip" Key="NAME"/>
    <XLFFIELD NAME="x-log-id" Key="NAME"/>
    <XLFFIELD NAME="x-auth-id" Key="NAME"/>
    <XLFFIELD NAME="x-clf-date" Key="NAME"/>
    <XLFFIELD NAME="x-req-line" Key="NAME"/>
    <XLFFIELD NAME="sc-status" Key="NAME"/>
    <XLFFIELD NAME="bytes" Key="NAME"/>
    </XLFFORMAT>
    <XLFFORMAT NAME="ECLF" SEPARATOR="SPACE" WITHDIRECTIVE="NO" Key="NAME">
    <XLFFIELD NAME="c-ip" Key="NAME"/>
    <XLFFIELD NAME="x-log-id" Key="NAME"/>
    <XLFFIELD NAME="x-auth-id" Key="NAME"/>
    <XLFFIELD NAME="x-clf-date" Key="NAME"/>
    <XLFFIELD NAME="x-req-line" Key="NAME"/>
    <XLFFIELD NAME="sc-status" Key="NAME"/>
    <XLFFIELD NAME="bytes" Key="NAME"/>
    <XLFFIELD NAME="x-ecid" Key="NAME"/>
    </XLFFORMAT>
    <XLFFORMAT NAME="combined" SEPARATOR="SPACE" WITHDIRECTIVE="NO" Key="NAME">
    <XLFFIELD NAME="c-ip" Key="NAME"/>
    <XLFFIELD NAME="x-log-id" Key="NAME"/>
    <XLFFIELD NAME="x-auth-id" Key="NAME"/>
    <XLFFIELD NAME="x-clf-date" Key="NAME"/>
    <XLFFIELD NAME="x-req-line" Key="NAME"/>
    <XLFFIELD NAME="sc-status" Key="NAME"/>
    <XLFFIELD NAME="bytes" Key="NAME"/>
    <XLFFIELD NAME="cs(Referer)" Key="NAME"/>
    <XLFFIELD NAME="cs(User-Agent)" Key="NAME"/>
    </XLFFORMAT>
    <XLFFORMAT NAME="ecombined" SEPARATOR="SPACE" WITHDIRECTIVE="NO" Key="NAME">
    <XLFFIELD NAME="c-ip" Key="NAME"/>
    <XLFFIELD NAME="x-log-id" Key="NAME"/>
    <XLFFIELD NAME="x-auth-id" Key="NAME"/>
    <XLFFIELD NAME="x-clf-date" Key="NAME"/>
    <XLFFIELD NAME="x-req-line" Key="NAME"/>
    <XLFFIELD NAME="sc-status" Key="NAME"/>
    <XLFFIELD NAME="bytes" Key="NAME"/>
    <XLFFIELD NAME="cs(Referer)" Key="NAME"/>
    <XLFFIELD NAME="cs(User-Agent)" Key="NAME"/>
    <XLFFIELD NAME="x-ecid" Key="NAME"/>
    </XLFFORMAT>
    <XLFFORMAT NAME="WCLF" SEPARATOR="TAB" WITHDIRECTIVE="YES" Key="NAME">
    <XLFFIELD NAME="x-req-type" Key="NAME"/>
    <XLFFIELD NAME="x-date-start" Key="NAME"/>
    <XLFFIELD NAME="x-time-start" Key="NAME"/>
    <XLFFIELD NAME="c-ip" Key="NAME"/>
    <XLFFIELD NAME="s-ip" Key="NAME"/>
    <XLFFIELD NAME="x-auth-id" Key="NAME"/>
    <XLFFIELD NAME="cs(Host)" Key="NAME"/>
    <XLFFIELD NAME="cs-method" Key="NAME"/>
    <XLFFIELD NAME="cs-uri" Key="NAME"/>
    <XLFFIELD NAME="x-protocol" Key="NAME"/>
    <XLFFIELD NAME="sc-status" Key="NAME"/>
    <XLFFIELD NAME="bytes" Key="NAME"/>
    <XLFFIELD NAME="cs-bytes" Key="NAME"/>
    <XLFFIELD NAME="x-cache" Key="NAME"/>
    <XLFFIELD NAME="time-taken" Key="NAME"/>
    <XLFFIELD NAME="r-time-taken" Key="NAME"/>
    <XLFFIELD NAME="x-time-delay" Key="NAME"/>
    <XLFFIELD NAME="x-os-timeout" Key="NAME"/>
    <XLFFIELD NAME="x-ecid" Key="NAME"/>
    <XLFFIELD NAME="x-cookie(ORACLE_SMP_CHRONOS_ST)" Key="NAME"/>
    <XLFFIELD NAME="x-cookie(ORACLE_SMP_CHRONOS_LT)" Key="NAME"/>
    <XLFFIELD NAME="x-cookie(ORACLE_SMP_CHRONOS_GL)" Key="NAME"/>
    <XLFFIELD NAME="cs(Referer)" Key="NAME"/>
    <XLFFIELD NAME="cs(User-Agent)" Key="NAME"/>
    <XLFFIELD NAME="x-esi-info" Key="NAME"/>
    <XLFFIELD NAME="x-conn-abrt" Key="NAME"/>
    <XLFFIELD NAME="x-glcookie-set" Key="NAME"/>
    <XLFFIELD NAME="sc(Content-Type)" Key="NAME"/>
    </XLFFORMAT>
    <ROLLOVER NAME="never" FREQUENCY="NEVER" TIMESTYLE="LOCAL" Key="NAME"/>
    <ROLLOVER NAME="hourly" FREQUENCY="HOURLY" TIMESTYLE="LOCAL" Key="NAME">
    <SCHEDULE TIME="00" Key="TIME"/>
    </ROLLOVER>
    <ROLLOVER NAME="daily" FREQUENCY="DAILY" TIMESTYLE="LOCAL" Key="NAME">
    <SCHEDULE TIME="0000" Key="TIME"/>
    </ROLLOVER>
    <ROLLOVER NAME="weekly" FREQUENCY="WEEKLY" TIMESTYLE="LOCAL" Key="NAME">
    <SCHEDULE TIME="00000" Key="TIME"/>
    </ROLLOVER>
    </ACCESSLOGSTYLES>
    <ACCESSLOG XLFFORMATNAME="ECLF" TIMESTYLE="LOCAL" ROLLOVERNAME="weekly" FILENAME="access_log" ENABLED="YES" LOGFRAGMENTREQUEST="NO" Key="FILENAME"/>
    <SITE NAME="fvmwt1.cellexchange.com" PORT="80" ISDEFAULT="YES" REQUESTBACKLOGTIMELIMIT="2" SSLONLYPREFIX="" CLIENT_CERT="NO" CHRONOSONPERSITE="YES" Key="NAME PORT URL">
    <SESSIONS>
    <SESSIONDEF NAME="FoundationPersistentSessionID" COOKIENAME="ESFSID" COMMENT="OracleAS 10g Foundation Classes persistent session tracking" DEFAULTVALUE="default" Key="NAME"/>
    <SESSIONDEF NAME="PAsid" URLPARAM="PAsid" COMMENT="OracleAS 10g Wireless session ID" DEFAULTVALUE="default" Key="NAME"/>
    <SESSIONDEF NAME="PAconnxn" URLPARAM="PAconnxn" COMMENT="OracleAS 10g Wireless connection ID" DEFAULTVALUE="default" Key="NAME"/>
    <SESSIONDEF NAME="PAuserid" URLPARAM="PAuserid" COMMENT="OracleAS 10g Wireless user ID" DEFAULTVALUE="default" Key="NAME"/>
    <SESSIONCACHINGRULE SESSIONNAME="PAsid" NAME="sc.0" CACHEWITH="YES" CACHEWITHOUT="NO" WITHOUTCANBEDERIVED="NO" Key="NAME"/>
    <SESSIONCACHINGRULE SESSIONNAME="PAconnxn" NAME="sc.1" CACHEWITH="YES" CACHEWITHOUT="NO" WITHOUTCANBEDERIVED="NO" Key="NAME"/>
    <SESSIONCACHINGRULE SESSIONNAME="PAuserid" NAME="sc.2" CACHEWITH="YES" CACHEWITHOUT="NO" WITHOUTCANBEDERIVED="NO" Key="NAME"/>
    </SESSIONS>
    <CACHEABILITY>
    <CACHEABILITYRULE NAME="cache_wireless_rm" COMMENT="This rule is for OracleAS 10g Wireless server only, if this conflicts with your own application or if you are not running OracleAS 10g Wireless server, this rule can be removed" SSLONLY="NO" COMPRESS="NO" CANOUTPUTESI="YES" COMPRESSFORNETSCAPE="NO" CACHE="YES" ENABLED="YES" Key="NAME">
    <SELECTORS>
    <URLEXP EXP="/ptg/rm" TYPE="REGEX" Key="EXP"/>
    <HTTPMETHODS SIMPLEGET="YES" GETWITHQUERYSTRING="YES" POST="NO"/>
    </SELECTORS>
    <EXPIRATIONREF EXPREF="EXPID.0"/>
    <SESSIONCACHINGREF SCREF="sc.0" Key="SCREF"/>
    <SESSIONCACHINGREF SCREF="sc.1" Key="SCREF"/>
    <SESSIONCACHINGREF SCREF="sc.2" Key="SCREF"/>
    </CACHEABILITYRULE>
    </CACHEABILITY>
    </SITE>
    <SITE NAME="fvmwt1.cellexchange.com" PORT="80" URL="/fvmtestbed/" SSLONLYPREFIX="" CLIENT_CERT="NO" ISDEFAULT="NO" CHRONOSONPERSITE="YES" Key="NAME PORT URL">
    <SESSIONS/>
    <CACHEABILITY/>
    </SITE>
    <SITE NAME="fvmwt1.cellexchange.com" PORT="8080" URL="/fvmadmin/" SSLONLYPREFIX="" CLIENT_CERT="NO" ISDEFAULT="NO" CHRONOSONPERSITE="YES" Key="NAME PORT URL">
    <SESSIONS/>
    <CACHEABILITY/>
    </SITE>
    <SITE NAME="fvmwt1.cellexchange.com" PORT="443" URL="/getemployeesbyemplid/" SSLONLYPREFIX="" CLIENT_CERT="YES" ISDEFAULT="NO" CHRONOSONPERSITE="YES" Key="NAME PORT URL">
    <SESSIONS>
    <ORIGINSERVERBINDING SBMECHANISM="SBCK" Key="SESSIONNAME"/>
    </SESSIONS>
    <CACHEABILITY/>
    </SITE>
    <SITE NAME="fvmwt1.cellexchange.com" PORT="80" URL="/fvm/" SSLONLYPREFIX="" CLIENT_CERT="NO" ISDEFAULT="NO" CHRONOSONPERSITE="YES" Key="NAME PORT URL">
    <SESSIONS/>
    <CACHEABILITY/>
    </SITE>
    <SITE NAME="fvmwt1.cellexchange.com" PORT="8080" SSLONLYPREFIX="" CLIENT_CERT="NO" ISDEFAULT="NO" CHRONOSONPERSITE="YES" Key="NAME PORT URL">
    <SESSIONS/>
    <CACHEABILITY/>
    </SITE>
    <HOST ID="h1" NAME="fvmwt1.cellexchange.com" PORT="7778" LOADLIMIT="50" OSSTATE="ON" PINGURL="/" PINGINTERVAL="10" NUMRETRY="5" ISPROXY="NO" ISPROXYPASSWORDPLAINTEXT="YES" SSLENABLED="NONE" Key="ID"/>
    <HOST NAME="fvmmt1.cellexchange.com" PORT="80" ID="h2" OSSTATE="ON" LOADLIMIT="50" PINGURL="/fvm/images/sp.gif" PINGINTERVAL="10" NUMRETRY="5" ISPROXY="NO" SSLENABLED="NONE" ISPROXYPASSWORDPLAINTEXT="YES" Key="ID"/>
    <HOST NAME="fvmmt2.cellexchange.com" PORT="80" ID="h3" OSSTATE="ON" LOADLIMIT="50" PINGURL="/fvm/images/sp.gif" PINGINTERVAL="10" NUMRETRY="5" ISPROXY="NO" SSLENABLED="NONE" ISPROXYPASSWORDPLAINTEXT="YES" Key="ID"/>
    <HOST NAME="fvmwt1.cellexchange.com" PORT="8180" ID="h4" OSSTATE="ON" LOADLIMIT="50" PINGURL="/fvmadmin/images/sp.gif" PINGINTERVAL="10" NUMRETRY="5" ISPROXY="NO" SSLENABLED="NONE" ISPROXYPASSWORDPLAINTEXT="YES" Key="ID"/>
    <HOST NAME="ntmpsweb.ntmps.navy.mil" PORT="443" ID="h5" OSSTATE="ON" LOADLIMIT="50" PINGURL="/" PINGINTERVAL="15" NUMRETRY="5" ISPROXY="NO" SSLENABLED="SSLV3_V2H" ISPROXYPASSWORDPLAINTEXT="YES" Key="ID"/>
    <VIRTUALHOSTMAP NAME="fvmwt1.cellexchange.com" PORT="80" EXCLUDE="NONE" QUEUESIZE="0" Key="NAME PORT URL" URL="/fvmtestbed/">
    <HOSTREF HOSTID="h2" Key="HOSTID"/>
    <HOSTREF HOSTID="h3" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    <VIRTUALHOSTMAP NAME="fvmwt1.cellexchange.com" PORT="80" EXCLUDE="NONE" QUEUESIZE="0" Key="NAME PORT URL" URL="/fvm/">
    <HOSTREF HOSTID="h2" Key="HOSTID"/>
    <HOSTREF HOSTID="h3" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    <VIRTUALHOSTMAP NAME="fvmwt1.cellexchange.com" PORT="8080" EXCLUDE="NONE" QUEUESIZE="0" Key="NAME PORT URL" URL="/fvmadmin/">
    <HOSTREF HOSTID="h4" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    <VIRTUALHOSTMAP NAME="fvmwt1.cellexchange.com" PORT="443" URL="/getemployeesbyemplid/" EXCLUDE="NONE" QUEUESIZE="0" Key="NAME PORT URL">
    <HOSTREF HOSTID="h5" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    <VIRTUALHOSTMAP NAME="fvmwt1.cellexchange.com" PORT="8080" EXCLUDE="NONE" QUEUESIZE="0" Key="NAME PORT URL">
    <HOSTREF HOSTID="h4" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    <VIRTUALHOSTMAP NAME="fvmwt1.cellexchange.com" PORT="80" EXCLUDE="NONE" QUEUESIZE="0" Key="NAME PORT URL">
    <HOSTREF HOSTID="h1" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    <VIRTUALHOSTMAP NAME="*" PORT="8080" EXCLUDE="ESI" QUEUESIZE="0" Key="NAME PORT URL">
    <HOSTREF HOSTID="h4" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    <VIRTUALHOSTMAP NAME="*" PORT="80" EXCLUDE="ESI" QUEUESIZE="0" Key="NAME PORT URL">
    <HOSTREF HOSTID="h1" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    <VIRTUALHOSTMAP NAME="*" PORT="*" EXCLUDE="ESI" QUEUESIZE="0" Key="NAME PORT URL">
    <HOSTREF HOSTID="h1" Key="HOSTID"/>
    </VIRTUALHOSTMAP>
    </GENERAL>
    <CACHE NAME="fvmwt1.cellexchange.com-WebCache" ORACLEHOME="C:\Oracle\as1" HOSTNAME="fvmwt1.cellexchange.com" VOTES="1" CAPACITY="30" WCDEBUGON="YES" CHRONOSONPERNODE="NO" Key="NAME ORACLEHOME HOSTNAME">
    <MULTIPORT>
    <LISTEN IPADDR="ANY" PORT="9402" PORTTYPE="STATISTICS" SSLENABLED="NONE" CLIENT_CERT="NO" STRONG_CRYPTO_ONLY="NO" Key="IPADDR PORT"/>
    <LISTEN IPADDR="ANY" PORT="9401" PORTTYPE="INVALIDATION" SSLENABLED="NONE" CLIENT_CERT="NO" STRONG_CRYPTO_ONLY="NO" Key="IPADDR PORT"/>
    <LISTEN IPADDR="ANY" PORT="9400" PORTTYPE="ADMINISTRATION" SSLENABLED="NONE" CLIENT_CERT="NO" STRONG_CRYPTO_ONLY="NO" Key="IPADDR PORT"/>
    <LISTEN IPADDR="ANY" PORT="80" PORTTYPE="NORM" SSLENABLED="NONE" CLIENT_CERT="NO" STRONG_CRYPTO_ONLY="NO" Key="IPADDR PORT"/>
    <LISTEN IPADDR="ANY" PORT="8080" PORTTYPE="NORM" SSLENABLED="NONE" CLIENT_CERT="NO" STRONG_CRYPTO_ONLY="NO" Key="IPADDR PORT"/>
    </MULTIPORT>
    <EVENTLOGDIR LOGDIR="C:\Oracle\as1\webcache\logs\" BUFFERENABLED="YES" BUFFERSIZE="2048" FLUSHINTERVAL="10" Key="LOGDIR">
    <VERBOSITY LEVEL="NOTIFICATION"/>
    <DEBUGVERBOSITY LEVEL="TRACE"/>
    </EVENTLOGDIR>
    <ACCESSLOGDIR LOGDIR="C:\Oracle\as1\webcache\logs\" BUFFERENABLED="YES" BUFFERSIZE="2048" FLUSHINTERVAL="10" ENABLED="YES" Key="LOGDIR"/>
    <IDENTITY USERID="nobody" GROUPID="nobody" Key="USERID GROUPID"/>
    <RESOURCELIMITS MAXINBOUNDCONNECTIONS="700" MAXCACHESIZE_MB="500"/>
    <CALYPSONETINFO KEEPALIVE_TIMEOUT="5" CLIENTSEND_TIMEOUT="120" CLIENTRECV_TIMEOUT="20" OSSEND_TIMEOUT="20" OSRECV_TIMEOUT="3600" INV_PEER_TIMEOUT="300" INV_GLOBAL_TIMEOUT="300" OS_USE_HTTP11="YES" KEEPALIVE4MSIE_SSL="NO"/>
    <DIAGNOSTICS>
    <TRACEDUMP FILENAME="C:\Oracle\as1\webcache\logs\tracedump" ASSERTION="YES" MAXSTRLEN="500"/>
    <IOLOGGER ENABLED="NO" FILENAME="C:\Oracle\as1\webcache\logs\io_log">
    <BUFFERING ENABLED="YES" BUFFERSIZE="2048" FLUSHINTERVAL="300"/>
    </IOLOGGER>
    </DIAGNOSTICS>
    </CACHE>
    </CALYPSO>

    Hi David,
    In your Admin Console, what's the mapping for port 8080 of your site (say site 'x')? It might be mapped explicitly to port 80 of the server (or) another possibility is that it might not be explicitly mapped & so it is being taken to the default port of 80 of the server.
    Hope this helps.
    Regards,
    Priyanka GES

  • JDeveloper 10.1.3.2.0 update authentication problem

    Hi!
    What port should be opened to authenticate on OTN?
    I'm using "Help -> check for Update" feature of JDeveloper. When I'm being asked to log in to OTN the "attempting to connect" message appears. After some delay the form with login and password is displayed again.

    Hi,
    if you connet to OTN via a proy server, make sure this is configured in the JDeveloper preferences for browser and proxy settings. The username and password is your OTN account
    Frank

  • Calendar Rules Problem

    I am trying to set up Calendar rules so that my deadlines should move ahead on those days(mostly weekends). I made a calender rule and added it to my organization. In the due transition, i also added use calendar rules. Now if I am correct all participants in that organization should have their deadlines move to Monday and not Saturday, Sunday. Please guide me if I am correct. This is not working as I still see my deadlines on Saturday and Sunday
    Edited by: haris on Jan 26, 2011 4:48 AM

    Hi,
    First set the calendar properly with Saturday and Sunday unchecked while declaring the calendar.
    Then you have to have some logic to set the deadline so that it will skip the Saturday and Sunday.
    Please find the logic below and do the necessary changes according to your requirement.
    Method: setDeadline(startDate: Time, sla: Int, calendarName: String): (Input - Date of creation, SLA, calendar name)
    //It will skip saturday, sunday and holiday that you defined in your calendar
    CalendarRule.fetch(calendarName : calendarName, out calendarRule : calendarRule)
    start as Time
    memday as Time
    start = startDate
    memday = start
    count as Int
    count = 0
    if sla > 0 then
         while count < sla do     
    if (isHoliday(calendarRule, time : start) == false &&
    isWorkDate(calendarRule, time : start) == true) then     
                   count = count + 1
              end               
              start = start + '1d'     
    end
         start = start - '1d'
    end
    return start
    hope it help you.
    Bibhu
    Edited by: Bibhuti Bhusan on Jan 26, 2011 9:32 AM

  • Validation Business Rule Problem

    Hi Community
    I´m working with SAP BPC 7.0 NW SP09 Consolidation, the problem I have is when I execute the validation package, the result of the Validation Rule because the business rule don´t respect the number sign of the value calculated.
    For example I try to confirm this formula ASSETS = LIABILITIES + EQUITY
    ASSETS      AST   1000
    LIABILITIES  LEQ     800
    EQUITY        LEQ     400
    RESULT                  -200
    BUSINESS RULE      200
    I was investigating all the posible combinations of dimensions, and I found it could be possible that this error occurs when (Liabilities + Equity) > Asset.
    Rule                                   
    VAL01     ASSETS=LIABILITIES                         
    Rule Details                                   
    Validation Account     Account 1     Flow 1     Sign 1     Account 2     Flow 2     Sign 2     REMARK
    VAL01     ASSETS     F_CLO     1     LIABILITIES     F_CLO     1     
    ASSETS and LIABILITIES are configures as part of dimlist property, where Liabilities have all the equity accounts too.
    Hope anyone help me with this problem
    Thanks in advance

    Hello Ruben
    If Account: VAL01 is 'AST' account than Validation Business Rule will give 200 as the result.For 'LEQ' result will be -200.
    I think the business rule is working as expected.
    Hope this help.
    Regards
    Venkatesh KPS

  • Derivation Rule Problem - Sales Order -CHALLENGE TO ALL SD CONSULTANTS

    Hi Friends
    I am stuck on i very critical issue, i am not able to solve it, I am SD consultant, i wrote this issue on FI forum also, but i did not get complete solution, they write me back it is SD issue.
    When i create a new sales order and click enter, a small screen open and message displayed on it "Error occurred in Derivation Rule, See long text"
    And when try to save sales order in display incompletion log. When i press on edit to complete it message display " Item 10 ... Missing data- Profitability Segment No.
    When i press on complete data - Account Assignment screen open (Business Area 9900)
    Would you please send me solution with complete path to fix this problem
    If you can give your email address, i will send you screen shot of the problem.
    I have tried KEDR transaction issue also but nothing happened.
    This is BIG challenge to all SD consultants now. Send me step by step solution
    If you send my your email id, i will send actual error saved in word format.
    Thanks
    Rajesh
    Email: [email protected]

    Good luck!
    to get a solution you need to provide the members of this forum with details regarding your PA set-up.
    PA is normally very customer driven, so not standard.
    Without information regarding your structure there you will not get any solution.
    GL
    Hein

  • Derivation Rule Problem - Sales Order

    Hi Friends
    I am SD consultant, i wrote this issue on SD forum also, but it is related to FICO.
    Please send me solution with complete path.
    When i create a new sals order and click enter, a small screen open and message displayed on it "Error occured in Derivation Rule, Seee long text"
    And when try to save sales order in display incompletion log. When i press on edit to complete it message diaplay " Item 10 ... Missing data- Profitability Segment No.
    When i press on complete data - Account Assignment screen open (Business Area 9900)
    Would you please send me solution to fix this problem
    If you can give your email address, i will send you screen shot of the problem.
    Thanks
    Rajesh
    Email: [email protected]

    Hi Waman
    I ckeck the transaction code /nKEDR there which entry i should select and in type of prfatibity Which one i should select Costing based or Accounting based.
    I tried on selecting IDEA and Accounting based and eleased but still i getting same error.
    My problem is still pending, please send next step to solve this issue
    Thanks
    Raj
    Email: [email protected]

Maybe you are looking for