Can one avoid names to be listed in packaged applications (issue tracker, for example)?

I've installed the packaged app "Issue tracker" in a workspace, but now have a problem with German's law (and maybe others), which does not allow people to make reports that explicitely mention names of employees, except if you are their manager.
So the issue tracker's reports, which can be used by anybody and display assignees' names, are not allowed by German's law !
I guess that all packaged apps have the same users control mechanism. If so, this issue is not specific to the issue tracker. Is that right?
To make the issue tracker compliant with German's law, one should be able to hide names or ideally to make them only visible by the employee's management.
Hide name would imply:
- Remove the updaters' name in the projects/issues
- Remove assignees' name in the projects/issues/reports
I guess this could be done via a plugin "display names" in the "build options".
Make names only visible to managers would imply:
- Assign a manager to each user
- Adapt the display depending on the identity of the user
Does this make sense? If so, I guess I should add an entry in Oracle Application Express Feature Requests, right?
TIA for your feedback,
Stefane

[discussion moved to Creating, Editing & Exporting PDFs forum]

Similar Messages

  • Why can I NOT name a Reminder List the exact same thing as a Calendar?

    Remember the good old days when ToDo Lists where automatically related to a specific calendar?  I want that back.  Why can I not name a Reminder List and a Calendar with identical titles?  Why do I have to create a calendar named "Blue Project" and then create a Reminder List and name it "Blue Project 2" or some other iteration?  This is totally asinine.

    "You can look at the Classic Theme Restorer extension to restore some functionality that was lost with the arrival of the Australis style in Firefox 29."
    Precisely. How is "loss of functionality" progress or an upgrade? Why should I have to install an extension just to get a "reload" button? What a pile of crap. Why not have a "Use shit interface" tickbox in the Options dialogue so people can choose if they want their version of Firefox to have pants functionality?

  • Can one large pdf be split into a packaged pdf?

    can one large pdf be split into a package without having to extract pages then merged back together?
    i have been scanning documents and some have been over 400 pages.
    i have been creating seperate pdf's for each appendix/section then merging them into a packaged pdf to find each appendix easier.
    but it is a bit time consuming to look at the 400+ pages then removing each appendix.
    so i was wonder if it is possible to just find where all the appendixes start and have them put into package without need to extract each appendix one at a time.

    Graffiti:
    Correct. Knew that about other formats not being able to be seen by all users.
    I tried exporting a PDF to HTML and then couldn't place it in an email without it loosing formating. I'm a long-time PM/ID (even before Adobe) user and am not familiar with Dreamweaver, which I guess I need to learn now. Thanks for the response.

  • HT5534 how can I sort names in a list made in pages

    I made a list of addresses inm two columns using pages 09. How can I sort the last names in alphabetical order ?

    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=256&mforum=iworktips ntrick
    Peter

  • How can one make the drop down list of bookmarks disappear when selecting an item?

    I want the list to close automatically when selecting a bookmark to open the page (as it does with favourites in Internet Explorer 8). Is it possible to set this up or does the list always have to be closed manually?

    I am closing this prompt as now I am seeing that it is getting refreshed.

  • HT204085 Does the keychain have to be set up from only one Apple ID or can it be used among 2 or more Apple ID users? For example, my daughters each have I'd but my cc is on their accounts and my wife also has her own id with my cc.

    Can the keychain from my phone and Apple ID link to 2 other different phones and Apple ID's and 1 new ipod and different id? Both daughters and wife use my credit card on their accounts. 

    We do this in my family now.  We have one account for purchases, so it is used to share music and apps (I think that is in Settings/iTunes & App Stores).  Each iDevice has this configured.
    Then, each of us has our own iCloud account that is configured under Settings/iCloud.  That then allows us to have our own Mail/Contacts/Calendars/Reminders/Safari Bookmarks/Notes/Passbook/Photo Stream/Documents & Data/Find My iPhone/and Backup.  That Backup piece is pretty sweet and comes in handly if you replace your iDevice.  You can just restore from it.
    So we all share the Apple Store account but we all have our own iCloud accounts to keep the rest seperate or things like you mentioned are a nightmare.
    In answer to what iCloud does for you: http://www.apple.com/icloud/features/
    Think of it as an internet based ("cloud") area for all of those items listed in my response.  What you need to remember is photo stream only maintans the last 1000 pictures so don't count it as a complete backup solution for your pictures.  Even though I rarely sync with a computer these days, I do still try to sync my phone with iPhoto (I have an iMac) so that I have copies of all of my pictures.  1000 may not stretch as far as it sounds.
    Message was edited by: Michael Pardee

  • Hello.. I'm having trouble with my google bookmarks since I upgrdaded to Firefox 3.6.6, when I click on my bookmark tab it opens but then closes again in a matter of seconds. I can't seem to get my list to stay open long enough for me to browse through. A

    Since upgrading to Firefox 3.6.6 my bookmarks will not stay open, when I click on the bookmarks icon on the toolbar my list opens up but then disapears again with in about 10 seconds.... i.e, not enough time for me to chose which site I want to open. I've tried deleting cookies, temp. files and I even tried a complete re-install of Firefox but I'm still getting the same problem.... Any ideas please?
    Thanks.... Jon T.

    I'm having difficulty visualizing what is wrong but try some basic steps first:
    Launch Safari while holding a Shift key - this will start Safari with just your Home page
    If you can see Reset Safari from the Safari menu, try that.
    In addition to downloading and installing Safari again, try reapplying just the Snow Leopard Combo Update: http://support.apple.com/kb/DL1399 There is no need to uninstall Safari first.
    Lastly try deleting Safari's Preferences file: ~/Library/Preferences/com.apple.Safari.plist

  • Can i avoid needing to manually enumerate all TestCases in a TestRunner for an ant build?

    flexunit gurus,
    i've been experimenting with the FlexUnit4SampleCIProject as part of following the instructions for ant builds at http://docs.flexunit.org/index.php?title=Ant_Task
    this sample project utilizes a TestRunner.mxml file that manually enumerates every TestCase that should be run as part of the tests.  e.g. after i modified TestRunner.mxml to test my locally developed classes, a snippet looks like this:
                    var core : FlexUnitCore = new FlexUnitCore();
                    core.run(MathUtilTest, StringUtilTest);
    the ant build then invokes that TestRunner as part of the build:
            <!-- Execute TestRunner.swf as FlexUnit tests and publish reports -->
            <flexunit swf="${bin.loc}/TestRunner.swf"
                toDir="${report.loc}"
                haltonfailure="false"
                headless="false"
                verbose="true"
                localTrusted="true" />
    the associated maven build for this project does not require a TestRunner.mxml.  the following snippets from the configuration of the flexmojos plugin in the pom.xml allows for the TestCases to be run without needing to manually enumerate them ahead of time::
                   <includeTestFiles>
                      <includeTestFile>*Test.as</includeTestFile>
                   </includeTestFiles>
    Flash Builder 4 now supports a model like flexmojos - I can simply right click a project or folder and select Execute FlexUnit Tests and all the tests are run, without needing a TestRunner.mxml.  Flash Builder appears to accomplish this by dynamically generating (and then compiling and executing) 2 mxml files based on the FlexUnit tests found in the project/folder.  In Flex Builder 3 days, I had to manually maintain a TestRunner.mxml, which was error prone and cumbersome.
    my question is whether there is support in an ant build for running all *Test.as files without needing an associated TestRunner.mxml.  if so, could you post an example on how to accomplish this?  i suppose i could create a custom ant task that dynamically generates a mxml file after searching the file system for *Test.as files (similar to what Flash Builder 4 does), but since this seems like such a common need i'm hoping it is (or can be) provided as part of FlexUnit's ant tasks.
    thanks.
    -mike

    they aren't there yet, but...
    if you want to have a little fun, this code is already in our github master
    <flexunit workingDir="${bin.loc}" toDir="${report.loc}"
    haltonfailure="false" verbose="true" localTrusted="true">
       <testSource dir="${main.src.loc}" />
       <testSource dir="${test.src.loc}">
          <include name="**/*Test.as" />
       </testSource>
       <library dir="${lib.loc}" />
    </flexunit>
    documentation and being 'official' are not far off, but due to some logisitcs I can't give you a firm date just yet,
    mike

  • Where can one find the serial number on the package of Adobe Photoshop Elements II ?

    I have tried every single approach known to man, to get my software loaded into my laptop... I cannot locate the serial number on my box of Elements II, then fournd the  reddemption code.. tried to find that on the web, with no success, then called Best Buy three times, maybe four.. no one knew how to help me, there, either --they should be able to at least, tell me where to find the serial code, somewhere on the packaging.. no matter what number, or approach I have used, for the last three hours.. none of them work.. can someone make any suggestions as to how to get this program installed  ?  The people at Best Buy, had no clue, and bounced me from person to person... then put me on their Geek Squad number, which played bad, scratchy  MUSACK for twenty minutes, and no one ever picked up there ! So someone at Adobe MUST have some sort of suggestion on getting this loaded !  Bonnie

    What is Elements II, is that 11 or 2?
    See if there is any help on this page: http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • HT1461 Can one use boot camp to play computer games normally only found for PCs?

    I have some older computer games, specifically Warhammer 40k rts games, that I woud still like to play and was curious if boot camp would allow me to play those on my mac? Also, if it is possible am I putting my computer at risk in any way? I'd like to play them but not so badly that I would be damaging my mac pro or shortening its lifespan. There dont appear to be any emulators out there currently so I'm checking here to see if anyone knows anything.

    Yes. There are several ways to run Windows on the Mac:
    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
         1. Install the Apple Boot Camp software.  Purchase Windows
             XP w/Service Pak2, Vista, or Windows 7.  For Boot Camp
             4.0 and above you can only use Windows 7 or later. Follow
             instructions in the Boot Camp documentation on
             installation of Boot Camp, creating Driver CD, and
             installing Windows.  Boot Camp enables you to boot the
             computer into OS X or Windows.
         2. Parallels Desktop for Mac and Windows XP, Vista Business,
             Vista Ultimate, or Windows 7.  Parallels is software
             virtualization that enables running Windows concurrently
             with OS X.
         3. VM Fusion and Windows XP, Vista Business, Vista Ultimate,
             or Windows 7.  VM Fusion is software virtualization that
             enables running Windows concurrently with OS X.
         4. CrossOver which enables running many Windows
             applications without having to install Windows.  The
             Windows applications can run concurrently with OS X.
         5. VirtualBox is an Open Source freeware virtual machine such
             as VM Fusion and Parallels that was developed by Solaris.
             It is not as fully developed for the Mac as Parallels and VM
             Fusion.
    Note that VirtualBox, Parallels, and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech Labs- Virtualization Benchmarks, January 2013 | MacTech for comparisons of Boot Camp, Parallels, and VM Fusion. Benchmarks of all of the above except Crossover can be found in Benchmarking Parallels, Fusion, and VirtualBox Against Boot Camp - The Mac Observer. Boot Camp is only available with Leopard or later. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • Can I buy an imac at the applestore and have it personalized (for example have it with the non wireless keyboard)?

    Can I buy an imac directly at the applestore (milan) and have it with a cables keyboard instead of the wireless one?

    Give them a call  >  http://www.apple.com/it/retail/storelist/

  • Why can I no longer make accents by holding down the "e" key for example?

    I've had my Macbook pro for about 2 months now and I've never had an issue putting accents on letters. I would hold down the key and a small menu would pop up and I would click "1" per say and it would put the accent on the letter. All of a sudden it no longer pops up and it just puts multiple letters on the screen. How do I get that little menu back

    Some applications don't support that feature. If it's not working in TextEdit and others that do support it, see below.
    Back up all data.
    Please triple-click anywhere in the line below on this page to select it:
    defaults delete -g ApplePressAndHoldEnabled
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    Wait for a new line ending in a dollar sign ($) to appear below what you entered. You can then quit Terminal. Log out and log back in. Test.

  • HT3819 How can you use Home sharing to play music on an xbox 360 for example thats connected to the same WiFi network?

    My console is running under the same WiFi service as my itunes, iphone, and all the content i have saved in my library. How can i link, perhaps through HomeSharing, my content from my phone or computer to my xbox console?

    You can't.  Homesharing allow to share your iTunes content over Apple's devices.  XBox isn't made by Apple but Microsoft.

  • How can I dynamically create symbols based on data in a database? For example: as a user selects an option, we want to create color swatch buttons in a certain area on the screen.

    We have all of our data in a Microsoft SQL server database and would like to load fabric options, and then color choices, based on this data. As fabrics are added, and/or color choices are updated, we would like Edge Animate to update automatically, without having to open the project and add/change options. Ultimately we would like to build an interactive designer that would then send all of the user's selections to us in an order. Is this possible?

    There is no like, but contains
    contains(LAST_NAME,'A')

  • Can Mobile Me users change to Lion without doing anything special?  For example, how will Calendars, Mail, etc. function if all are now synced with Mobile Me?

    Presently, our Mail, Calendars, etc. are being synced using Mobile Me accounts.  Considering all of the changes coming to Calendars, etc. with Lion, anything special to do before / during a change to Lion?

    Hi
    If you already have a Mobile Me account it will work with Lion until you change to iCloud or June 2012, which ever comes first...
    Calanders, Contacts, Mail, Notes will become part of iCloud when launched (in the very near future), your iDisk, Photo Gallery and iWeb hosting will cease when you register for iCloud or in June 2012. So if you use the features of Mobileme that will cease to be, carry on using Mobileme for as long as possible.
    http://www.apple.com/uk/icloud/what-is.html
    http://http://www.apple.com/uk/mobileme/transition.html
    Hope this helps.
    M. 

