Set date mask

Hi Gurus, I have to set date as per the company code REGUP-BUKRS using sap-script.  I am unable to get the date..
/: IF &REGUP-BURKS& EQ 2000
/: SET DATE MASK = 'DD/MM/YYYY'
&REGUP-BLDAT&
/: ENDIF
This there is anything wrong in this code  ?

Please use below syntax in SE71 Text editor ( Before displaying date)
/:  PERFORM GET_DATE_FORMAT IN PROGRAM ZGET_DATE
/:  USING &REGUP-BLDAT&
/:  CHANGING &DATE&
/:  ENDPERFORM
Now goto SE38 -> create program(ZGET_DATE) -> now use below syntax
FORM GET_DATE_FORMAT
  tables in_tab  structure itcsy
         out_tab structure itcsy.
lOCAL VARIABLES
data: LV_DATE(10) TYPE C,
         LV_DAY(2),
        LV_MON(2),
       LV_YEAR(4),
       LV_FDATE(10) TYPE C.
CLEAR : LV_DATE,
                 LV_DAY,
                LV_MON,
                LV_YEAR,
                LV_FDATE.
read table in_tab with key NAME = 'REGUP-BLDAT'.
  if sy-subrc eq 0.
    LV_DATE = IN_TAB-VALUE
  endif.
Date Formatting
lv_year = lv_date+0(4).
lv_mon = lv_date+5(2).
lv_day = lv_date+8(2).
concatenate lv_day '/' lv_mon '/'  lv_year into lv_fdate.
read table out_tab with key NAME = 'DATE'.
  if sy-subrc eq 0.
    out_tab-value = lv_fdate.
modify out_tab index sy-tabix.
  endif.
ENDFORM.
You can use same logic for all dates.
Thanks
Seshu

