Automated Rule LOPURVAP_01C1_0*_A problem in PC 3.0

Hi all SAP experts,
I have an issue when I try to execute the four rules of LOPURVAP_01C1_* . These rules check every changes that has been made into invoice tolerance key settings.
Well, I´ve been changed these settings through SPRO tcode and sepecially the DQ tolerance key, according to SAP documents for PC 3.0.
Once I execute the jobs of these rules, the different jobs results show no evidence of the changes that I´ve done previosuly, and they show an "adequate" result.
How do these rules check the changes? which table do they check instead of t169G? Because, I can see the changes in this table but not in the result of the job.
Has anybody any clue?
Thanks in advance.
Regards.

Wow.. Visual Cafe ? ! ! I'm very impressed ! I didn't know anyone out there still uses that ! Does Symantec still support it ?
Compile your JC2.1 with JDK 1.3.x and see if that fixes it.

Similar Messages

  • Could Automator help photo org problems after the upgrade to iPhoto 6?...

    Yes, I'm another person that has had the organization of thousands of photos screwed up after paying for and installing the upgrade.
    After reading the numerous threads on this same topic i haven't seen an answer yet...Same as the others, after updating to iPhoto6 my simple, by date, file org is shattered.
    - Of the many proposed fixes, renaming rolls by date is not practical since many of us have photos on a single "roll" (download event) that span many different days. Breaking these original rolls up by date is impractical with thousands of photos.
    - Using the calendar view to navigate the photo library doesn't work because most of the photo dates aren't accurate or are simply missing from this view.
    Could the Tiger Automator be creatively used to help re-organize these photos?
    Can anyone confirm that Apple has acknowledged this problem and is working on a patch/fix for this obviously large scale problem? My pc advocate friends think this is hilarious after i've been bragging about my trouble free macs for the last 20 years.....
    Any help would be GREATLY appreciated!

    Go back to 7.6.1 at least.. do not use 7.6.3 firmware.. as it has wireless issues.
    You go back by selecting firmware update with option key held down.

  • Oracle Business Rules :  File Type Rules Repository Creation Problem

    Hi Gurus,
    I am trying to create File Type Rules Repository(SOA Suite 10.1.3.3).
    As per the documentation:user Guide
    Oracle Business Rules supplies a blank file repository that does not contain a dictionary. This file repository is named "emptyFileRepository" and is located in the
    $ORACLE_HOME/rules/lib directory.To setup a new file repository, copy and rename the emptyFileRepository file.
    Then, provide this file name and location in the Repository Connect page
    I did the same thing.I copied the emptyFileRepository and renamed the file.After giving the file location and click on the Create button it is throwing the error "Please provide a valid directory path." Please Help me to fix this.
    The same kind of the question was posted on the same forum which was un answered.Please guide me to fix the problem.I googled a lot but no help found.
    please route me to proper source.
    Thanks in advance..
    Regards,
    ravi

    I was able to create repository for business rules few weeks ago perhaps I was using an old version of the firefox, now I upgraded to firefox 3.5.7 and get the same error. IE 7 hangs, did you get a solution yet?
    I am planning to downgrade my firefox and give it a try. Please update if you find a fix.

  • BAPI_BUPA_HOURS_CHANGE combined rules type RO problem

    Hi.
    I´m facing a problem trying to assign a partner to rule type RO. By example, I have a parner XXXXXX schedule type = 'A' and combined rule itab with next structure:
    RULE_ID                        05_J6DSTD94BJHX00002WAQ5W
    TYPE                             RO
    START_DATE               10.08.2010
    END_DATE                    31.12.9999
    CONFLICTS                   0
    FCALID
    HCALID
    INFO_DEL
    RULE_INDEX
    RULE_REF                     1
    RULEID1                        05_J6DGFD94BJHX00002WAQ5W
    RULEID2                        05_J6DI8T94BJHX00002WAQ5W
    Rules have been created ok, but when check BAPI_BUPA_HOURS_CHANGE -> BUPH_BUPA_HOURS_MAINTAIN -> APPT_RULE_CONSISTENCY_CHECK return error: Structure Rule Error: Rule type invalid. I saw that check rule type beggins with W, D, M, T, F, and as begins with R, send error.
    Some body can help me please?
    Thanks in advanced.
    Regards.

    Solved.
    I must add all rules assigned to combined rule (RO or RN), by example, W, T, etc.
    Regards.

  • Update rule for ODS problem

    Hi experts,
    I have a ODS which is created on another ODS. The unerlying ODS had one infoobject and later on it was removed. The problem occurs when creating the udpate rules for the top ODS. The deleted infoobject comes in the update rules of the ODS as grey but I think it shouldnt be there .

    Hey, in the Update Rules, you have 2 sections.
    1) Source ODS InfoObjects
    2) Taget ODS InfoObjects
    If you want, remoe the InfoObject from both the ODS.
    Also, activate the Source ODS again and also Activate the Update Rules too.
    Uday-Ram Chamarthy

  • Update rule key figure problem

    Hello All,
    I am busy creating update rules for an InfoCube. I have defined the update type for the key figure as "addition", I have also selected the source key figure (Budget Volume APO PC) but get the message "Target unit and source unit for the key figure Budget Volume APO PC must be the same" and it gives a red status to the key figure. Please explain what I should do to rectify the problem?
    Thank you and kind regards,
    Keith

    Hello KeItH,
    how r u ?
    first analyze the InfoObject and then if it is not going to be added up for the result value then u can try selecting OVERWRITE option, but this will overwrite your old values and hold the latest one.
    Best Regards....
    Sankar Kumar

  • FI Validation rule error message problem at line item level

    Hello all.
    I have created a step within an FI Validation rule (OB28) at the document line item level.  I have set the  message to "E" for an error.  I have generated the validations.  When I test my step, the error is triggered, but triggered as an Information popup - warning and does not give me a hard stop.   Does anyone have an idea why this may happen?   I need this to be a hard stop but not a cancellation of the document entry.  I am using FV60 to enter my document.
    Thanks for help.
    mvp0821

    OSS note # 863267 explains answer.  Cannot create "error" message on ENJOY transactions - FV60 is included in this list.  "E" works on classic transactions.  
    Thanks for thinking about this.

  • Business rule + compare date + problem in jspx

    Hi all ,
    i am useing Jdeveloper11.1.1.3 .
    i need to compare birthDate and employmentDate. birthDate must be greater than employmentDate at least 15 years.
    there is a business rule method in entity object impl file :
    * Validation method for InsuredPerson.
    public boolean validateInsuredPerson() {
    //start date must be greater than birthdate _ at lease 15 year (180 month)
    Date birthDate=getBirthDate();
    birthDate = (Date)birthDate.addMonths(180);
    Date startDate=getStartDateEmployment();
    if(birthDate.compareTo(startDate)==1) {
    return false;
    return true;
    when false eraise an error message wil genarate.
    when i test it in appmodule every thing is ok but by runnig jspx page :
    birthDate is --> 1970-05-05
    employmentDate --> 1991-05-05
    consider edit birthdate from 1970-05-05 to 1980-05-05
    so 1991-1980= 11 is < 15 --> error raise
    but in jspx year of birthdate changed to 1995 ==> 1980+15
    any body know why?or another way to develop it.
    Regards,

    I change my codes now it is ok .
    public boolean validateInsuredPerson() {
    //start date must be greater than birthdate _ at lease 15 year
    int birthYear=getBirthDate().dateValue().getYear();
    int startYear=getStartDateEmployment().getValue().getYear();
    int diff=startYear-birthYear;
    if(diff<15) {
    return false;
    return true;
    }

  • Business rule, runtime prompt problem

    Hi Gurus,
    We have one business rule which contain run time prompt where global variable assigned to it, when I run the rule form workspace I would able see all numbers from prompt window
    But when I run the same from Excel Smartview, I couldn't able to find all members from prompt windows.
    I was wondering what would be the cause?
    Thnx.

    Hi Amit,
    The person running the rule will need to have read access to both cost centers in order to transfer otherwise as you have seen the prompt will be invalid -- when select the prompt you should find the cost center that have no access to do not appear in the prompt itself. If you a value that the prompt does not make available then it will error out.
    If you do not want to provide read access to both cost centers, you may be able to setup a multi-step process with a transfer out by a previous owner and transfer in by the new owner using a temporary cost center both have read access to -- workforce planning uses both (one step and two step) depending on how your security is provisioned.
    Regards,
    -John

  • Automator, iMovie and Applescript problem

    Hi,
    I'm trying to convert a .mov file to .mp4 using Visualhub and automator, but a step in my automator file uses an applescript step that just causes the automator flow to stop and the end and not gon one with the rest of the actions.
    More specifically:-
    1. I use my HD camera to film something.
    2. Connect the camera to my mac.
    3. Import the video using iMovie.
    4. My Automator actions ask me to confirm that iMovie has finished the import
    5. Then Ask for finder items, which is get the newly imported .mov into VisualHub
    6. Run the problematic Applescript:-
    on run {input, parameters}
    --we need to unset the default timeout length of two minutes, we'll make it 45
    with timeout of (45 * 60) seconds
    tell application "VisualHub" to set VisualHub to load script (scripts path of main bundle & "/automation.scpt" as POSIX file)
    tell VisualHub
    LoadSettings("/Volumes/MyBook/hd.cam.settings.vhub")
    --SetSaveLocation("YOURHARDDRIVE:Users:YOURNAME:Desktop:iphonemovies:temp")
    AddFiles(input)
    StartConversion()
    QuitApp()
    end tell
    end timeout
    return input
    --delay 15
    end run
    Which I've used from this site (http://professafresh.wordpress.com/2007/10/18/fun-with-automator/) and just stopped the two lines with a comment marker.
    What is supposed to happen after that is that
    7. Automator asks to confirm that VisualHub has finished.
    8. VisualHub quits
    9. Finder finds the .mov that was created when the film was imported
    10. Finder then moves the item to the trash.
    So there is something going on with the applescript that causes the process to stop after the conversion.
    Some points:-
    1. I have used the VisualHub import and convert script step but the default settings are not what I'm after as I want the video resized to 960x540.
    2. iMovie recognizes and keeps all the head info as long as the file name is the same. So if you skip over the thumbnail in iMovie the timestamp changes to reflect the time that the video was taken. If you convert the .mov to .mp4 the info is retained but with a much smaller video size.
    I've tried to give as much info as possible, sorry if it's too much.
    Regards,

    iMoive and iPhoto are not free apps. If you purchased them on your iPhone they should available to download again on your new iPhone.
    -Doug

  • Automator image batch process problem

    Hi.
    I am surprised how much difficulty I am having with something I believe Automator should be perfect for!
    I want to create a hot folder to drop an image into, and to create 5 different versions of that image in 5 different folders. I have tried it using the 'render' action, and also using photoshop actions, but when I drop my images in the folder the system tries to do them all at the same time, resulting in chaos, and mostly failed results.
    I can't seem to find any way of processing them one at a time. It works if I add all the files into a 'get specified finder items' action, but I need this to be an automatic, remote process. Any suggestions gratefully received. I have spent days trying to teach myself Automator, but feel I must be missing something obvious?
    Cheers. Rob Mac

    I want to create a hot folder to drop an image into, and to create 5 different versions of that image in 5 different folders...
    In an example scenario, I created five folders with the following names:
    1) *_Master Folder_* -- +this is the "hot" folder, meant to house the original images+
    2) *_BMP Folder_*
    3) *_JPEG Folder_*
    4) *_PNG Folder_*
    5) *_TIFF Folder_*
    Each Folder has its own Automator workflow, saved as a Plug-in for Folder Actions attached to it.
    First, an Automator workflow is created for the *_Master Folder_* using the following actions:
    1) *Copy Finder Items* (from the Finder library) -- +To: select Other > BMP Folder+
    2) Pause (from the Automator library) -- +for 5 seconds; adjust if necessary+
    3) *Copy Finder Items* -- +To: select Other > JPEG Folder+
    4) Pause -- +for 5 seconds+
    5) *Copy Finder Items* -- +To: Other > PNG Folder+
    6) Pause -- +for 5 seconds+
    7) *Copy Finder Items* -- +To: Other > TIFF Folder+
    From Automator's File menu select: Save As Plug-in... > Plug-in for: Folder Actions. Give the Plug-in a name, attach it to the *_Master Folder_* and press Save.
    And now the destination folders. Save each workflow as a Plug-in for Folder Actions as described above and attach it to its respective folder.
    *_BMP Folder_:*
    1) *Filter Finder Items* (Finder library) -- +Whose: Name Extension - Is not equal to - bmp+
    2) *Change Type of Images* (Preview library) -- +To Type: BMP+
    *_JPEG Folder_:*
    1) *Filter Finder Items* -- +Whose: Name Extension - Is not equal to - jpg+
    2) *Change Type of Images* -- +To Type: JPEG+
    *_PNG Folder_:*
    1) *Filter Finder Items* -- +Whose: Name Extension - Is not equal to - png+
    2) *Change Type of Images* -- +To Type: PNG+
    *_TIFF Folder_:*
    1) *Filter Finder Items* -- +Whose: Name Extension - Is not equal to - tif+
    2) *Change Type of Images* -- +To Type:TIFF+
    Dropping an image file into the Master Folder triggers a folder action which sends a copy of the file to each destination folder. Once an image file is added to a destination folder the folder action attached to that folder is triggered. The script determines whether the added file contains the specified name extension, and converts it to the appropriate file type if it doesn't.
    The script worked for me as long as only one file was added to the Master Folder at a time, and when the entire routine was allowed to complete for that one file. Adding more than one file at a time, or adding files in too rapid succession produced unpredictable results.
    This is offered merely as an example of the kind of thing which can be done using Automator only. Of course, your needs may be much more elaborate. Hope this helps; good luck.

  • Automator with Address Book Problem

    Hey,
    I am trying to remove this string of text that has been plastered to the Note of every contact of mine for some odd reason. I am trying to use Automator with the Filter Address Book Items action. I am able to collect all of those people in Automator, however I can't seem to figure out the next step which is removing the selected person's Note's. Can anyone point me in the right direction?

    Mikey, I saw something in the forums a while ago that might meet your needs. The thread at http://discussions.apple.com/thread.jspa?messageID=1645258&%231645258 contains a script that might do what you need. If I understand the code correctly it goes through all contacts and clears the Notes field. In the meantime I'll see if I can devise an Automator solution.

  • Reconciliation Rule Transform Tokenize Problem

    I am trying to link OIM Users to a target resource whose User ID has 'DOA' or 'doa' suffix. It works fine with 'doa' suffix but not with 'DOA'. It is implemented as 2 separate rule element.
    This works fine:
    Delimeters: doa
    Token Number: 0
    Space Delimeter: FALSE
    This does not work:
    Delimeters: DOA
    Token Number: 0
    Space Delimeter: FALSE
    Can somebody help me please.

    We have tried having the Reconciliation Rule only on the Employee Number. It does not work. When an existing user is modified in the trusted source, instead of having it modified in OIM, a new one is created with the same Employee Number.
    Thanks,
    --jtellier                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Other Delete Business Rule Problem

    Hello everybody
    I have a problem with Oher delete business rules and the problem is for getting rowid for a deleted row and it causes ther error : no data found.
    I solved this problem in this way
    qms_transaction_mgt.process_rule_violation
    ( p_br_name => 'BR_TEAM004_DEL'
    , p_msg_code => 'MS-00184'
    , p_display_label => display_label
    , p_table_name => 'ms_teams'
    , p_table_rowid => null /* get_rowid */
    In fact, I use null instead of get_rowid for this kind of rull. Is it a good way? Have every body any better way?
    Thanks
    Hassan

    Hassan,
    This is a known bug in the original Headstart 6i release. This bug was corrected in Headstart Patch 6.5.2.1 which is available via the Headstart Supplement Option. The Supplement Option can be purchase via your local consulting organization or the Oracle store. You will be given access to a portal from which you can download patches.
    Regards,
    Lauri

  • New Context for 'Problems' in Rule modeler not working

    Hi,
    I am using the Rule modeler to determine the Service team based on selected Categorization schema for Incidents - it's working fine. Now I want to implement the same for Problems
    I created a new Z Context (Master Request) to create a rule policy for Problems -> assigned rule policy to a ZServ.Mgr.Profile Unfortunately the rule policy is not working for problems. The new ZContext was copied from existing SERVICEREQUEST context which also copied all the services within.
    Am I missing something ? Please help.
    BR.
    P.S incidents have an action definition with method DISPATCH that determines service team - same has been assigned to Problems.

    Had to use 2 Dispatch methods to determine the service team.

Maybe you are looking for

  • Error while executing a custom java code from report in BI Publisher

    Hi, I have created a custom code added the jar in /opt/oracle/BI_Middleware/user_projects/domains/bifoundation_domain/lib and created a rtf template and added a code in that   <?namespace:bipext=http://www.oracle.com/XSL/Transform/java/com.test.bi.Cu

  • SAp SCRIPT Multiple lines in MYWINDOW

    hello friends, can i print internal table data(Multiple lines) in a window ither than MAIN window? Ex. Loop at itab into wa, call function 'write_form'   exporting    element = 'MULTIPLE'    window = MYWINDOW (VAR). endloop. Please suggest. Thanks, M

  • Is there any addon to theme the firefox Window ?

    I'm running win7 with the classic skin and I would like know if there is any firefox addon that makes the firefox WINDOW look more like googlechrome (i mean the blue borders arround the window), basically to ignore the windows theme and draw it's own

  • Microstation

    hi, i don't know how many people use microstation on their macs. i recently got a version of it, microstation se, and i don't know how to install it. when i put in the cd and search for the setup icon, i click it and it just asks me to choose an appl

  • HT6074 How can I watch flash Videos with the ipad with safari?

    I Have an iPad an I'll watch flash Videos with this. But there is no Flashplayer. Is there any Plugin?