Restrict usage of  Tocde ME2N to only 3 users at a given point of time

Hi All,
The request from Project Manager is this:
We have to allow at any point of time only 3 users to use transaction code ME2N. He will authorize this Tcode to 10 people out of which at a time only 3 should be allowed to use it.
He is ready to modify SAP Program.
Kindly give your inputs
Regards,
Fawaz

Hi Fawaz,
I have an idea without changing the standard.
Block access for everyone to ME2N.
Create a Ztable(Say ZTAB_ME2N_COUNT) with Fields MANDT and CountME2N.
Then Create a new Report Program(say ZREP_ME2N) with the following Code;
Data : count type i.
Select SINGLE CountME2N from ZTAB_ME2N_COUNT INTO count.
IF Count GT 3.
Message 'You Are not authorised, Already 3 Users are Using this Tcode' TYPE 'I'.
LEAVE PROGRAM.
ELSE.
UPDATE ZTAB_ME2N_COUNT SET CountME2N = CountME2N + 1.
CALL TRANSACTION 'ME2N'.
UPDATE ZTAB_ME2N_COUNT SET CountME2N = CountME2N - 1.
ENDIF.
Save and Activate the program.
Now Create a ZTransaction (say ZME2N) and assign the above program to it.
Now Give Authorisation to 10 users to ZME2N.
This is the easiest way to achieve your requirement without changing standard SAP.
Hope you can convince your PM with this solution, Revert back if you have doubts.
Regards
Karthik D