Similar Messages

  • Set date Mask in Sapscript

    hi all,
    Requirement is to diplay todays date in MM.DD.YYYY format in a smartform layout.
    We have used the command
    /:SET DATE MASK = 'MM.DD.YYYY'
    /:SET COUNTRY 'US'
      &sy-datum&
    But the date appears in the user format DD.MM.YYYY.
    Whys the set date command not working here as expected ?
    Your ideas appreciated.
    Rgds,
    stock

    Hi  Stock Sys,
    Formatting Date Fields: SET DATE MASK
    To define the formatting of date fields, use the SET DATE MASK control command. Executing this command causes all subsequent date fields to be printed using the specified format.
    Syntax:
    /: SET DATE MASK = 'date_mask'
    In the date mask, you can use the following codes:
    DD: day (two digits)
    DDD: day name - abbreviated
    DDDD: day name - written out in full
    MM: month (two digits)
    MMM: month name - abbreviated
    MMMM: month name - written out in full
    YY: year (two digits)
    YYYY: year (four digits)
    LD: day (formatted as for the L option)
    LM: month (formatted as for the L option)
    LY: year (formatted as for the L option)
    All other characters found in a date mask are interpreted as simple text and are copied straight into the output.
    Assuming the current system date is March 1st, 1997.
    /: SET DATE MASK = 'Foster City, MM/DD/YY'
    &DATE& -> Foster City, 03/01/97
    /: SET DATE MASK = 'MMMM DD, YYYY'
    &DATE& -> March 01, 1997
    The date mask may be reset to the default setting by using an empty string:
    /: SET DATE MASK = ' '
    The abbreviated and full forms of the names of the days and months are stored in the language dependent TTDTG table under the following keys:
    %%SAPSCRIPT_DDD_dd: abbreviated day name
    %%SAPSCRIPT_DDDD_dd: full form of day name
    %%SAPSCRIPT_MMM_mm: abbreviated month name
    %%SAPSCRIPT_MMMM_mm: full form of month name
    dd: day number 01 = Monday,..., 07 = Sunday
    mm: month number 01 = January,..., 12 = December
    Regards.
    Eshwar.

  • Need some example of  'SET DATE MASK'.

    Hi Gurus,
    I need come example of 'SET DATE MASK ' & 'SET TIME MASK'.
    Thanking you.
    Subash

    Hi Subasha,
    / : SET DATE MASK = 'MMMM DD, YY'
    This displays the date as : September 26, 07.
    YY Year (2 digits)
    YYYY Year (4 Digits)
    MM Month (2 Digits)
    MMM Month Name (Abbreviated)
    MMMM Month Name (Full)
    DD Day as two digits
    DDD Day name (Abbreviated)
    DDDD Day name
    Using the SET DATE MASK causes the subsequent date fields to be displayed using the same formatting. To return to the default formatting use the following command:
    /: SET DATE MASK = ' '
    /: SET TIME MASK = 'HH hrs MM min SS sec'
    This displays the time as : 11 hrs 43 min 37 sec'
    The following are the codes that can be used in the time mask:
    HH Hours
    MM Minutes
    SS Seconds
    The time formatting can be reset to the default setting using:
    /: SET TIME MASK = ' '

  • Date printing using date mask

    Hi,
    Iam using Date mask to print the date in 96/01/10 (year/month/Date),(CHINA)  but iam getting 0.
    This is the code i have written.
    SET DATE MASK = 'YY/MM/DD'
    ,, ,,&REGUD-SWABZ(16)&  ( i have to get the date from this field ).
    Any one help.
    Thanks,
    Donald

    Hi,
    you can take the help from this code :
    <b>data : day(2), month(2), year(2).
    data : date1(10).
    data : date type sy-datum.
    date = sy-datum.
    day = date+6(2).
    month = date+4(2).
    year = date+2(2).
    write: date.
    concatenate year '/' month '/' day into date1.
    write : date1.</b>
    If it is helpful, please donot forget to reward the points.
    Sandeep

  • Time and Date mask

    Hi
    I need to display time in SAP Script according to following format:
    8:00 AM - 5:00 PM
    Right now its showing 8:00 to 17:00
    Moreover I need to display the date as February 26, 2007. I have checked Set Date and Time masks but it didnt work.
    Your guidance will be appreciated.
    Regards
    waseem imran

    Hi,
    Pl.refer following material.
    Formatting Date Fields: SET DATE MASK Edit section
    To define the formatting of date fields, use the SET DATE MASK control command. Executing this command causes all subsequent date fields to be printed using the specified format.
    Syntax:
    /: SET DATE MASK = 'date_mask'
    In the date mask, you can use the following codes:
    DD: day (two digits)
    DDD: day name - abbreviated
    DDDD: day name - written out in full
    MM: month (two digits)
    MMM: month name - abbreviated
    MMMM: month name - written out in full
    YY: year (two digits)
    YYYY: year (four digits)
    LD: day (formatted as for the L option)
    LM: month (formatted as for the L option)
    LY: year (formatted as for the L option)
    All other characters found in a date mask are interpreted as simple text and are copied straight into the output.
    Assuming the current system date is March 1st, 1997.
    /: SET DATE MASK = 'Foster City, MM/DD/YY'
    &DATE& -> Foster City, 03/01/97
    /: SET DATE MASK = 'MMMM DD, YYYY'
    &DATE& -> March 01, 1997 The date mask may be reset to the default setting by using an empty string:
    /: SET DATE MASK = ' '
    The abbreviated and full forms of the names of the days and months are stored in the language dependent TTDTG table under the following keys:
    %%SAPSCRIPT_DDD_dd: abbreviated day name
    %%SAPSCRIPT_DDDD_dd: full form of day name
    %%SAPSCRIPT_MMM_mm: abbreviated month name
    %%SAPSCRIPT_MMMM_mm: full form of month name
    dd: day number 01 = Monday,..., 07 = Sunday
    mm: month number 01 = January,..., 12 = December
    Formatting Time Fields: SET TIME MASK Edit section
    To format time fields to your needs, use the SET TIME MASK control command. Executing this command causes all subsequent time fields to be printed using the specified format.
    Syntax:
    /: SET TIME MASK = 'time_mask'
    In the time mask, you can use the following codes:
    HH hours (two digits)
    MM minutes (two digits)
    SS seconds (two digits)
    All other characters found in a time mask are interpreted as simple text and are copied straight into the output.
    Assuming the current time is 10:08:12,
    /: SET TIME MASK = 'HH:MM'
    &TIME& -> 10:08
    /: SET TIME MASK = 'HH hours MM minutes'
    &TIME& -> 10 hours 08 minutes
    The time mask may be reset to the default setting by using an empty string:
    /: SET TIME MASK = ' '
    Reward, if useful.
    Thanks,
    USR

  • Sapscript set date

    hi,
    You can set the language of a DATE?
    EX.
    IN ITALIAN
    AGO-25-10
    In English
    Aug-25-10
    I need to logon in Italian but for the WAERS 'USD' I do print the date in English.
    thk.

    if you are in SAP-SCRIPT you can use SET DATE MASK.

  • Field Level Validation - Date Mask

    Hi all
    I need some Java Script to validate a date mask in a field. Format must be:
    dd-mm-ccyy.
    Can anyone help me?
    Thanks

    Here is a copy of the script I set up to do validation.
    I not only wanted it to check for a valid date,
    but I wanted to store leading zeros, but not make the user type them in.
    One of the things you have to do is to set the format mask for the date to MM-DD-YYYY for each date field in your form.
    Here it is:
    var DayArray =new Array(31,28,31,30,31,30,31,31,30,31,30,31);
    var MonthArray =new Array("01","02","03","04","05","06","07","08","09","10","11","12");
    var firstDash = null;
    var lastDash = null;
    var inYear = null;
    var inMon = null;
    var inDay = null;
    var today = new Date();
    var curFullYear = today.getFullYear();
    var strYear = String(curFullYear);
    var thisCentury = strYear.slice(0,2);
    var thisYear = strYear.slice(2);
    var numThisYear = Number(thisYear);
    inDate = theElement.value;
    if (inDate.length == 0) return true;
    /* Check for a valid format. */
    var filter=/^[0-9]{1,2}-[0-9]{1,2}-[0-9]{2,4}$/;
    if (! filter.test(inDate))
    { alert("Please enter date in MM-DD-YY or MM-DD-YYYY format.");
    theElement.focus();
    theElement.select();
    return false;
    /* Pick off the indices (zero-based) of the two dashes. */
    firstDash = inDate.indexOf("-");
    lastDash = inDate.lastIndexOf("-");
    if ((firstDash == lastDash) &#0124; &#0124; (firstDash == -1) &#0124; &#0124; (lastDash == -1))
    alert("Please enter date using dashes (-), e.g. MM-DD-YY or MM-DD-YYYY.");
    theElement.focus();
    theElement.select();
    return false;
    /* Pick off the month and day (pad with leading zero, if necessary). */
    inMonth = inDate.slice(0,firstDash);
    if (inMonth.length == 1) inMonth = "0" + inMonth;
    inDay = inDate.slice(firstDash+1,lastDash);
    if (inDay.length == 1) inDay = "0" + inDay;
    /* Pick off the year. Filter ensures 2, 3, or 4 digit year. 4 is what we */
    /* want, so we only have to deal with 2 or 3 digit years. */
    inYear = inDate.slice(lastDash+1);
    /* If the user entered a two digit year, figure out which century to pad. */
    if (inYear.length == 2)
    /* Adding 5 years is still within the current century... */
    if ((numThisYear + 5) < 100)
    /* 00 to (current year + 5 years) should use the current */
    /* century; otherwise, use the previous century. */
    if (inYear > (numThisYear + 5))
    inYear = (thisCentury - 1) + inYear;
    else
    inYear = thisCentury + inYear;
    else
    /* Adding 5 years would rollover the century, use the current century */
    inYear = thisCentury + inYear;
    /* A 3 digit year is an error. */
    if (inYear.length == 3)
    alert("Please enter date with either a 2 digit or 4 digit year.");
    theElement.focus();
    theElement.select();
    return false;
    /* Check for a valid month. */
    var filter=/01|02|03|04|05|06|07|08|09|10|11|12/;
    if (! filter.test(inMonth))
    alert("Please enter a valid month.");
    theElement.focus();
    theElement.select();
    return false;
    /* Check for leap year. */
    N=Number(inYear);
    if ( ( N%4==0 && N%100 !=0 ) &#0124; &#0124; ( N%400==0 ) )
    DayArray[1]=29;
    /* Check for valid days for the month. */
    for(var ctr=0; ctr<=11; ctr++)
    if (MonthArray[ctr]==inMonth)
    if (inDay > DayArray[ctr] &#0124; &#0124; inDay <= 0)
    alert("Please enter a valid day.");
    theElement.focus();
    theElement.select();
    return false;
    /* Output the fixed up date. */
    theElement.value = inMonth + "-" + inDay + "-" + inYear;
    return true;
    Regards,
    Rene'

  • Re: Error when configuring Data Masking with workload masking in 12c

    Hello,
    Even I am facing a similar issue - error message displayed when trying for data-masking along with R.A.T. capabilities
    Can anybody help resolve this.
    Objective - Use Real Application Testing in combination with Test Data Masking Pack
    Current Setup
    I have a VM Box with Windows 2008 R2 Server OS Image
    Enterprise Manager 12c and Oracle 11g Database Instance Installed and configured on the same host.
    Have added one more Oracle Database Instance 11g Database instance into the Target Databases.
    while doing data masking, when i select the checkbox Ensure Workload Masking Compatibility i always get the error:
    "Workload masking is not supported by the target database chosen. You may need to apply a patch or move to a newer version of the database for workload masking."
    Can you please guide as to which patches / configurations need to added. I believe the Patches and Provisioning Wizard within EM will help on installing the requiredd patches.
    But I am not aware of which patch it is referring to.
    highly appreciate your help n guidance in this regards.
    Regards,
    Nayan Tejani
    +91 98333 02666

    Gosh! at last i found the solution!!
    I appreciate those who tried to help and i''m sharing the solution as i believe this is the purpose of SDN Forum and help others Netweaver Chap who facing the same problem:
    Problem faced:
    Extractor failed intermittently for WORKLOAD ANALYSIS (Introscope Data) due to error message "Error when opening an RFC connection"
    Due to the above error, performance data is not available in RCA workload analysis for J2EE engine.
    Possible Solution:
    1) Ensure both webadmin & SOLMANDIAG RFC working fine -> SM59 -> TCP/IP
    2) go to SE16 -> E2E_RESOURCES and change the resourcecap to 10 for SOLMANDIAG
    3) go to /smd/services -> Diagnostic System -> Advanced Setup -> Abap connectivity -> Connection Configuration and change server count to 10
    4) Restart webadmin (step 3 & 4 can perform in VA too)
    5) set gw/keepalive &  gw/reg_keepalive to value 0 in RZ11 (without reboot of instance)
    5) again go to SM59 -> TCP/IP -> SOLMANDIAG and put in the gateway host and gateway service correctly, don't leave this empty!!!! -
    > This is the main solution to solve intermittent failed RFC for extractor.
    Now, go back and monitor the extractor log and you should see no RFC error anymore and wait for 1 hour for the data to populate.
    Thanks!
    Nicholas Chang,

  • EM12C | Data Masking | How to make my column sensitive

    Hello All,
    EM : 12c
    DB: 11.2.0.3
    I have a table with column "Salary" and after doing the 'Data Discovery and Modelling' on my schema i do not see Oracle has identified by column as "Sensitive".
    How do i make it sensitive so that i can "mask" it ?
    TIA,
    JJ

    Steps for data masking feature in 12c Cloud Control(12.1.0.1):
    Creating only a masking definition does not protect data. You need to first create the definition, which defines the columns to be masked, then proceed with the actual masking to ensure data safety.
    Each masking definition requires one or more formats, which define the format used to mask the selected data. You can create the formats before or after creating the masking definition.
    Note: Before creating or editing a masking definition, be aware of the following advisory information:
        - Make sure the format you select does not violate check constraints and does not break any applications that use the data.
        - For triggers, PL/SQL, and so forth, Data Masking recompiles the object.
        - Exercise caution when masking partitioned tables, especially if you are masking the partition key. In this circumstance, the row may move to another partition.
        - Data Masking does not support clustered tables, masking information in object tables, XML tables, virtual columns, and so forth. However, relational tables are supported for the masking.
        - If objects are layered on top of a table such as views, materialized views, PL/SQL, and so forth, they are recompiled to be valid.
    a. To create data masking format:
    1. Login to 12c Cloud Control
    2. Expand the Enterprise drop down menu
    3. select Quality Management, then Data Masking Formats
    4. Click on "Create" to go to the Create Format" Page
    5. In the page displayed, enter the necessary details to create Format:
       a. General Information:
             Name: Name of the Format
             Sensitive Column Type: Select a column type the list
             Description: Description of Format
       b. Format Entries: Select a format from the drop down list, then click Go.
                                    In the page displayed, select the list of values and click OK
                                   Optionally specify the name of a post-processing function
       c. Click OK to create the Data Masking Format
    b. To create data masking definition:
    1. Login to 12c Cloud Control
    2. Expand the Enterprise drop down menu
    3. select Quality Management, then Data Masking Definitions
    4. Click on "Create" to go to the Create Masking Definition page
    5. In the page displayed, enter the necessary details to create masking definition :
        a. General Information:
             Name: Name of the Masking definition
             Application Data Model: Provide required Application Data Model(ADM) name from the list
             Reference Database: Provide required database name
             Description: Description of data masking definition
        b. Workloads: Check Ensure Workload Masking Compatibility if you want to mask Capture files and SQL Tuning Sets. This is optional
        c. Columns: Click Add to go to the Add Columns page, where you can choose which sensitive columns in the ADM you want to mask.
        d. Data Masking Options: Expand Show Advanced Options and decide whether the selected default data masking options are satisfactory (Optional)
        e. Click OK to create Data Masking Definition
    c. Performing the Masking Operation
        1. From the Data Masking Definitions page, click Generate Script. The Script Generation Results page appears, which shows the list of database commands to be used to mask the selected columns
        2. Either click Clone and Mask or Schedule Job
    For more details, refer the following document:
    http://docs.oracle.com/cd/E11882_01/server.112/e16540/tdm_data_masking.htm#CEGBFFDJ
    Oracle® Database Real Application Testing User's Guide
    Chapter 15: Masking Sensitive Data
    HTH
    Mani

  • Default Date Mask

    Hi All,
    We have about 15 business areas with 100+ folders each. Does anyone know how we can change the default date mask without going into every single folder and changing it for every date item?
    Thank you,
    MIS

    Hi,
    I think the only way to do this is to hack the EUL table using SQL*Plus. Fine if you backup and know what you are doing, but otherwise a recipe for disaster.
    The table you want to change is EUL5_EXPRESSIONS, so for example, to change the default date mask for all audit date columns (item name begining with Audit) from DD-MON-RRRR to DD-Month-YYYY you can use this SQL:
    update eul5_expressions
    set it_format_mask = 'fmDD-Month-YYYY'
    where exp_type = 'CO'
    and exp_data_type = 4
    and exp_name like 'Audit%'
    and it_format_mask = 'DD-MON-RRRR'Rod West

  • [svn:fx-trunk] 11627: Fix setting luminosity masks on graphic elements - missed an occurence where setting cacheAsBitmap to true was needed .

    Revision: 11627
    Author:   [email protected]
    Date:     2009-11-10 14:01:01 -0800 (Tue, 10 Nov 2009)
    Log Message:
    Fix setting luminosity masks on graphic elements - missed an occurence where setting cacheAsBitmap to true was needed.
    QE notes: Regress
    Doc notes: No
    Bugs: http://bugs.adobe.com/jira/browse/SDK-24089
    Reviewer: Pete
    Tests run: All FXG (static and runtime) tests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24089
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

    FYI - This regression has been filed here: http://bugs.adobe.com/jira/browse/SDK-31989

  • How to set data in rtf document?

    Hi friends,
    I have a rtf document can anyone suggest how to set data in cells of an rtf document?Is there any way?
    Thanks in advance..
    Regards ,
    Soumyanil

    Convert the resultSet from the db to a Object[][], let's call it result.
    Then create a JTable (jTable1).
    On the JTable you need to define the headers, and the data itself.
    You can get the headers from ResultSetMetaData. Convert these to an array again (headers).
    Now use these methods to create a model and set the model of the JTable.
    Model model =  new DefaultTableModel(result, headers);
    jTable1.setModel(model);That's about the basics.
    If you need more info, use at the tutorial at sun's homepage.
    How to use Tables:
    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html

  • Dynamically Set date not changing in schedule Job

    Hi,
    I have created a report with "Order Date" as one of the parameters on the selection screen. I have created a variant, say 'X' , to set this date parameter dynamiccaly as "Current date - 31 days".
    I have scheduled this program to run in background with the 'X' variant daily at certain time.
    Now, for the day on which I created this job , the Order Date is set to correct date . For ex if I am scheduling the job tdy it will be set to 06/10/08. However, for next day , that is tom this date is not getting changed. i.e Tommorrow again Order date is 06/10/08 but it should have been 07/10/08.
    So basically this dynamically set date is not chaning in the scheduled job.
    Any idea why this is happening and what is the corrective measure for this.
    Thanks!

    There is an INITIALIZATION event in the program.......
    Do the processing your date in that event only....
    for ex....
    select-options: date for order-date.
    INITIALIZATION.
    date-low = sy-datum or wat ever.
    Thanks
    Saurabh

  • How do I set date and time on apple tv?

    How do I set date and time on apple tv?

    Fixed the same problem, STEPS
    1. Reset your apple TV
    2.It will again stuck on that setting, ignore it by press menu
    3. Unplug ethernet wire
    4. Try to connect with wifi, it should be work with wifi connection as mine.
    5. Then you can switch back Ethernet wire after get fixed.
    Thanks. Lemme know dude if it's work.

  • HT5706 I have not used my apple tv in a few years, and just got it out of the bag. I connected it up, and it cannot set date, time.  it also does not interact with the remote.  Could it be as simple as a new batter is needed for remote?

    I have not used my Apple TV in a few years, and just got it out of the bag to use on a new TV.  I connected it up to power and with an HDMI cable toTV.  It attempts to set date and time and cannot.  I cannot get the remote to interact with the box also.  Could it be something as simple as needing a new battery?

    Hi kybriar,
    Thanks for using Apple Support Communities.  This article has steps you can take to troubleshoot the remote itself:
    Troubleshooting the Apple Remote
    http://support.apple.com/kb/ht1722
    For the issue of setting the date and time, these articles may help:
    Apple TV: Basic troubleshooting
    http://support.apple.com/kb/ht1551
    Reset Apple TV by unplugging it from the power outlet, waiting about five seconds, then plugging it in again.
    Power off your TV, wait five seconds, then power it back on.
    Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connectionshttp://support.apple.com/kb/TS4546
    Ensure that Apple TV is within range of your Wi-Fi router or base station.
    Confirm that your Wi-Fi router and cable/DSL modem are connected to power and turned on.
    Make sure other devices (computers, iPhone, iPad, for example) are able to connect to the Wi-Fi network and access the Internet.
    Check your Wi-Fi network settings on Apple TV:
    Select Settings > General > Network > Wi-Fi and press the center button on the remote to display nearby networks.
    Choose your Wi-Fi network from the list.
    If your Wi-Fi network uses a password, make sure you are entering it correctly.
    Restart your Apple TV by selecting Settings > General > Restart.
    Try restarting your Wi-Fi router or modem by turning it off and then on again.
    If possible, connect an Ethernet cable and verify your Internet connection. If you can connect to the Internet using an Ethernet connection, verify that your Apple TV is using the latest software by selecting Settings > General > Software Update. If your Apple TV can be updated, install the update and then try the steps again.
    Cheers,
    - Ari

