Issues while assigning TMS e.t.c in Nakisa Succession Planning VSN3.0SP2

Hi,
In Nakisa Succession Planning VSN3.0SP2
First I clicked on My Org Units and selected the required My Org Units and when I tried to assign TMS (by entering position and depth and then clicked on the Icon ADD)in the right pane,after some time (after processing) the screen refreshes and goes back to Position Details screen in right pane but the left pane remains same (My Org Units). But when I click on the same selected My OrgUnits (in My Org Units) again in the left pane, the right pane goes back to Org Unit details where it shows the TMS which i assigned.
Like this it happens for all. Say when I go to My employees and work on it like Set as Successor same issue happens the right pane shows position details as before.But when I click on the left pane it shows the Successor set.
So whenever an action happens (like Assigning TMS, Set Successor, Assign to Job Family, Add Development Plan e.t.c) and after clicking on the ADD ICON, the right pane goes back to position details.So Everytime I have to refresh the screen by clicking the left pane whenever after finishing each action.
Is it due to time for processing each action (hardly it takes 30 sec to process like Assigning a TMS e.t.c).?
Regards,
Xavier.

Hi Xavier,
This sounds like an application bug, since it shouldn't do this. I know of a similar issue in OrgModeler SP2. Does this only occur in the Flex mode?
My recommendation would be to open an OSS message.
Best regards,
Luke