Similar Messages

  • Want to create a Read Only user for a given app owner user

    Hi Folks,
    We have an application owner schema, lets call it OWNER, which has different objects living under it.
    Now, for certain reasons, the app group wants a read only user which should be able to view objects living only in OWNER. It would only be able to read things, and have no create or alter types of priv to be able to change anything.
    The first idea was to create a new user (e.g. RO) and give this explicit grants (select only) for all objects in OWNER. Though this works, is a maintenance havoc, since everytime there is a new object in OWNER, you have to remember to give explicit grants to all RO (or RW ) kind of users.
    What i am looking forward to is, some sort of privilege or role concept that apply on the user level, and not on object level. something that allows me to say, all objects of this schema (e.g. OWNER) are visible to user RO. Other restrictions on RO would control read or write behaviour.
    Does this thing exist ? please point me to the documentation/example..
    regards
    raghav..

    CREATE OR REPLACE TRIGGER myTest.trg_mytest
    AFTER DDL
    ON myTest.SCHEMA
    DECLARE
         lv_obj_type VARCHAR2(20) := TRIM(UPPER(ora_dict_obj_type));
         lv_evt_type VARCHAR(20)      := TRIM(UPPER(ora_sysevent));
         lv_obj_name     VARCHAR2(30) := trim(UPPER(ora_dict_obj_name));
         lv_role_name     VARCHAR2(30) := 'myTest_RO';
         lv_stmt          VARCHAR2(4000) := NULL;
         ln_job_nr     NUMBER;
    BEGIN
         IF lv_evt_type != 'GRANT' --lv_obj_type <> 'OBJECT PRIVILEGE' --
         THEN
              DBMS_JOB.SUBMIT(ln_job_nr,'begin execute immediate ''grant ' || ' select on ' ||
                                       lv_obj_name || ' to ' || lv_role_name || '''; END;');
         END IF;
       INSERT INTO TB_EVT_LOG(d_date, description)
       VALUES(SYSDATE,  lv_obj_name || '~~~~ created ' || lv_obj_type || '~~~~' || lv_evt_type );
       EXCEPTION
         WHEN OTHERS THEN
           RAISE;
    END trg_mytest;
    /This works. But, my problem is that it is not able to filter out the Grant statement itself, Its logging an entry for the grant (as a ddl operation as well).
    what am I doing wrong here ?
    regards
    raghav..

  • How to restrict "sftp only" user into your home dir and subdir

    Hi OTN forums members
    Question : I want restrict a sftp only user to browse ONLY in your home directory and subdirectory . I don't want sftp user access into other directory.
    Details : I want use a "ssh bundle package" on s10(only package on SUNWCXall installation cluster). I don't want to use the "extrernal package", as "ProFTP", "Chroot", sunfreeware OpenSSH package,ecc. It's possible?
    Technical Details of my system(test) : the hostname and username it's fantasy name, not real ;-)
    root@sunlab1:/[1]$ cat /etc/release
                           Solaris 10 5/09 s10s_u7wos_08 SPARC
               Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                                 Assembled 30 March 2009
    root@sunlab1:/[2]$ uname -a
    SunOS sunlab1 5.10 Generic_142909-17 sun4u sparc SUNW,Sun-Blade-100
    root@sunlab1:/[3]$ grep explorer /etc/group
    explorer::111:
    root@sunlab1:/[4]$ grep explorer /etc/passwd
    explorer:x:111:111:Sun Explorer Data Collector sftp only user:/export/home/explorer:/usr/lib/ssh/sftp-server
    root@sunlab1:/[5]$ zfs list
    NAME                       USED  AVAIL  REFER  MOUNTPOINT
    rpool                     27.3G  9.33G    96K  /rpool
    rpool/ROOT                11.6G  9.33G    18K  legacy
    rpool/ROOT/s10s_u7wos_08  11.6G  9.33G  11.6G  /
    rpool/cfengine            73.7M   950M  73.7M  /var/cfengine
    rpool/dump                1.00G  9.33G  1.00G  -
    rpool/export              5.01G  9.33G  11.8M  /export
    rpool/export/home         1.40G  3.60G  1.40G  /export/home
    rpool/mp3                 2.65G  2.35G  2.65G  /mp3
    rpool/patches              206M  2.80G   206M  /var/patches
    rpool/swap                 768M  9.58G   514M  -
    root@sunlab1:/[6]$
    root@sunlab1:/[7]$ cd /export/home
    root@sunlab1:/export/home[9]$ ls -la
    total 47
    drwxr-xr-x   5 root     root           9 Oct  7 09:51 .
    drwxr-xr-x   4 root     sys            6 Jun  7 09:44 ..
    drwxr-x---  11 explorer explorer      11 Oct  7 11:30 explorer
    root@sunlab1:/[8]$ sftp explorer@sunlab1
    Connecting to sunlab1...
    Password:
    sftp> dir
    [...more output...]
    sftp> pwd
    Remote working directory: /export/home/explorer
    sftp> cd /var/adm
    sftp> dir
    [...more output...]
    sftp> get messages
    Fetching /var/adm/messages to messages
    sftp> pwd
    Remote working directory: /var/adm
    sftp> bye
    root@sunlab1:/[9]$
    root@sunlab1:/[10]$ pkginfo -l SUNWsshr
       PKGINST:  SUNWsshr
          NAME:  SSH Client and utilities, (Root)
      CATEGORY:  system
          ARCH:  sparc
       VERSION:  11.10.0,REV=2005.01.21.15.53
       BASEDIR:  /
        VENDOR:  Sun Microsystems, Inc.
          DESC:  Secure Shell protocol Client and associated Utilities
    [...snip...]
    root@sunlab1:/[11]$ pca -l installed --pattern=[Ss]sh
    [...snip...]
    Using /var/patches/pca/patchdiag.xref from Oct/14/10
    Host: sunlab1 (SunOS 5.10/Generic_142909-17/sparc/sun4u)
    List: installed (3/584)
    Patch  IR   CR RSB Age Synopsis
    141742 04 = 04 -S- 427 Obsoleted by: 141444-09 SunOS 5.10: sshd patch
    143140 04 = 04 RS- 119 Obsoleted by: 143559-03 SunOS 5.10: ssh patch
    143559 03 = 03 RS-  38 SunOS 5.10: ssh scp patch
    root@sunlab1:/[12]$ pca -l 141444 143559
    Using /var/patches/pca/patchdiag.xref from Oct/14/10
    Host: sunlab1 (SunOS 5.10/Generic_142909-17/sparc/sun4u)
    List: 141444 143559 (2/405)
    Patch  IR   CR RSB Age Synopsis
    141444 09 = 09 RS- 367 SunOS 5.10: kernel patch
    143559 03 = 03 RS-  38 SunOS 5.10: ssh scp patch
    root@sunlab1:/[13]$Legenda:
    PCA = [url http://www.par.univie.ac.at/solaris/pca/] Patch Check Advanced  , PCA is 3PP free and fast tool for Analyze, download and install patches for Solaris
    IR =Installed Rev. CR = Current Rev. (published on patchdiag.xref from Oct/14/10)
    RSB =[R]eccommended,[S]ecurity, [\B]ab patches
    Not helpful reading "<tt>man sshd_config</tt>" and "<tt>man sftp-server</tt>", and Google searching. Nothing by MOS Community search.
    Any idea?
    Best Regards
    Michele V.
    P.S.: Excuse me for my bad English.

    Hi OTN forums members,
         I find the solution. Thanks Andrea Manganaro (aka Amanga) for the help.
    1) Download and install OpenSSH for Solaris 10/SPARC and all dependencies(Please read the http://www.sunfreeware.com/openssh.html note):
         - [url ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/openssh-5.6p1-sol10-sparc-local.gz]openssh-5.6p1-sol10-sparc-local.gz
         - [url ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/openssl-1.0.0a-sol10-sparc-local.gz]openssl-1.0.0a-sol10-sparc-local.gz
         - [url ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/zlib-1.2.5-sol10-sparc-local.gz]zlib-1.2.5-sol10-sparc-local.gz
         - [url ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/libgcc-3.4.6-sol10-sparc-local.gz]ibgcc-3.4.6-sol10-sparc-local.gz
    2) Configure <tt>/usr/local/etc/sshd_config</tt> file with the "+<tt>ChrootDirectory</tt>+" directive. For me:
    # override default of no subsystems
    #Subsystem      sftp    /usr/local/libexec/sftp-server
    Subsystem       sftp    internal-sftp[...]
    # Example of overriding settings on a per-user basis
    Match Group sftponly
            ChrootDirectory %h
            ForceCommand internal-sftp
            AllowTcpForwarding no3) Create group and user for sftp-only account. For me:
    root@taurus # groupadd sftponly
    root@taurus # grep sftponly /etc/group
    sftponly::202:
    root@taurus # useradd -g sftponly -c "Sftp only user" -d /export/home/explorer -s /bin/false -m explorer
    explorer:x:1002:202:Sftp only user:/export/home/explorer:/bin/false
    root@taurus # passwd explorer
    New Password:
    Re-enter new Password:
    passwd: password successfully changed for explorer
    root@taurus # 4) Change home directory permission and create a r/w direcorty (uploads) for sftponly user account.
    root@taurus # cd /export/home
    root@taurus # ls -la
    total 14
    drwxr-xr-x   4 root     root           4 Oct 29 15:28 .
    drwxr-xr-x   3 root     sys            3 Jan 22  2009 ..
    drwxr-xr-x   3 explorer sftponly       3 Oct 29 15:41 explorer
    root@taurus # chown root:sftponly explorer; chmod 750 explorer
    root@taurus # ls -la
    total 14
    drwxr-xr-x   4 root     root           4 Oct 29 15:28 .
    drwxr-xr-x   3 root     sys            3 Jan 22  2009 ..
    drwxr-x---   3 root     sftponly       3 Oct 29 15:41 explorer
    root@taurus # This will make a read-only, chrooted directory perfect for people to come in and get stuff, but never write.
    For example, you could make a directory explorer/uploads that allow people to write in.Then you can moderate what gets copied into the read-only /explorer area. Remember that if a user can write in a directory then they can also delete anything in that directory.
    root@taurus # cd explorer
    root@taurus # mkdir uploads && chown -R explorer:sftponly uploads && chmod 0755 uploads
    root@taurus # ls -al
    total 9
    drwxr-x---   3 root     sftponly       3 Oct 29 15:41 .
    drwxr-xr-x   4 root     root           4 Oct 29 15:28 ..
    drwxr-xr-x   2 explorer sftponly       2 Oct 29 15:56 uploads
    root@taurus # 5) Disable SunSSH "service" and enable OpenSSH "service" (with SMF):
    root@taurus # svcadm disable sshSee [url http://www.sunfreeware.com/sshsol10.html]here for Running openssh vis SMF on Solaris 10 Systems
    root@taurus # svcadm disable ossh
    root@taurus # svcs -a | grep ssh
    disabled       12:37:51 svc:/network/ssh:default
    online         15:29:41 svc:/network/ossh:default
    root@taurus # 6) Test your job :-)
    Helpful links:
    ==============
    http://www.sunfreeware.com
    http://www.openssh.org
    http://calomel.org/sftp_chroot.html
    HTH
    Michele Vecchiato

  • Restrict Usage of Order Types by Users

    Hi
    We have two order types existing in SAP and interfaced with MAXIMO. Data flows into these order types via XI Interface from MAXIMO. So, in SAP my client wants to restrict usage of these two order types by SAP users. Is there a way, do i need to config something. Please let me know
    Thanks in advance

    Hi Srinivas
    Do you have config steps documentation available. If yes please share. Previous thread was useful but dint supplied me full information. Now I'm confused as, do i have to specify restrictions in Status profile or in Maintain authorization.
    Thanks for the initial help.

  • How to restrict the Usage of Rejection Store for an User?

    Hi!
    I am a QM User. without QAD Knowledge store & Production persons moves the Components to Rejection stores thro' Mvt 311. The rejection Components are getting accumulated and we are questionable for the same.
    So Can anybody resolve the problem to restrict the Rejection storage location for an user or any other solution is highly appreciated.
    Pls. help me.
    Thanks & Regards,
    Surya

    Hi
    Avoid particular storage location from QC 
    this is possible through autherization object M_MSEG_LGO
    Go to SPRO->mat mgt->Inventory mgt& physical inventory->Autherisation Manegement>Autherizarion check for storage location-->for you plant & Storage loaction click on Autherization.
    When the indicator is set you must have authorization for the authorization object Goods movements: storage location ( M_MSEG_LGO) in order to enter a goods movement in the storage location using a particular movement type.
    In M_MSEG_LGO
    The authorization object contains four fields:
    1.Activity: defines whether the user:
    may enter goods movements (Activity=1)
    may change goods movements (Activity=2)
    may display goods movements (Activity=3)
    2.Movement type: defines the movement types you can use to to maintain goods movements.
    3.Storage location: defines which storage locations in which plant you may maintain.
    4.Plant: defines which plants the user may maintain.
    here you can Quarentive Quality people from these storage loactioon.
    Regards
    Sujit

  • How to restrict usage of "Create Support Message" action in Help menu

    Dear Experts,
    hoping someone can help me to find a solution to this:
    in our company we are building a business process so that not everyone should be able to open a new support message under maintenance cycle, but only "Power Users" - we call them BPE for Business Process Experts.
    All the rest business comunity should filter their inquiries thru BPE's, and if BPE decides that Support Message is required, then (s)he will use the Create Support Message function under Help main menu.
    Is there any way in SAP to restrict usage of "Create Support Message" function to only a group of people (BPE) by security or other means, so that it's invisible (or not executable) by other people ?
    Thank you in advance
    Elena

    Hi,
    You can restrict the creation of support message thru the Auth Obj CRM_ORD_PR.
    Thnx,
    Waseem.

  • Restict read only users to certain columns

    Hi guys ,
    I want to restrict read-only users to read only certain columns on the table.How do I go about restricting?

    Always include the following information when asking a question:
    <ul>
    <li>Full APEX version</li>
    <li>Full DB/version/edition/host OS</li>
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)</li>
    <li>Browser(s) and version(s) used</li>
    <li>Theme</li>
    <li>Template(s)</li>
    <li>Region/item type(s)</li>
    </ul>
    935462 wrote:
    Hi guys ,
    I want to restrict read-only users to read only certain columns on the table.How do I go about restricting?Who are readonly users? How are they determined?
    What exactly are you talking about?
    Is it a report, If then which report Interactive or Classic?
    In either of them you can do conditional display of column using the same login
    Look at this for options http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/bldapp_rpt_att.htm#BCEBDIFA

  • Read-only user for Weblogic 6.1 sp2 console

    Is there a way to restrict a user to read-only priv. on the weblogic
    console? Either by using acl's or other means.
    Thanks in advance,
    Brown

    "Seb" <[email protected]> wrote in message news:3f33c3e2$[email protected]..
    >
    Hello,
    I'd like to create a read-only user for a customer that gives him acces tothe
    Console only for reading all the configuration. I don't him to modifyanything
    Is there a simple way to do this ?A previous post mentioned that this is not possible in 6.1.
    Brown,
    This functionality is not available in 6.1. The newest version of wls
    8.1 has this feature depending on the role that the user is in.
    ~satya

  • How to restrict user marking same events in multiple times.

    Hi,
    In my online exam system, I am displaying the questions and related answer in jsp page. Once user fill all this questions, the result of these stored in final table containing column questonNo, userid, answer, testname.
    Now in my application if any user goes back to the question displaying page after submitting same questions, he can change the answer selected in first attempt and submitting again the test, the result are stored in final table. I.e. for same question no. user is now able to answer in two times. I want to restrict user for answering test in second times.
    How can I achieve this?
    Any suggestion is highly appreciated?
    Thanks and Regards
    Harshal

    Hi Hari,
    with you suggested logic can i restrict user marking one question in multiple times,
    My target is once user submit any questions teh control will be transferred to the next page.Now he/she could not able to submit the same questions with another answer or the same answer also which is possible in my application by going back to these page using back button .so that i can get only one record for particular questions in table final.
    Thanks and Regards
    Harshal
    Edited by: HARSHAL_GURAV on Aug 20, 2008 12:15 AM

  • Restrictions/ Usage/ Validity Area/ Validity Area Category for DG

    Hi Experts,
    Following situation:
    At the moment we have the dangerous goods management in EH&S active.
    So we use the substance to build our "UN-Numbers" and we use the Classification "CL***" to build the dangerous goods classification.
    For each legal UN-Number we create one Substance with value assignment instance for each regulation. For example for UN1993 we create the substance UN1993 and in the property tree we assign for each regulation one value assignment instance.
    Means 3 instances one for ADR, IATA_C and IMDG. For each of these instances we use the standard usage (Validity Area) "DANGEROUSG:REG_WORLD"
    Now we create one Classification for the Substance UN1993, for example CL1993. So we do it so, that CL1993 inherits from UN1993. In this classification in the Transport Class. Tab we assign to each DG Regulation the UN1993 and release them.
    So, now we assign a material which is related to this UN-Number to the classification and do the filling (DGE5).
    Problem:
    Everything is ok, the Dangerous Goods Master is created for 3 Regulations.
    But the filling log (DGP7) shows error msg DGA422 "Specification CL1993 value assignment SAP_EHS_1022_024 not saved (same priorities)"
    But everything is ok.
    Question:
    If I now change the usage of the Substance UN1993 instances for ADR to "DANGEROUSG: DGADR", for IATA_C to DANGEROUSG: DGIATA_C, for IMDG to DANGEROUSG: DGIMDG the filling will be ok.
    But now my questions is. Where I have to use which Usages? because, also in the header of the Substance and classification there must be a Restriction (Validity Area).
    We have only the SAP standard values in the EH&S:
    VAreaCat  | Val. Area   | Description
    REGION | ADNR     | ADNR states
    REGION     | ADR       | ADR states
    REGION     | DE     | Germany
    DGREGION     | DGADNR     |   ADNR regulation - inland waterway
    DGREGION     | DGADR     | ADR regulation - road
    DGREGION     | DGCFR     | CFR regulation - all modes of trans. USA
    DGREGION     | DGGGVE |       GGVE regulation - rail
    DGREGION     | DGGGVS     |   GGVS regulation - road
    DGREGION     | DGIATA_C     | IATA_C regulation - plane / cargo
    DGREGION     | DGIATA_P     | IATA regulation - plane / passenger
    DGREGION     | DGIMDG     | IMDG regulation - sea
    DGREGION     | DGRID     | RID regulation - rail
    REGION     | ES     |   Spain
    REGION     | FR     |   France
    REGION     | GB      |  Great Britain
    REGION     | REG_EU      |  European Union
    REGION     | REG_WORLD      |  World
    REGION     | RID      |  RID states
    REGION     | TEXAS     | Texas
    REGION     | US |      USA
    So what is the right way to use the restriction/ usage ?
    Thank you in advance.
    Edited by: Thomas Neehoff on Jul 22, 2010 12:59 PM

    Hello
    I did not catch perfect your question. There is a "restriction tab" on "specification header". This restriction tab has a special purpose. It is not related / linked to the DG master filling (to my knowledge) and it is used "rarely".
    Regarding the "restriction tab" refer to this help:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/a7/286c740a6c11d28a220000e829fbbd/frameset.htm => Specification Management => Specificaiton Editing => Restrictions
    Now coming back to your topic: based on the DG customizing you can specifcy which "usage" is that which is used to retrieve the data during filling (you need to define regulatory lists etc.).
    This topic is a little bit complex in my opinion. Based on your set up you need to maintain the UN substances "different" so that the filling does work.
    May be take a look here:
    http://help.sap.com/erp2005_ehp_04/helpdata/en/de/5174db4c4b11d18a110000e816ae6e/frameset.htm
    In one of the customizing acitiviies there is a "flag" with which you specify the priority regarding rating. Normalyl the "prioritty "is selected you have done "first DANGEROUSG and than STANDARD.
    I believe in a different customizing acitvity the link between regulatory list (IMDG) an validity area (DGIMDG) is done. Based on this set up the filling is done.
    So my proposal is to do a recheck of DG customizing.
    With best regards
    C.B.
    PS: On the top you have this validity area type (DGREGION) which you need take care
    Edited by: Christoph Bergemann on Jul 22, 2010 9:01 PM
    Edited by: Christoph Bergemann on Jul 22, 2010 9:02 PM
    Edited by: Christoph Bergemann on Jul 22, 2010 9:04 PM
    Edited by: Christoph Bergemann on Jul 22, 2010 9:06 PM

  • Restrict the view for report MCSG on user ID level or Sales office level

    Hi,
    I need solution to restrict the view of MCSG report on user ID level or sales office level. he can able to view his own sales office data in report. Currently user able to view the all sales office data he is not restricted for same.
    Can u Pl provide solution.
    Regards
    Tarunkumar

    hi
    check with your basis team they can restrict the usage of the t-code on the basis of activity (create, change, display), parameters like sales office, division, distribution channel etc.
    saurabh

  • Restricting access to link based on a user's accesslevel

    I've gotten the DW login feature working for restricting
    access to pages based on a user's successful login and associated
    accesslevel. However, I have some links that open an Excel
    spreadsheet and an Outlook calendar. Is there an easy way to
    restrict access to a link so that an unauthorized user can't
    navigate to the link? Here's my code for the link:
    <td height="19" colspan="3"
    valign="top"><em><strong><a
    href="STI-Intranet/XLS/PROD_SCHED.xls" title="Current Production
    Schedule (Read Only)">STI Production Schedule
    </a></strong></em></td>
    <td height="4%" valign="top"><strong><a href="
    http://server_3/public/cal_engineering/"
    title="FROM INTRANET"><font size="2" face="Verdana, Arial,
    Helvetica,
    sans-serif">INT</font></a></strong></td>

    What server side language are you using? Do the links need to
    be restricted
    to just one access level, or multiple levels? Should it be
    blocked for only
    one level or multiple?
    Bryan Ashcraft (remove brain to reply)
    Web Application Developer
    Wright Medical Technologies, Inc.
    =============================
    Macromedia Certified Dreamweaver Developer
    Adobe Community Expert (DW) ::
    http://www.adobe.com/communities/experts/
    "mslee1965" <[email protected]> wrote in
    message
    news:e52o7e$3ak$[email protected]..
    > I've gotten the DW login feature working for restricting
    access to pages
    > based
    > on a user's successful login and associated accesslevel.
    However, I have
    > some
    > links that open an Excel spreadsheet and an Outlook
    calendar. Is there an
    > easy
    > way to restrict access to a link so that an unauthorized
    user can't
    > navigate to
    > the link? Here's my code for the link:
    >
    > <td height="19" colspan="3"
    valign="top"><em><strong><a
    > href="STI-Intranet/XLS/PROD_SCHED.xls" title="Current
    Production Schedule
    > (Read
    > Only)">STI Production Schedule
    </a></strong></em></td>
    >
    > <td height="4%" valign="top"><strong><a
    href="<a target=_blank
    > class=ftalternatingbarlinklarge
    > href="
    http://server_3/public/cal_engineering/"">http://server_3/public/cal_engin
    > eering/"</a> title="FROM INTRANET"><font
    size="2" face="Verdana, Arial,
    > Helvetica,
    sans-serif">INT</font></a></strong></td>
    >
    >

  • Read only user creation for Oracle EM Console 11.1.1.5

    Dear All.
    I have created Read only user for Oracle EM Console.
    I have followed below link to do the same
    http://moshe-soa.blogspot.com/2011/09/blog-post.html.
    I have noticed with read only user is that TEST button in EM Console is active means user with read only user can create a trans, in Prod scenario it is a risk.
    Raised a CR with Oracle and found that it is a bug
    Bug 14082464 - CANNOT DISABLE TEST/TEST WEB SERVICE BUTTON IN SOA EM COSOLE is there in Metalink.
    So my question is there any way by which i can disable the TEST button in EM Conasole.
    I think there are some WLST script or servlet java class available to resolve this issue.
    Can any one confirm this and please suggest if any one aware of any alternative method.
    Thanks,

    Hi, have you got any solution to this problem? I am having exact the same issue in 11.1.1.6.

  • When i open itunes, it gives me a message "the folder itunes is on a locked disk or you do not have write permissions for this folder" i am the only user and it was working a week ago whats wrong with it? it will not open itunes

    when i open itunes, it gives me a message "the folder itunes is on a locked disk or you do not have write permissions for this folder" i am the only user and it was working a week ago whats wrong with it? it will not open itunes

    Hi lvdmerwe!
    I have two articles here for you that should be able to help you troubleshoot this issue further:
    Trouble adding music to iTunes library or importing audio CD
    http://support.apple.com/kb/ts1387
    iTunes: Missing folder or incorrect permissions may prevent authorization
    http://support.apple.com/kb/ts1277
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • I have 2 ipad2s on one account. can i share the apps purchased rather than having to purchase same app for each.  I am only user.

    I have 2 ipad2s on one apple/itunes account.  can i share the apps purchased rather than purchase the same apps for each ipad2
    . i am only user.

    .... And you can put them on as many iDevices as you own. There is no limit as long as you use the same Apple ID and iTunes account for all of the devices.

Maybe you are looking for

  • SQL Loader - want to access data from .txt file but don't want to insert

    Hello, I have situation where I have some data in .txt file and I have to load that data into one of my table. My problem is I have fundtion get_id(a,b,c) in database which I have to call while loading the data to find out value of x. I have value of

  • Proxy to FILE/RFC Interface

    Hi Experts, Recently your ECC is upgrade, My Scenario is PROXY - > PI -> FILE/RFC, There are 2 issues for the same interface. Getting CCMS Alerts as below. When I check in SMQ2, i dont see any messages are stucked in the queue, but we are receiving t

  • Unable to export empty tables

    I use this command: exp userid=clix_db file=clix.dmp log=dump.log consistent=y to export all tables from user "clix_db". But when I take a look into the log file, I notice that not all tables have been exported. All empty tables are missed. e.g. the

  • LoadSound IE cache problem

    I see there are a lot of postings on this topic, however I haven't found any resolutions that are working for me. Here is the situation. I have a main movie, that loads external .swfs and plays in a linear way, much like a slide presentation. There a

  • Problem with Showing Next Button in Advanced Action

    I'm having problem using advanced actions (using Captivate 5.5) to show the next button after the user clicks three other buttons on the page.  I followed the directions here: http://blogs.adobe.com/captivate/2011/11/enabling-forced-navigation-for-yo