Problem:Member is Read only Mode after login with other user

Dear,
I am facing problem to enter the data in member. i.e Read only. but same member is fine with login with admin user.
I also assign the security with write permission to user. but the only that member "X" is in read only mode..
Is task list can effect on that??? as i am also using task list. Becoz when i add another member that is not member of that hirechiary its fine.
I am working on hyperion version 11.1.2.1..
Regards,
AMSI

Thanks, Problem has been solved myself becoz when i add new member in the form as this form is already part of Planning Unit Hierarchy , that's why the newly added member in the form can't be write only till up to when u add this member into Planning Unit Hierarchy.
Regards,
AMSI

Similar Messages

  • Opening a container in read-only mode (DB_RDONLY, setReadOnly())

    I have one process access a container in normal mode and another accessing it in read-only mode (XmlManager::openContainer with DB_RDONLY or XmlContainerConfig. setReadOnly(true) ), both with transactions. Is this:
    (1) wrong (potentially dangerous);
    (2) pointless (no benefits for the read-only process);
    (3) reasonable (potential benefits for the read-only process)?
    Whatever the answer, why is it so?
    Michael Ludwig

    hi,
    Read only means you cannot mofiy the file. This also includes that you cannot delete a readonly-file yes,
    what i am doing is i have three button in my layout 'save','view' and 'delete'.
    1.so when user press 'save' button after selecting the file then the file gets saved into the specified.
    2. when user press 'view' button the file has to open in read only mode.
    for this i have written above mentioned code(but still i am able to edit the file)
    3.when user press 'delete' button the file has to be deleted from the specified location.
    so my problem is after setting file to read only mode, i am able to edit but i am not able to delete it.
    What i am using to set the file to read only mode is right?
    Please help.
    Thanks..

  • Attach Operation is disabled in READ ONLY MODE - solman_setup error message

    Hello Gurus,
    I am in the phase - Connect Diagnostic Agent of the Solman_Setup for Solman 7.0 EHP1.
    I don't have any managed system connected yet.
    When I try to attach the SMD agent in the SLDAgentCandidates screen...I get two messages as detailed below:
    2011.04.13 20:14:12, Managing System 'SL1.SystemHome.sol' is  registered in the SLD, Customization of Managing system settings is disabled but it is not a problem to attach the agent.
    2011.04.13 20:14:12, Attach operation is disabled in READ ONLY MODE. The current logon user is not a member of Administrator
    Please what am I doing wrong because I even gave full authorization (SAP_ALL and SAP_NEW) to user SLDAPIUSER and i have also tried with a few user accounts wilth full authorization like J2EE_ADMIN and my SOLMAN administrator.

    Hello John,
    You get the ead-only message because your connected to the local SLD. You need to connect to the productive SLD.
    But the other message (Customization of Managing system settings is disabled) I get also. Did you solve it already?

  • Dedicated client opening in read only mode

    Hi
    This is my dedicated client and yes this is the fresh installation .I have only applied 8.1..1.9 patches on my dedicated client for open ui.
    I did not apply any QF for this .I have already checked the logs but it is still showing in read only mode after doing upgradation and all changes.
    Thanks

    Hi,
    a new upgrade local database version is available to local database. You need start a Siebel Remote session to retrieve the upgrade kit, or you need rextract a new database with the new upgrade.
    Regards.

  • OBIEE11g: Set user privileges to  Open RPD in Read Only mode.

    Hi All,
    Can some one help me , how to set user privileges to open RPD in read only mode.
    1) If a user ( xxxx) logs into the RPD then the rpd should open in Read Only Mode for xxxx user.
    2) If other user (YYYY) logs in online mode then it should open in online mode for other user (YYYY).
    How to set the security to achieve this.

    863866 wrote:
    Hi All,
    Can some one help me , how to set user privileges to open RPD in read only mode.
    1) If a user ( xxxx) logs into the RPD then the rpd should open in Read Only Mode for xxxx user.
    2) If other user (YYYY) logs in online mode then it should open in online mode for other user (YYYY).
    How to set the security to achieve this.Hi,
    I don't think it's possible, can go with metadata dictionary option which is also help to analysis RPD.
    refer section,
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10540/utilitiesexprbldr.htm#BIEMG325
    Thanks
    Deva

  • Facing error while trying login with new user

    Hi All,
    i have created a new user with name abcd and provisioned user with planner access.
    when am trying to login in am facing error as "Application is in maintance mode new user cant login".
    pls let me know how to get application out of maintance mode and login with new user.
    Thanks in advance
    cheers,
    SM.

    SM,
    The error occurs when the database is in read-only mode. The database is changed to read-only when the application/database needs maintenance.
    Use the following MaxL Commands to change the database to read-write mode.
    login UserName Password on EssbaseSvrName;     
    alter application AppName load database DbName;
    alter database end archive;     
    alter application AppName enable commands;
    Hope it helps....
    KosuruS

  • TG4MSQL ora-28500 error on RECOVER login in READ-ONLY mode

    We're connecting from a 10.2 dbase to SqlServer2000 via TG4MSQL. No upfront problem connecting but the Oracle .trc file shows below error:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message: [Transparent gateway for MSSQL][Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'RECOVER'. (SQL State: 00000; SQL Code: 18456)
    Below is the content of .ora file:
    HS_FDS_CONNECT_INFO=INETSQL3.ComPro
    HS_FDS_TRACE_LEVEL=OFF
    HS_FDS_TRANSACTION_MODEL=READ_ONLY
    We are using READ-ONLY mode so the RECOVER login was not defined on SqlServer.
    Anyone know why TG4MSQL is trying to open a connection as RECOVER? And is there a way to stop it?

    Pending transactions turned out to be the culprit. Below is info from our TAR that
    provides some detail on what RECOVER is doing.
    Oracle handles all transactions as if they were distributed transactions. He takes a very conservative approach on the assumption that you may want to update
    or insert later. This has been like this since Oracle version 6 and will never
    change. Hence all transactions get handled as a distributed transactions even though there are no simultaneous updates. A common remote transaction would involve reading from SQL Server and then taking that data an inserting into an Oracle database. In the event a transaction gets aborted for some reason RECO must rollback the transaction. SQL Server requires a valid username/password and hence uses the recovery username/password specified in the gateway init file. The default parameters for both are RECOVER , if they are omitted in the init.ora file for the gateway. Obviously these do not exist on SQL Server. Note that this recovery process is detected and processed by the Oracle kernel. READONLY mode only prevents inserts, updates or deletes to be issued to SQL Server and nothing else. The gateway has nothing to do with handling and monitoring transactions to SQLServer. In all likelyhood you have several in doubt transactions in the dba_2pc_pending view. As long as those entries remain RECO will continue to try and rollback these in doubt transactions and fail each time due to an invalid username/password. This will go on until you either manually remove them or give RECO a valid SQL Server username/password to use.
    OPTION 1
    ==========
    Code the follwing in your gateway init.ora file
    HS_FDS_RECOVERY_ACCOUNT=use the username specified in your db_link
    HS_FDS_RECOVERY_PWD=use the password specified in your db_link
    OPTION 2
    ==========
    Define a username with password RECOVER on the SQL Server database you are connecting to
    OPTION 3 (Manually removing in doubt transactions)
    ================
    Use dbms_transaction.purge_lost_db_entry(local_tran_id)
    STATUS should be in collecting
    Please see Metalink
    Note.126069.1 Ext/Pub Manually Resolving In-Doubt Transactions Different Scenarios
    for detailed information

  • Team Calendar in Read-Only Mode in Leave Request Approver Screen

    Hi,
      After lots of interaction and inputs in my previous thread,
      Customization Done for 2 level approval of leave in ESS but Facing Problems
           Our Team had decided to make the Team Calendar in Leave Request Approval Screen in Read-Only Mode (more precisely modus=TeamView)
           My question is, is it possible to achieve the same, because instead of adding custom validations using Custom RFC, If it is possible to make the Team Calendar as Read-Only than it will help us to achieve our goals. Please do let us know that is it possible? and, if Yes, How to achieve it?
          On leave request approval screen, we want Approver to take any action via "Show Worklist" and No User Action allowed on Team Calendar (Disabled but not InVisible).
      Thanks,
    Regards,
    Tushar Shinde.

    This is the note 1484853 but as i said you cant see it unless you raise a Message for SAP , We have to add yout company to the note.
    these are the steps
    Symptom
    In LeaveRequestApprover application, a higher level manager can
    approve/reject a leave though he/she is not the owner of the approval
    workitem (TS12300097). It happens when a higher level manager clicks on
    the leave in the TeamCalendar launched from the LeaveRequestApprover
    application.
    Other terms
    LeaveRequestApprover, TS12300097, prepare_select, WorkList,
    LPT_ARQ_REQUEST_UIAF07
    Reason and Prerequisites
    Reason:- This is caused because the approve/reject button were not
    restricted based on the logged in user.
    Prerequisites:- IT105 entries for the backend PERNRs should be correctly
    maintained.
    You can check here
    Object REPS LPT_ARQ_REQUEST_UIAF07
    Object Header FUGR PT_ARQ_REQUEST_UIA
    FORM PREPARE_SELECT
    the note is meant for few customers only

  • Using edit box in Read only mode

    I am using JDeveloper 10.1.3.1.0 with OAF.
    In one page I have created one region with a few edit boxes. In this region I want to display the information using the edit boxes in a "Read Only" mode so that it matches with the same background colour.
    If the content of the edit box is small, i.e.: a few characters long, but if the content is large about 150 characters, then if I make the edit box read only, then it does not come to a new line. For this I have to make the edit box in "Disabled" mode. In "Disabled" mode only, the long message is shown in multilines. But my problem is that, when I make is "Disabled, it does not become uniform with other edit boxes with the same background colour. Can you please suggest, how can I address this problem.
    Regards

    HawkerHunter,
    I am using JDeveloper 10.1.3.1.0 with OAF.I stopped reading after that sentence. You should use the [url http://forums.oracle.com/forums/forum.jspa?forumID=210]OA Framework Forum
    John

  • Sharing a view in read only mode

    Hi,
    I am new in this domain. I have made an application in which I made two local development projects. Through that I am using views of one into another with the help of "Used WebDynpro Components" concept. After deploying, I have got these two views.
    But the problem is that I want that view in read only mode which I have taken from other local development project and this view was not in read only mode in its local development projects.
    Please provide me the solution in detail so that I can understand easily.

    Hi Manish,
                   Say View1 is the view in main Component,View2 is the view in used Component.  Exactly follow these steps.
    Create a context attribute <b>enable </b>of type String in used Component's controller,used Component's Interface controller, View1 and View2.
    Using context mapping map these attributes  View2 ->  used Component's controller->  used Component's Interface controller -> View1 ( if you don't know how to map double click the  the Main component: Data navigation modeler is opened; In  the diagram, right side select small arrow  first select  View1 drag to used Component's Interface controller,in the wizard select right hand side <b>enable </b>attribute drag to left side)
    you can map similarly View2 ->  used Component's controller->  used Component's Interface controller.
    In View2 create another variable <b>edit </b>of boolean type.
    Open Layout tab of View2, bind this attribute to enable property of all the UI elements which you want to disable.
    In  implementation tab of View1 in method wdDoInit() write this code
    wdContext.currentContextElement.setEnable("display");
    In  implementation tab of View2 in method wdDoInit() write this code
    if(wdContext.currentContextElement.getEnable().equalIgnoreCase("display"))
    wdContext.currentContextElement.setEdit(false);
    else
    wdContext.currentContextElement.setEdit(true);
    Hope this helps for you.
    Best regards,
    Siva
    Message was edited by:
            Armin Reichert

  • Putting apps database in Read-Only mode

    Hi,
    I want to put the apps database in read-only mode to that user will be able to login into the applications and see data but will not be able to update it.
    What is the best way to do this?
    Thanks

    I am still looking at how to do this because if users
    update the UAT/test database, when the prod upgrade
    is completed, they will think that their updates will
    be available and this will cause some issues.This is a training/expectation-setting issue, not a technical one. You need to make sure that your users understand the difference between a test system and production, and that changes made in testing will not be present in production. They also need to understand that this situation is actually to their benefit: it enables them to really work with the test system to uncover potential problems and learn new features, without fear of making changes that could negatively impact their day-to-day work in production.
    Please note that I'm not trying to be a jerk here. I very respectfully submit that attempting to make an instance read-only for training purposes, even if possible, will involve a great deal of technical work for very little (and perhaps even negative) overall benefit to the users.
    Regards,
    John P.

  • Opening the file in read only mode

    hi all,
    i am using
    i want to open any type of files in read only mode using host command.so first i am setting the attribute to read only and then opening the file. But still the opened file is editable. i have written like below
    Host( 'cmd /c  attrib +r "\test_folder\testing\PURCHASE_ORDER\'||:PO_FILE_NAME||'"',NO_SCREEN);
    Host( 'cmd /c "\test_folder\testing\PURCHASE_ORDER\'||:PO_FILE_NAME||'"',NO_SCREEN);is this is the way to open the file in readonly mode?
    Along with the above the files which i opened with the help of above said code those files i am not able to delete also.(i have to delete the selected file)
    i thing when i am setting the attribute something is going for a mess!
    Please help.
    Thanks..
    Edited by: GD on Jun 23, 2011 2:25 AM

    hi,
    Read only means you cannot mofiy the file. This also includes that you cannot delete a readonly-file yes,
    what i am doing is i have three button in my layout 'save','view' and 'delete'.
    1.so when user press 'save' button after selecting the file then the file gets saved into the specified.
    2. when user press 'view' button the file has to open in read only mode.
    for this i have written above mentioned code(but still i am able to edit the file)
    3.when user press 'delete' button the file has to be deleted from the specified location.
    so my problem is after setting file to read only mode, i am able to edit but i am not able to delete it.
    What i am using to set the file to read only mode is right?
    Please help.
    Thanks..

  • View sharing in read only mode

    Hi,
    I have made an application in which I made two local development projects. Through that I am using views of one into another with the help of "Used WebDynpro Components" concept. After deploying, I have got these two views.
    But the problem is that I want that view in read only mode which I have taken from other local development project.
    Please provide me the code for the same.

    Hi,
    Create a context attribute of type boolean in your used component
    bind this to the controls
    set this attribute to true by default
    expose this context attribute through interface controller and set the value to false
    from used component.
    Regards
    Ayyapparaj

  • "Device Manager is running in read-only mode because you are running it on a remote computer" when local

    Hello - since configuring a Windows Web Server 2008 R2 x64 to be hardened for an internet-facing deployment I receive this:
    "Device Manager is running in read-only mode because you are running it on a remote computer."
    when entering Device Manager.
    I have tried reversing the changes I have made, such as:
    - Re-adding Client for Microsoft Networks
    - Re-enabling NetBIOS over TCP-IP
    - Re-adding File and Printer Sharing
    - Disabling the Windows Firewall in all profiles (public, domain, private)
    I get no joy. It looks like a Microsoft ballsup. I'll try and use Process Monitor to have a look. Google returns only 1 page for this error.
    Luke

    Got it.
    After my changes to DHCP and static IPs the machine picked up the IP address of another server on my little home LAN. The hostname in IPCONFIG was different to the actual server computer name and so this led Device Manager to think the connection and the
    local machine were different.
    What an odd and infuriating problem. My thoughts on this are that Microsoft should be more verbose with error messages and their causes. For example, displaying the values of the assertion would help diagnose a problem; "The host-name www02.farm.brand.com
    that you are connecting from does not match the local host-name rest01.dev.farm.brand.com. Connections from remote computers can only use Device Manager in read-only mode; some options will be disabled."
    When troubleshooting, the main thing on an engineer's mind is "what has led Windows to its [unexpected] conclusion?"
    Luke

  • ORA-01578 about standby database in read only mode

    Hi,
    I have an ORA-05178 (data block corrupted) about a standby database which in read-only mode. About production database, there is no problem.
    After analyze, this is an index segment :
    SELECT segment_name , segment_type , owner , tablespace_name
    FROM sys.dba_extents
    WHERE file_id = 58
    AND 218173 BETWEEN block_id and block_id + blocks -1
    SEGMENT_NAME SEGMENT_TYPE OWNER TABLESPACE_NAME
    SICINHIS01 INDEX MOWIN IDX_DATA01
    There is no constraint.
    How can I repair this problem ?
    Nicolas

    Hi,
    I have an ORA-05178 (data block corrupted) about a standby database which in read-only mode. About production database, there is no problem.
    After analyze, this is an index segment :
    SELECT segment_name , segment_type , owner , tablespace_name
    FROM sys.dba_extents
    WHERE file_id = 58
    AND 218173 BETWEEN block_id and block_id + blocks -1
    SEGMENT_NAME SEGMENT_TYPE OWNER TABLESPACE_NAME
    SICINHIS01 INDEX MOWIN IDX_DATA01
    There is no constraint.
    How can I repair this problem ?
    Nicolas

Maybe you are looking for