Similar Messages

  • Issue while assigning the user quota to tablespace

    Hi,
    I am trying to assign 11000m quota to user CIMGRPT on DATA tablespace
    once I entered the alter command is showing user alterd but while checking the quota its showing 0bytes.
    please echeck the below query and sugeest accordingly.
    SQL> select username from dba_users where default_tablespace='DATA';
    USERNAME
    CIMGRPT
    HPCMSASRPT
    DETEST
    SQL> alter user CIMGRPT quota 11000M on DATA;
    User altered.
    SQL> select bytes/1024/1024,tablespace_name from dba_ts_quotas where username='C
    IMGRPT';
    BYTES/1024/1024 TABLESPACE_NAME
    0 DATA
    SQL> select bytes/1024/1024 from dba_data_files where tablespace_name='DATA';
    BYTES/1024/1024
    63127
    63127
    63127
    63127
    63127
    63127
    6 rows selected.
    Regards,
    Edited by: user9945534 on Mar 11, 2009 12:54 AM

    sorry, I don't understand your question.
    select bytes/1024/1024 as USED, MAX_BYTES , tablespace_name from dba_ts_quotas where username='C';
    use MAX_BYTES to find Quota and bytes=usedIdea:
    alter user scott quota 100M on TBS_T;
    select bytes/1024/1024 as USED, MAX_BYTES/1024/1024 as MAX, tablespace_name from dba_ts_quotas where username='SCOTT';
    USED MAX TABLESPACE_NAME
    0 100 TBS_T

  • Performance Issue while assigning serial numbers (serialized Items)

    Hi,
    Receiving serialized items currently in Oracle ERP is a time consuming process.
    At reciept level when we are assigning serial number for a particular Item in the serial entry Form (serial_entry Block)
    taking long time.
    For large Quantity its taking time
    Example
    For 1lakh Quantity
    we enter Start serial number as : ACP00001
    End Serial Number is taking time to generate
    Please let us know how the END serial number is generated (if we enter start serial number) thorugh any prog or valuset.
    Pls suggest how to anlayze this .
    Thanx,

    Thanx sandeep ,
    I am looking for how exactly the END serail number is getting generated
    For 1lakh Quantity
    When we enter enter Start serial number as : ACP000001
    End Serial Number should be : ACP100000
    when checked the Serial_Entry Block :
    it had two triggers Start serial number and End Serial Number,
    they were calling below seeded PROC, in these proc there was no information
    regarding how the End Serial Number is getting generated.
    serial2_lib2.validate_fm_serial;
    serial_lib.set_radio_state('WHEN-VALIDATE-ITEM');
    serial_lib.desc_flex('WHEN-VALIDATE-ITEM');
    serial2_lib2.validate_to_serial;
    Can u help me out to undertand how exactly the END serial number is getting generated.

  • Error while assigning dates to associative array of date type

    Hi All,
    I am facing the issue while assigning dates to associative array of date type:
    Oracle Version:
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Stored procedure i am trying to write is as following
    create or replace procedure jp1 (
    p_start_date date default trunc(sysdate,'MM')
    , p_end_date date default trunc(sysdate)
    is
    l_no_of_days number;
    type t_date_id is table of date
    index by pls_integer;
    l_date_id_arr t_date_id;
    begin
    l_no_of_days := p_end_date - p_start_date;
    for i in 0
    .. l_no_of_days - 1
    loop
        l_date_id_arr := p_start_date + i;
        dbms_output.put_line(p_start_date + i);
    end loop;
    end;
    I am getting error at line 14 while compiling this. and the error message is as following:
    Errors for PROCEDURE JP1:
    LINE/COL ERROR
    14/5     PL/SQL: Statement ignored
    14/22    PLS-00382: expression is of wrong type
    So while investigating this i tried to output the value of (p_start_date + i) using dbms_output.put_line and the output is date itself.
    create or replace procedure jp1 (
    p_start_date date default trunc(sysdate,'MM')
    , p_end_date date default trunc(sysdate)
    is
    l_no_of_days number;
    type t_date_id is table of date
    index by pls_integer;
    l_date_id_arr t_date_id;
    begin
    l_no_of_days := p_end_date - p_start_date;
    for i in 0 .. l_no_of_days-1
    loop
        --l_date_id_arr := p_start_date + i;
        dbms_output.put_line(p_start_date + i);
    end loop;
    end;
    output of the
    exec jp1
    is as following:
    01-DEC-13
    02-DEC-13
    03-DEC-13
    04-DEC-13
    05-DEC-13
    06-DEC-13
    07-DEC-13
    08-DEC-13
    09-DEC-13
    10-DEC-13
    11-DEC-13
    12-DEC-13
    13-DEC-13
    14-DEC-13
    15-DEC-13
    16-DEC-13
    17-DEC-13
    18-DEC-13
    I see the output as date itself. so why it is throwing error while assigning the same to associative array of date type.
    I tried to google also for the same but to no avail.
    Any help in this regard is appreciated or any pointer some other thread on internet or in this forum.
    Thanks in advance
    Jagdeep Sangwan

    Read about associative arrays :
    create or replace procedure jp1 (
    p_start_date date default trunc(sysdate,'MM')
    , p_end_date date default trunc(sysdate)
    ) is
    l_no_of_days number;
    type t_date_id is table of date
    index by pls_integer;
    l_date_id_arr t_date_id;
    begin
    l_no_of_days := p_end_date - p_start_date;
    for i in 0..l_no_of_days - 1
    loop
        l_date_id_arr(i) := p_start_date + i;
        dbms_output.put_line(p_start_date + i);
    end loop;
    end;
    Ramin Hashimzade

  • Error while Assigning database level role (db_datareader) to SQL login (Domain Account)

    Team,
    I got an error while creating a User for Domain Account. Below is the screen shot of the error (error : 15401)
    Database instance is on SQL 2000 SP3. ( I know it is out of support, But the customer is relutanct to upgrade)
    On Google search, i found below article which is best matching for this error
    http://support.microsoft.com/kb/324321
    I have follows each step of troubleshooting. But still the issue persists.
    Step 1. The login does not exist == The login is very much exist in the domain as i am able to add the same domain id to other database instances
    Step 2. Duplicate security identifiers == i have used this query to find duplicate SID
    /*  SELECT name FROM syslogins WHERE sid = SUSER_SID ('YourDomain\YourLogin') */
    But there was only one row returned with create date of today's.
    Error while Assigning database level role (db_datareader) to SQL login (Domain Account) 
    Step 3. Authentication failure == Domain is available. User is able to login on other servers via RDP connection.
    Step 4. Case sensitivity == Database collation is set to Case insensitivity. (CI)
    Other two 5. Local Accounts & 6. Name resolution == is not applicable to me.
    I tried other ways also.
    A. Creating login and providing permission in one go only = User account is not created
    B. Instead of GUI, use query to create login and provide required permission = Same error.
    Does anybody has faced any such situation
    Chetan

    See the below output
    srvid
    sid
    xstatus
    xdate1
    xdate2
    name
    password
    dbid
    language
    isrpcinmap
    ishqoutmap
    selfoutmap
    NULL
    0x010500000000000515000000A1F66E1BFC1DC75D26E72530A2B80400
    14
    20:25.9
    57:33.4
    UKBAA\LHRAPPMuttavarapuS
    NULL
    1
    us_english
    0
    0
    0
    Chetan

  • Issue while creating repair order via IW52

    Hi All,
             I am facing an issue while creating a repair order from Service Notification.
    In IW52 for service Notification , we have option of Create repair order in Action box of service notification, when i am clicking that i need to enter the sales order type.. when i am selecting standard order type KD01 or any other it is saying that
    1)Order type KD01 does not have the sales doc. identifier "repair"
    Message no. QM127
    Diagnosis
    You entered an order type that is not assigned to the sales document identifier "F" or "G" = repair order.
    Procedure
    Enter an order type that has the sales document identifier "F" or "G".
    Where can we see sales document identifier in config ?
    2. I would like know is there any setting where we can give default sales order type to service notification type ..
    regards
    giri

    Dear,
            Thanks for your inputs. It will be great help if you can let me know the below :
    1) Diff between Repair order, spare parts order..
    2)I happened to create a service order from a sales order following IDES Model for CS -4.6C / the service order type created is SM01 is created and my sales order type is OR .. now my question is there any setting where we assign Service order type to sales order type ???
    Note :- In OIOL Tcode for SM01 Order type i have IRC Sales order document type linked ..
    regards
    giri

  • Authorization issue while opening the query in Bex Analyzer

    Hi All,
    I get the below error mesage while executing a report.I have executed the same query in RSRT and i get the below message.
    I have created some roles and added to a test user for testing purpose and when i log in as a tets user i get the below meesage.
    I am not sure what i am missing in the roles.When i tried executing the query in my id then no issues.
    No authority for the node from characteristic 0EMPLOYEE__0MAST_CCTR, hier
    Your user master record is not sufficiently maintained for object Authori
    Kindly let me how to overcome this.
    Thanks in advance.
    Regards,
    Kumar

    Hi Harish,
    Just check this query by this way:
    Use Tcode RSECADMIN -> Analysis ->Execution as -> In Execute as user: Put your Test user Id also tick With log and select RSRT. Now use Start Transaction.
    Might be the chance to get more details about this issue for resolution.
    Also ensure, Have you did the User Comparison while assigning test user id in role?
    Regards,
    Abdullah

  • Error while assigning user through users_gen t code

    Dear Experts,
    While assigning user to the org structure,i am getting below error message.Please guide me.
    many thanks

    Hi Ganesh,
    Thank you for the update,i was on leave.I could not update the issue.
    Issue has been resolved,issue is due to the last name is not maintained for the user in SU01 then user trying the assign to org through users_gen t code.
    Then issue raised.
    Thank you.

  • Error role while assigning to user

    Hi,
        I am using protal 6.0 in my project.I have small bug while assigning role to user.
       I assigned role to user and after role assined, the role check box is in disable.I can't remove that role for that user.
      And the role is not working for that user.
    Can any one tell me what is the problem?
    Regards,
    Suresh

    Hi Baji,
    I had assigned the same role to 400 users.Its working for all user but for this user ia m facing problem.
    Cany clues regarding this issue.
    Regards,
    Suresh

  • Issue while insert and update data to DB tables

    Hello all,
    i am having an issue while insert the data to DB table.
    my scenario is DB1 to DB2. i had a sender channel with select query which fetches data from DB1 and inserts to DB2.
    so the select query will fetch the records that were INSERTED to DB1 and records that were UPDATED to DB1 and needs to insert/update to DB2 table.
    Now the issue is i am able to insert the records but not able toupdate the records to DB2 table due to primary key issue.
    im message mapping
    sender message type is as follows:
    <src_message1>
    ----<row>
    -------<fieldA>
    -------<filedB>
    -------<filedC>
    Receiver message type as follows:
    <trgt_message1>
    ----<STATEMENT_1>
    ----<TABLE_NAME>
    ----<ACTION> INSERT
    ----<TABLE>
    ----<ACCESS>
    ----<field1> primary key
    ----<field2>
    ----<field3>
    ----<field4>
    ----<KEY>
    ----<field1>
    ----<field2>
    ----<field3>
    ----<field4>
    my query in sender channel is : select filedA, filedB, filedC from test_table where createdate=sysdate or updatedate=sysdate
    so it feteches the data from DB1 and inserting to DB2 but not updating the records to DB2 due to primarykey issue.
    please suggest how to solve ....will it solve by using UPDATE_INSERT for action?
    Best Regards,SARAN

    Hi Nagarjuna,
    i have done the following changes to target mapping structure;
    1. action as UPDATE_INSERT
    2.  in access tab, i had mapped fieldDate to field4.
    3. in Key tab, i assigned the sysdate to field4.
    but issue still exist. could you please check my above changes are correct or not. if wrong please provide me the details that needs to be done.
    thanks in advance.
    i'm providing the error details again:
    my query in sender channel is : select filedA, filedB, filedC, FiledDate from TEST_TABLE where fieldDate=sysdate or updatedate=sysdate
    it returns 4 records as follows:
    fieldA--fieldB-fieldC---fieldDate
    1001----EU----  1----
        2011-11-10
    1002----CN----  0----
         2011-11-10
    1003----AP---- 1----
          2008-03-15 (already exist in DB2)
    1004----JP----  1----
        2007-04-12 (already exist in DB2)
    the first two records are created today and remaining 2 records are updated the fieldC from 0 to 1 ( in DB1 )
    while inserting these 4 records to DB2, we get the following error "java.sql.SQLException: ORA-00001: unique constraint (data.TEST_TABLE_PK) violated" .
    Best Regards,SARAN

  • Error while configuring TMS in SAP (3 system Landscape)

    Hi,
    We need to replace our quality server with a new one.While configuring TMS,with the new replacement of our quality server,we are facing an error.
    Our development server is the domain controller and we have added our new QA and then deleted the old system and previous TMS configuration.But after deleting the configuration in our Production also,we get an error while adding it in the landscape.
    Password should contain atleast 2 numericals(0-9) for TMSADM.We changed and tried but of no use.
    Our password is welcome@01 which goes as per the password exception table.
    Can anyone help us in resolving this issue.Do we need to change the parameters and restart the system?Or is there any resolution like unlocking any table etc.
    Please help.Early response would be of great help as our landscape is affected.
    Regards,
    Sudheer.

    Hi Sudheer,
    Make sure the client id open
    in client other than 000 open table TMSCROUTE using SE11 and create following entry.
    sysname = ,ADMPWD
    Routestring=USER
    save the entry then try to configure STMS in 000.
    Try to add the Entry in All 3 Systems.
    Also Refer Note 1568362 - TMSADM password change
    Regards,
    Vaibhav

  • Issue while creating Virtual provider based on HANA Model in SAP BI

    Dear Experts,
    I try to create a Virtual Provider based on HANA Model. However receive below error "Unable to find SAP HANA information model".
    I tried to assign the appropriate package and HANA model while creation of Virtual provider in SAP BI using RSA1 Transaction.
    Do I need to enable any services/ settings, so that I can able to use HANA Models in SAP BI?
    Do I required any specific authorizations either from BI or HANA side?
    Could some one kindly help to resolve this issue.
    Thanks,
    Khader

    Hi Srinivasan,
    Thank you for your response.
    I have already gone through the content provided via above links.
    However I face issue while activating the virutual provider with warning message"Unable to find SAP HANA information model". Due to which I am not able to see any data from Virtual Provider in BW.
    Do we need to have any special access/ role in BW or HANA system in order to consume HANA models in BW (Vitual Provider in this case)?
    I am trying to consume HANA Models in BW for the first time.
    So any more clues can be helpful.
    Thanks,
    Khader

  • Authorization issue while using business content objects

    Hi all,
    I am getting an authorization error while loading from DSO to Cube (for standard business content objects only). Even i am not able access the data in Bex reports from Standard cubes or DSO.
    The user is assigned to SAP_ALL .
    But there is no such issue while accessing user defined DSO or cubes.
    any solutions will be helpful.
    Regards,
    Varma

    Hi,
    Have you seen the error thru the SU53 t-code ? There you should see what is the missing authorization with the user.
    Regards, Federico

  • Regarding problem while assigning logical system

    Hi Friends,
    I had a problem while assigning logical system to the client where in both of my systems are having same client number which belong to 2 different systems.
    while assigning the sender and receiver logical system to the same client i am facing problem stating that an entry has already been made for the same key.
    could any one plz give me a clear idea...while assigning logical systems (cross clients) for 2 different systems having same client number.
    Regards,
    Madhu

    Hello Madhusree,
    I'm running with same problem. I've created two logical systems and assigned them to two different clients. But here pops up the issue while generating partner profiles, throwing error "No active plan version exists". Later when I researched about the issue, I came to know that T77S0 table doesn't have any entries regarding plan versions. Basically, I created two clients by doing "client copy" from source client (800 & 100). And I could see plan version entries in the T77S0 of client 800. So, I thought of assigning just defined logical system to the source client 800 itself. But it throws error saying "entry already exists"; as client (800) is already assigned with other logical system.
    By coming across your post, gives me leap of hope that two logical systems can be assigned to same client. Could you please share me those troubleshooting steps concerning this issue. Points will be awarded.
    Regards, Anil. 

  • Getting Warning while assigning Dimension in to Model in version 10.0

    Hi,
    Iam getting an warning message "Control definition not valid because new Dimension are added in to Model" & "Control result was reset because new Dimension are added in to Model" while assigning Dimensions to the Model.
    Please help me on this issue. Screenshot attached.
    Regards,
    Sudheer

    Hi,
    Controls might exist on this model.
    To check for the existing Controls.Goto Aministartion-->Rules -->Controls .  After you adding the new dimension you have to revisit the controls which were already existing.
    Thanks,
    Raju

