Influencing query security - burning problem

Hi all,
I've a burning problem that I was not able to find a solution for within 1 week so far.
I want to simplyfy a selection of variables needed to run a query. So in fact you need three different values to identify a specific set of data. In order to not have the user to enter those 3 independent values, with all the risk of selecting invalid combinations, I created a new InfoObject that holds the three infoobjects (and some more) as attributes. So the user selects only one and I'm doing the work behind the scenes using user exit variables. I've created a multiprovider to combine the two cubes and the infoobject. The value that the user is selecting fron the "dummy" object needs to be excluded from the selection otherwise he'll see no data. This works very well so far, but as soon as security comes into play I run into problems. With security activated on the dummy infobject, the F4 help screen that allows the user to select what he wants to se is restricted, so it only shows the values that he's cleared for. Which is fine. When he selects one of the values it will be excluded as I#m using a selection option variable (no authorization variable) as the default of the variable needs to
be exclusion and not include. When the query then is executed I'm getting a message that the user is not authorized to read the security object (BRAIN804). So I probably will need a security variable, but this is not working to do what I need as a authorization variable gets populated with all the values that the user is cleared for. I only want one value and that should be picked fro the list.
Also this value need to be excluded otherwise I'll see no data as the dummy infobj. is not contained in the other two cubes.  Have restricted the query to only use the two cubes and not the infobj. but as long I don't exlude the value it will retrieve no data.
Now my question - how can I influence the behavior of the security variable ? Remove some values via user exit, switch from inclusion to exclusion
or just use the security entries to read them and build the contents of the F4 help.
So any idea - answer is highly appreciated.
Bernd Dümmel
Eastman KODAK

Arun,
I was able to resolve the problem by adding # to the restrictions. That allowed me to be able to switch from exclude to include on the variable the user does the input. This also allowed me to switch the variable from selection option to single value. In doing this I then could add the authorization variable to the restrictions as well. Now the F4 list is restricted (based on the authorizations of the user) and all the security is working. So without the trick with the # value I would have needed to implement security within some user exits.
Thanks
Bernd

