Query for user group

Dear Team,
When I am creating  Query for user group via T-code  SQ01.
Query     ZDEMO1    then Create
This messege is comming .
System setting does not allow changes to be made to
object AQQU /ISDFPS/OM  ZDEMO1
Why this messege is comming .
Thanks
manu

Dear Manu,
Please check in SE06 >> change system options >> if the system and the relevant object is in modifiable status.
Cheers,
Jazz

Similar Messages

  • Notification Query for Item Group

    Dear Experts,
    Please Guide me for a Notification Query for this Scenario :
    I want to put a Notification Query for a  Group i.e. when any user do transactions in any form or any Particular form using items
    of this Group than if the Item Quantity is in Decimal then he can not do that Transaction and Get Error Message.
    Thanks in Advance.
    Atul Chakraborty

    Hi Atul,
    to achieve this you have to write SPTN at the back end
    under databases node select your live database.
    Select programability
    select stored procedure
    select db.sbo.SP_Transactionnotification
    and paste your code into
    ADD YOUR CODE AREA
    If (@object_type = '17') and (@transaction_type in ('A', 'U'))
    BEGIN
         Declare @ItmGrpCode as int
         Declare @Qty as int
         set @ItmGrpcode = (select oitm.itmsgrpcod from oitm inner join rdr1 on oitm.itemcode = rdr1.itemcode inner join ordr on   
            rdr1.docentry = ordr.docentry where  ordr.docentry=@list_of_cols_val_tab_del)
            set @Qty = (select quantity from rdr1 inner join ordr on ordr.docentry = rdr1.docentry where ordr.docentry =
            @list_of_cols_val_tab_del)
         BEGIN
                        if @ItmGrpcode = 10 and @qty = 0
                        Begin
                             set @error = -1
                             set @error_message = 'Invalid Input'
                       End
           End
    END
    Like wise by capturing object type and dml mode you have to write code for every document that you want to check.
    For example I've given code for Sales Order.
    hope this will help you
    Thanking you
    Malhaar'

  • How many ways we can create authorization for user groups in sap query reports

    Hi Gurus, I am getting a problem when I am assigning users to user group in sap query report .The users other than created in user groups are also able to add &change  the users .So please suggest me how to restrict users outside of the user group.
    Please send me if u have any suggestions and useful threads.
    Thank You,
    Suneel Kumar.

    I don't think it can be done. According to the link below 'Users who have authorization for the authorization object S_QUERY with both the values Change and Maintain, can access all queries of all user groups without being explicitly entered in each user group.'
    http://help.sap.com/saphelp_46c/helpdata/en/d2/cb3f89455611d189710000e8322d00/content.htm
    Although I think you can add code to your infoset and maybe restrict according to authority group, i.e.:
    Use AUTHORITY-CHECK to restrict access to the database based on user.
    Press F1 on AUTHORITY-CHECK to find out how to use it in the code

  • Planner provisioning for user groups lost in Shared services

    Hi All,
    Everything was fine. All of a sudden, no users were able to login in to planning.
    On investigation it was found that all the planner/planning provision to the groups is lost in the shared services.
    Digged into log for a while and couldnt find out any issues.
    What could be the reason we lost user group security provisioning only to planning?
    Could anyone please help on this?
    Regards,
    GG

    I used to have same experience every time migration happens from dev to UAT or prod etc.
    After migration, registering with shared service will be successful. When i try to sync, migrate user identities (provisionusers.cmd) from shared service all user group info vanishes in planning (Add/Edit access page). i.e hsp_access_control table is truncated or all rows are dropped.
    Then i have to set it up correctly. Guess this happens because usergroups have different id between different environments. When sync'g planning at target, it will not be able to recognize the wrong usergroup id of source system.
    My assumption:
    When provisionusers.cmd is run, planning fetches the usergroup provisioning information from shared services in to hsp_access_control planning repository table. could someone confirm the same?
    Is there any other way to overcome this issue recurring on every time migration happens?
    But the problem today was different: the provisioning is lost in the shared services itself which i havent witnessed so far. We didnt migrate recently, everything was file till 8 AM, but screwed around 8.10 AM. everything was up and running.
    Cheers,
    GG

  • Active Directory Authentication and permissions for user group in APEX 4.0

    Hello,
    I am new to oracle APEX and I have searched the forum for active directory authentication for a user group and I am really confused about all the different threads. Can anyone please provide me the steps to follow; in order to implement AD authentication for a user group in Oracle APEX 4.0.
    These are the threads which i was looking at to get an idea like how AD authentication works but its really confusing for me.
    Help with Authentication (APEX_LDAP.AUTHENTICATE)
    Re: LDAP Authentication Via Groups
    Thanks,
    Tony

    You need to give it more than 30 minutes before bumping your own post. This is not an official support channel, so you need to be patient and wait for people to read, think and respond.

  • How to hide/show dashboards for user/groups

    Hi,
    Please help on how to hide/show dashboard menu/sub menu to users/groups based on their profile settings.
    thanks in advance.
    regards,
    kumar.

    Hi Jinu,
    1) Do some or all of those subreports span multiple pages?
    2) Do each of the Subreports start on a new page?
    If yes, for both, then here's what you need to do:
    1) Create a formula (@True) with this code:
    shared booleanvar SetStatus:= True
    2) Create another formula (@False) with this code:
    shared booleanvar SetStatus:= False
    Drag and drop the @True formula on the details sections for which you want the Page Footer to be suppressed.
    Similarly, drop the @False formula on the details sections for which you want the Page Footer to show up.
    Then, go to the Section Expert > Select Page Footer c > Click the formula button beside Suppress and use this code:
    shared booleanvar SetStatus;
    -Abhilash

  • Query for users without a primary device assigned (through automatic affinity or manually assigned)

    I'm looking for either a way to query or a view of a collection that will show me a list of users who do not have a primary device affinity established.  Vise versa might work as well- query for devices that don't have primary users assigned. 
    Any ideas?
    Thank you,
    DLovitt

    Using SCCM's PowerShell cmdlets, you can run something like this:
    $Devices = Get-CMDevice
    $FinalOutput = @()
    $Devices | % {
    $OutputObject = New-Object PSObject -Property @{
    Device = $_.Name
    LastUser = $_.UserName
    LastClientCheckTime = $_.LastClientCheckTime
    PrimaryUser = (Get-CMUserDeviceAffinity -DeviceName $_.Name).UniqueUserName
    $FinalOutput += $OutputObject
    $FinalOutput | export-csv $env:USERPROFILE\Desktop\ConfigMgrAffinityReport.csv -NoTypeInformation
    #End
    Which creates an output like the below.  
    Once you have these items joined, its easy to filter out those without a Primary User.
    e.g.
    $FinalOutput | ? {$_.PrimaryUser -ne $null}
    NOTE: This may be necessary: http://blogs.technet.com/b/askperf/archive/2008/09/16/memory-and-handle-quotas-in-the-wmi-provider-service.aspx
    Mike Crowley | MVP
    My Blog --
    Planet Technologies

  • WLS: more fine granularity for User, Groups, Roles

    Hi All,
    in order to organize different user, groups in WLS, I need to use/define more condition/attributes than standard WLS User and Groups.
    The Oracle WLS concept and OPSS is clear to me and I need some samples or practical cases.
    - Oracle Fusion Middleware 11.1.1.5, Security Guides http://docs.oracle.com/cd/E21764_01/security.htm
    - Oracle® Fusion Middleware Understanding Security for Oracle WebLogic Server 11g Release 1 (10.3.5) http://docs.oracle.com/cd/E21764_01/web.1111/e13710/toc.htm
    - Oracle® Fusion Middleware Securing Oracle WebLogic Server http://docs.oracle.com/cd/E21764_01/web.1111/e13707/toc.htm
    - Oracle Platform Security Services 11gR1 (White Paper)
    http://www.oracle.com/technetwork/middleware/id-mgmt/opss-tech-wp-131775.pdf
    Any idea?
    Regards,
    Moh

    Hello Suman,
    Try avoid denial based security rights assignment instead you can specify the  unspecifed. As Greg said
    Denied + Granted = Denied
    Denied + Not Specified = Denied
    Granted + Not Specified = Granted.
    You should not deny rights for HR End User usergroup, Instead make them as unspecified. If you do so the whenever the user part of both the groups , your security rights aggregation would be
    Granted + Not Specified = Granted.
    Make sure you follow the approach as above.  You can refer the blog below for how to structure the folder, report and User group hierarchy and effective maintenance of security
    BusinessObjects Administration - Content Management Plan
    Regards
    Mani

  • SNMP query for multicast group count

    I want to get the total number of multicast groups on a switch. Is there an oid that will give me the info (ie. the number that's given by "show ip igmp snooping groups count")? If there is no oid, is there a way query the  groups (show ip igmp snooping groups)? I'm thinking with the 2nd option I might be able to count the number of entries returned by an snmpwalk or something and turn that into a number.
    Right now i'm logging into the switch with a script and running the command but that might be a problem with all those logins (only every 5 minutes though) so I'd like to do this via SNMP if possible.
    Any ideas?
    Thanks

    Works just fine!!!
    Thanks!
    LA$$E
    Hi,
    Well, at the very least, you can create a formula
    column in your break group using a combination of the
    same where clause as your original query and the
    break values for the group so that you are getting
    the correct records. If you have it in the break
    group, then it will execute for each record in that
    group.
    Hope that helps,
    Toby

  • Query for 'User Activity' Webi Line Chart using BO4.0 Auditor

    Need to create a webi line chart to measure  ‘user activity’ per month, year or day using BO4.0 Auditor on Oracle.    
    This question raises two sub-questions:
    What actions constitute user activity?  Is it concurrent logins by users?   I am confused if that would really give a true picture of user activity as users can log in and do nothing on the BO system.  
    If concurrent logins do in fact give a true picture of user activity then how do I go about creating a chart? What objects do I need to include in query?
    Please provide feedback?
    Thank u.

    Hi Ramil,
    Follow below steps to create a webi report for your requirement, launch Webi rich client and create a new webi report by selecting "BOEXI40-Audit-Oracle" (Audit universe)
    1) Select below objects in 'Result Objects' pane
    [Event Year], [Event MonthName],[Event DayofMonth], [Event Type], [User Name], [Total Event Count]
    2) Define below conditions in "Query Filter" pane
    [Event Type Id] In list 1015 AND [Event Year] In list "Select Year" (Prompt)
    3) Run query
    4) At report level create a new variable of type measure with the name "User Activity" with below formula
    =Count([Total Event Count]In([User Name];[Event MonthName];[Event DayOfMonth]) )
    (This formula will track  logout event of a each user in a day as well as in a month, it will take/count only one log out event of the user in a day as you desire)
    5) Create a table block as well as graphs as you desire
    i) For day wise user activity create a table/graph using: [Event DayofMonth], [User Activity]
    ii) For month wise user activity create a table/graph using: [Event MonthName], [User Activity]
    Let me know if you have any questions
    ~Manoj

  • Audit query for user history in OIM 11g

    I would like to know if we can come up with a query to get the details of when and by whom a user has been modified over a certain time frame.
    Thank you in advance.
    Edited by: 937937 on Jan 30, 2013 1:00 PM

    You should be able to use the OOTB reports for the User Profile History. Here is the query that is used in the report:
    SELECT DISTINCT UPA_USR.USR_LOGIN AS USERID,
    upa_usr.usr_first_name as FirstName,
    upa_usr.USR_LAST_NAME as CurrentLastName,
    upa_usr.ACT_NAME as Organization,
    upa_usr.USR_MGR_FIRST_NAME as ManagerFirstName,
    upa_usr.USR_MGR_LAST_NAME as ManagerLastName,
    upa_usr.USR_MGR_LOGIN as ManagerUID,
    upa_usr.USR_STATUS as Status,
    upa_usr.USR_EMP_TYPE as EmployeeType,
    upa_usr.create_date as IdentityCreationDate,
    UPA_USR.UPA_USR_EFF_FROM_DATE AS EFFECTIVEFROMDATE,
    UPA_USR.UPA_USR_EFF_FROM_DATE AS EFFECTIVEFROMTIME,
    f1.field_name as UserProfileParameterName,
    f1.field_new_value as UserProfileParameterValue
    FROM UPA_USR LEFT OUTER JOIN UPA_GRP_MEMBERSHIP
    ON upa_usr.upa_usr_key = upa_grp_membership.upa_usr_key,
    upa_fields f1
    WHERE UPA_USR.UPA_USR_KEY = F1.UPA_USR_KEY
    And f1.field_name not like '%Key%'
    And (nvl(:p_varchar_FN, ' ') = ' ' or upper(upa_usr.usr_first_name) like upper(:p_varchar_FN))
    And (nvl(:p_varchar_LN, ' ') = ' ' or upper(upa_usr.usr_last_name) like upper(:p_varchar_LN))
    And (nvl(:p_varchar_UID, ' ') = ' ' or upper(upa_usr.usr_login) like upper(:p_varchar_UID))
    And (nvl(:p_varchar_Org, ' ') = ' ' or upper(upa_usr.act_name) like upper(:p_varchar_Org))
    And (nvl(:p_varchar_GrpN, ' ') = ' ' or upper(upa_grp_membership.ugp_name) like upper(:p_varchar_GrpN))
    And (nvl(:p_varchar_MgrID, ' ') = ' ' or upper(upa_usr.USR_MGR_LOGIN) like upper(:p_varchar_MgrID))
    And (nvl(:p_varchar_Status, ' ') = ' ' or upper(upa_usr.usr_status) like upper(:p_varchar_Status))
    AND (NVL(:P_VARCHAR_EMPTYPE, ' ') = ' ' OR UPPER(UPA_USR.USR_EMP_TYPE) LIKE UPPER(:P_VARCHAR_EMPTYPE))
    AND upa_usr.upa_usr_eff_from_date between :p_date_UDateFrm And :p_date_UDateTo
    AND NVL(upa_grp_membership.upa_grp_eff_from_date,:p_date_GDateTo) <= :p_date_GDateTo
    AND NVL(UPA_GRP_MEMBERSHIP.UPA_GRP_EFF_TO_DATE,:p_date_GDateFrm) >= :p_date_GDateFrm
    Order by upa_usr.usr_login, EffectiveFromDate, EffectiveFromTime
    -Kevin

  • SQL Query for user defined form

    Hi experts,
    I want query to update some fields in my user defined form using stored procedure on clicking of ADD button.
    Explanation:
    I have User Defined form call "DC request" with Object 'DCLM'..On click of Add button, it is saving my record info into the form. But in one field if value in not entered then it is saving as 'Null'.
    Addon is already made, can not change in coding.
    I want to update this field with '0' value through query in stored procedure on click of Add Button. Can anyone help me out to achieve this.
    Thanks

    Hi Team Bone.
    Please try below Transaction Notification which will Restrict User to ADD if Field_Name is NULL and then User Need to Enter ZERO i.e. 0 for Adding.
    IF @OBJECT_TYPE = 'DCLM' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U')
    BEGIN
    If Exists (Select T0.DocEntry from [Table_Name] T0 Where ( T0.Field_Name is null  OR  T0.Field_Name = ' ' ) AND T0.DocEntry  = @lisT_of_cols_val_Tab_del )
    begin
    SET @error = -100000
    SET @error_message = 'Filed_Name is NULL then So, Please enter ZERO Value i.e. 0 in Filed_Name'
    End
    End
    Please change Table_Name and Field_Name with with UDO field.
    Hope this help
    Regards::::
    Atul Chakraborty

  • Querying for users logged into attendant console with AXL (help)

    I am wondering if anyone knows of any AXL commands that can be used to query who is logged into attendant console? I know that there is a perfmon counter that will tell you how many users are logged in but there is no other detail beyond that. Any help would be greatly appreciated! Thank you in advance for the assistance.

    So after speaking with O365 Support and examining the Activesync Logs (hold down control, rt. click on the exchange tray app bottom right corner of the screen, click Test ActiveSync) we were able to see outlook trying our on-premise exchange servers first.
    Despite failing on them, and moving on to activesync.outlook.com, it still would not mount the O365 mailbox & shared mailboxes appropriately.  If we set DNS to manual on the workstation to publics, the problem would go away.
    Disabling SCP by running the following command on both our exchange servers fixed the issue:
    Set-ClientAccessServer -Identity “SERVERNAME” -AutoDiscoverServiceInternalUri $NULL
    Credit to AgileIT! Here's the complete reference:  http://www.agileit.com/news/outlook-profile-autodiscover-service-order-of-precedence-and-disabling-scp-for-hosted-exchangeoffice-365-migrations/
    4 Hours dealing with this issue.  

  • Payment Block Validation for User group

    Dear SAP Validation Expert,
    We like to allow only selected FI users to change Payment Block to ' ' (Free for Payment) in tcode: FB02, FB03 and FBL1N.
    Curently we have managed to block other un-selected users from changing the Payemnt block to Free for Payment.
    But our issues are Other fields also NOT able from changing/maintaining. For example in FB02, user NOT able to change Payment Block (BSEG-ZLSPR) from 'B' to  ' ' (Free for Payment) which is expected but user also NOT able to maintain other field such as Payment term(BSEG-ZTERM), Baseline date (BSEG-ZFBDT), Assignment (BSEG-ZUONR) and Text Field(BSEG-SGTXT).
    Below is our Validation, please advice how to improve it so that other fields can be changed too. Your swift reply is very much appreciated.
    Pre-requisite:
    ( ( SYST-TCODE = 'FB02' ) OR
    ( SYST-TCODE = 'FBL1N' ) OR
    ( SYST-TCODE = 'FB03' ) AND
    ( BSEG-ZLSPR = ' ' ) AND
    SYST-UNAME <> 'HIS20083'
    Check:
    BSEG-ZLSPR <> ' '
    Message: E: You have no authorization.

    Hi,
    In your Validation small change has to be done.
    Pre-requisite:
    SYST-TCODE = 'FB02' ) OR ( SYST-TCODE = 'FBL1N' ) OR ( SYST-TCODE = 'FB03' )
    Check:
    SYST-UNAME 'HIS20083' AND BSEG-ZLSPR = ' '
    Message: E: You have no authorization.
    Try in the above procedure.
    Thanks
    Goutam

  • Bypass password login for user group on windows 7 machines via windows server 2003?

    My management dislikes always having to log-in to a computer via passwords. To them, it's considered an inconvenient and one more thing to remember along side business. Therefore, they've asked if I can set the systems up to have which ever users
    selected to log-in without a password on their accounts. I'm not an expert in the windows 2003 server admin role, so I would like some help with this. 
        Note - Is there a way I can access the server through a user computer logged in as admin without going to the physical server itself. It's a bit of an inconvenience since it's in the storage area. (second level) 
    Our system is also on a domain, and there are over 10 machines running windows 7. 
    Thank you!!

    For security reason you can use security cards. This is suitable in Active Directory environment.
    If managers insist on autologon, then read (for example)
    http://pcsupport.about.com/od/windows7/ht/auto-logon-windows-7.htm
    Regards
    Milos
    PS: Lowering security by autologon is a very bad habit. I would try to avoid this, unless using security cards.

Maybe you are looking for

  • Do you know any event like on_text_changed?

    As you know it is a good event, especially useful while populating another textbox, for example when the carNo is entered, the driver's name, surname, city e.t.c textboexes should be populated with data. Do you know how I can do that? Note: I am usin

  • Can't import cd's from computer

    I downloaded the new itunes and now I can't import my cd's from my computer.  It takes me straight to the library, and import does not pop up anywhere.  The cloud icon is on, and I don't know if this has anything to do with it, but I can't get out of

  • Status Errors In RBDMANI2

    I am currently experiencing a problem in using program RBDMANI2 to reprocess some failed IDOCs whereby the status message is being appended to the wrong IDOC.  For example, IDOC no 1234 fails, as does IDOC 1235.  Periodically, RBDMANI2 is run in batc

  • Java Web Start does not start

    Hi, This is a quite simple question I suppose, but I can't figure out the solution. When starting my application using Java Web Start 1.0.1_02 the JWS application handler does not show up. JWS does only show a splash picture, then it disappear after

  • Installing XML::Simple - CPAN

    I need some help, I've been trying to install the CPAN module XML::Simple on OS X Lion 10.7.3 so far with no good results. I installed this on my linux mint machine in no time but for some reason the simple task had turned onto a project on the Mac.