Maybe you are looking for

  • Transaction Identifier - ITL

    The transaction id in the ITL contains the address of the undo segment number, slot number and wrap. I can infer that the undo segment number tells a transaction where to find a consistent read copy of the row(s) but cannot and do not want to guess w

  • Installing Linksys Wireless G WAP54G Router

    So...the guy at Staples said it would be fine with a Mac. Yea right. It doesn't recognize the installation disc, the help on the Linksys site may as well be written in another language for someone like me. Is there anyone who can explain to me how to

  • Hi,for gererating parter profiles automatically usint t-code bd64.

    hi. i wonna send idoc from ecc to xi. and i am gonna use filter function of distribution model (bd64) to filter idoc according to the certain criteria i defined. i have created model view in the ecc. but there are not the string "No filter set" under

  • Сonnection problem with business Catalyst

    Hi! Sorry my English is a bad. I have a problem! I can not pulish the site! I have a window http://i.imgur.com/jVBwErX.png in the failed and my MUSE not connected with the Business Catalyst! I rebooted the my PC! Uninstal and instal adobe muse, but m

  • Changing video embed code already dropped on page

    In particular,  I want to change the embed code in Video Lightbox by Christine Ricks. When I add Object > Insert HTML, it comes in as a separate piece and isn't recognized as part of content to be triggered. I've tried selecting different boxes, the