Using xdofx issue in BIP

Hi,
using xdofx issue in BIP
<?xdofx: if Status ='Open' then 'O' else if Status ='Closed' then 'C' else if Status ='Received' then 'R' else 'P' end if?>
the above statment working fine for me.
but when i add another if statement for another field i.e.
<?xdofx: if System ='AA' then 'Auto Adjust' else if System ='BM' then 'Billing Method' else System end if?>
then it always displaying P. I dont have any value or data for System. why it is printing P from the field Status? Cant we use xdofx many times in the report?
Thanks,
Anu

I am sure there must be a limit (right? :) ).
Why don't you just use one "IF" as at time in separate xdofx tags?
Only one be valid anyways!.
Regards
Jorge
p.s If this answers your question then please mark it as "Correct" or "Helpful"

Similar Messages

  • Issue while posting using goods issue for delivery type NL

    Hello Experts,
    I have created an outbound delivery for an intra-company transfer (within same company code) between two plants. The delivery type in NL (replinishment delivery)
    When i am trying to post the goods issue from supplying plant, I am getting following error
    "Account type K is not defined for document type WL".
    Delivery type NL should not be used to issue stock to vendor but I am not issuing it to any external vendor , issuing the stokc only to a receiving plant.
    Please help to understand why i am getting this error.
    Regards,
    Nish.

    Hi,
    If you are doing an STO Scenario, Check whether you have created the supplying plant as a vendor.
    The Vendor Account group should be plants.
    Also check whether you have given the plant in the vendor master Purchasing Data - Extras tab in the menu click on add purchasing data & check.
    If you haven't assigned this, do the same & create a fresh STO & check.
    Hope it will work.
    Thanks & Regards,

  • After 11.1 and ios 7 update, cannot log into ipad. says apple ID already in use. no issues prior to updates.

    After 11.1 and ios 7 update, cannot log into ipad. says apple ID already in use. no issues prior to updates.tried both primary and backup emails. says both already in use

    randers4, thank you for the suggestions.
    1) I have contacted Verizon and they are not blocking "premium" or 3rd party text messages.
    2) The Apple ID login issue occurs regardless of wi-fi network location, or even if I am not on wi-fi at all. Router settings are irrelevant to this problem.
    3) I have already played around extensively with date and time settings. This did not fix any issues.
    Any other suggestions? I had another call with Apple support and they are of the opinion that I may need to have the phone totally replaced, which is unacceptable unless it is free of charge.

  • Movement type used for ISSUE.

    Hello all,
      I need to create report,where i need to list out all the  movment type used for ISSUE(Consumption).
      How to list out all movement type used only for ISSUE(consumption).Is there any logic can be used here?
    Useful answer will be appreciated...
    Regards,
    Shyam

    hi,
    go to MB51 and enter the movent types shown below for issues or consumption, then you  will get list of all documents related to consuptions.
    201-consumption for cost centrer
    221-consumption for project
    231-consumption for sales order
    241-consumption for assest
    251-consumption for sales
    261-consumption for order
    281-consumption for network
    291-consumption for all account assignments.
    you have to remember the movement types, i think there is no special logic to get these movement types separetly.

  • Issue in using xdofx:round fn

    Hi ,
    In one of my form field, I have a requirement to sum two values after rounding them. I specified it as <?xdofx:round(<element1>,2) + xdofx:round(<element2>,2)?> , the o/p is null. So to debug I specified one at a time and the rounding works i.e. <?xdofx:round(<element1>,2)?> or <?xdofx:round(<element2>,2)?> the o/p comes up fine. Logically the sum should also come up. However, it comes up null. It seems like XML Publisher engine is not able to handle this kind of scenario.
    I have ways to get over this issue (like doing calculation at query level) but am wondering what could be the issue ? Does any one has any idea about the same?
    Regards,
    Saurabh

    Hi Saurabh,
    Did you guess what caused issue, It was your wrong usage (Hope you wont mind)of the command.
    The usage of XDOFX in both the places has caused the issue,
    its a single command and remember your are enclosing it in <??>
    so , i guess the context is getting lost if we use it multiple times in same command.
    <?xdofx:round(100.1090,2) + xdofx:round(100.9098,2)?> for this NULL
    <?xdofx:round(100.1090,2) +round(100.9098,2)?>  for this 201.*******                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Error while using xdofx calculations in xdoxslt function

    Hi All,
    I have a requirement to subtract two dates in the rtf and display the difference in years and months. Among the two dates, one is in Date datatype and the other one is in varchar2(dff attribute).Following are the details:
    1.Start_date(Date data type) - appears as YYYY-MM-DD in the XML when the tag is printed as it is without any manipulations.
    2.End_Date(Varchar2 - dff attribute) - appears as YYYY/MM/DD HH:MI:SS in the XML whent the tag is printed as it is wihtout doing any manipulation.
    As the first step am trying to convert the varchar2 to canonical date format and then converting it to required format compatible for using date_diff function. But am facing issues. Please help me with this. The following is the code am trying to use.
    To convert end date to date format of our choice : <?xdofx:to_date(replace(substr(EndDate,1,10),’/’,’-’)||’T00:00:00.000+05:30’,'YYYY-MM-DD')?>
    To subtract end date and start date to fetch difference in years: <?xdoxslt:date_diff('y',StartDate,xdofx:to_date(replace(substr(EndDate,1,10),’/’,’-’)||’T00:00:00.000+05:30’,'YYYY-MM-DD'),$_XDOLOCALE, $_XDOTIMEZONE)?>
    Am getting an error which says xdofx used bot not declared. If I remove it, I get an error saying to_Date function not found. I belive we're not supposed to mix xdofx and xdoxslt together. Please let me know how this can be achieved.
    Am using 10.1.3.4.2 version of BIP.
    Regards,
    Divya

    according to Extended Function Support in RTF Templates - 11g Release 1 (11.1.1)
    <?xdoxslt:date_diff('y', 'YYYY-MM-DD', 'YYYY-MM-DD', $_XDOLOCALE, $_XDOTIMEZONE)?>
    This function provides a method to get the difference between two dates in the given locale. The dates must be in "yyyy-MM-dd" format. This function supports only the Gregorian calendar. The syntax is as follows: <?xdoxslt:date_diff('format', 'YYYY-MM-DD', 'YYYY-MM-DD', $_XDOLOCALE, $_XDOTIMEZONE)?> where format is the time value for which the difference is to be calculated. Valid values are:
    y - for year
    m - for month
    w - for week
    d - for day
    h - for hour
    mi - for minute
    s - for seconds
    ms - for milliseconds
    very strange for hour, minute .... and "The dates must be in "yyyy-MM-dd" format."
    but for your case
    display the difference in years and months.
    it's ok
    so
    1.Start_date(Date data type) - appears as YYYY-MM-DD in the XML when the tag is printed as it is without any manipulations.
    2.End_Date(Varchar2 - dff attribute) - appears as YYYY/MM/DD HH:MI:SS in the XML whent the tag is printed as it is wihtout doing any manipulation.
    Start_Date and End_Date must be in "yyyy-MM-dd"
    for "Start_date" - that's ok
    for End_Date we must reformat as
    concat(substring(//End_Date,1,4),'-', substring(//End_Date,6,2),'-', substring(//End_Date,9,2))
    so as result:
    - for months:
    Diff is <?xdoxslt:date_diff('m', //Start_Date, concat(substring(//End_Date,1,4),'-', substring(//End_Date,6,2),'-', substring(//End_Date,9,2)), $_XDOLOCALE, $_XDOTIMEZONE)?>
    which gives output as
    Diff is 1
    for test case
    <Start_Date>2013-01-11</Start_Date>
    <End_Date>2013/02/11 11:00:00</End_Date>
    - for years:
    Diff is <?xdoxslt:date_diff('y', //Start_Date, concat(substring(//End_Date,1,4),'-', substring(//End_Date,6,2),'-', substring(//End_Date,9,2)), $_XDOLOCALE, $_XDOTIMEZONE)?>
    which gives output as
    Diff is 3
    for test case
    <Start_Date>2013-01-11</Start_Date>
    <End_Date>2016/02/11 11:00:00</End_Date>

  • Issue in BIP Report Generation - Issue gets fixed when the rtf is opened and re-saved

    Hi,
    We are facing a unique case in BIP reports generation at a Customer site. The BIP installed is a part of the OBIEE 11g installation. The customer report generates most of the times, however there are instances where we get a techinical details error ( custom error ) -  The only way to 'fix' this issue currently is to open the rtf file, hit the spacebar and save this file ( ie re-save this file ) and the report starts to generate correctly again for
    Has anyone else faced such a problem ?
    Also, not sure if this helps - the corresponding xdo has nested tags
    Thanks in Advance
    Orjun - Oracle Financial Services

    Your server file handling has nothing, and really nothing to do with Adobe software. If files don't get locked for (over-)writing and/or lose connection to the program opening them, then your server is misconfigured. It's as plain and simple and that. Anything from "known file types"/ file associations not being set correctly, MIME types being botched, crooked user privileges and file permissions, missing Mac server extensions, delayed file writing on the server, generic network timeout issues and what have you. Either way, you have written a longwinded post with no real value since you haven't bothered to provide any proper technical info, most notably about the alleged server. Either way, the only way you can "fix" it is by straightening out your server and network configuration, not some magic switch in Adobe's software.
    Mylenium

  • XSL-TEXT: how to import subtemplates in XSL and use xdofx tags?

    Hi,
    I am working on a BI Publisher Report (XML Publisher 5.6.3 in EBS) to generate labels on a label printer. The output needs to be in plain text format, therefore I decided to use the XSL-TEXT template and create my own XSL translation.
    In principle this works pretty fine, but there are two things that worry me a bit:
    1. Does anybody know how I could import other XSL files, like sub-templates in RTF? The problem I have is that I don't know the URI or the sub-template. At the moment I store those other XSL files in the OA_MEDIA folder, but this is not really nice. In RFT you can refer to subtemplates with some xdofx commands... this brings me to my second question:
    2. In RTF templates you can use the Oracle specific XML tags, including the <xdofx:%> and <xdoxslt:%> tags. Does anybody know if and how I can use them in XSL templates?
    Any ideas are highly appreciated!
    regards,
    David.

    Hi Vetsrini,
    1. but what is the absolute path for my subtemplates if I store them in the Template Manager? How can I refer to them?
    This is what the manual says for RTFs:
    >
    Enter the Import Syntax in the Primary Template
    Import the subtemplate to the primary template by entering the following syntax in the
    primary template. The import syntax tells the XML Publisher engine where to find the
    subtemplate RTF in the Template Manager. This syntax may be entered anywhere in the
    template prior to the call-template syntax:
    <?import:xdo://APPCODE.TEMPLATE_CODE.lang.TERR?>
    where
    APPCODE is the Application code you assigned to the subtemplate in the Template
    Manager. For example, if you associated this template with the Receivables application,
    enter "AR".
    TEMPLATE_CODE is the template Code you assigned to the subtemplate in the Template
    Manager. For example, AR_CommonComponents.
    >
    sounds good and easy to me. But I don't have a RTF template. I have just a plain XSLT and those XML Publisher tags do not work there. So how do I get the absolute path of my XSLT templates stored in the Template Manager?
    2. I've included the namespace, no error anymore. But the syntax does not result in actions:
    <xsl:value-of select="xdoxslt:substr((PRODUCT_NAME),1,2)"/>
    {code}
    This does not substring() my string, the full string is returned. But anyway, I don't get an error message anymore. Maybe I just used the wrong XDOXSLT function... I need to search for a list of XDOXSLT functions, but that's not very urgent for now. I think I can do the most with plain XSL and inside the DB itself.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Yet another high cpu using flash issue

    Salutations. What I'm about to tell you won't come to you as a surprise as there have been many similar topics discussed here. In fact, on the first page, there were two. So let's get on with it!
    hp pavillion entertainment notebook dv6 e2170ee
    windows 7 64bit
    6gb ram
    intel core i7 cpu q 720 @ 1.60 GHz    (never overclocked. don't know how to)
    nvidia geforce gt 230m
    firefox is on safe mode. kind of better than regular mode.
    firefox waaaay better than chrome in handling flash. haven't tried it on ie. don't want to. i left ie8 at version 8
    flash hardware accelration is off
    firefox hardware accelaration is on
    latest flash player enabled
    latest shock player enabled
    latest flash director enabled
    latest firefox
    no idea if my vents and cooling system work properly. read several posts about this issue being related to hardware.
    i have updated my drivers using hp support assistant, driver detective, and windows update. wouldn't be surprised if there was a conflict with all this nvidia driver as well. went to the site. it detected my model and sent me the driver. had audio and video options in it.
    while writing this post, the adobe tab + 4 flash tabs off the same site (youtube, younow, cam sites, etc) are open.
    performance tab in taskbar says
    flashplayer 15 *32bit (2 processes with the same name but diff cpu usage by the way. why 2?) is using 5%
    firefox *32 bit is using 5%
    audiodg.exe is nowhere to be found
    now firefox and flashplayer keep alternating ofcourse. flash always ends up with higher cpu when everything breaks. i have noticed that even after closing ff, ff and flash are still in the processes table. they stay there for a bit. why?
    ISSUE NUMBER 1: i can't play a video and have flash players on at the same time. I'd like to watch a movie and every now and then look to my other screen to see what's going on with the flash site. it can't be done. all is well at the beginning then it goes to hell. i have the latest free version of bsplayer and videolan. Yes vlc handles better but it all goes to hell in the end. sometimes the video won't even show on vlc; only audio
    ISSUE NUMBER 2: i don't understand the logic behind the increase in cpu. if i have 6 tabs open all flash all is well. but at some point it just spikes up. so i always try to keep the number of flash tabs as low as possible. sometimes 4 are no issue but 5 are a big issue. sometimes closing a tab helps and sometimes it doesnt.
    ISSUE NUMBER 3: audiodg starts using more than 2%. It can go up to 11 or 13 even. That shouldn't happen. I've been told that for it to go beyond 2 or even 3 means there's a conflict. I had trouble dealing with this issue. I don't know what or where the conflict is. So if there's anyone here that's good at this please contact me. Ill post a pic of device manager. For the sound, i have 4 nvideo and 1 idt audio codec. I cdon't know which to disable or uninstall. im thinking of unintalling every audio/video driver i hav and start from the beginning. BUT LETS NOT MAKE THIS ABOUT AUDIO/VIDEO CONFLICT
    QUESTION 1: was there ever a time when this issue didn't exist? perhaps there's a "stable" version of ff or flash that don't cause this.
    QUESTION 2: ive seen a lot of posts about this but I honestly can't remember any participants saying OH REALLY? ODD, I NEVER HAD THIS ISSUE BEFORE
    QUESTION 3: isn't there some kind of tracer that can track the moment that it goes to hell? im sure there is but no one's mentioned it so far
    QUESTION 4: would buying a new laptop solve this? I'd like to think not since the issue is flash not the capabilities of a laptop but i can't help but think that a better laptop will fix this. My laptop is 4 years old.
    QUESTION 5: i don't know anything about multithreading or multiple cores handling a single process but if someone showed me how, would that resolve my issue?
    MY WISH: for flash to coexist peacefully with human beings

    Disabling Hardware Acceleration in Flash means that we're doing all of the processing on the CPU, instead of on the GPU.  The GPU is purpose-built for 3D graphics and video decoding and is far more power efficient.  Decoding H.264 video in software is very CPU intensive, which is why we made the huge investment to enable hardware acceleration on the vast majority of available desktop hardware. Running six CPU intensive tasks simultaneously (which is what you're doing by using six simultaneous tabs) is unsurprisingly going to tax your machine.
    If you've disabled Hardware Acceleration because video wasn't working right or something, figuring out how to get that enabled (or moving to better hardware with good driver support) would solve the vast majority of what you're describing here.  If HP doesn't offer updated drivers, I'd recommend trying the corresponding Nvidia drivers, as OEMs aren't always motivated to pick up the latest fixes once a model is no longer generating new revenue for them.  The chipset manufacturers tend to provide longer support, but those drivers aren't officially supported by the OEM.
    The architecture for Protected Mode for Firefox is a result of the fact that we've retrofitted a modern plug-in security approach to a legacy plug-in architecture.  As you've noticed, equivalent sandboxing in other major browsers is designed into their plug-in architectures, and is therefore more efficient.  We've made huge investments to support modern security architecture and always do our best to accommodate efforts from our partners in the browser space to further secure the browser.  You can find a detailed explanation of our approach to Firefox here: Inside Flash Player Protected Mode for Firefox
    Firefox controls the instantiation and destruction of Flash instances.  You'll also notice that Firefox hangs out for a while after shutdown.  This is something that we're aware of, but it's beyond our control.
    Flash doesn't have much to do with audiodg, except for the fact that it generates sound and uses the windows sound subsystem.  This article seems to present some reasonable advice in resolving issues with high CPU consumption from the sound subsystem.  Fix Audiodg.exe High CPU Usage in Windows 7 | Windows EXE Errors
    Hardware accelerated video encoding is typically not available on consumer-grade hardware (primarily because of the difference in licensing models for encoding and decoding with popular commercial codecs), and therefore is done on the CPU.  The particular website chooses what codecs and bitrates are involved, and higher quality feed will consume more CPU.  It's also worth pointing out that not all video can be decoded in hardware.  We provide clear guidance to content providers on how to encode video so that it can be played back efficiently, it's ultimately up to the content provider to follow that advice.
    So, long story short, each tab consumes resources.  Running a single tab is going to use less resources than running multiple tabs.  The latest version of Internet Explorer does some stuff to reduce resource consumption in tabs that you're not actively looking at.  We're discussing possibilities with the Chrome folks for doing the same thing in Chromium-based browsers.  Mozilla isn't interested in investing in browser plug-ins, so we don't expect to see the necessary browser-side improvements there.  The Chrome sandboxing model is more efficient that protected mode for Firefox, so tasks that require moving a lot of data (like streaming video) may use less CPU in Chrome.
    To answer your questions specifically:
    1.) There was a time before we supported multiple tabs, webcam streaming, H.264 video decoding and modern security sandboxing.  I wouldn't recommend using those versions.
    2.) There are a few posts about this, but we have ~1.5 billion users.  The majority of the very small number of folks relative to our install base are complaining their machines are overheating, which is a symptom of an ineffective cooling system. 
         There's nothing magic about Flash that causes it to somehow superheat the CPU.
         There was a time before tabs, where people didn't normally run 5-50 browser windows.  Websites also got much more complex, and the security threats got far more serious and complex.
         Playing video as a plug-in in the browser as opposed to something like VLC is inherently less efficient, as pretty much each pixel and packet gets passed through the browser before it gets to the OS or drivers.
         All of these things require additional processing.  The resources on your computer are still finite, and there is an upper limit to the number of simultaneous tabs you can use.
         At some point, you come to a juncture where you need to decide between throwing more hardware at the problem, or using less tabs simultaneously.
         Also, most laptops have power saving CPUs, so they'll ratchet the clock speed down to save battery.  You might want to check your power settings to make sure you're running at the CPU's full capacity when plugged in.
    3.) Not that would generate anything really useful.
    4.) Possibly.  You actually already have a multi-core machine.  I think you'd get more bang for your buck by enabling hardware acceleration and switching browsers.
    5.) You already have a multi-core machine that we support.
    Your Wish: We're constantly addressing security issues identified through our own testing, emerging research and intelligence from our partners in academia, government and industry.  We're also looking for opportunities to tune the player, but the reality is that Intel, Nvidia and ATI (and a long list of others, in addition to Adobe) have tuned Flash Player extensively for their hardware.  We work closely with the Internet Explorer and Chrome teams to continue to make the Flash experience better, and are always happy to work with the Firefox team should they decide that they're interested in plug-ins and the desktop browser again.  At the end of the day, Flash is just a low-level runtime.  It's just as possible to write inefficient ActionScript as it is to write inefficient C++, and while we provide some fantastic tooling for profiling your Flash content, it's up to individual content providers to write efficient code.  It's really difficult to find opportunities to make generic optimizations that don't break a percentage of the hundreds of millions of sites published with Flash content.
    I'm actually still not clear on what the problem you're experiencing is.  All software running on your machine that's actively processing something is going to use a non-zero percentage of CPU time.  The symptoms you describe indicate that Flash consumes 5% of the CPU, which is totally reasonable.  I'm guessing that I don't have the complete story.

  • [SOLVED] Unable to use SUDO: issues with /etc/sudoers

    I have reinstalled Arch_64 and I have run into some problems with SUDO.
    I get the following errors when I try to use sudo:
    sudo : unable to stat /etc/sudoers : Permission Denied
    sudo : no valid sudoers sources found, quitting
    sudo : unable to initialize policy plugin
    Here's what I have done with it so far:
    * I added USERNAME (myself) to the 'wheel' group
    * I uncommented %wheel ALL=(ALL) All using visudo
    As it was not working for me I also:
    * # chown -c root:root /etc/sudoers
    * # chmod -c 0440 /etc/sudoers
    * Since that too did not work, I recommented %wheel and added USERNAME ALL=(ALL) ALL just under the line root ALL=(ALL) ALL and repeated the above steps. The above problem persists.
    * I checked with visudo -c and it says "/etc/sudoers parsed ok".
    I have been through the WIKI and the forums but still unable to figure out whats going wrong.
    I will appreciate if the forum can guide me to solution and help me resolve this issue.
    Thanks.
    Last edited by fantab (2012-11-20 09:00:56)

    Had exactly the same problem with a new Arch_64 install a few months ago, which turned out to be a problem with permissions on / (which i changed with chmod) - can't remember the details, but it was this post that put me on to a solution:
    http://archlinuxarm.org/forum/viewtopic … =20#p19727

  • How to use XDOFX function in IF condition?

    Hi All,
    We have requirement to display the age group of a person person.
    i.e., if the person is age is in less than equal to 30 then display the age group as 1-30
    if >=31 and <=60 then 31-60
    if >=61 and <=90 then 61-99.
    for deriving for the age i have subtracted the sysdate from DOB
    <?xdofx:round((to_number(to_char(SYSDATE,'JSSSSS'))-to_number(to_char(to_date(DOB_DATE, 'YYYY-MM-DD'),'JSSSSS'))) div 100000)?>
    My question is how do i use this calculation in for deriving age group.
    Any pointers on this will be really helpful.
    Thanks,
    Jana

    I am using the below way but it is not working as desired it is always printing the derived value.
    <?xdofx:if (xdofx:round((to_number(to_char(SYSDATE,'JSSSSS'))-to_number(to_char(to_date(DOB_DATE, 'YYYY-MM-DD'),'JSSSSS'))) div 100000)) <= 30 then '(1-30)' else '(1-100)' end if?>
    Let me know if i missed anything..
    Thanks,
    Jana

  • Urgent please-sorting code issue in BIP

    Hi,
    issue with sort order in BIP reports. I gave code like this but saying expression error. Please help me.
    sort should be in the order of numbers , then upper case then lower case values.
    declared variable is <?variable: srtStr; "'01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'"?>
    then i am trying to apply code in my group
    <?for-each-group:ssAssetMgmtAsset;./ssReferenceNumber3?><?sort:current-group()/string-length(substring-before ($srtStr,substring(ssReferenceNumber3,1,1)));'ascending';data-type='text'?>
    the above code saying expression error
    Thanks,
    lax

    What is the exact error you get?
    I believe that the data-type (within the for-each-group) should be number. Try that and let me know if that fixes your issue.
    Thanks,
    Bipuser

  • Purchase Requistion - Agent Determination using responsibilities - Issue

    Hi Everyone,
    I am new to workflow. I am having an issue wrt Purchase Requistion - Agent Determination using responsibilities.
    Created some 30 to 40 resposibilities with combination of inputs - R1, P1 & Cost Center
    Checked rule with responsibilities in Simulation mode and for the given inputs shows correct output.
    Same config is present both in DEV and ACP. Simulation works fine in both systems.
    But when I created Purchase Req. in DEV and save it. Workitem is generated for the correct agent. But when I do the same test in Quality, it fails and created Workitems for several agents.
    Checked container info. in both systems,no.of agents is the ONLY difference (i.e. 1 in DEV and 30+ agents in Quality).
    Put shred some light on this issue.
    Workflow Used: BUS2009
    Task : TS00007986
    Thanks a ton in advance.
    Regards,
    Krishna

    Hi,
    Open the workflow (WS*******) with SWDD and see the bindings for the rule in the approval step (using TS00007986). Do they look the same in both environments? Are you passing the same parameters for the rule?
    Another thing that you should check is a possible authorisation error. Maybe the users are not authorised to execute the needed functions for finding the agent inside the rule (common problem).
    Also try to read the technical workflow log (Start a workflow, open SWI1 and drill-down to the workflow log). Can you see some error messages there? You will probably find a message saying that "cannot execute agent rule" or something like that. It is WF behaviour that if it cannot find an agent it will send the work item to all possible agents (unless otherwise configured).
    Regards,
    Karri

  • Urgent: How to use xdofx:replace function in xdoxslt

    Hi,
    I have to replace multiple occurrences of a particular string(#BR#) with the new line character. I tried <?xdoxslt:replace(stringpath,'#BR#',chr(10))?>, but it is giving error.
    Later I tried <?xdofx:replace(stringpath,'#BR#',chr(10))?> which works properly.
    the problem is that the string in which I have to do this operation is stored in a variable(I have stored it in a variable after doing some other replace operations). So now if I try <?xdofx:replace(xdoxslt:get_variable($_XDOCTX, 'teststring'),'#BR#',chr(10))?>, it does not work.
    What should I do to resolve this issue. Is there any way in xdoxslt by which I can replace the string with new line character?
    Or if there is any other way of storing the string by which it will work with XDOFX?
    Thanks in advance.

    I tried the same code <?xdofx:replace(xdoxslt:get_variable($_XDOCTX, 'teststring'),'#BR#',chr(13))?>, but it is not working. It is producing a blank line.
    Can anyone tell me what is the new line character in xdoxslt/OBIP. For e.g. if I have to enter a new line after the year in the following code, what I should write in place of xxx
    <?concat(xdoxslt:sysdate(‘YYYY’),XXX, "Report for ", FirstName, LastName)?>
    I tried chr(10), \n but all of them are giving error.
    Thanks and Regards

  • Line Graph Issue - In BIP values are summed for same date

    Hi
    I have below data
    Date-----------------------Sell
    27-Mar-13----------------10
    28-Mar-13----------------15
    28-Mar-13----------------20
    30-Mar-13----------------25
    There are two entries on 28-Mar-2013. On BIP line graph; Sell values are added and graph show value 35 on 28-Mar-2013.
    I want to show two different values on line graph for 28-Mar-2013.
    Edited by: 1010402 on Jun 7, 2013 12:49 AM

    Hi 913804
    I am amazed you found the browser certification of OBIEE 11.1.1.6 I could not find it anywhere in the documentation nor from metalink personell.
    Regarding the graphs not showing, we found this to be an issue with IE and not with Firefox. First make sure you have followed the upgrade step listed in
    3.9.11.2 Updating Oracle Business Intelligence Catalogs from http://docs.oracle.com/cd/E23943_01/doc.1111/e16793/patch_set_installer.htm#PATCH250. Then the last resort was to recreate the graph component in each report from scratch. As you say pie charts are unaffected.
    Regards,
    Nick.

Maybe you are looking for