How to find out if Role is active or not and also delimited or not ?

How to find out if Role is active or not and also delimited or not ?

Hi,
Basically this job is done by BASIS (Technical) Team.
They can check whether role is active or not by using tcode "PFCG" by giving role name.
Regards,
Rameshwar

Similar Messages

  • How to find out difference between IAS Oracle Home patches and 10.1.2 Oracl

    How to find out difference between IAS Oracle Home patches and 10.1.2 Oracle Home patches.
    I have read me document but i could not able to understand.
    Please help me

    user10721329 wrote:
    How to find out difference between IAS Oracle Home patches and 10.1.2 Oracle Home patches.
    I have read me document but i could not able to understand.
    Please help meWhat docoument you are referring to?
    If you source the application env file APPS<CONTEXT_NAME>.env file under $APPL_TOP directory then this will set ORACLE_HOME to 10.1.2
    If you source the application env file <CONTEXT_NAME>.env file under $INST_TOP/ora/10.1.3 directory then this will set ORACLE_HOME to 10.1.3
    Environment Settings
    http://docs.oracle.com/cd/E18727_01/doc.121/e12841/T120505T120509.htm#F_92659x3Ax20H1x20Head1x3Ax20Environmentx20Settings
    Thanks,
    Hussein

  • How to find out the Role ?

    Is it possible to find out the correct role throught one query ?
    I am not able to find out the role , which my report checking ...user is getting no authoriation for this report and i m not able to figre that which role should assign to his user id .
    Regardsm

    Hi,
    You  can check the same through RSRT as well. If you run the query in execute+debug mode and check the Authorization breakpoints you'll see the objects its accessing.
    Also check the users role using SU01D or SUIM to see what he currently has. He's lacking the correct business authorization to access values for certain characteristics.
    Cheers,
    Kedar

  • How to find out the roles set for the current session?

    Hi,
    I wanted to find out the roles set to the current session. Which system view or table gives this info?
    Thanks
    Seshu

    SELECT * FROM session_roles

  • How to find out what role is defined for a specific cube

    hi
    is there a easy way of finding out the roles that are defined on a cube or DSO or multiprovider?
    Thankls

    Helge,
    Your question is not clear. What sort of Role you mean ?
    If you want to chek the property of the cube & then double click on it & check. Role would be assigned to a USER ID along with the required authorization. To validate a User Id & the role assigned to it please check PFCG.
    Hope,this might help you.
    Bye,
    Kiron.

  • How to find out which roles belong to a collective role?

    Hello,
    i loop over at an internal table which contains names from agr_1251-agr_name.
    No I want to find out if the role is a collective one, and if this is true, i want to find all single roles belonging to that collective role.
    Do you have any ides if there is a Function existing or in wich tables I can find I am looking for?

    Thx for your answer.
    Yes I did.
    In this table can I see if a role is a collective one, but I don´t see which roles belong to this role.

  • How to find out amount of undo generated in 10g and 9i? for a given session

    Hi All,
    I am on v10.2 on Linux. How can I find out amount of undo generated in my session ?
    I tried this
    SQL&gt; select a.STATISTIC#, a.VALUE, b.NAME from v$mystat a , v$statname b
    2 where a.statistic# = b.statistic# and (b.name like '%undo%' or b.name like '%rollback%') ;
    STATISTIC# VALUE NAME
    5 0 user rollbacks
    75 0 DBWR undo block writes
    176 132 undo change vector size
    177 0 transaction tables consistent reads - undo records applied
    178 0 transaction tables consistent read rollbacks
    179 0 data blocks consistent reads - undo records applied
    182 0 rollbacks only - consistent read gets
    183 0 cleanouts and rollbacks - consistent read gets
    188 0 rollback changes - undo records applied
    189 0 transaction rollbacks
    200 0 auto extends on undo tablespace
    202 0 total number of undo segments dropped
    220 0 global undo segment hints helped
    221 0 global undo segment hints were stale
    222 0 local undo segment hints helped
    223 0 local undo segment hints were stale
    224 0 undo segment header was pinned
    226 0 SMON posted for undo segment recovery
    229 0 SMON posted for undo segment shrink
    236 0 IMU undo retention flush
    241 0 IMU CR rollbacks
    242 488 IMU undo allocation size
    22 rows selected.
    SQL&gt;
    SQL&gt; create table temp1 as select * from dba_objects where 1=2 ;
    Table created.
    SQL&gt; select a.STATISTIC#, a.VALUE, b.NAME from v$mystat a , v$statname b
    2 where a.statistic# = b.statistic# and (b.name like '%undo%' or b.name like '%rollback%') ;
    STATISTIC# VALUE NAME
    5 0 user rollbacks
    75 0 DBWR undo block writes
    176 30280 undo change vector size
    177 0 transaction tables consistent reads - undo records applied
    178 0 transaction tables consistent read rollbacks
    179 8 data blocks consistent reads - undo records applied
    182 8 rollbacks only - consistent read gets
    183 0 cleanouts and rollbacks - consistent read gets
    188 0 rollback changes - undo records applied
    189 0 transaction rollbacks
    200 0 auto extends on undo tablespace
    202 0 total number of undo segments dropped
    220 0 global undo segment hints helped
    221 0 global undo segment hints were stale
    222 0 local undo segment hints helped
    223 0 local undo segment hints were stale
    224 0 undo segment header was pinned
    226 0 SMON posted for undo segment recovery
    229 0 SMON posted for undo segment shrink
    236 0 IMU undo retention flush
    241 0 IMU CR rollbacks
    242 560 IMU undo allocation size
    22 rows selected.
    SQL&gt; insert /*+ APPEND */ into temp1 select * from dba_objects ;
    91057 rows created.
    SQL&gt; commit ;
    Commit complete.
    SQL&gt; select a.STATISTIC#, a.VALUE, b.NAME from v$mystat a , v$statname b
    2 where a.statistic# = b.statistic# and (b.name like '%undo%' or b.name like '%rollback%') ;
    STATISTIC# VALUE NAME
    5 0 user rollbacks
    75 0 DBWR undo block writes
    176 171356 undo change vector size
    177 0 transaction tables consistent reads - undo records applied
    178 0 transaction tables consistent read rollbacks
    179 166 data blocks consistent reads - undo records applied
    182 91 rollbacks only - consistent read gets
    183 0 cleanouts and rollbacks - consistent read gets
    188 0 rollback changes - undo records applied
    189 10 transaction rollbacks
    200 0 auto extends on undo tablespace
    202 0 total number of undo segments dropped
    220 0 global undo segment hints helped
    221 0 global undo segment hints were stale
    222 0 local undo segment hints helped
    223 0 local undo segment hints were stale
    224 0 undo segment header was pinned
    226 0 SMON posted for undo segment recovery
    229 0 SMON posted for undo segment shrink
    236 0 IMU undo retention flush
    241 0 IMU CR rollbacks
    242 1352 IMU undo allocation size
    22 rows selected.
    What exactly is "undo change vector size" ?
    Also, if I am on v 9.2, this ( undo change vector size ) stat name is not there. What can be used in v9.2 ?
    Thanks in advance.

    Hi..
    >
    SET LINESIZE 200
    COLUMN username FORMAT A15
    SELECT s.username,
    s.sid,
    s.serial#,
    t.used_ublk,
    t.used_urec,
    rs.segment_name,
    r.rssize,
    r.status
    FROM v$transaction t,
    v$session s,
    v$rollstat r,
    dba_rollback_segs rs
    WHERE s.saddr = t.ses_addr
    AND t.xidusn = r.usn
    AND rs.segment_id = t.xidusn
    ORDER BY t.used_ublk DESC;
    >
    HTH
    Anand

  • How to find out which version of OID, SSO, Portal, and Disco. to install?

    Hi,
    I just upgraded from 11.5.9 (DB 9.2.0.4) to 12.1.1 (DB 10.2.0.5) using Rapid Install Wizard.
    The 11i system did have Portal and Single Sign-On, and Discoverer 4i. How can I find out which version of these I can install and integrate with the new system? Do I need to install a separate Application Server?
    Thanks,
    Sinan

    Please see these docs.
    Integrating Oracle E-Business Suite Release 12 with Oracle Internet Directory and Oracle Single Sign-On [ID 376811.1]
    Oracle Application Server with Oracle E-Business Suite Release 12 FAQ [ID 415007.1]
    Using Discoverer 10.1.2 with Oracle E-Business Suite Release 12 [ID 373634.1]
    Using Discoverer 11.1.1 with Oracle E-Business Suite Release 12 [ID 1074326.1]
    How To Enable Single Sign On (SSO) For Discoverer 11g (11.1.1.x) [ID 879604.1]
    Thanks,
    Hussein

  • How to find out image size (in pixels) of jpg and gif files

    this seems to work, though i doubt that it would very time:
                   Image img = Toolkit.getDefaultToolkit().getImage("car.jpg");
                   int w = img.getWidth(null);
                   int h = img.getHeight(null);
                   while(w <= 0 || h <= 0)
                      try{Thread.sleep(10);}catch(InterruptedException ix){}
                      w = img.getWidth(null);
                      h = img.getHeight(null);
                   JOptionPane.showMessageDialog
                      null,
                      filenames[i] + ": " + w + "x" + h,
                      "ImgSize",
                      JOptionPane.INFORMATION_MESSAGE
                   );please suggest a better solution.
    thanks

    >
    We've a requirement that we need to find out the size of a java object at run time, is there a direct java API to get the size of a composite object in memory?
    Here is my requirement: We are adding string objects (which is an xml string of considerable size) into a List. After reaching certain size limit (lets say 5MB) of the list i need to put this data into DB as a CLOB. So every time I add a string object to the list, I need to see if the total size of the list exceeds the limit and if yes, flush the results into DB.
    I am not sure if java has a direct API for this, if not what is the beast way to do it, it s critical requirement for us.
    It would be really great if someone could help us out.
    >
    Could you explain your actual requirement a little more fully.
    1. Is each individual string a separate XML string? Or is it just a fragment? Why would you just concatenate them together into a CLOB? That won't produce valid XML and it won't let you easily separate the pieces again later. So provide a simple example showing some strings and how you need to manipulate them.
    2. Are you using these xml strings in Java at all? Or are you just loading them into the database?
    For example if you are just loading them into the database you don't need to create a list. Just create a CLOB in Java and append each string to the CLOB. Before you append each one you can check to see if the new string will put you over your length limit. If it will then you write the CLOB to the database, empty the CLOB and start appending again to the new clob instance.
    If you explain what you are really trying to do we might be able to suggest some better ways to do it.

  • How to find out in GUI if my blade has a sd card or not.

    Hi .. am doing a remote installation of UCS with onsite support---- the blades are shipped with the sd cards but the team cannot see in from the front view.
    Where exactly will this sd card be located and how to verify the same in UCSM 2.1(3a).
    Thanks.

    Hi Shyam,
    This one of Limitations with the FlexFlash in UCSM. No the case for C-Series server.
    Please check the following link:
    http://www.cisco.com/en/US/docs/unified_computing/ucs/sw/gui/config/guide/2.1/b_UCSM_GUI_Configuration_Guide_2_1_chapter_0110001.html
    The following are the known limitations related to FlexFlash SD cards in this release of Cisco UCS Manager:
    1. Cisco UCS hardware information and inventory data about the controller and SD cards is not collected.
    2. Monitoring of the controller and SD card status or health is not supported. In the case of a failure of a FlexFlash controller or SD card, no faults or errors will be displayed in Cisco UCS Manager.
    3. Formatting of the SD cards is not supported.
    4. Booting from SD cards using the Cisco UCS Manager Boot Policy is not supported.
    http://www.cisco.com/en/US/docs/unified_computing/ucs/sw/gui/config/guide/2.1/b_UCSM_GUI_Configuration_Guide_2_1_chapter_0110001.html
    Chris,

  • Any ideas how to find out what makes my air mac slow and noisy

    Since I updated to Maverick and it didn't change with Yosemite my Air Mac is slow to open windows and very noisy. Has any got any ideas of what to do.
    Thank you

    Dear iWOO ok I have now done what you asked me to do and here is the result. FYI: The processor is working all the time, the fan is on, but doesn't get hot.
    Hardware Information: ℹ️
      MacBook Air (13-inch, Mid 2013) (Technical Specifications)
      MacBook Air - model: MacBookAir6,2
      1 1.3 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Not upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en0: 802.11 a/b/g/n/ac
      Battery Health: Normal - Cycle count 193
    Video Information: ℹ️
      Intel HD Graphics 5000
      Color LCD 1440 x 900
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Time since boot: 2 days 20:7:5
    Disk Information: ℹ️
      APPLE SSD SM0128F disk0 : (121,33 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 120.11 GB (39.42 GB free)
      Core Storage: disk0s2 120.47 GB Online
    USB Information: ℹ️
      Apple Internal Memory Card Reader
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Logitech USB Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) [Support]
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (2.0 - SDK 10.9) [Support]
    Problem System Launch Agents: ℹ️
      [killed] com.apple.CallHistoryPluginHelper.plist
      [killed] com.apple.CallHistorySyncHelper.plist
      [killed] com.apple.cmfsyncagent.plist
      [killed] com.apple.EscrowSecurityAlert.plist
      [killed] com.apple.icloud.fmfd.plist
      [killed] com.apple.scopedbookmarkagent.xpc.plist
      [killed] com.apple.spindump_agent.plist
      7 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
      [killed] com.apple.ctkd.plist
      [killed] com.apple.ifdreader.plist
      [killed] com.apple.nehelper.plist
      [killed] com.apple.periodic-daily.plist
      [killed] com.apple.softwareupdate_download_service.plist
      [killed] com.apple.wdhelper.plist
      6 processes killed due to memory pressure
    Launch Agents: ℹ️
      [loaded] com.avast.userinit.plist [Support]
      [not loaded] com.teamviewer.teamviewer.plist [Support]
      [not loaded] com.teamviewer.teamviewer_desktop.plist [Support]
    Launch Daemons: ℹ️
      [failed] com.adobe.fpsaud.plist [Support] [Details]
      [loaded] com.avast.init.plist [Support]
      [loaded] com.avast.uninstall.plist [Support]
      [failed] com.avast.update.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [not loaded] com.teamviewer.teamviewer_service.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
      [invalid?] com.avast.home.userinit.plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [not loaded] info.lokiware.attachmenttamer.cleanup.plist [Support]
      [invalid?] info.lokiware.attachmenttamer.setupagent.plist [Support]
    User Login Items: ℹ️
      iTunesHelper Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      AdobeResourceSynchronizer Application  (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
      Dropbox Application  (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 16.0.0.287 - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Support]
      Flash Player: Version: 16.0.0.287 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Support]
    User internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 7.1 [Support]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: ON
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 120.11 GB Disk used: 80.69 GB
      Destinations:
      VERBATIM HD [Local]
      Total size: 499.76 GB
      Total number of backups: 57
      Oldest backup: 2013-06-22 12:39:36 +0000
      Last backup: 2015-01-22 15:57:47 +0000
      Size of backup disk: Excellent
      Backup size 499.76 GB > (Disk size 120.11 GB X 3)
    Top Processes by CPU: ℹ️
          6% WindowServer
          1% com.avast.daemon
          1% Dropbox
          0% AppleSpell
          0% com.avast.service
    Top Processes by Memory: ℹ️
      116 MB Mail
      82 MB loginwindow
      77 MB com.apple.WebKit.WebContent
      56 MB Calendar
      56 MB WindowServer
    Virtual Memory Information: ℹ️
      323 MB Free RAM
      1.51 GB Active RAM
      423 MB Inactive RAM
      675 MB Wired RAM
      58.76 GB Page-ins
      153 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 23, 2015, 04:40:48 PM /Library/Logs/DiagnosticReports/discoveryd_2015-01-23-164048_[redacted].crash
      Jan 22, 2015, 09:34:02 AM /Library/Logs/DiagnosticReports/discoveryd_2015-01-22-093402_[redacted].crash
      Jan 21, 2015, 09:04:32 AM /Library/Logs/DiagnosticReports/discoveryd_2015-01-21-090432_[redacted].crash
      Jan 20, 2015, 09:07:43 PM Self test - passed

  • How to find out whether the transaction logs are being truncated or not

    Hi,
    We are using Veritas Backup tool for Backups and restores on our MS SQL 2000.
    One of our Veritas Tech has disabled the Truncation of Transaction Log Backup using the Job setup in Veritas. We want to confirm whether the Truncation is happening or not. I don't see any difference in the Transaction Log file size.
    How to find out whether truncation is active or not?
    Thanks
    Vijay

    Hello Vijay,
    On MSSQL truncation of transaction log does not shrink the size of the transaction log. It simply removes the content within the transaction log and writes it to the backup.
    Meaning the free percentage within the transaction log will increase.
    If you want to Resize the transaction log size, you need to do something else.
    The shrinking procedure is given here:
    http://support.microsoft.com/kb/907511
    Regards,
    Siddhesh

  • How to find out whether a particular changed by some user

    Hi gurus,
                I am just trying to figure it out how to find out whether a particular user has changed a particular table or not. In other words table changes history. If any of you know about it please let me know.
    Thankyou
    Jason

    Jason,
      Ajay mentioned changes to Table not for Data. If you are looking for Changes to Table Data... you need to check System Log SM21. check for that perticular period.
    Nagesh Ganisetti.
    Assign points if it helps.

  • How to find out the locks

    How to find out which user has accuired the lock and which type user has accquired the locks.

    SQL> select l1.sid, ' IS BLOCKING ', l2.sid
    2 from v$lock l1, v$lock l2
    3 where l1.block =1 and l2.request > 0
    4 and l1.id1=l2.id1
    5 and l1.id2=l2.id2
    SQL> /
    SID 'ISBLOCKING' SID
    422 IS BLOCKING 479
    1 row selected.
    Even better, if we throw a little v$session into the mix, the results are highly readable:
    SQL> select s1.username || '@' || s1.machine
    2 || ' ( SID=' || s1.sid || ' ) is blocking '
    3 || s2.username || '@' || s2.machine || ' ( SID=' || s2.sid || ' ) ' AS blocking_status
    4 from v$lock l1, v$session s1, v$lock l2, v$session s2
    5 where s1.sid=l1.sid and s2.sid=l2.sid
    6 and l1.BLOCK=1 and l2.request > 0
    7 and l1.id1 = l2.id1
    8 and l2.id2 = l2.id2 ;
    BLOCKING_STATUS
    BULKLOAD@yttrium ( SID=422 ) is blocking BULKLOAD@yttrium ( SID=479 )

  • How to find out Inquiry  document number in sales quotation

    Hi all
    my client have requirement that while creating quotation with reference to inquiry number the system should copy inquiry number in sales quotation it should be save into any particulates field so base on that  he can configure  output determination can any one help me how to find out Inquiry  document number in sales quotation and what are the config step i need to do
    Thanks and regards
    rajesh

    Hi raj
    Firstly  , In Sales header data you can see the preceding document feild but i am not sure in which tab .
    Secondly, As far as document flow is concerned go to VA22 and then you will get the document number of the quotation and at the top you will get one small icon which is document flow , but i am, not sure with the shortcut but just check with  Shift +F2. then you can see the flow
    Regards
    Srinath

Maybe you are looking for

  • Error Deploying a Process Flow

    Hi All, Each time I try to deploy a process flow I created, I get the error "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor". The Oracle workflow engine is on a separate machine and all connection parameter

  • Error in uploading  process catalog of Process control

    Hello, When i am trying to upload the controls through process catalog of advanced upload in process control , i get an error message  as Number of columns required 40, Found 39 columns . I have used the same format what the tool has given as a stand

  • Hoe, How can I sync my In-App Purchases from my iPod touch 4th generation to my iphone5s?

    How can I sync my In-App Purchases from my iPod touch 4th generation to my iphone5s?

  • Basic IDOC Segment Enhancement

    My requirement is to add a new segment to the basic IDOC structure I have tried this using a <b>Z</b> type IDOC with reference to the basic type then i am getting an error saying that clipboard is empty. Please help me to solve this. <b>Thanq</b>

  • Common Services Device Update

    I have just completed an Install of LMS 3.2 I have tried to apply the latest device update package the download site for DFM. However I get the following message "consitency check for base package DFMSharedUpdates." When I look at the Common Services