Particular user's access to a particular version of webforms locked

Hi,
I'm on Hyperion Planning 11.1.2.1. One of the users of planning reported that he cannot enter data to the particular 'version' (dimension) of the webforms. I have three versions in my application
Versions are :
Draft 1
Final
Working Draft
I have opened the webforms for the year 2013 and locked all other years from the scenario dimension. Only the Draft 1 version is locked for the user. User is able to enter data to Final and Working Draft. The user needs to enter data to Draft 1.
None of the forms are locked when i login as admin. This user doesn't have access to all the webforms. However, to whatever forms the user has access, all the forms are locked for him in the Draft 1 version dimension.
Can anyone please help me resolve the issue.
Thanks.

Are you using approvals? Is it possible that your user (or someone else) promoted his Planning Unit, thus removing his ability to edit the data?
Can your user edit the data using an ad-hoc Planning connection (not form) in Smart View?
- Jake

Similar Messages

  • Query to find the list of users having access to a particular scenario

    Hi,
    I am learning Hyperion Planning 9.2 x version. I wanted to know the query to find the list of users having access to Plan Iteration - 1 scenarion.
    As I am new to Hyperion Essbase and Hyperion Planning, I am assuming these ideas work out to get the desired result.
    1) As Hyperion Planning uses Relational DB to store the User Security information, we can query the list of users who is having access to Plan Iteration - 1 Scenario.
    I am not sure if this solution works. Please correct me If I am wrong.
    2) We can also query from the essbase editor to find out who all having access to this scenario.
    If the above is correct, can you please provide me the query.
    I am really need of this and I will be happy if any one provide the solution.
    Thanks & Regards,
    Upendra. Bestha

    Hi,
    If you are looking for some SQL to retrieve the access rights by member then you can use something like (SQL Server code though can easily be modified for Oracle)
    SELECT usr.object_name as Username,mem.object_name as Member,
    'Access Rights' = CASE acc.access_mode
    WHEN -1 THEN 'None'
    WHEN 1 THEN 'Read'
    WHEN 2 THEN 'Write'
    WHEN 3 THEN 'Write'
    ELSE 'Unknown' END,
    'Relation' = CASE acc.flags
    WHEN 0 THEN 'Member'
    WHEN 5 THEN 'Children'
    WHEN 6 THEN 'Children (inclusive)'
    WHEN 8 THEN 'Descendants'
    WHEN 9 THEN 'Descendants (inclusive)'
    ELSE 'Unknown' END
    FROM
    hsp_access_control acc, hsp_object mem, hsp_object usr
    WHERE acc.object_id = mem.object_id
    AND acc.user_id = usr.object_id
    AND mem.object_name = 'Plan Iteration - 1'
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to start a particular version of Photoshop when multiple versions are installed

    I have written a small software that automates a few functions in PS CS2.
    Till now it was working just fine with PS CS2. Now due to some unknow reasons the client has installed CS 4 and CS 5.
    Now my clinet want that the software should be able to detect all installed version of PS and allow him as user to choose as to with which version of PS my software should automate.
    Is this possible?
    If yes and how to achieve it?
    Oh! I have also abserved an unusual behaviour. I don't know whether it is because of my software or because of PS.
    By default when my software executs this automation script (generated using Script listner)
    Rem =======================================================
      Dim objApp
      Set objApp = CreateObject("Photoshop.Application")
      Rem Use dialog mode 3 for show no dialogs
      Dim dialogMode
      dialogMode = 3
      Dim id11
      id11 = objApp.CharIDToTypeID("setd")
          Dim desc3
          Set desc3 = CreateObject("Photoshop.ActionDescriptor")
          Dim id12
          id12 = objApp.CharIDToTypeID("null")
              Dim ref2
              Set ref2 = CreateObject("Photoshop.ActionReference")
              Dim id13
              id13 = objApp.CharIDToTypeID("Prpr")
              Dim id14
              id14 = objApp.CharIDToTypeID("GnrP")
              Call ref2.PutProperty(id13, id14)
              Dim id15
              id15 = objApp.CharIDToTypeID("capp")
              Dim id16
              id16 = objApp.CharIDToTypeID("Ordn")
              Dim id17
              id17 = objApp.CharIDToTypeID("Trgt")
              Call ref2.PutEnumerated(id15, id16, id17)
          Call desc3.PutReference(id12, ref2)
          Dim id18
          id18 = objApp.CharIDToTypeID("T   ")
              Dim desc4
              Set desc4 = CreateObject("Photoshop.ActionDescriptor")
              Dim id19
              id19 = objApp.CharIDToTypeID("HsSt")
              Call desc4.PutInteger(id19, 1)
          Dim id20
          id20 = objApp.CharIDToTypeID("GnrP")
          Call desc3.PutObject(id18, id20, desc4)
      Call objApp.ExecuteAction(id11, desc3, dialogMode)
      Call SetUndoTo1CS3
    It will automatically start that version of PS which was last running before the system was shut down.
    Let me try an explain this in a different way:
    To get my software to talk to a particular version of PS I have to perform the following steps:
    Start that version of PS in I am interested
    Open a file and save is under a different name
    Close PS
    Restart my PC
    After performing all these steps when my software automates PS that version of PS will start which was last run.
    Any idea as to what is going on?
    Please help me solve this problem.

    The answer is somewhat easy until you start talking about launching 32 or 64! When you call CreateObject you specify which version you want. Most of the time you want the current version so you say "Photoshop.Application". But you can say "Photoshop.Application.11" for CS4 or .12 for CS5. You could look in the registry to see which keys are present and pose a question to your user.
    --------------- 32 and 64 bit fun ---------------------
    If you are on a 64 bit OS you have two versions of Photoshop installed beginning with CS4. If your application is a 64 bit application and you are the correct user you can see into both the 64 bit registry and the 32 bit registry. If you are a 32 bit application you only see the 32 bit side of the registry.
    What I do is run my VBScripts via the cscript application and I launch cscript in either 32 or 64 bit mode.
    Here is my test:
    Launch 32 bit version of photoshop via cscript in 32 bit mode and specify the version:
    E:\h:\windows\SysWOW64\cscript \files\VBScripts\TestLaunch10.vbs 11
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    Trying to launch Photoshop.Application.11
    DOM library
    11.0.2
    H:\Program Files (x86)\Adobe\Adobe Photoshop CS4\
    Done
    Launch 64 bit version:
    E:\cscript \files\VBScripts\TestLaunch10.vbs 11
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    Trying to launch Photoshop.Application.11
    DOM library
    11.0.2
    H:\Program Files\Adobe\Adobe Photoshop CS4 (64 Bit)\
    Done 
    You can see from the path that the correct version is launched.
    Here is a snippet of the code...
    appName = "Photoshop.Application." & vStringSet app = CreateObject(appName)

  • MCKH - Disable delete option for particular version

    Dear SD Gurus,
    Our client uses MCKH to view sales information.
    In this, SD user has created a version F601V under the standard version S601, to view "Part Sales" information.
    Now he wants to disable the delete option for this particular version F601V.
    The idea is that any other user should not delete this version by mistake.
    There is a particular variant attached to this version & we tried to achieve this by checking the protect variant option.
    However, system still allows deletion.
    How this can be achieved?
    Regards
    Prabhu

    thanks for your answer Mr. Atkinson, that was excatly what I need. This is my code inside the event receiver:
    public override void ListAdded(SPListEventProperties properties)
    SPList list = properties.List;
    list.AllowDeletion = false;
    list.Update();
    but the above code dont have any effect on the list, I have still the Item with DELETE THIS LIST in the listsettings.
    do you know maybe why? or can I also debugg it?
    thanks in advance
    BR
    Ahmad
    SP 2013 & SPD 2013 & VS 2013 & MSSQL 2012

  • When creating a PDF from a PPT or Keynote application on a Mac using Acrobat X Pro, how do I ensure it can be opened on a PC? Do I need to save as a particular version of Acrobat?

    When creating a PDF from a PPT or Keynote application on a Mac using Acrobat X Pro, how do I ensure it can be opened on a PC? Do I need to save as a particular version of Acrobat?

    The system was not my own, it was on a PC belonging to the school where I teach. The error message referred to Acrobat 9.0, so I assume that the problem is to do with the version on which the file was created being more recent than that on which I attempeted to open it.

  • How to allow use of special characters in a particular version/Hierarchy

    How do I allow use of special character in nodename description in a particular hierarchy.
    If I enable InvNameSystem Preference it allows me for all hierarchies and versions,but I want to restrict it for particular version and hierarchy.

    I think I've already replied for this on the other post.
    Check the link that I've posted in it.
    Thanks
    Denzz

  • Where is the information about "Patch Level" of a particular version

    Hi all,
    Where I can see what is the latest "Patch level" of a particular version of tuxedo. For example, what is the latest patch level of tuxedo 9.1, where I can find it out?. This information is public ? We need a oracle contacts?
    thanks in advanced

    MBriz,
    The number at the start of last line in $TUXDIR/udataobj/patchlev is the Tuxedo patch level. (If there is no $TUXDIR/udataobj/patchlev file, then you are running the General Availability version of Tuxedo.)
    This information is also available by executing "tmadmin -v".
    A third way to get the information is to look at the first line printed by the BBL in the userlog on a particular day, which will be something like "09-30-2010: Tuxedo Version 10.3.0.0, 32-bit, Patch Level 041". (Other processes' first ULOG message of the day will indicate the Tuxedo Version, but will not include the patch level.)
    Regards,
    Ed

  • OutputService:generatePDFOutput: Is it possible to load a particular version of a form from LS repos

    Hi
    Input for this service require "Transformation Format", "Form", and "Content Root".
    My question: Is it is possible to use a particular version of a form other than the latest version ?
    Thanks
    Ben

    Jasmin,
    Thanks for your reply.
    The data file provides the form name and version number of the form.
    I need to use that specific version of the form to merge the data to create a pdf.
    Is there an indirect way to do this?
    Thanks again.

  • Cisco DCNM 5.1(3u) - any particular version of Windows 2008?

    The documentation does not specify any particular version beyond Windows 2008.  32bit vs 64bit, R1 or no R1? 
    Server System Requirements
    Cisco DCNM Release 5.1(x) supports running the Cisco DCNM server on these operating systems:
    •Microsoft Windows 2008 is supported in Cisco DCNM Release 5.1(3u)
    http://www.cisco.com/en/US/docs/switches/datacenter/sw/5_x/dcnm/release/notes/dcnm_5_1_relnotes.html#wp61633
    I have to get the thing buit for me by another team and I don't want to have to go back to them to get it "fixed" etc.

    Hi,
    DCNM is supported in all versions of Windows 2008 (both 32 and 64 bit) and also R1.
    The latest version DCNM 5.2(1) is available for download now. It supports Catalyst 6500 switches and many more new features.

  • Approval History (Workflow History) for a particular version of the PO

    Hello Everyone,
    We are using SRM 5.0 with ECS.
    We need the Approval History (Workflow History) for a particular version of the Purchase Order.
    Is there a way to get that?
    Any FM or table which can give the Approval History for a PO?
    Regards,
    Khushbu.

    LOGIKNR is assigned to only currently installed devices (see entries in EGERH, you will understand). So if you are looking at a record in EGERH and if the field BIS is in future, that is the record that will have the LOGIKNR. All the older records will not have that link. A device is always an equipment and LOGIKNR is always assigned to only installed devices. All other devices do not get that number. Only when you install a device, you will have information like device install date, device location etc. So it is relevant in the other case where device location was also needed.

  • Help needed restricting users admin access to devices using ACS 4.2

    I have users that access the network via a VPN client to a PIX 515 which authenticates to the ACS (using the default group for unknown users) which uses an external Active Directory Database.
    The problem I have is that as the ACS authenticates these users, it now allows them admin access to the PIX. How do I restrict access? I have looked at NARs using the 'All AAA clients, *, *' approach but that just stops their VPN access. ( I have a separate group called 'PIX ACCESS' which will contained only defined users for admin access).
    Incidentally I have other devices on the network which are AAA clients, in particular Nortel switches. I can set the group settings for that RADIUS set up to 'Authenticate Only' (RADIUS Nortel option) and that works fine, I was expecting the ACS to have a similar setting for TACACS+.
    So how do I allow the unknown users to authenticate to their AD database but restrict them admin access to the AAA clients?

    Very common problem. I've solved it twice over the last 6 years with ACS. I'm sketchy on the details. But here goes. First option to explore is using RADIUS for VPN access, then TACACS on all the Cisco switches and PIX firewall. That would make it alot easier. I think that with TACACS, you can build a NAR based on TCP port number instead of IP address....
    http://www.cisco.com/en/US/products/sw/secursw/ps2086/products_tech_note09186a0080858d3c.shtml
    So you'd have a group with 3-4 Administrators that can access PIX CLI, and another group of VPN users that can't access the PIX but can VPN in. So on the VPN group, put a NAR that restricts access to SSH/Telnet TCP ports?
    This comes up everytime I install an ACS server, (every 2-3 years), and it's always a trick.
    Please let me know if this works for you. And if it doesn't, let us know how you fixed it. I think I can get back into the ACS I last did this with and take a look, but I'd have to call up and make a special trip.

  • How to grant database user to access directory under web server

    Hi
    I'm running forms6i application on Oracle9iAS.
    This application access to several directories using WEB.SHOW_DOCUMENT procedure.
    I add this directories to UserDir directive in httpd.conf and I also made an Alias (virtual path).
    The problem is that all users can access to that directory.
    Can I eliminate access to the directories just for particulare users?
    Thank's,
    Tomaz

    Pl refer to the httpd.conf file
    and for the directory tag assign deny all,grant all will
    solve ur prob...
    if possible pl let me know..
    how u have configured ur forms appln on oracle 9iAS using apache
    server....
    i have tried but it gives me error about the forms engine..
    how do i make apache server know about the forms60/f60all.cab
    and other required configuration files
    pl let me know at the earliest
    thanks

  • How to create individual user to access the proxy service in osb

    Hi all,
    i have created a osb project. i need only one user to access the project with particular user name and password. The project should result in error if any other credentials is being given.
    The challenging part is that it should return a error message even when the user name and password is left blank. can anybody help me to resolve this issue?

    I'm guessing you're getting a 401 error back in soapUI. If so, this is because soapUI needs to send some credentials which match that user exactly.
    How would that user invoke the service normally - with an embedded WSS user / password in the request, or with an x509 cert + Identity Assertion? SoapUI will have to do the same as the client application does.
    In our environment, we use client certificates as authentication. Soapui is very good at presenting a client certificate if you have a .jks keystore with an identity cert. Since the role will only accept a single particular user, you would either have to expand the role to allow some admin access or have a certificate which presents the same CN value ( to map with identity assertion).
    If the client app uses username / password, the 'request properties' window ( lower left in soapui ) has properties for Username and Password which can be configured. This may allow soapUI to submit that user, but I haven't tested that.
    There's also the "Aut" tab in the request window which also allows the same.

  • BPM user role access

    Hi Experts,
    Who all can access the BPM process? Is it possible to set the userrole access to the BPM process?
    Scenario :
    Through webservice, I have to call BPM process..But the BPM process should be accessed by particular user.
    For example, Manager related BPM process should not be accessable to the Developers.
    How to set/give the BPM user role access?
    Regards
    Sara

    It is not possible, if sender application has an athorization to send the message to XI the process will be instantiated using Receive step.
    Thanks
    Farooq.

  • How to avoid multiple users to access same tcode

    Hi all,
    Am creating one z tcode to display the material details for the particular reservation number. How can  I avoid multiple users to access the same tcode simultaneously. If anybody works over that tcode then no other user should be able to access the same tcode until or unless the first user works over it.
    Regards,
    Ramya

    HI,
    you can even use import and export logic and check if user has entered the transaction ..
    Regards,
    Santosh
    Message was edited by:
            Santosh Kumar Patha

Maybe you are looking for