How to list all packages belonging APPS

Hi all

EBS R12.2

11 GR 2

OL6.5

I have the connection to system/manager.

I want to select all of the packages created by user APPS.

I tried > select * from dba_packages where owner = 'APPS', but received the error.

Are there other points of view v$ for the package?

Kind regards

JC

Hello

Have you tried below:

Select * from dba_objects where owner = 'APPS' and object_type = 'PACKAGE '.

Best regards

Hugues Mogulapalli

Tags: Oracle Applications

Similar Questions

  • How to recompile all invalid objects apps?

    Hi all:
    How to recompile all invalid objects apps? my environment is ORACLE 9.2.0.5 32bits.





    Concerning
    Terry

    Yes,

    Compile the drawing APPS

  • How to list all the users who have the privilege of s/n?

    How to list all the users who have the privilege of s/n?

    Peter

    Select * from dba_role_privs where GRANTED_ROLE = 'DBA ';

  • How to list all files within a data store and sent an email...

    Hello

    I know that within a data store there of are VM, but these virtual machines are right files?

    Some might create a virtual machine, remove the inventory but do not delete the folder/VM from the data store.

    Is thre anyway to get a script to list all records, not VM. s within a data store and be able to send emails?

    Thanks for your help,

    How about something like this:

    $VIServer = "YourVIServer".

    $EmailFrom = "Sender@Email".

    $EmailTo = "Recipient@Email".

    $Subject = "email subject".

    $SMTPServer = "YourSMTPServer".

    SE connect-VIServer $VIServer

    $datastores = get-Datastore

    {Foreach ($datastore to $datastores)

    $msg = "' nFolders in Datatore:"+ $datastore. " Name + "' not n".

    New-PSDrive-location $datastore - PSProvider data store name - VimDatastore-root '-' | Out-Null

    $folders = get-ChildItem Datastore:------|? {$_. ItemType - eq "File"}

    Remove-PSDrive Datastore. Out-Null

    {Foreach ($folder in $folders)

    $msg = "' t ' + $folder. Name + "' n '.

    }

    }

    Send-MailMessage-to $EmailTo - of $EmailFrom - $msg - SmtpServer $SMTPServer body-subject $Subject

    Disconnect-VIServer-confirm: $false

    This will send an email with an output similar to the following:

    Files in Datatore: local-esx100

    Test-VM

    ARandomFolder

    MoreFolders

    Files in Datatore: local-esx101

    Test-VM2

  • How to list all the system user directories?

    Hi all


    last month I create the directory for export (data pump). The problem is that I didn't put it in the documentation. I would like to know how I can list all directories (granted and which are created in sqlplus) by simply using the sql statement.

    Is there any command for this SELECT * FROM ALL_USERS?;



    would be great if someone can help me

    easy:
    SELECT * from all_directories

    HTH, Urs

  • How to list all the files in a backup job?

    User GreyGnome:

    I would like to get a list of all the files on a file system backup task. Is this possible?

    Through the CLI, if possible. On Linux.

    Thank you.

    Posted by AdrianMoir

    Hi GreyGnome,

    You can actually set this via the user interface on the backup options for employment. See attached picture.

    This will allow you to define a path and file name of a text file that lists all the files that are backed up by work, when the work is performed.

    Once the option set is saved under a name, if you create jobs through the CLI, with nvjobcreate, you can specify the selectionoptionsetname - , by using the name of the set option that you created with the entry 'Path to Backup Log'.

    The text file will display the name of the file in the following attributes...

    Backup Path, State, Type, size (bytes), Timestamp, attributes.

    Thank you very much

    Adrian.

  • How to list all the users on the Windows 8 Pro welcome screen

    I work for a small company based in the House of my boss of IT services. Because he runs the company, all the computers in the House are on a domain Active Directory (ease of management and control). Because he runs the company from his home, several of these computers are tablets/touch screens for his children, all upgraded to Windows 8 Pro.

    Currently, the default behavior of Windows 8 at startup is to display the Welcome screen showing the last user who opened a session with an option to switch to another user. If "Other user" is selected, a complete login prompt appears requesting a user name and password. This is standard fair for Windows 8, especially on a domain.
    He wants to do me is to find a way to allow a style of Windows XP (workgroup) Welcome screen displaying all the available avatars with user accounts, allowing so a child to click easily their user account and enter a picture password without ever seeing the on-screen keyboard.
    To rephrase: we want the Windows 8 Pro welcome screen to list all the (or specific, if possible) allowing anyone of you users connect to the computer without entering a user name and only enter a password (or picture password).
    I searched the web carefully and it seems that Microsoft can have deprecated this feature in an update of Windows 7 - many people shouting right lose their old welcome screen after an update. I read in the case of registry (removal of corrupt profiles and .default) hacks, security policy settings (interactive logon: do not display last user name = disabled), account policy (control userpasswords2 > uncheck: users must enter a password...) and a few other suggestions that had mixed results, which none apply to the present case , either because the settings are already in place, or because they are not available due to being on a domain.
    I'm open to exploration of any kind of registry or 3rd party software hacks that can provide this functionality. Win8 default behavior is absolutely horrible for tablets - it should be easy for multiple users to connect to a device without using a screen keyboard to enter their username and password. WIN8 is halfway there with passwords of photo, but we still have to enter a user name for all, but the user recently.
    Thanks in advance!

    Hi Jayce Nornin,

    Please be informed that he has no option to list all the users on the Windows 8 Pro welcome screen.

     

    It will be useful. If you have any other questions, feel free to let us know. We will be happy to help you.

    Thank you.

  • How to list all the vm with more than one network card?

    Hello

    Is it possible to only list all my s vm in my environment with more than one network card?

    I tried using the Get-NetowrkAdapter cmdlet, but could not get the desired results.

    Get - VM | Get-NetworkAdapter | Select-Object Name. ConvertTo-HTML-head $a - body "Virtual Machines < H2 > < / H2 > ' | Out-file D:\vms.htm

    Thank you

    Hello, AGFlora-

    Of course, you can do this with the standard as cmdlets:

    ## using standard cmdletsGet-VM | Select Name, @{n="NumNICs"; e={(Get-NetworkAdapter -VM $_ | Measure-Object).Count}} | ?{$_.NumNICs -gt 1}
    

    Or, if you want to get the results a little (or a lot) more quickly, you can use the cmdlet Get-view as:

    ## fast-like, using Get-ViewGet-View -ViewType VirtualMachine -Property Name,Config.Hardware.Device | Select Name,@{n="NumNICs"; e={($_.Config.Hardware.Device | ?{$_ -is [VMware.Vim.VirtualEthernetCard]} | Measure-Object).Count}} | ?{$_.NumNICs -gt 1}
    

    Those are both by selecting the names of virtual machines and their number of network cards.  Then you can direct this output to Export-Csv, ConvertTo-HTML, what you like.  What to do for you?

  • How to list all the tables that have no data

    Hi all


    I want to list all the tables that have no data. (registration number is 0)

    Someone help me.

    Thank you
    Thiensu2810

    Select owner, table_name from dba_tables where num_rows = 0;

    This assumes that the table statistics are COMMON.

  • How to list all the files on my HP/WinVista C: / / drive

    I have a HP laptop w/WinVista & the c: / / drive 105 GB is full of something, I ran Disk Clean & Disk Defrag without positive results! Very confused pirate, thank you for all help to define who I can erase, Ralph

    Ralph

    List them will do you no good.  Find out what their sizes are at will.  There is a neat application called Treesize (by Jam software) which is free and will tell you what that is use.

  • All package widget app

    Hello

    I want to pack my application widget with a few images inside so that I can get images from phone to make the application run faster. Is this possible?

    Thank you...

    Hoai an

    Are you referring to the packaging of local images and then reference these local images of pages you load remote into your widget?

    If so, the external content that you deliver to your widget, you can use the "local: / / /" URLs for images.

    I'm trying to remember the exact path, but I think that if someone had told an image to the root of your widget called "foo.png", you can use the image src="local:///foo.png".  And "foo.png" was in a directory in your widget called 'images', you would use the src="local:///images/foo.png image.

    Note that there are 3 slashes in the local: / / / syntax.

  • How to list all the vm with a snapshot?

    Hi, I need to have an overview of all the my virtual machine using a snapshot.

    Is there a function / script to receive all the days of the information by mail, for example?

    Concerning

    You can see Alan Renouf vCheck daily report using PowerCLI, vSphere SDK for Perl solution looking for, take a look: VMware vSphere Health Check Report v5.1.0

    The two will provide you with information about snapshots in your environment, Alan script, it's more than a daily report you are looking for and it email

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    Twitter: @lamw

    repository scripts vGhetto

    Introduction to the vMA (tips/tricks)

    Getting started with vSphere SDK for Perl

    VMware Code Central - Scripts/code samples for developers and administrators

    150 VMware developer

    If you find this information useful, please give points to "correct" or "useful".

  • How to list all the bridges in VM Linux?

    I have window, we can do it with Edit - & gt; Virtual network setting...

    But Linux, I can see that, and I don't want to stop all the virtual machine to run vmware - config.pl

    Thank you!

    ps - ef | grep 'bridge '.

    AWo

    VCP / VMware vEXPERT 2009

  • How to find all xls files on my hard drive, windows vista

    I have microsoft office 2000 and windows vista. How to list all xls files on my hard drive (C :) where they

    Click Start-> computer.  Then, in the upper right of the window, type . XLS and press ENTER.  Who will provide a list of all of them.

    I hope this helps.  Good luck.

  • vCenter Orchestrator - list all VM that begin with "S".


    Hello

    I would list all my VM that begin with "S" in vCenter Orchestrator but, I can't find any script to do this.

    Maybe someone already do this.

    I would do this:

    Lists all the vm.name start with "S"

    But I do not know the syntax of script!

    After, I have the list, I would delete all the vm which differ from Vmname-current date.

    Thank you in advance

    Good day

    Chris

    Hello

    I found how to list all the VM that begin with "S", here's the script:

    VM. Name.Substring (0.1) == "S".

    Good day

    Best regards

Maybe you are looking for

  • started to update to iOS 9.2.1

    Hi, im using iPhone 4 s. I wanted to update to iOS iOS 9.2.1 9.2. Suggest me if I should update or not. Thank you

  • Change the setting

    The new Apple TV purchased TV shows all shows them in a line If you have a large number of seasons, it's a pain to get to the most recent show is it possible to change the sorting or get a grid? Mike

  • HBO GO does not work on my: Lenovo tab 2 LTE a10-70

    Hello everyone. I bought this tablet: lenovo tab 2 LTE a10-70 yesterday. I've completely updated to the latest version. I installed a few games... and today I wanted to try the HBO GO on it. When I installed the app, everything goes well. I logged, c

  • Peripheral USB has malfunctioned. Windows does not recognize it.

    Peripheral USB has malfunctioned. Windows does not recognize it.

  • VPN tunnel with only one authorized service

    Hello has got a pix 520 with V 6.22. Now, I created a VPN Tunnel from our server to a annother company server and I only want to have ssh connection. If it works pretty good - but the other host, it is possible to connect on our host by ICMP, ftp, te