Maybe you are looking for

  • Issues with Fast User Switching, language pref, greyed out menu options

    I have only one user logged in to my Macbook. If i want to select the other user using Fast User Switching and clicking on the username in top right corner of screen, nothing happens. The other user at this time is still logged out. Incidentally, whe

  • New Workaround: Nano's showing in Windows Explorer but not iTunes

    Just tried it, since I've tried everything else so I thought I would share with everyone else. I had a Nano that would not be detected in iTunes 7, but it would show in Windows Explorer as a Removable Drive. 1. Disconnect iPod, close iTunes 7. 2. Acc

  • 'Profile Server Not Available' error when trying to access Profile Manager

    Hello all, I'm totally, totally new to OS X Server, but I have a class full of new iMac's and MacBook's that I want to be able to manage all in one go. Don't really mind about File Sharing, access from anywhere in the world etc. but I just want to be

  • Crashing everywhere (Quicktime x, 7, itunes) since update.

    Folks, since I updated to 10.6.5 Quicktime 7, X, and iTunes will not launch. I keep getting this error in the console with Quicktime 7 that started my search: BUG IN CLIENT OF LIBDISPATCH I've done all of these to no avail: - zapped pram - repair per

  • MIME type &#147;application/x-mplayer2&#148;

    One URL I visit pops up a warning that I don't have a "MIME type 'application/x-mplayer2' plug-in installed, so I can't use certain portions of the site. Where can I find such a plug-in? Is it a popular plug-in that is used by other sites?