Strange Scenario Criteria bug

Hi Experts,
I have come accross a weird bug when using a bizpackage with many bizsteps vs using a bizpackage with only one bizstep.
If I have a bizpackage with 4 bizsteps, all filtering criteria defined correctly & then add the document in B1 that should trigger the first bizstep, I see it gets filtered with the message "No scenario subscribes to this message"
However, if I then create a bizpackage with just one bizstep (the first bizstep from above, no changes whatsoever) define its filtering criteria in exactly the same way as above & then add the document in B1 that triggers the bizstep, it works perfectly!
My only explanation is that for some reason having the other bizsteps all the in the same bizpackage is affecting the filtering? I can't find anything indicating this, and it is incredibly frustrating to debug as everything looks fine! If I check the message that gets filtered, its selection criteria are correct & match the filtering criteria for the bizstep!
Thanks for any ideas or help.. I can run them all as seperate bizpackages but doesn't it kind of defeat the whole idea of a bizpackage? Plus I will now have 8 packages per database instead of just 2.
Regards,
njmog

Hey Gordon,
Sure:
Step1: Journal Entry created by a payment in System1 sends a JE to System2
Filters:
Between account 123456 and account 234567
OriginalJournal = 'ttReceipt'
Debit is greater than 0
TransactionCode is blank
Step2: Journal Entry added by step one in System2 sends a JE to System1
Filters
Between account 123456 and 234567
OriginalJournal = 'ttJournalEntry'
Debit = 0.000000
TransactionCode = 'B1i'
Step3: User adds a manual JE in System1 and this is sent to System2
Filters:
Between account 123456 and 234567
OriginalJournal = 'ttJournalEntry'
TransactionCode is blank
Debit = 0.000000
Step4: JE added in step2 ro system1 send a new JE to system2
Filters
Between account 123456 and 234567
OriginalJournal = 'ttJournalEntry'
TransactionCode = 'B1i'
Debit = 0.000000
It's a really specific business case so I know it won't make much sense from an outside point of view. What I don't understand is how step1 when followed by 2-4 will not be triggered, but step1 in a package on its own works fine!
Thanks,
njmog