Maybe you are looking for

  • Error while activating Trnasfer rules

    I am getting the following error, while activating Infosource. Can you please help me identifying the solution Syntax error in GP_ERR_RSAPTM2_____________, row 43 (-> long text) Diagnosis "ZOXID30058" must be a flat structure. You cannot use internal

  • GOA Distribution SRM 5.0-ECC 6.0 - Account Category & Multiple Distribution

    Hi everyboby, I'm trying to distribute a GOA, or better I have distributed a GOA to ECC, but I have a problem 2 problems: 1.) account category on the idoc BLAORD (inbound in ECC) is always <b>U</b> (Unknown). Instead I want that account category is b

  • Material Master in different language

    Can anyone please tell me how material master can be maintained in fdifferent languages? One material number , I want to create in English as well as in some other language, is it possible? Thanks

  • SunFire V490: Exactly what features are "Not supported"?

    Hello, I saw the system matrix state that "Not all features are supported for the Sun Fire V490 Server". Does anyone know exactly what features are, or are not supported on the V490?

  • Jdeveloper/Business Rules exception: Now you see it, now you don't

    Hi all, odd thing happened to me yesterday. I'm doing a business rules proof of concept and came across a 'MultipleDefinitionException' when running unit a test function. I fixed the xml used to define my facts (or so I thought) but the problem persi