Similar Messages

  • Query in item problem

    Hellou everybody.
    I need your help. I am using forms 6i and i have a block with some non DB items. But items are synchronize with DB items for viewing results. I use this items for diplaying results from DB tables. In enter query mode i write condition in this text items and execute query.
    My problem is that i have text item which is VARCHAR2 type and I need to enter the condition for example > 1000. But i don't know how to convert this field to number. When i execute query under char type it not work properly (other result). I tried to change data type to number but i can't because it's not alowed to mixed types.
    select * from table_name where pag_cis > 100 - i need this
    select * from table_name where pag_cis > '100' - i have this
    Can you help me???

    You may use the set_block_property procedure built-in and the 'default_where' property so as to execute the query using the contents of your item (with the name of column , of course).
    Afterwards , you navigate to the db items block (with go_block('blockname')) and execute the query (built-in 'execute_query').
    Hope it helps
    Sim

  • Query security settings for users

    Hi again.
    I'm looking for a way of querying security settings for a user.
    ie I understand that company/division etc security is implemented through responsibilities.
    In which case, is there a way to retrieve those exclusions per user?
    (eg User 1 cant see company 50)
    Thanks,
    g.

    Hi again.
    I'm looking for a way of querying security settings for a user.
    ie I understand that company/division etc security is implemented through responsibilities.
    In which case, is there a way to retrieve those exclusions per user?
    (eg User 1 cant see company 50)
    Thanks,
    g.

  • DVD Studio burning problem error message: "remove the VIDEO_TS folder from the Build Location"; where is build location

    DVD Studio burning problem error message: "remove the VIDEO_TS folder from the Build Location"; where is build location?

    Thanks Shane I followed your instructions and it turned out pretty well. One quick question, Im working with DVD Studio Pro 4, how do i implement a theme into my project? I cant even fin where thay are located. Thanks.

  • Fans run full speed on stand-by and burner problem iMac 24-inch early 2009

    In standby sometimes the fans are running at full speed. Also with burning some CD or DVD's the burner makes an awful grunting sound.
    For a 2 year old Mac I did not expect to have these kind of problems!
    Resetting the iMac does not help. Might this be a Lion problem?
    Optical Drive is running at 4800rpm, normal 798rpm
    Hard Drive at 5903rpm, normal 1599rpm
    CPU at 3598rpm normal, 1200rpm
    The burning problem only happens sometimes, not with all.

    What did you do to reset the imac? Problems like these are "sometimes" solved with an SMC reset.

  • Web Center app with ADF Security - login problem

    I have a custome Oracle Web Center app.
    I have a page.html with an embedded login form posting to j_security_check. I've configured the ADF security policies to redirect to a JSPX on successful login.
    When I try the correct username/password, I get redirected not to the page I defined in ADF, but to the root page http://127.0.0.1:7101/MyApp-ViewController-context-root/
    and i get
    Error 403--Forbidden
    I've checked the weblogic.xml as per http://andrejusb.blogspot.com/2009/12/solving-error-403-forbidden-in-adf.html, all the required entries are there.
    This works fine if i use a Login link with
    destination="#{'/adfAuthentication?login=true&end_url=/faces/postLogin.jspx'} "
    which redirects to the default login.html and then to the right page. I've copied the form from the default login.html into my master HTML page.
    Hope my question is clear. Any suggestions why it is going to the wrong URL after login.
    Is there anything specific I should see in the jazn-data.xml or web.xml regarding the post-login URL since i cant see that in either.
    P.S. Have been advised to try here when I originally asked this in the WebCenter forum. Web Center app ADF Security - login problem
    Edited by: new_to_webcenter on 18-Jan-2011 05:25

    Thanks for your response Frank.
    The web.xml has
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>adfAuthentication</web-resource-name>
    <url-pattern>/adfAuthentication</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>valid-users</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/login.html</form-login-page>
    <form-error-page>/error.html</form-error-page>
    </form-login-config>
    </login-config>
    When configuring ADF Security via JDev , I chose "Redirect upon successful authentication" to the Welcome Page
    "/faces/postLogin.jspx"
    this then adds into web.xml
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <init-param>
    <param-name>success_url</param-name>
    <param-value>/faces/postLogin.jspx</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    So the sequence which works is:
    Login via the '/adfAuthentication?login=true&end_url=/faces/postLogin.jspx' and this redirects to login.html (OOTB form which posts to j_security_check) and then to the postLogin.jspx
    I'm trying to do away with a Login link, and trying the simple login form embedded in my page alongwith other content.
    So should the form be posting to j_security_check directly or to the adfAuthentication ?

  • Burn problem - "internal target failure"

    Can anybody help me with a burn problem that is driving me crazy, especially as I am a recent migrant from Windows. Every time I burn in iDVD from an iMovie I get the error message at the burn stage, i.e. after 2 hours encoding etc. "The recording device reported the hardware error: internal target failure (0x44,0x00)". This is after reporting the problem to my dealer and having the Superdrive replaced under guarantee. Any ideas gratefully received.
    iMac G5   Mac OS X (10.4.6)  
    iMac G5   Mac OS X (10.4.6)  

    Welcome to iDVD Discussions.
    That may be a media/burning speed issue.
    I recommend a disk image burned to Verbatim DVD-R at 4X or slower using Toast or Disk Utility.
    David Pogue also recommends Verbatim on page 356 of his latest book:
    iMovie HD & iDVD 6: The Missing Manual
    Quoting David: "Cheaper brands don't use the same amount of organic dyes and are more likely to suffer premature deaths."
    Suggest you create a disc image and then burn the DVD. File/Save as Disc Image...
    http://docs.info.apple.com/article.html?path=iDVD/6.0/en/18.html
    http://www.kenstone.net/fcphomepage/image_to_diskstone.html
    This will isolate any encoding/burning issues you may encounter. Once the disc image is created, double-click the .img and burn the virtual disc that should appear on your desktop, using Toast to burn the DVD. Disk Utility to burn the .img file. Usually, you can select a burning speed in Disk Utility.
    There are variations to this process based on which OS X you are using...
    Open Disk Utility (in Utilities folder in Applications folder), click on the virtual disc (maybe the .img) in the left-hand window. Click the Burn icon. A new window should drop down and your SuperDrive tray will open after clicking the Burn icon. Insert a recordable DVD. (Verbatim DVD-R preferred by me.) Click the Close button. Wait. Select a burn speed. If you hold your mouse cursor over the pop-up it says: "Select a slower speed to work around burn failures," so select 4x or slower for best results. Then click the Burn button.
    -->If the virtual disk selection won't allow you to click the Burn icon, use the .img file instead. This may have changed in 10.3.9 and did change in Tiger.
    Also, you can use DVD Player to play the virtual disk to check your iDVD project before burning to DVD. Launch DVD Player. File/Open VIDEO_TS (Open DVD Media... in Player 4.6). Find the VIDEO_TS folder and open that. (The audio folder is for DVD-Audio disks.)
    http://docs.info.apple.com/article.html?artnum=93006

  • There is a problem with this connection's security certificate The remote computer cannot be authenticated due to problems with its security certificate. Security certificate problems might indicate an attempt to fool you or intercept any data you send

    Hi,
    I have this Windows 2008 R2 on which I installed remoteapp some years ago.
    Now the certificate expired and I get the message
    "There is a problem with this connection's security certificate
    The remote computer cannot be authenticated due to problems with its security certificate.
    Security certificate problems might indicate an attempt to fool you or intercept any data you send to the remote computer."
    How should I renew the certificate? I already went to certification store and tried to renew certificate with same key but then it says "the request contains nor certificate template information".
    Please advise.
    J.
    J.
    Jan Hoedt

    Does the computer account have Enroll permission to the certificate template?
    From the Server running your CA, run mmc, click File then Add/Remove Snap-in...
    Add Certificate Templates and click OK.
    Find the certificate template, then right click and select properties.  On my CA its call ed RemoteDesktopComputers but might be called something different depending on what what template your certificate is based on.
    On the security tab, click Oblect types, check Computers then OK. Enter the Computername and click OK.  Then give your computer account Enroll permisssion.
    HTH,
    JB

  • O7_dictionary_accessibilty parameter : does it influence the security of the DB ?

    o7_dictionary_accessibilty parameter : does it influence the security of the DB ? If yes, how ? If no, why not ?
    Thanx a lot !
    Regards,
    Luc

    The o7_dictionary_accessibility parameter can be used to prevent (if set to false) the viewing of the data dictionary (SYS tables and views) by users with an "ANY" privilege (e.g. SELECT ANY TABLE). If set to false, then a user must be granted explicit access to a SYS object or through the roles SELECT_CATALOG_ROLE, EXECUTE_CATALOG_ROLE, and DELETE_CATALOG_ROLE.
    Oracle9i provides the privilege SELECT ANY DICTIONARY (Oracle9i) which gives access to the entire data dictionary (SYS tables and views). The role SELECT_CATALOG_ROLE limits access to SYS views.

  • Seriously feeling dumb here...burning problems!

    Ah I am so thick! Okay, so I've been going through all of these past threads about people with burning problems but I feel as if I'm missing something here because nothing seems to be working out for me with iDVD.
    So, I have created a movie off of iDVD that is only about 3 minutes long, with transitions and titles and so on. I have archived it. I have deleted all past movies I have archived as well as purged my computer of alot of old stuff I don't need anymore (I have a lovely old eMac...) I have bought DVD-R's, (not the +R's which I mistakenly bought before the threads told me they don't work...) and this is what happens...I will press burn. iDVD's window flashes from my movie into a window that is just a black background with the iDVD icon in the bottom center, and almost immediately flashes back to my movie with no pop-up warnings or anything. Also in the past it has said there was some kind of a multiplexer error or whatever, but that pop up has since been gone from the problem.
    I would really love to transfer this short film to this DVD-R so I can view it on my lovely DVD player for all my friends.
    Any pointers all you smart DVD people!??
    Thanks, Kate (the dumb cinema student...oy vey.)
    By the way, if it helps with anyone's answer, I have an eMac, 1.25 GHz PowerPC G4.

    Hi Kathryn
    How much RAM do You have ?
    How much free space on Your hard disk ?
    What version of QuickTime ?
    Have You been able to burn DVDs before ?
    May be You could do like this (if You have an internal DVD-burner)
    - Close iMovie
    - Locate a QT.mov that is inside Your project folder (movie project)
       in the Share to iDVD folder
    - Start iDVD and drop this "project name".mov file inside the edge of
       a theme window in iDVD
    - Now try to play this - OK ?
    - Then burn a DVD disk.
    Yours Bengt W

  • How can I work around a DVD burning problem

    Steve Grisetti: How can I work around a DVD burning problem?
    Question: Does PSE and PE -7 solve this problem or make any difference at all?
    Joanna

    This article, from the FAQ list at the top of this forum, is valid for all versions, since it may be a problem for any.
    http://www.adobeforums.com/webx/.59b5f52c
    The problem is not so much with Premiere Elements as it is with challenges faces in the operating system registry. Basically, DVD burner programs, like Nero, which are installed on your computer at the factory, refuse to share access to the DVD burner with other programs.

  • Burning Problem under leopard

    Hi Everybody,
    I'm writting here because I met a burning problem with my iMac CoreDuo. I manage to erase a DVD RW, but no way to burn a DVD or a DVDRW : the burn session begins, but stop after few minutes and eject the DVD (partially written).
    I checked the RecordingDisc.log file, here are the logs (logs with LiquidCD App, but this is the same when I try to burn through MacOS directly):
    LiquidCD: Burn started, Tue Jan 22 19:12:06 2008
    LiquidCD: Burning to DVD+RW (MBIPG101 W04) media with DAO strategy in MATSHITA DVD-R UJ-846 FB2U via ATAPI.
    LiquidCD: Requested burn speed was 47x, actual burn speed is 4x.
    LiquidCD: Burn failed, Tue Jan 22 19:12:06 2008
    LiquidCD: Burn sense: 3/73/03 Medium Error, Power calibration area error
    LiquidCD: Burn error: 0x8002006D Le périphérique n'a pas pu calibrer le niveau de puissance du laser pour ce méd
    and :
    Disk Utility: Erase started, Tue Jan 22 19:13:54 2008
    Disk Utility: Erasing DVD+RW (MBIPG101 W04) media in MATSHITA DVD-R UJ-846 FB2U via ATAPI.
    Disk Utility: Erase finished, Tue Jan 22 19:14:16 2008
    I tried to reinstall 10.5.1 update, but this didnt fix the problem.
    So do you have an ideo to help me ?
    Message was edited by: ewssk

    I get this same error on my 2.4Ghz 15" MBP running 10.5.1;
    System Profiler:
    Model Name: MacBook Pro
    Model Identifier: MacBookPro3,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 2 GB
    Bus Speed: 800 MHz
    Boot ROM Version: MBP31.0070.B02
    SMC Version: 1.16f8
    Serial Number: {No, Not Yours}
    Sudden Motion Sensor:
    State: Enabled
    ~/Library/Logs/DiscRecording.log:
    Disk Utility: Burn started, Mon Jan 28 12:57:08 2008
    Disk Utility: Burning to DVD+R DL (RITEK D01) media with DAO strategy in MATSHITA DVD-R UJ-857E ZA0E via ATAPI.
    Disk Utility: Requested burn speed was 47x, actual burn speed is 2.4x.
    Disk Utility: Burn failed, Mon Jan 28 12:57:21 2008
    Disk Utility: Burn sense: 3/73/03 Medium Error, Power calibration area error
    Disk Utility: Burn error: 0x8002006D The device failed to calibrate the laser power level for this media.
    I have seen this sort of issue discussed in various other threads with suggested remedies of everything from Resetting the SMC to more bizzare (yet substantiated) recommendations of switching languages;
    http://discussions.apple.com/thread.jspa?messageID=6164600&#6164600
    http://discussions.apple.com/thread.jspa?messageID=5699813&#5699813
    http://discussions.apple.com/thread.jspa?messageID=6240377&#6240377
    I was able to burn DL DVD's with 10.4.11, which is what shipped with my MBP when I purchased it. I haven't had need to burn a another DL DVD until now, approx 4 months later.
    Does anyone out there have any suggestions on this? At this point I'm pondering waiting to see if 10.5.2 resolves the issue. If not, I suppose a trip to the Genius Bar is in order.
    Love,
    shmoo

  • On Vista Firefox 6 incorrectly deals with security certificate problems

    After I installed Firefox 6, I tried to go to one of my web sites. I know that there is an https security certificate problem with this site when I go to https://staging.photoquestadventures.com rather than https://www.photoquestadventures.com. On XP, FF6 opens the site. on Win7, FF6 warns about a security certificate problem then allows me to create an exception and open the site. On Vista, it says that it can't find the server at www.staging.photoquestadventures.com and I cannot get past this point - only on VISTA!

    I downgraded to Firefox V4 (I didn't have a copy of V5 stored and couldn't find it on the net) and it asked the correct question: to allow connection even though there was a security certificate problem. Then I upgraded to V6, and it continued to connect just fine. So something in the V5 to V6 upgrade created the problem for me.
    I wonder if there is insufficient testing of Firefox on Vista, as I have had several problems with new versions while I have not had the problems on XP or Win7.

  • Do the burning problems that are being reported lately

    Dear All,
    Do the burning problems that are being reported lately, affect itunes version 7.5 or lower on Win XP Home?
    System specs:
    HP pavilion a450n
    Win XP Home
    512 ram
    128mb graphics card
    Message was edited by: Cnon
    Message was edited by: Cnon

    Cnon wrote:
    CasperGemini wrote:
    Error messages from burning CD's are caused by a variety of reasons. Are you having trouble burning a CD in iTunes on your PC? If so, let us know the error code that you're getting. If you are trying to determine if you will have trouble buring a CD, the best suggestion is to just try it and see what happens.
    CG
    Dear All,
    My cd burned fine, thanks
    Cnon
    It's playing fine in my player too
    Thanks all
    Cnon

  • DR4-A Burn Problems

    I have had this drive for a year or two and have had virtually no problems.  Recently, I upgraded my Pinnacle Studio software to version 9+ and began to have burn problems.  I flashed the system BIOS and the DVD Firmware, unloaded and reloaded the application, and even reloaded the prior version which used to work well.  I was able to do my editing and save the project but have had numerous problems attempting to burn to DVD.  I am using the same batch of DVD's that I have always used (generic DVD -R and a second brand which I don't recall at the moment) and when I attempt to burn it just sits there with the green light on.  On a whim, I popped in a +RW last night and obtained a successful burn.  I followed it up with another -R and even after letting it sit all night, it still did not burn.
    Pinnacle has no answers and i've tried everything that the group over on the Pinnacle Forum had to suggest, all to no avail.
    Has anyone run into a problem whereas you are able to burn RW's but not recordables?
    Any recommendations, thoughts, or ideas would be greatly appreciated.
    Thanks,
       John
    PC: ECS K7S5A MOBO, AMD XP1700+, 768 MB DDR, 80 GB Maxtor Sys, 30 Gb "D:", WD 80 Gb in removable tray for capture, MSI DR4-A DVD/CD +-R/+-RW, nVidia G-Force, USB 2.0, ST 1394, Windows XP Pro SP2
    Audio: Sound Blaster Live

    Alan,
       Just for grins, go buy a couple of new disks in a different brand and see what happens.  I'm convinced my media "spoiled".  Although, I don't fully understand how that could happen, but I guess light exposure could have something to do with it.  I had my problem before updating the firmware or the drivers, and none of the updates made any difference.  I guess I could suspect the laser might be getting weaker and just won't burn the old media, but as long as I can get the job done right now, I'm not too concerned.  It will be time to upgrade to a faster drive in the not too distant future anyway.
    HTH,
       John