Similar Messages

  • Premier Pro CC 2014 - Strange duplicating sequence bug

    Hi
    First post on the forum so sorry if I have done something wrong!
    Currently working on a projection project and have a really strange aspect ratio sequence 3840 x 1080 (Twice as wide as 1080P). I have a central 1080P video clip and then have created two separate sequences to go either side to fill up to my full screen. The smaller sequences are 960 x 1080. See attached image!
    I have come across a very strange and frustrating bug. The two 960 x 1080 sequences titled 'Right Small' and 'Left Small' and each have completely different video clips. However at a certain point the video which ever sequence I put on a lower layer will show outputting through the both 'Right Small' and 'Left Small' sequences. When I open up the sequences I can see them both playing separate clips however the video renders with the same image on either side. This is rendering on my timeline and on my export. I have tried deleting my render files but it stays the same. The only solution I have found is by starting one of the sequences one frame before the other and it fixes the problem!!!
    Any ideas?
    Thanks
    Joe
    First Image Shows how it should look at the start of the section where the two outer screens show the different content.
    At this point in the video both sequences are duplicating each other showing the same clips even thought the top layer has completely different clips inside its sequence...

    Right click on either one of the two nested sequences - Right Small or Left Small, and from the drop down menu, choose Render and Replace.
    Does that help?
    MtD

  • Strange text offset bug in Leopard?

    A few days ago I discovered this strange bug(?!) in both the iCal icon in the Dock and in iPhoto '09.
    The date on the iCal icon are offset and the name of events in iPhoto.
    It just came up from nowhere. The day before it was allright. So I reinstalled Leopard, iLife and so on... Everything was fine yesterday, but today the same thing happend.
    The only installation I have made today is Adobe CS4 Master Suite. BUT I'm not sure if it happend after or before the installation.. Or maybe hours after the installation.
    It's not a serious bug, but very very annoying. Any clues? Trixes? Fixes?
    Images at: http://public.me.com/johannesroth/

    The images were easy to view... thank you!
    Did you by chance edit the images in a Photoshop app and then export them to iPhoto????
    Did you have iPhoto 08 and upgrade? If so, try this, delete this file:
    com.apple.iPhoto.plist
    /Users/YourName/Library/Preferences. Drag that file from the Preferences folder to the Trash, empty the Trash and reboot. See if the text is still off set.
    Carolyn

  • Photoshop CS5 strange brush jumping bug

    Strange brush bug with Photoshop CS5 Extended English (Updated to 12.0.2 latest).
    Youtube link of my screen recording
    http://www.youtube.com/watch?v=UxwUi35TMYo
    When  I first start (quick) brushing on top right, the strokes appear at bottom  right.... No shape dynamics, no scattering, just plain soft round brush  in black. If I stroke slowly, the behavior is OK.
    This is very frustrating and appears very often for me if stroke quickly, so I can't use smudge which is often done quickly.
    Windows 7 (Simplified Chinese). Nvidia GTS 450 but OpenGL has been disabled. Graphic driver updated to latest. No brush scattering, no shape dynamics.
    Please help, thanks in advance.

    This subject shows up here from time to time.
    Unfortunately, I don't recall reading about any specific fix that works.
    Usually the advice is update video drivers, check all other software running on the system for possible interference, change wireless mouse batteries, try a wired mouse, completely remove mouse or tablet drivers and reinstall, make sure nothing is moving over an unused trackpad, etc.
    Perhaps it would help if you listed your OS and what input device you're using.
    -Noel

  • J Tool Tips - Strange and Awkward Bug

    Hello Everyone,
    I am having a very strange J Tool Tip bug. Okay first of all, the tool tip that I have created works when it is inside of a single panel for a single label. Basically, what I have is a number of J Labels - each having a unique tool tip. Here is the most basic of my code (notice that I have customized my own Tool Tip to have a yellow background and black foreground):
    currentLabel = new JLabel("LABEL TEST")
                // Extends the JLabel and overrides createToolTip() to return a custom tool tip:
                @Override
                public JToolTip createToolTip()
                    JToolTip toolTip = super.createToolTip();
                    toolTip.setComponent(this);
                    toolTip.setBackground(Color.YELLOW);
                    toolTip.setForeground(Color.BLACK);
                    return toolTip;
            currentLabel.setToolTipText("Testing Tool Tip Message");Okay, so here's the deal. Here's the tricky part. When I have this label nested inside of a Grid Bag Layout Panel, it works perfectly fine. It shows up when the user's mouse hovers over the label.
    Here's my problem. The project that I am working on is actually nested in many complicated panels. This project has about 100 java files, so I am just going to cut it short and let you know which kind of panels it is nested in.
    Starting from the lowest panel:
    1. J Panel (Grid Bag Layout)
    2. J Panel (Box Layout)
    3. J Panel (Border Layout)
    4. J Split Pane (Right Side)
    5. J Panel (Border Layout) (Largest Panel)
    One of the things I noticed is that now when I hover over the labels, a very small microscopic blue dot appears right to the left of the mouse cursor. I seriously think this is the Tool Tip, but for some reason it isn't showing any text. The strange thing is that the tool tip works when panels 2, 3, 4, and 5 are non-existent. If you guys have any ideas or suggestions, please let me know! I'd really appreciate it!
    Thanks,
    Brian

    What I might do is : see if listening for mouseEntered and mouseExited events work on the labels when in their complex arrangement. And make a little tooltip class based on JWindow (perhaps with a JLabel on its contentpane so you can display HTML). I found this approach more reliable. Though one would expect this is what is already implemented, the inbilt behaviour may overcomplicate things resulting in some no-shows. I seem to remember having this problem with tootips on table cell renderers.
    Edited by: kina_tji on Jul 23, 2008 6:33 PM

  • SCSM 2012: Strange Queue SLA Bug

    We're in the process of scoping down our User Roles and I'm coming across a strange condition which I think might be a bug.
    We have multiple teams within our organisation, each team has their own Support Group and SLA. We have created separate Queues and SLA's for each team.
    For example:
    Support Group = "Tier 1"
    Queue (Tier 1) = All Incidents where Support Group equals "Tier 1"
    SLO (Tier 1) = Is targeted at "Queue (Tier 1)"
    This is what I've found, if I create a new User Role based on "Incident Resolver" and grant that Role access to to everything, that is tick the "All XYZ can be accessed" in each section of the wizard, the user can see the 'SLO Description',
    'Target End Date' and 'Time before SLO Breached' in the incident form.
    However, if I then limit this user role to 'Queue (Tier 1)' only, keeping everything else the same this information disappears from the view.
    After some more investigation I found, if you select 'All work items can be accessed' under Queues this information shows, however if you tick a couple of individual queues manually or tick all of the queues manually you get this bug. It only works
    when selecting 'All work items can be accessed'.
    We might have to raise a case, quite difficult to explain on the forum. But wanted to post it in case others have come across this issue.

    For the benefit of others I thought I'd update this post.
    The solution to this problem can be found
    here and
    here.
    Regards

  • Very strange Adobe AIR bug...

    Hi,
    I have an AIR application that makes some http calls -- simply enough.  This works when I run the app in Flex Builder but after I package the application and run the exe, the calls are never made.  Even stranger, if I add an alert before the call in the method, then the http call is made.  This makes no sense to me and I was wondering if someone could help shed some light on this.  The code is below:
    My config is as follows:
    Flex 3.3 SDK
    AIR 1.5
    Cairngorm
    Thanks!!
    public function refreshCurrentStatusPanel():void{
    //Alert.show("bears");
            var event:SetDateEvent = new SetDateEvent();
            event.dispatch();
            var event2:GetCurrentStatusEvent = new GetCurrentStatusEvent();
            event2.dispatch();
            var event3:GetDailyMaxMinEvent = new GetDailyMaxMinEvent();
            event3.dispatch();
            var event4:GetRawGraphEvent = new GetRawGraphEvent();
            event4.dispatch();
    <mx:Button id="btnRefresh" toolTip="Refresh"
                            icon="@Embed('assets/refresh.png')"
                            width="18"
                            height="18"
                            click="refreshCurrentStatusPanel()" />

    We are looking at the bug https://bugbase.adobe.com/index.cfm?event=bug&id=3000289 for upcoming release project.
    thanks,
    Hitomi

  • JavaRTS-2.1ea: GettingStarted examples: run-scenarios.sh bug (Ubuntu)

    Hi,
    Concerning the GettingStarted examples in JavaRTS-2.1ea (the Linux evaluation download).
    There seems to be a bug in run-scenarios.sh. If /usr/bin/taskset is the location of `taskset',
    PSRSET_CMD2 is never initialized, and
    PSRSET_CMD1 is initialized to taskset2 (which does not exist)
    Excerpt from run-scenarios.sh:
    if [ $OS = "SunOS" ]
    then
        PSRSET_CMD1="/usr/sbin/psrset -e 1"
        PSRSET_CMD2="/usr/sbin/psrset -e 1"
    else
        if [ -f /bin/taskset ]
        then
         PSRSET_CMD1="/bin/taskset -c 0"
         PSRSET_CMD2="/bin/taskset -c 0,1"
        else
         if [ -f /usr/bin/taskset ]
         then
             PSRSET_CMD1="/usr/bin/taskset1 -c 0"      <--- oops, a typo - taskset1
             PSRSET_CMD1="/usr/bin/taskset2 -c 0,1"   <--- oops, another typo - taskset2 and PSRSET_CMD1
         fi
        fi
    fiThis is what happens when I run the scenarios:
    sudo ./run-scenarios.sh java ../../bin/java "" GettingStarted.jar
    # -- NonDeterministic Run1 --
    /usr/bin/taskset2 -c 0,1 java -client -XX:+PrintGC -classpath GettingStarted.jar NonDeterministic 5000 20 10 0 0 max 5000 20 10 0 0 min
    ./run-scenarios.sh: 270: */usr/bin/taskset2: not found*
    # -- NonDeterministic run1 completed
    (Could it be the case that few people have noticed this, because perhaps `taskset' is located in /bin/ on most relevant Linux distros (I'm guessing), but I'm using Ubuntu where taskset is located in /usr/bin/ ?)
    Regards,
    Magnus

    Thanks for the bug report. We'll take care of it.
    David Holmes

  • Strange Keyboard shortcut bug

    I've got AA3 set up pretty much the way I want it, and I haven't added or modified any key bindings for some months.
    But I wanted to add a shortcut for an effect I'm starting to use more often, and now I couldn't close the key binding form - I could only cancel my changes.
    The key I originally wanted to bind was the H key. When I entered that into the key selection edit and tried to apply the change, I found I got a conflict error, with two other entries listed in the conflict box.
    So without looking, I naturally manually searched all the bindings, but nowhere was the H key registered.
    Then I looked at the conflict box more closely, and it seems that without any modification or warning, the Ctrl-W keybinding is all of a sudden being flagged as conflicting.
    It hasn't been a conflict before now (or I would never have been able to close the dialog without the error blocking it, in which case any conflicts would have been reset to default, non-conflicting bindings).
    So it's either an xml config corruption, or a bug in AA. Either way, it's not a big deal, but I'm quite surprised that in an otherwise stable configuration, a problem like this suddenly popped up from under the registry toadstool it was buried in.
    It might have helped if I could manually modify (or even just verify) the key bindings outside of the application, but the keyboard binding/config mechanism AA uses is a real drawback when trying to sort out problems like this.
    Unfortunately (for me), although I saved my 2-dozen or so keybindings under a separate entry in the dialog, and although the Ctrl-W key combination was one I didn't modify in that binding set, when I tried to restore my bindings AA crashed. The only workaround was to restart it, open the key dialog, and reset to factory defaults.
    After only 12 minutes, I'm now back where I started from, and I can continue my edit. On the bright side, this is another instance of the fantastic Audition crash recovery mechanism restored all but the very latest 20 minutes of editing, so I've only lost 32 minutes' work. I'll take a win wherever I can.
    I've taken some screendumps as I was going to report it as a bug, but the screendumps just look like I've made a mistake and the xml configs have all been reset. So this is just FYI now.

    Sad to say, but the previous fix (CS5) of manually editing the .kys file (http://forums.adobe.com/message/2984641#2984753) doesn't work anymore with Illustrator CS6. The problem is widespread, present with many non-US keyboard.
    Anyone can help with a new idea?

  • Strange scenario - need help

    I have Skype on my Windows 8.1 laptop and on my Android tablet
    When I use the tablet for skype everything works great - except I am unable to create group calls which is absolutely eseential for my work.
    Therefore when I need to do group calls, I either get someone else to create the group or I try to use skype on the laptop.
    However this is when the problems start.
    Two common people I talk with are CJ and NT.
    CJ uses Skype on a Mac Laptop.
    NT uses skype on a Windows 8.1 laptop.
    * If I have a call with CJ on the tablet, everything works 100% fine
    * If I have a call with NT on the tablet, everything works 100% fine
    * If I have a call with CJ on the laptop, his sounds randomly cuts out (usually in 3-5 seconds blocks, maybe every 5-10 minutes)
    * If I have a call with NT on the latop, everything works 100% fine
    So... 
    * I thought the problem was with my audio output - but I never have the problem with NT?
    * I thought the problem was with CJs microphone - but I never have a problem when I talk with him on the tablet?
    I've tried...
    * Ehanced audio / non-enhanced audio
    * Re-install drivers
    * Headset / no headset
    It's really frustrating! Now my tablet is basically stuck as my skype phone however this means I cant do group calls which I really need.
    Please, anyone, help me solve this dilemna!
    I use skype every day.

    I've delved further into this testing am starting to see a trend...
    Other contacts of mine CC and HK are boths Mac users and they have similar problems to CJ mentioned above when on the laptop but never on the tablet.
    Meanwhile another contact AT is a windows user and they never have problems on both the tablet and the laptop.
    Therefore, the trend so far is that if I talk to a Mac User on my Windows 8.1 laptop I have audio problems, meanwhile every other scenario works fine!!
    P.S. These are regular contacts of mine which I NEVER had any problem on my Windows 7 laptop... wish I still had that laptop to re-test but I gave it away...

  • Multiple value selection in view criteria bug in 11.1.2

    I've also encountered this problem in 11.1.2:
    Feature Obsolete in JDev. 11.1.2?
    Is there a bug number I can track for this?
    Thanks,
    Bob

    Bug 12419026: DOING MULTIPLE SELECTION IN ADF QUERY PANEL, OPERATOR DOES NOT EQUAL GENERATES E

  • Strange double buffering bug

    Hi all,
    I have stumbled on strange swing behavior on Windows, most probably connected to double buffering introduced in java 6.
    Once in a while Windows stops redrawing my JFrame. From the java side everything seems ok - all the components are painted (that is, all native methods called), EventQueue normally processed by EDT, but repainted GUI is not shown on the screen. Note that OS has the repainted info - if I cover part of the application window with another window (e.g. explorer), and hid it back, the part that was covered is repainted. This happens even if I have java app halted on debug, so no other java actions can cause this repaint - OS has to have this image, it just does not put it on the screen. When I minimize/maximize the app, everything goes back to normal.
    Note that I can normally operate the app "as if" it was painted - I can change tabs, click buttons (even though I can't see them), and results of these actions are painted by java to some offscreen buffer, but are only shown when I cover/uncover my app with another window, or min/max it. Min/Maxing ends this strange state and further repaints are shown normally.
    Did any of you have this kind of problem? Any idea how to approach/resolve it or what can be the cause?
    Java is 1.6.20, I have seen the behavior on Windows XP, Vista and 2008. It is not reproducible, it just happens sometimes. I haven't seen that on Java 5. Turning off double buffering resolves that, but is not feasible due to degraded user experience.
    Thanks in advance for your help!
    Jakub

    Thanks for your help so far, perhabs this is something with the driver, but I use fairly generic windows distribution.
    EDT is not hosed, it is processing events normally (I checked that on debug step-by-step). We do not override any paint methods, and this is rather something on different level - it is not "a component not being repainted" it is "everything is repainted, but not shown on screen". Including tabbedPane's tab changes, menu display, etc. I can even see cursor changing into carret when I hover over "not shown" textfield.
    Displaying and then disposing of modal dialog also fixes the state, as do resizing of the JFrame.

  • Strange CS5 printing bug (reds pumped)

    Windows 7 64-bit, CS5 64-bit 12.04, Canon Pro9000 MkII.
    Many/most files go back to CS4. I just started printing on CS5. I have a way to work around the bug, but maybe someone from Adobe will see this and duplicate and fix whatever the issue is. I can provide file(s) to duplicate.
    I have noticed that CS5 remembers my printer driver settings application wide. I also notice that CS5 saves print settings in each PSD file. This may be contributing to the problem.
    I open a file. 16-bit Prophoto PSD file.
    I open the print dialog.
    The dialog is defaulted to printer color management.
    Open the printer settings. Check the settings. The driver settings are correct. Paper, quality, no color management. Click ok.
    Now the dialog changes to photoshop manages colors and the profile selected is some generic canon bubble jet profile.
    I select the correct profile. A red river paper profile in this case.
    Print.
    Bad print. The colors with some amount of red in them has the red channel pumped up. Many colors are okay.
    Start with a new file (one not worked around).
    Open file, change print settings. Close and save file. Open file. Print. Bad Print.
    Now the work around.
    Start with a new file (one not worked around).
    Open file, change print settings. Close and save file. Close photoshop. Open photoshop. Open file. Print. Good Print.
    So it seems that my file(s) have some sort of saved print info that is confusing CS5 that persists until the file is saved with current settings and CS5 is closed. I never printed before on this installation so I have no idea what print info could be in the file. I did have a different Canon printer previously installed on this machine but never printed or opened the print dialog in photoshop. Photoshop probably noticed the "default" installed printer even though I never used it.
    It is rather annoying to open a file, change print info, close file and photoshop and then reopen for all my files I want to print just to get around this.
    -Norman

    Have you gone into the "Print Settings" dialog and turned off color matching in the Epson portion of the settings?
    Are you running the most recent version of the driver? There is a combination updater to version 7.0 available as the first result at:
    http://www.google.com/#hl=en&source=hp&q=epson+common+updater+v7.0+9800&btnG=Google+Search

  • Local adjustement strange behavior. Bug ?

    Hallo,
         Whilte retouching picture from a wedding I got some strange behavior. I wanted to hightlight the couple using local adjustement / Brightness.
    But the result get "noisy". Look at the screenshot.
    More about the picture:
      Very low light, EOS 5D Mark II, 3200 ISO, RAW/CR2
         Any opinion ?
         Regards

    If it doesnt help, can you provide a different photo that has the same behavior happening. It's hard to tell what's going on with the one that you provided

  • Strange on idle Bug? Feature?

    Hi Everyone,
    I was trying to create and on idle handler that would return after about half a second. I tried the following code in xcode but was not able to get it to fire off quicker than about a second. In a fit of sillyness I put -1 on the return line and ended up with an idle handler that fires once every 1/60th of a second. Admittedly the CPU usage jumps as well but its pretty cool none the less if you looking for quick polling. I have searched, without success, to find more information on the return values for the idle handler. Does anyone have any more information?
    on idle theObject
    --code
    return 0.5
    end idle
    Regards
    Chris

    The idle handler is documented to require a result in seconds. There's nothing to indicate that anything less than one second is acceptable.
    The 1/60th result appears to defy even that logic, and I may class that as a bug, but I've never considered anything less than one second as valid.
    That said and task that you need to perform every half a second can hardly be qualified as an 'idle' task. You should probably look for an alternative way of handling this, such as a repeat loop with a delay 0.5 in it to add the pause.

Maybe you are looking for

  • Compress an image before upload

    Hi, Is there a way to compress an image using Flex? the scenario I have is: the user takes a picture from a mobile device camera, I then upload it to the cloud. I'd like to be able to shrink the image in size before I upload it as it takes ages. Many

  • Financial Statement

    Hi all I am creating a customized report of Financial Statement that contains monthly figures for every G/L account. When I compared my report with the standard FS, I found out in standard FS, there are some G/L are taking amount from previous fiscal

  • Centering Text within JLabel

    I am trying to figure out a way to center the text within a JLabel. I trying to set a specific size of the label, and then center the text in the very middle (horizontally) of that label. I have tried many different methods from this forum and other

  • Sap script output

    Hi, print program is sapltb85 and form is zform. sapltb85 is type 'F' program so can't able to execute it. So how can i get the output ? what r the modifications should do ? thanks in advance.

  • Picture and cd art

    Hey guys, This should be a simple answer but I can seem to figure it out. I have all my music on my library and I just ordered a Ipod photo what not so I would like to put the cd art for all the albums. It seems like I can't put the art for the whole