Queue available in one schema want to access through other schema

Hi All,
There is one queue available in apps schema. I want to access the queue from other schema. Can anyone provide me the steps.
Regards

select * from schema_name.table_name;
*you must have sufficient privileges to see this scheme                                                                                                                                                                                               

Similar Messages

  • E93z All in One I want Audio playback through speakers and headphones at the same time

    Hi there,
    As the subject line reads I am hoping to enable playback through both the headphone and internal speakers on the E93z All in One unit I have.
    Is there is currently a way to do this with the Lenovo HD Audio software for the Realtek system? It detects the headphones and does the typical shut off of the internal speakers however no option to enable playback through both seems to exist.
    Running Windows 7 Pro 32 bit.
    I cannot enable stereo mix (by right clicking in the playback area of the sound settings in Windows) to try and come up with a work around.
    I have tried re-installing the drivers and not luck with more options to do this.
    I have tried un-installing the Lenovo HD audio software and still no luck using the vanilla Windows 7 software.
    Any suggestions would be greatly appreciated.

    Asad A wrote:
    Well basically I want to hook in some external speakers via the headphones jack and the more speakers the better, I just figure if there's a way to have 4 speakers instead of just two it'd be cool, why let the internal speakers go to waste?
    Do you know if plugging in headphones physically cuts off the internal speakers or if it's a software/driver thing?
    Thanks to all who've replied
    I'm pretty sure it's all in the OS, since the level control is right at the top. You can actually customize sound profiles individually for headphones or the built-in speaker, or any other sound devices. You can also use Bluetooth headphones (or a headset) or USB output devices. As far as I know, only one can be selected (in System Preferences) even if multiple ones are plugged in.

  • ABAP program created in one system want to trigger from other system

    Hello,
    I have created ABAP program in ECC server internally it is using function module to update table.This ABAP program has 2 variants.
    I wnat to trigger this ABAP program from BW . How to idenfied an abap program which is return in system1 into other system2.So that it can be executed from BI.
    Thanks.

    There are ways to do this.
    Create an RFC in R/3 system (Tcode: se37 or read forums for sample). Create an event in sm62 (choose customer event) - then schedule your R/3 program (with whatever variant you want) in R/3 to trigger it when the event raised.
    Within the RFC (R/3), you need to trigger the event -
    Raise event to execute background jobs running under this event id
    w_eventid type btceventid value 'ZCUSTOMEVENT'.
        call function 'BP_EVENT_RAISE'
          exporting
            eventid                = w_eventid
          exceptions
            bad_eventid            = 1
            eventid_does_not_exist = 2
            eventid_missing        = 3
            raise_failed           = 4
            others                 = 5.
        if sy-subrc <> 0.
        endif.
    in BW - Create a program - Call the RFC (created in R/3). You can even add this to your process chains.
    CALL FUNCTION 'Z_RFC_IN_R3'
          DESTINATION p_dest
          IMPORTING
          XYZ = XYZ
          TABLES
          IT_X = IT_X
    p_dest being your R3 destination (this is RFC maintained in sm59 for your R3 client)....
    Good luck. Quite a bit of work but works perfect.

  • One device has Internet access through MHS291L, the other doesn't.

    I have a MacBook Pro which is connected to my MHS291L by Wi-Fi, and it works great. I also have a Windows Vista PC connected using a Wi-Fi adapter, and it does not have Internet access. I got the Wi-Fi adapter about a week ago, and it was working for a while, but it has stopped. The Vista PC shows that it is connected to the Jetpack, in the list of wireless networks, but my browser is informing that I am not connected when I try to visit any website.
    I thought it might be because both computers were using the same IP address, so I renewed the IP address on the Mac. No change. I tried disconnecting and reconnecting from the network on the Vista computer, but that didn't help, either.
    What might the problem be? Thank you.

    If your Vista PC is not receiving internet but the MacBook is then that means there is probably an issue with the WiFi adapter on the Vista PC.  I would try uninstalling and reinstalling it from the Device Manager.  This should refresh the hardware and driver connections and allow you to better communicate with the Jetpack.  Make sure you have your wireless password entered correctly and that you have a valid IP address (192.168.1.xxx).
    A reset of the Jetpack may also be helpful here incase the Jetpack is suffering from a temporary problem.  There should be a reset button somewhere on the device that will restore it back to defaults for you.  Any time you perform a reset I suggest taking a moment to setup a custom wireless password.  I'd suggest creating your own password according to strong password security best practices that takes at least a few years to crack.
    Strong Passwords:
    http://windows.microsoft.com/en-us/windows-vista/tips-for-creating-a-strong-password
    Rate the strength of your password:
    https://howsecureismypassword.net/

  • I have several Outlook accounts and want to switch between them but Firefox defaults to the main one and won't let me access the others.

    Outlook now makes me sign out and sign back in to each of my email accounts. When I try to sign back in, it defaults to the main account and won't let me type in the other email addresses. This only happens in Firefox, both Google and IE leave the email address blank and let me type in the one I want to access. I'd rather use Firefox, but it doesn't let me type in a different email address. Can I fix this?

    This can be caused by corrupted cookies or cookies that are blocked (check the permissions on the about:permissions page).
    *https://support.mozilla.org/kb/fix-login-issues-on-websites-require-passwords
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    If clearing cookies doesn't work then it is possible that the <i>cookies.sqlite</i> file that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookie files like <b>cookies.sqlite-journal</b> in the Firefox profile folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies

  • Giving Access for an User On One Schema.

    Hi all,
    I want to give read,write and execute access for an user in one schema and only read access to another two users.
    How can I give..Please suggest.

    Hi,
    Well in that case you may have to give the select privilege to a particular user for all tables.
    Or
    You may like to create two roles, and give select privilege to a particular role for all tables. And give write i.e. insert/update privilege to the other role. Then assign this role to the user whom you like to give the access.
    Regards
    Anurag Tibrewal.

  • Create a user that can only access to one schema - please help!!

    Hi all,
    I want to create one user in a Oracle DB that can only access to one schema. I did the following:
    CREATE USER "TEST" PROFILE "DEFAULT"
    IDENTIFIED BY "test" DEFAULT TABLESPACE "USERS"
    TEMPORARY TABLESPACE "TEMP"
    ACCOUNT UNLOCK;
    GRANT SELECT ON "TESTDTA"."F0007" TO "TEST"
    GRANT "CONNECT" TO "TEST";
    I have done a test and the user TEST can access all schemas, when I only gave explicit permissions to the schema TESTDTA.
    Any suggestion/clarification???
    Many thanks in advance.
    Víctor.

    Hello Andreas and Pavan,
    I have launched the query:
    select * from dba_tab_privs
    where grantee = 'PUBLIC'
    and owner = 'PRODDTA'
    and table_name= 'F0009';
    And the result:
    GRANTEE OWNER TABLE_NAME GRANTOR PRIVILEGE GRA HIE
    PUBLIC PRODDTA F0009 PRODDTA ALTER NO NO
    PUBLIC PRODDTA F0009 PRODDTA DELETE NO NO
    PUBLIC PRODDTA F0009 PRODDTA INDEX NO NO
    PUBLIC PRODDTA F0009 PRODDTA INSERT NO NO
    PUBLIC PRODDTA F0009 PRODDTA SELECT NO NO
    PUBLIC PRODDTA F0009 PRODDTA UPDATE NO NO
    PUBLIC PRODDTA F0009 PRODDTA REFERENCES NO NO
    PUBLIC PRODDTA F0009 PRODDTA ON COMMIT REFRESH NO NO
    PUBLIC PRODDTA F0009 PRODDTA QUERY REWRITE NO NO
    PUBLIC PRODDTA F0009 PRODDTA DEBUG NO NO
    PUBLIC PRODDTA F0009 PRODDTA FLASHBACK NO NO
    11 rows selected.
    Then I supose that I have to change the value on column GARANTEE. How can I do that?
    Thanks a lot for your help!!
    Víctor.

  • I have downloaded several books into ibooks.  Started reading one and closed it when I was done reading for the day.  Now I want to access other books and when I open ibooks it goes directly to that first book.  What can I do? Help please.

    I have downloaded several books into ibooks.  Started reading one and closed it when I was done reading for the day.  Now I want to access other books and when I open ibooks it goes directly to that first book.  It does not give me the shelf to choose what book I want to read - goes directly to the first book. What can I do? Help please.

    There should be a Library button on the top left. If not ap the middle of the screen to get it to appear.

  • I have multiple devices that have my iCloud E-mail, I want to disable the E-Mail on some of the devices but keep it on others, I do not have physical access to the ones I want to disable but I do have access to the devices I want to keep receiving mc

    I have multiple devices that have my iCloud E-mail, I want to disable the E-Mail on some of the devices but keep it on others, I do not have physical access to the ones I want to disable but I do have access to the devices I want to keep receiving mail, can I do this with a simple password reset or will that still leave all devices enabled?

    The simple way would be to uncheck 'Mail' in System Preferences (or Settings)>iCloud, but as you would need access to the devices in question to do that you will have to change your password, at http://appleid.apple.com. You will then need to sign out and back on all the devices you want to be able to receive mail, and it's important that you follow this procedure and note the warning:
    Firstly, if you have 'Find My iPhone/iPad/iMac' enabled on any of your devices, turn it off.
    Go to http://appleid.apple.com and click 'Manage your Apple ID'. Sign in with the current ID.
    Where it says 'Password & Security' and gives your current ID email address, click 'edit'.
    Enter your new password and click 'Save changes'.
    Now you will need to go to each of your devices and sign out in System Preferences (or Settings)>iCloud - 'Sign out' on a Mac, 'Delete this account' on an iOS device (this will not delete the account from the server).
    Then sign back in with your new ID. Your iCloud data will disappear from your devices when you sign out, but reappear when you sign back in.
    I re-iterate: before you start, turn off 'Find My Mac' (or whatever) or you will need the services of Support.
    The devices on which you have not changed the password will throw up continual error messages as they attempt to contact iCloud and fail.

  • In iTunes 11.0.2.26, an Albums search by track names returns albums as if they only have one track on them, but I still want to access the entire album. How can I have the search results show the entire album (with just the searched for name highlighted)?

    Hello, all.
    In iTunes 11.0.2.26, an Albums search by track names returns albums as if they only have one track on them, but I still want to access the entire album. How can I have the search results show the entire album (with just the searched for name highlighted)? For instance, I'm wanting to play an album with a particular track on it or I'm searching for albums that include that track. iTunes incorrectly assumes that all I'm after is that one track and then incorrectly displays the album as if there is only one ttrack on it. This is a bonkers default setting. Can I change this?

    Click the search magnifying glass and uncheck "Search entire library".
    Type in the name of the track.
    Click the album of interest to show tracks.
    Select the track.
    Press the X in the search box to clear the search.
    Double click the track you want to start playing first.
    tt2

  • How can i access all the objects of one schema from another schema

    Dear All,
    How can i access all the objects(Tables,Views,Triggers,Procedures,Functions,Packages etc..) and do the modifications of one schema from another schema (Without using synonyms concept).
    Thanks in advance,
    Mahi

    First of all, synonyms only help you easy reference the object. It doesn't have any implication of object privilege.
    As long as you have proper privilege on target object. You can access it with or without synonyms.
    Assuming you have proper privilege of objects, you can use following command to assume schema owner.
    ALTER SESSION SET CURRENT_SCHEMA = Schema_owner

  • HT201240 I just got my Mac yesterday.  My kids want to access sites that need the adobe player.  When I try and download it asks for a password.   I do not even remember setting one up?  How do i find out what it is?

    I just got my Mac yesterday.  My kids want to access sites that need the adobe player.  When I try and download it asks for a password.   I do not even remember setting one up?  How do i find out what it is?

    FYI this is the legitimate Flash Player installer:
    This one is bogus:
    As X423424X wrote do not download it from any site other than the one he linked.
    Adobe does not require a password to download the Flash installer. Generally speaking passwords are not required to download software, unless you must register with the website so as to log in. In that case you should never use the same name and password you use to administer your Mac.

  • HT5100 How to limit the number of downloaded videos in parallel to one.i want my iPad itunesu to download only one video at once at time and when finished from downloading it to pass to the second queued one.

    How to limit the number of downloaded videos in parallel to one.i want my iPad itunesu to download only one video at once at time and when finished from downloading it to pass to the second queued one.

    @Tylerdowner: hmm.. maybe yes.. I just want to use the DOWNTHEMALL AddsOn for the saving file not the default download.. because my costumer download MP3 files and save it 3 or more files at a time so my Internet Connection goes down :( so I just want to limit them to save 1 file at a time.
    or if there is another way to limit it to 1.. please tell me :(

  • Syscontext use in a object by one schema can't access by others

    Syscontext related one schema objects given error during access in othere schema and use to take
    sys privs like "select any dictionary "
    Grant create any context to HR;
    conn hr/hr123 ;
    then
    CREATE OR REPLACE PROCEDURE "HR"."SET_ATT_DATE" (att_date IN DATE) AS
    var_date VARCHAR2(30);
    BEGIN
    var_date:=TO_CHAR(att_date,'DD-MM-YYYY');
    DBMS_SESSION.SET_CONTEXT('ATTENDANCE_CTX','ATT_DATE',var_date);
    END;
    create context ATTENDANCE_CTX using SET_ATT_DATE ;
    Whenever THIS procedure name "HR.SET_ATT_DATE" is used by schema scott in program it is given
    error insuficient priviledge during compilation but whenever i am given "select any dictionary to
    scott " then it's getting compile
    where as i have given grant priviledge
    grant execute on HR.SET_ATT_DATE to scott.
    Plz help me in this regards

    Thanks very much Mylenium for your help - I've scoured the file looking for everything you mention, and there anything fancy at all. I'm using no time-stretching or remapping, simply putting a text layer on top of a video, and moving its in and out points. No blurs or odd keyframes as far as I can tell. Video and comp are both 29.97 framerate (comp created using "New comp from selection").
    Glen

  • How to defer constraint of one schema from another schema

    Hi All,
    I am having a requirement of migrating data from one schema(SCHEMA_A) to another schema(SCHEMA_B). So I tried to implement the same using PL/SQL.
    Because of foreign key contraint while migrating child table, Oracle throws an error message like parent key not available.
    So I tried to set the all contraints to deferred and after completion of migration i planned to set all the contraints to immediate.
    But Here I am executing the procedure from schema(SCHEMA_C) which has rights to access SCHEMA_A and SCHEMA_B.
    How could I able to defer all the constraint in SCHEMA_B from SCHEMA_C?
    Thanks in Advance,
    Antany.

    Yes,
    You could run something like this, for foreign keys:
    BEGIN
      FOR cur_rec IN (SELECT table_name, constraint_name FROM DBA_CONSTRAINTS WHERE OWNER = <owner> AND CONSTRAINT_TYPE = 'R' )
        LOOP
          EXECUTE IMMEDIATE 'ALTER TABLE <owner>.' || cur_rec.table_name || ' DISABLE CONSTRAINT ' || cur_rec.constraint_name;
        END LOOP;
    END;
    /

Maybe you are looking for