Maybe you are looking for

  • Print issue with HP1510

    I have an issue when printing a 2 page brochure in pages, word or even from pdf. The problem is that the far right side of the print is always cutting off at the default a4 of 1.43cm. i have set up custom paper sizes in page set up and even put the m

  • Multiple OC4J containers on OAS 10.1.2

    We've had problems with sporadic lockup/failure of our OAS 10g (v10.1.2.0.2) app server. We suspect it is something to do with a particular application that serves as a kind of menu to other apps. It uses a lot of ADF controls and is highly abstracte

  • Start-up drive problem

    Hi, I've recently upgraded to Leopard, but wanted to keep Tiger around just in case. I have Leopard on one internal drive, and Tiger on the other. Both function great, except when I restart one OS, the other operating system starts up; e.g. I restart

  • Visual Basic 6.0 and CR XI report viewer

    When running a VB6.0 applications sometimes a runtime error message stop the app. What is causing this? Detail Info      Error Message Basic syntax is not supported on recordformula     Liine code where error occurs crwRpt.RecordSelectionFormula = Se

  • Non-system disk after installing Windows

    Hello everyone, I have a rMBP15 inch (late 2013) and am running 10.10 Beta 2. I tried installing Windows 7 via bootcamp but it keeps failing on me. After going through the Bootcamp Assistant (and assigning how much space I want to give the bootcamp p