Combine the Discount Codes

Is it possible to apply several discount business catalyst Online Store Shopping Cart codes?  Out of the box, only can be applied / indeed.

Looking to apply the discount by product codes:

Product A gets 50% off

Product B gets $ 25 off

The entire order gets free shipping

Hey,.

I'm afraid that this is not possible at the present time, the discount code that only one can be applied per order.

Kind regards

Mihai

Tags: Business Catalyst

Similar Questions

  • Combining the 2 CODES (thanks)

    I want to combine the first code (below) with the second.
    Then the second code gives me the unit and the number of people per quarter.
    I want to use the first code to alaculate the slope, etc. transmitted... from code 2 below
    Just want to know how to join both

    1 CODE
    SELECT REGR_SLOPE(CNT,RN)           R_SLOPE,
           REGR_INTERCEPT(CNT,RN)       R_INTERCEPT,
           REGR_COUNT(CNT,RN)           R_COUNT,
           REGR_R2(CNT,RN)              R_R2,
           regr_avgx(cnt,rn)            r_avgx,
           REGR_AVGY(CNT,RN)            R_AVGY,
           REGR_SXX(CNT,RN)             R_SXX,
           REGR_SYY(CNT,RN)             R_SYY,
           REGR_SXY(CNT,RN)             R_SXY
           
      from (select count cnt,row_number() over (order by terms) rn 
              from the_data
           )
     where cnt != 0
    R_SLOPE     R_INTERCEPT     R_COUNT     R_R2     R_AVGX     R_AVGY     R_SXX     R_SYY     R_SXY
    0.241071429    66.58035714     8      0.007238845     9     68.75     336     2697.5     81
    I want to compbine it with this code

    CODE 2
    SELECT unit, UNIT_TITLE, acad_org,
                           term_1201,term_1202,term_1203,term_1204,term_1205,term_1206,
                           
        FROM   (SELECT unit,UNIT_TITLE,acad_org,
                           term_1201,term_1202,term_1203,term_1204,term_1205,term_1206,
                             
                      ROW_NUMBER () OVER
                        (PARTITION BY unit
                         ORDER BY 
                   term_1201 DESC,term_1202 DESC,term_1203 DESC,term_1204 DESC,term_1205 DESC,term_1206,
                                  
                   ) rn
                  FROM   (select UNIT, UNIT_TITLE, acad_org,
    
            nvl(max( decode( term, 1201, d_pct )),0) term_1201,
            nvl(max( decode( term, 1202, d_pct )),0) term_1202,
            nvl(max( decode( term, 1203, d_pct )),0) term_1203,
            nvl(max( decode( term, 1204, d_pct )),0) term_1204,
            nvl(max( decode( term, 1205, d_pct )),0) term_1205,
            nvl(max( decode( term, 1206, d_pct )),0) term_1206,
    
                  
                      from   (select E.sub|| E.cat = c.sub || c.cat unit, E.TERM,C.UNIT_TITLE, C.acad_org,
                           COUNT (E.OUA_ID) d_pct
                 from   TABLE1 E, TABLE2 C
                           WHERE  E.sub|| E.cat = c.sub || c.cat
                           and E.year = c.year
                 AND E.YEAR = '2012'
                          GROUP BY E.subject_cde || E.catalogue_no, E.TERM, C.UNIT_TITLE, C.acad_org)
                      GROUP BY UNIT, UNIT_TITLE, acad_org))
       WHERE  rn = 1
       order  by unit
    Makes me:
    UNIT     UNIT_TITLE     ACAD_ORG     TERM_0801     TERM_0802     TERM_0803     TERM_0804     TERM_0805     TERM_0806
    ABC11     Taxation     CURTN                  19                  14                  15                    0                0     12
    So when the two are to combine my final answer would be something like:
    RESULT
    UNIT     UNIT_TITLE     ACAD_ORG     TERM_0801     TERM_0802     TERM_0803     TERM_0804     TERM_0805     TERM_0806
    ABC11     Taxation     CURTN                  19                  14                  15                    0                0     12
    WITH THAT.

    All on a single line
    R_SLOPE     R_INTERCEPT     R_COUNT     R_R2     R_AVGX     R_AVGY     R_SXX     R_SYY     R_SXY
    0.241071429     66.58035714     8     0.007238845     9     68.75     336     2697.5     81
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi

    Thank you

    Published by: Chloe_19 on 08/02/2012 00:07

    Maybe (just extend the other final step)

    with
    base_data as
    (select e.subject_cde || e.catalogue_no unit,
            c.unit_title,
            c.acad_org,
            e.term,
            count(e.oua_id) d_pct
       from table1 e,
            table2 c
      where e.sub || e.cat = c.sub || c.cat
        and e.year = c.year
        and e.year = '2012'
      group by e.subject_cde || e.catalogue_no,e.term,c.unit_title,c.acad_org
    ),
    regr_calcs as
    (select unit,unit_title,acad_org,
            regr_slope(d_pct,rn)     r_slope,
            regr_intercept(d_pct,rn) r_intercept,
            regr_count(d_pct,rn)     r_count,
            regr_r2(d_pct,rn)        r_r2,
            regr_avgx(d_pct,rn)      r_avgx,
            regr_avgy(d_pct,rn)      r_avgy,
            regr_sxx(d_pct,rn)       r_sxx,
            regr_syy(d_pct,rn)       r_syy,
            regr_sxy(d_pct,rn)       r_sxy
       from (select unit,
                    unit_title,
                    acad_org,
                    d_pct,
                    row_number() over (partition by unit,unit_title,acad_org order by term) rn
               from base_data
              where pct != 0
            )
      group by unit,unit_title,acad_org
    ),
    pivoted as
    (select unit,unit_title,acad_org,
            term_1201,term_1202,term_1203,term_1204,term_1205,term_1206
       from (select unit,unit_title,acad_org,
                    term_1201,term_1202,term_1203,term_1204,term_1205,term_1206,
                    row_number() over (partition by unit
                                           order by term_1201 desc,term_1202 desc,term_1203 desc,
                                                    term_1204 desc,term_1205 desc,term_1206 desc
                                      ) rn
              from (select unit,unit_title,acad_org,
                           nvl(max(decode(term,1201,d_pct)),0) term_1201,
                           nvl(max(decode(term,1202,d_pct)),0) term_1202,
                           nvl(max(decode(term,1203,d_pct)),0) term_1203,
                           nvl(max(decode(term,1204,d_pct)),0) term_1204,
                           nvl(max(decode(term,1205,d_pct)),0) term_1205,
                           nvl(max(decode(term,1206,d_pct)),0) term_1206,
                      from (select unit,unit_title,acad_org,term,d_pct
                              from base_data
                           )
                     group by unit,unit_title,acad_org
                   )
            )
      where rn = 1
    )
    select p.unit,p.unit_title,p.acad_org,
           p.term_1201,p.term_1202,p.term_1203,p.term_1204,p.term_1205,p.term_1206,
           r.r_slope,r.r_intercept,r.r_count,r.r_r2,r.r_avgx,r.r_avgy,r.r_sxx,r.r_syy,r.r_sxy,
           (r.r_intercept - p.term_1201) / r.r_slope new_term_1201,
           (r.r_intercept - p.term_1202) / r.r_slope new_term_1202,
           (r.r_intercept - p.term_1203) / r.r_slope new_term_1203,
           (r.r_intercept - p.term_1204) / r.r_slope new_term_1204,
           (r.r_intercept - p.term_1205) / r.r_slope new_term_1205,
           (r.r_intercept - p.term_1206) / r.r_slope new_term_1206
      from pivoted p,
           regr_calcs r
     where p.unit = r.unit
           p.unit_title = r.unit_title
           p.acad_org = r.acad_org
    

    Concerning

    Etbin

  • Display the number of discount Codes used

    I have a client who would like to list the number of times a discount code is used. The discount Code is limited to the first 500 uses, and he would like others to see how much is left.

    Is this possible?

    There is no way to do it on the front-end server after talking with support.

    However, you can run a report customized in the admin to get the number if you wish.

    Reports > customer reports > eCommerce > Discount Codes > results > change in amount than the amount in the options.

  • ENTRY DISCOUNT CODE = VALUE OF THE SPECIFIED EVENT

    IM using acrobat x pro

    Im trying to do a discount field so that my customers will be able to enter in the "discount code" numbers and letters may be...

    and it would be for a value of sertain equale

    lets say that the code is 123HC45 witch would be equal to the - $50 off

    can someone help me with this code... and I would keep it in the same field...

    Thank you

    It's hard to say without looking at the form. Is there something in your form that resets all fields?

  • Can you create a button in Dreamweaver with a "promo code" function, so users who have the promo code can go to a discount on a product page?

    Can you create a button in Dreamweaver with a "promo code" function, so users who have the promo code can go to a discount on a product page?

    Unless you are a qualified PHP coder, you will need a full shopping cart 3rd party.

    Asecurecart is reasonably priced, and it can be integrated with your PayPal account for the processing of payments + many others like WorldPay, Authorize.net, etc...

    ASecureCart shopping cart. A shopping cart compliant secure PCI.

    Nancy O.

  • the value of discount code for free product

    Hello

    I am trying to create a discount code that we can give to the family/friends for a product, the quantity, so the product will be free. We want to create a small flyer with this code, so we can give this easily.

    But I noticed that when using the same code and then I suppose they can give to someone else and it will work as well and that should not be possible.

    Is it possible to work around this problem, or is the only way to do it is to make a unique code for each person and make sure that it is redeemable once? That would mean that we cannot print these brochures at the front, or each must have a unique code.

    pls advise.

    thnx

    Of course, http://kb.worldsecuresystems.com/893/bc_893.html

  • Apply the discount to the registration page Code

    Is it possible (perhaps via the API or AJAX) to apply a discount code in the shopping cart/order when on the final registration page and then dynamically update the total price for?

    For example: If a person chooses a particular payment type they get a 5% discount.

    Hey,.

    I fear that this configuration is not possible at the moment.

    Thank you

    Mihai

  • Unable to create DirectX device on some computers. The error code is D3DERR_NOTAVAILABLE.

    I'm sorry if this post is not in the right place, or if it is a duplicate. I couldn't find help anywhere for the problem that I am facing.

    I worked for a few days now trying to get a DirectX control to load on some computers in my organization. The code we have written works fine on some machines (perhaps 50%), but fails to initialize DirectX during the creation of the unit on others machines with an exception containing the code of error D3DERR_NOTAVAILABLE. We use the DirectX 9 SDK for development. We did ensure that the DirectX (version 10) runtime is installed on the computers of problem as well (we believe that the runtime must be backward compatible). I wrote the code to attempt to create a device using all possible combinations of the available settings and still no device can be created! The code I used to try to find any working device is less. I'm doing something wrong? Code (written in c#) starts in the InitializeGraphics() function and calls the GetAcceptableDevice() function. The GetAcceptableDevice() function returns zero on our computers of problem:

    private GetAcceptableDevice device (DeviceType deviceTypes, Format [] backBufferFormats, DepthFormat [] depthStencilFormats []) {}
    List acceptableAdapterFormats As new List();
    {foreach (adapter AdapterInformation in Manager.Adapters)
    {foreach (DeviceType deviceType in deviceTypes)
    {foreach (backBufferFormat in backBufferFormats Format)
    Now, make sure that the depth buffer meets one of the required formats.
    {foreach (DepthFormat depthStencilFormat in depthStencilFormats)
    PresentParameters pp = new PresentParameters();
    pp. AutoDepthStencilFormat = depthStencilFormat;
    pp. BackBufferCount = 1;
    pp. BackBufferFormat = backBufferFormat;
    pp. BackBufferHeight is this. Height;
    pp. BackBufferWidth is this. Width;
    pp. FullScreenRefreshRateInHz = 0; Must be 0 in windowed mode.
    pp. DeviceWindow = this;
    pp. DeviceWindowHandle is this. Handle;
    pp. EnableAutoDepthStencil = true;
    pp. ForceNoMultiThreadedFlag = false;
    pp. MultiSample=MultiSampleType.None;//Anti-alias settings
    pp. MultiSampleQuality = 0;
    pp. PresentationInterval = PresentInterval.Default;
    pp. PresentFlag = PresentFlag.None;
    pp. SwapEffect=SwapEffect.Discard;//Required to be scrapped for anti-aliasing.
    pp. windowed = true; Must set to true for the controls.
    Treatment of vertex createFlags=CreateFlags.SoftwareVertexProcessing;//Software CreateFlags should always work.
    Device functionalDevice = null;
    try {}
    functionalDevice = new device (adapter. Adapter, deviceType, createFlags, pp);
    Return functionalDevice;
    } catch {}
    Just skip it and try the following.
    }
    }
    }
    }
    }
    Returns a null value.
    }

    public void InitializeGraphics() {}
    Device = MakeBasicDevice ();
    {if(Device==null)}
    Device = GetAcceptableDevice)
    DeviceType.Software is rarely used. DeviceType.NullReference produced a device, on which you can not attract.
    New DeviceType [] {DeviceType.Hardware, DeviceType.Reference},
    All display formats listed on in the case where we want to try them all (for the exhaustive tests).
    New Format [] {Format.A16B16G16R16, Format.A16B16G16R16F, Format.A1R5G5B5, Format.A2B10G10R10, Format.A2R10G10B10, Format.A2W10V10U10,
    Format.A32B32G32R32F, Format.A4L4, Format.A4R4G4B4, Format.A8, Format.A8B8G8R8, Format.A8L8, Format.A8P8, Format.A8R3G3B2,
    Format.A8R8G8B8, Format.CxV8U8, Format.D15S1, Format.D16, Format.D16Lockable, Format.D24S8, Format.D24SingleS8, Format.D24X4S4,
    Format.D24X8, Format.D32, Format.D32SingleLockable, Format.Dxt1, Format.Dxt2, Format.Dxt3, Format.Dxt4, Format.Dxt5,
    Format.G16R16, Format.G16R16F, Format.G32R32F, Format.G8R8G8B8, Format.L16, Format.L6V5U5, Format.L8, Format.Multi2Argb8,
    Format.P8, Format.Q16W16V16U16, Format.Q8W8V8U8, Format.R16F, Format.R32F, Format.R3G3B2, Format.R5G6B5, Format.R8G8B8, Format.R8G8B8G8,
    Format.Unknown, Format.Uyvy, Format.V16U16, Format.V8U8, Format.VertexData, Format.X1R5G5B5, Format.X4R4G4B4, Format.X8B8G8R8, Format.X8L8V8U8,
    Format.X8R8G8B8, Format.Yuy2},
    All depth formats listed on in the case where we want to try them all (for the exhaustive tests).
    new DepthFormat [] {DepthFormat.D15S1, DepthFormat.D16, DepthFormat.D16Lockable, DepthFormat.D24S8, DepthFormat.D24SingleS8, DepthFormat.D24X4S4,
    DepthFormat.D24X8, DepthFormat.D32, DepthFormat.D32SingleLockable, DepthFormat.L16, DepthFormat.Unknown}
    );
    {if(Device==null)}
    throw new Exception ("could not get an acceptable DirectX graphics adapter. Your graphics card may not support DirectX. ») ;
    }
    }
    }

    I also read on various places on the Internet that a type of software with the software vertex processing will work always, even if it's slow. I also wrote code to try to create a unique feature of software with the software vertex processing and apparently not worked either. The code is as follows:

    private MakeBasicDevice() {} device
    try {}
    PresentParameters pp = new PresentParameters();
    pp. AutoDepthStencilFormat = DepthFormat.D16;
    pp. BackBufferCount = 1;
    pp. BackBufferFormat = Manager .Adapters .default .CurrentDisplayMode .format.
    pp. BackBufferHeight is this. Height;
    pp. BackBufferWidth is this. Width;
    pp. FullScreenRefreshRateInHz = 0; Must be 0 in windowed mode.
    pp. DeviceWindow = this;
    pp. DeviceWindowHandle is this. Handle;
    pp. EnableAutoDepthStencil = true;
    pp. ForceNoMultiThreadedFlag = false;
    pp. MultiSample = MultiSampleType.None;
    pp. MultiSampleQuality = 0;
    pp. PresentationInterval = PresentInterval.Default;
    pp. PresentFlag = PresentFlag.None;
    pp. SwapEffect = SwapEffect.Discard;
    pp. windowed = true; Must set to true for the controls.
    DefaultDevice device = new Device(Manager.Adapters.Default.Adapter,DeviceType.Reference,this,CreateFlags.SoftwareVertexProcessing,pp);
    DefaultDevice return;
    } catch {}
    }
    Returns a null value.
    }

    One might think that DirectX may run on any graphics card, even if it ran slowly on the low-end cards. Is it possible that DirectX does not work on some graphics cards? It is somewhat disturbing, because about half of our computers will not initialize our DirectX control and our control of OpenGL works fine on these machines. Is there something else we can try, perhaps related to some system settings that are more fundamental than the initialization code? Any help is appreciated. Thanks in advance.

    Hi grahamde,

    Thanks for posting in Microsoft Answers.

    The question you posted would be better suited to the community Microsoft Developer Network (MSDN). Please visit the link below to find a community that will provide the best support.

    http://msdn.Microsoft.com/en-us/default.aspx

    Kind regards

    Arona - Microsoft technical support engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • combining the 2 screws

    So I have a question that I hope that all the experts that you can help me solve. I have a reading program CAN produce a NOx sensor and display on screen will save as an excel file. I built a second program to control a network of keysight fieldfox Analyzer using scpi by expert of order keysights orders. I was able to combine the two programs and get the result I want both the box NOx sensors and the fieldfox na the problem I have is when I trigger an analysis on the NA breaks of graph of NOx, which is not a big problem, the real problem is that when it starts again I get a single reading from 0 to the curve. Is there anyway to prevent a break of the NOx loop when it enters the case structure NA and otherwise is anyway to prevent the graph to draw this point 0?

    It is possible.

    If you are unable to order Expert, it is difficult to know what is happening there.  It is possible that he uses a dll that are set to run in the UI thread and kill updates the screen.  But that's speculation on my part.

    If you are able to use VISA to communicate and it solves your problem, I would.

    A situation that I had.  A test bench that I build had an inclinometer above.  They have provided to LabVIEW "drivers".  The portion of LabVIEW of these drivers have been a mess with really bad wiring redundant code and many questions that resembled a disaster, a good candidate for the thread of Rube Goldberg .    They didn't work and it was that nothing complicated about them, so I cleaned the mess in about a day and elimnated about 80% of the features on the screen.

    The code is clean and has always worked.  Except that I had occasional problems.  He ran on an old PC that had only 1 core.  LabVIEW code has basically made a call to a .dll file that is the actual communication to the inclinometer interface.  When starting, called LabVIEW obtained and started a code out of service in the background.  It works great except when I did all major graphical things on the program.  If I took a windows and dragged around the screen, then the code would slow considerably.  I realized the .dll file was running in the interface thread user, requests on that old PC with 1 single processor for this thread user interface (for example, to reorganize the windows) is in contradiction with the dll.

    Finally the PC has been upgraded years later and who could help, but my real at the time solution was that I discovered what the communication protocol was (basic ASCII commands) and rewrote the pilot using VISA pure directly communicate with the serial port and get rid of the bad .dll which was between the two.

    Your situation kind of reminds me of this experience, I had.

  • Get the error code 10 when I install wireless drivers.

    Original title: driver xp wireless problem

    I have an acer laptop with xr pro sp2, with atheros ar5005g wireless router when I install the driver because it shows yellow and discount brand in State and th edriver does not work with the 10 eroor code

    Hi John player,.

    ·         Did you do changes on the computer before the show?

    I suggest to view the article in the Microsoft Knowledge Base for the error you receive and check if it helps.

     

    Description of errors related to the 10 Code that generates the Device Manager in Windows on computers

    http://support.Microsoft.com/kb/943104

    I hope this helps.

  • Reinstalled Vista. The windows is genuine, but I don't have the activation code. What should I do?

    I bought the laptop in 2006. The windows is genuine, but I don't have the activation code. What should I do? I installed vista and because I had no code after about 4 weeks it will stop. I'm up, but its prompting me to activate again. Help, please! This has been a good laptop and will continue to be if I can get help with activation.

    Original title: old Dell laptop broke down.

    Hello

    You can contact Dell and ask them to send you a set of recovery disks and to reinstall the operating system.

    They should do this for a small fee.

    If this method has not been destroyed by the last re - install, and if you have never received a recovery disk when you bought your computer, there should be a recovery Partition on the hard drive to reinstall Vista on how you purchased your computer.

    The recovery process can be started by pressing a particular combination of the key or keys at startup. (Power on / start)

    Maybe it's F10, F11, Alt + F10, etc., depending on the manufacturer.

    With a Dell, you press F8 at startup and follow the instructions

    http://www.Dell.com/support/troubleshooting/us/en/19/KCS/KcsArticles/ArticleView?docid=266618

    The methods above resettlement generally do not require allows you to provide a product key during Installation, the recovery process uses the Installation product key factory to activate automatically during the resettlement process.

    See you soon.

  • I tried to install the updates, but I get the error code 641

    I tried to install updates that have been downloaded.

    Try to install the result in the error code 641

    Original title: what is the error code 641

    The other post:

    My problem is on an old computer (not this one) running Windows Vista Home Premium.  Show downloads are KB2690729, 2656353, 2656370, 2604111, 2604121, 2656368, 2656045 and 2686827.  When I tried to download individually, the first and the third update (above) showed as being downloaded correctly, yet when I checked the list of updates successfully, none of these appeared.  Since that time, the system generated downloads 8 updates have been fruitless.

    Like the other reviewers, I run IOL System Mechanic and have noted your comments about the interaction between the SM and windows.  Personally, I hesitate to attempt changes to the registry based on the stories of war, with that I've heard of people who do not have the knowledge/experience/skill to work in the more than causing registty problems they started.  I have not contacted LIO, wondering if this was done either by Microsoft with others who have similar problems.

    I hope that you have more tips to share what to do: this problem.

    Thanks for your help.

    Hi rob3274,

    I combined the message you did in another thread to this original to avoid confusion.

    In response to another poster asking if System Mechanic caused their code error 641, one of our MVP, PA bear MS MVPreplied with this:

    There is no doubt in my mind that System Mechanic caused this!

    And you have plenty of company, too. See these recent discussions-online

    ~~~~~~~~~~~~~~~~~~~~~~~~

    OPTION A: If you have backups of ALL System Mechanic has EVER done on your computer changes, restore ALL the & restart and test - and then uninstall System Mechanic & some other registry cleaners. [1]

    OPTION B: Execution of RESOLUTIONS methods 1, 2 and 3 in http://support.microsoft.com/kb/2642495 then reboot & test.

    OPTION C: Contact System Mechanic (iolo.com) support, assuming you have purchased System Mechanic Professional.

    ===========================================================
    [1] TIP: If you still think again your registry database must be cleaned, repaired, amplified, to the point, healed, twisted, fixed, enlarged, "swept" or optimized (it isn't), read http://aumha.net/viewtopic.php?t=28099 and draw your own conclusions. See also http://blogs.technet.com/markrussinovich/archive/2005/10/02/registry-junk-a-windows-fact-of-life.aspx

    Since the thread here.

    I hope this helps!

    Debbie_H

  • I wiped my pc and my windows vista. How can I get a copy, reinstall.i have the product code?

    I wiped my pc and my windows vista. How can I get a copy, reinstall.i have the product code?

    Hello

    If Vista is preinstalled contact the Manufacter computer and ask them to send recovery discs; what they should do for a small fee.

    And ask them if you have a recovery partition on your hard drive to reinstall the operating system to how it was when new.

    If you have not deleted this partition (you tell how wipe you the hard drive!) you press F10 or F11, etc at startup to start the process of relocation.

    Ask the manufacturer for their combination of button to do this, if it is always an option for you.

    "How to replace Microsoft software or hardware, order service packs and replace product manuals.

    http://support.Microsoft.com/kb/326246

    See you soon.

    PS You can also borrow and use a Microsoft Vista DVD, which contains the files for the different editions of Vista must be installed. The product key determines which Edition is installed.

    Builders recovery DVDs are should not be used for this purpose.

    And you need to know the version of 'bit' for Vista, as 32-bit and 64-bit editions come on different DVDs

  • What is the key code to lock the curve 9300 BlackBerry device?

    I want to programmatically combined lock, I'm able to do in other handsets, but unable to block of 9300 curve,

    because in 9300 curve, this will be done by long press on the mute button, so then I know the key code for the key mute for this

    handset?

    Thank you & best regards

    Yes I did it using code below

    If (Keypad.Key (keycode) == Keypad.KEY_LOCK |) Keypad.Key (keycode) is 273)
    {
    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run()
    {
    Dialog dialog = new dialog box (Dialog.D_OK, "Lock Key Press", 0, null, Dialog.FIELD_HCENTER);
    Ui.getUiEngine () .pushGlobalScreen (dialog box, 1, UiEngine.GLOBAL_MODAL);
    }
    });
    Returns true;
    }

  • How to send two requests to separate from OBI and combine the results

    Hi all

    I'm trying to understand how to combine the results of two queries in OBI. Here's the scenario.

    There are three tables, users, security roles however joined a bridge Table Role_User

    Each user has multiple roles, the roles to which a user has access is identified by a column of flag with value T otherwise there F value.

    I am creating an analysis as below

    ID of the user
    Access roles Roles have no access

    Therefore, column 2 shows all roles with indicator T for the particular user and column 2 shows all roles with indicator F for the same user.

    I tried to create two fact tables and using the filter condition on the value of the indicator, but in the analysis, I could use only one at a time. When I add the two columns, I get the error as none of the fact table are compatible with the query request. I would like to hierarchies for dimensions created and assigned in terms of content for all the facts and decreases in intensity.

    Any advice will be highly appreciated.

    Thank you

    Found the solution. I'm posting here in case where someone faced with a similar question.

    I've added the SQL code in the Advanced tab:

    Select A.saw_0 saw_0, A.saw_1 saw_1, B.saw_1 saw_2

    FROM (Select Col1, Col2 FROM Table1 saw_1 saw_0) a LEFT OUTER JOIN

    (Saw_0 select Col1, Col2 saw_1 FROM Table2) B

    on A.saw_0 = B.saw_0

    I created the logic of the facts using the source even with two different filter conditions and were used with a subquery as above

    Ref: OBIEE Interviews: reports

Maybe you are looking for

  • document to recover deleted

    Mistakingly, I deleted a document and emptied the Recycle Bin. How can I get it back. looked for an application, but didn't know that it would do the trick. can you advise?

  • HP PRO x 2 612: Intel (R) ME password. What is it? How to find it.

    As a result of good advice on the recovery, I am able to access the MAIN MENU by pressing F6. However, before I can continue I need to connect and for that I need a password. It is an opportunity for laptop and I don't know if the previous owner set

  • How can I get Vista like that?

    So I have my refurbished laptop but they it downgraded to XP and Vista. There is a serial number on the bottom of the laptop to get a copy of Windows Vista. I was wondering if there was a place to download vista and enter a code or something. Hanks o

  • My computer says that windows will expire on 12/07/11. What should do?

    I got the "old" computer of my son when he upgraded. Now, I get a message that Windows will expire on 12/07/11. In addition, my background is now black, but with icons. What is going on?

  • LaserJet P2055 very slow in the scanned PDF files printing

    We have three printers Laserjet P2055DN. They have all of the extreme difficulties in printing scanned PDFs, especially of our Toshiba e_Studio 451 Copier/scanner. The printer that I'm testing has 384 MB of ram. The OS is Windows 7 Pro 32-bit. The dr