Salary Development iView is not pupulating table values

Hi,
We are implementing MSS. I found the Salary Development iView is not getting data into the table (Table is empty). But it is showing properly in the Graphics with years and basic salary.( Please Navigate from Top Level Navigation :Manager Self Service->Team->General Information->SalaryDevelopment iView). I checked all possible ares but no useful info. Kindly help.
Regards.
Syam.T
I have gone through the SAP Note 1029576 and still exploring

Does the manager have all the necessary authorization (Structural Authorization) assigned ?
It might be because of that as well.
Cheers-
Pramod

Similar Messages

  • Salary Development iView in MSS has an issue

    Hi,
    We are implementing MSS.  I found the Salary Development iView is not getting data into the table (Table is empty). But it is showing properly in the Graphics with years and basic salary.( Please Navigate from Top Level Navigation :Manager Self Service->Team->General Information->SalaryDevelopment iView). I checked all possible ares but no useful info. Kindly help.
    Regards.
    Syam.T
    I have gone through the SAP Note 1029576 and still exploring
    Edited by: syam thupurani on Jun 22, 2010 8:39 AM

    Hi,
    The solution provided by SAP in a custom patch. Our SAP installation was 10 years old and the currency we have created was QR. But later the ISO standards are specifying QAR for Qatar Riyal. The WebDynPro is not recognizing the QR and showing the table empty. SAP has included the QR in the custom code patch and we have implemented and resolved the issue.
    Hope this is helpful.
    Regards.
    Syam.T

  • MSS Salary Development iView issue for specific country

    This iView works for most countries (Salary Development iView + the Graph) but for certain countries namely China, the table will be empty but the graph will show the bars/values. Any ideas as to why this could happen?
    Thanks,
    BR

    Solved.
    Created a new enhancement spot on FM  HRWPC_EP_READ_SALARY_IT when calling FM 'RP_SALARY_GENERIC_CALC', leaving USE_IT0014 and USE_IT0015 parameters empty.
    CALL FUNCTION 'RP_SALARY_GENERIC_CALC'
               EXPORTING
                    PERSONNEL_NUMBER             = PERNR
                    EVAL_WAGE_TYPE               = lt_buckets-LGART
                    CURRENCY                     = lv_CURRENCY
                    SALARY_AS_OF_DATE            = lv_salary_as_of_date2
                    BEGIN_OF_EVALUATION          = YEARS-BEGDA
                    END_OF_EVALUATION            = YEARS-ENDDA
                    USE_IT0008                   = 'X'
                    USE_IT0014                   = ' '
                    USE_IT0015                   = ' '
                    USE_P0008_ANSAL              = lv_USE_P0008_ANSAL_INDICATOR
               IMPORTING
                    SALARY                       = lv_AMOUNT
               EXCEPTIONS
                    ERROR_READ_0001              = 1
                    ERROR_READ_0008              = 2
                    ERROR_READ_0014              = 3
                    ERROR_READ_0015              = 4
                    NO_ENTRY_T511                = 5
                    ERROR_AT_INDIRECT_EVALUATION = 6
                    INTERNAL_ERROR               = 7
                    OTHERS                       = 8.

  • Salary Development iView (MSS) error

    Hello,
    I need some help when displaying Salary Development iView (General Information) in MSS. It shows a red exclamation and an error when reading data.
    Could you please help me?
    Thanks, 
    Isabel

    Hi,
    I am having the same problem. In DEV the Salary Development graph appears fine. However when we moved to the QAS environment I get the error message "Salary Development: An error occurred while the data was read"
    Can anyone help solve this?
    Thanks
    Tom

  • Compensation Management- Planning page in portal - Salary development iview

    Hi Experts
    I am working on Enterprise compensation Management Planning by manger in protal.
    In that portal page there is a a link for employee data on the employee name. clicking this link takes you to another screen where it display the employee data, compensation history data, Eligibiltiy, guidline, employee salary data and guidline values etc.
    In this screen there is an iview called "Salary Development". But this iveiw does not display any info, It always says no data found. What data it will display here?
    Can you one explain this iveiw with some example?
    Thanks and regards
    Dhina Varadhan

    Hi,
    Column EC_APPRAISAL used standard function module HR_ECM_UI_DISP_APPRAISAL (unless you have replaced this with your own) to display the appraisal ratings. The view name is V_TWPC_COL_ERP. Please check it through transaction SM30/SM31.
    For your issue, can you check if OSS note 1522746 is relevant?
    Hope this helps.
    Donnie

  • MSS 60.1.19 - Salary Development iView - Internal error wh reading the data

    Hi guys!
    I face the problem of an iView Salary Development. I get error: Internal error while reading the data. I found a thread with the same problem, but there is no solution. Did anyone of you solve this problem?
    Thanx for answers!
    Peter

    HI Peter
    I have the ivew salary development wroking more or less.  There are some problems with totals from wage types including IT14 & 15 which I have reported and waitnig for response frmo SAP..... but at least IT0008 is working ok on it.
    I didn't get this message so let me know how to help...!  Ha<ve you done the config for the iview yet?
    helen

  • Table values are not passed to context.

    Hi,
    Im trying to build a online(WD ABAP) form with a BAPI which is having import, export and tables parameters.
    I have binded Datasource with main node and Template source I have binded with the form which I created with the form interface using context fromBAPI. Then I got all importing and exporting parameters. And tables I have got under Changing Node of Data View in the form. But there is one other node called Data is created automatically under changing node and under that DATA node I got Table and under that I got again Data Node created and there I have all the attributes.
    I dragged table on to the form. But when Im tesing the form by submitting, Im not getting table values which are entered in table. But all other values which are binded to importing parameters Im able to get the values.
    Can some one tell me how to get the values from table to context? And can I have dynamic table in the form to map to the context so that I can update the data through BAPI?
    Warm Regards,
    J.Smitha.

    Hi,
    Smitha, you can defnetly use dynamic table in interactive form. I had similar problem and I acheived like follwing:Basically you have to bind the table .
    If you want to have fixed number of rows in the interactive form, then in wddoinit method bind the internal table to ur table node. for exmaple: if u want 2 rows in the form loop times . So by default when you open the form you will get two rows for the table.
    **************BIND THE ITAB ****************************
    DO 2 TIMES.
    APPEND LW_LFBK TO LT_LFBK.
    CLEAR LW_LFBK.
    ENDDO.
    CALL METHOD lo_nd_t_lfbk->bind_table
    EXPORTING
    new_items = LT_LFBK.
    If you want to have dynmic table then take a submit button in the form instead of normal button,
    in onaction submit write a loop every time you click that new submit button it should add a new row.
    use above coding in onactionsubmit instead of doinit.
    Thats it.
    Regards,
    Ravi

  • Alter Table Add column not null default value

    I want to add two columns to a table with not null and default as 0 for both columns
    Can i write the whole in one statement or do i have to split statement
    I tried this, but didn't work
    alter table DWSODS01.DWT00301_ORD_DTL_OMS add (
    COMB_ORD_FLG NUMBER(5,0) default 0 not null,
    COMB_ORD_NO NUMBER(12,0)
    default 0 not null);
    How can i modify the code?

    user10390682 wrote:
    I tried this, but didn't workSince you are specifying default values, it should work (regardless if table DWSODS01.DWT00301_ORD_DTL_OMS is empty or not):
    SQL> select count(*) from emp1
      2  /
      COUNT(*)
            14
    SQL> alter table emp1 add (
      2  COMB_ORD_FLG NUMBER(5,0) default 0 not null,
      3  COMB_ORD_NO NUMBER(12,0)
      4  default 0 not null);
    Table altered.
    SQL> desc emp1
    Name                                      Null?    Type
    EMPNO                                              NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    SAL                                                NUMBER(7,2)
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)
    COMB_ORD_FLG                              NOT NULL NUMBER(5)
    COMB_ORD_NO                               NOT NULL NUMBER(12)
    SQL> What error are you getting?
    SY.

  • LOV in a Table - "Not a valid Value" - Urgent

    Hi All,
    I have an LOV inside a Table region. The table has the Add another row button. considering the table has currently 3 rows created and the user enters a dummy value not present in the LOV in the first row and tabs out. The LOV automatically pops up without any values. The issue is when the user closes the pop-up window or clicks on its cancel button. The LOV doesn't validate the data present in the text box. If the Submit button is clicked or the save button is clicked , The framework automatically validates the data present in the text box and throws an error "Not a valid value" .
    Now im not sure why but the dummy data entered in the first text box is copied to the second and third text box , and the error is displayed for all the three rows. If there is valid data present in the remaining rows it just over-writes the data with the dummy value.
    I have written SOP's in the controller's Process request as well as the process form request but none of them seem to display anything.
    So the framework is basically validating this before the controller is called.
    Im working on a 11.5.10 instance.
    Need help to know if anyone has come across such a situation before.
    Thanks ,
    Dean

    Dean,
    Seems to be a looping issue. Also you need to get the exact error row.
    Thanks
    --Anil                                                                                                                                                                                                   

  • [[DataDirect][ODBC SQL Server Wire Protocol driver][Microsoft SQL Server]Column name or number of supplied values does not match table definition.]

    Hii ..
    need help on this ..
    This what I am doing ..
    I am using a DATAEXPORT function to export level0 data from my essbase 11.1.2.2 to Microsoft SQL 2008 tables.
    So what I did first I exported the level0 data to a flat file using DATAEXPORT and the created the SQL columns by the same  in that order only in my SQL table.
    When I run it fails with this error:
    ODBC Layer Error: [21S01] ==> [[DataDirect][ODBC SQL Server Wire Protocol driver][Microsoft SQL Server]Column name or number of supplied values does not match table definition.]
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Info(1021014)
    ODBC Layer Error: Native Error code [213]
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Error(1012085)
    Unable to export data to SQL table [dataexp]. Check the Essbase server log and the system console to determine the cause of the problem.
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Info(1021002)
    SQL Connection is Freed
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Warning(1080014)
    Transaction [ 0x1c50001( 0x51ee7d66.0x80342 ) ] aborted due to status [1012085].
    [Tue Jul 23 18:26:07 2013]Local/dataexp/dataexp/admin@Native Directory/1209813312/Info(1012579)
    Total Calc Elapsed Time for [test.csc] : [1.44] seconds
    =============================================================
    I did a simple test on my Sample.basic application then ..
    loaded the calc data to it and then used the below script to export to a flat file
    //ESS_LOCALE English_UnitedStates.Latin1@Binary
    SET DATAEXPORTOPTIONS
                    DataExportLevel "Level0";
                    DataExportOverwriteFile ON;
                    DataExportColFormat OFF;
                    DataExportDimHeader OFF;
    FIX(
                "Jan",
                "Sales",
                "Actual"
    /*DATAEXPORT "File" "," "/home/hypadmin/samtest.txt";*/
    DATAEXPORT "DSN" "Abhitest" "sample" "sa" "welcome1";
    ENDFIX
    out put as below:
    "Sales"
    "100-30","California"
    "Jan","Actual",145
    Now In sql I created only 3 columns with name Jan/Sales/Actual and when I run this script again with comments removed .. I get the same error as what I have got in my first test case with other application ..
    but when I create the columns with same name as what its in export
    Sales/100-30/Califirnia/Jan/Actual
    It created the new rows successfully ..
    So with this I think the error which I am getting with my other application might be because of the same column issue  .. but then I have created all the columns by looking at the export file only as I did in sample ..
    Any idea would be helpful ..
    Thanks
    Abhishek
    I

    First make sure you add
    DataExportRelationalFile ON;
    to your set commands it is missing
    I alwats like to also add
    DataExportColHeader dimensionName;
    so I am sure what dimension is getting put into the columns.
    Then count the number of dimensions in your outline (exclude attribute dimensions). You need at least that many columns in your table  -1 + the number of  members you will be returning as columns in the export
    Taking your example Sample basic has 5 dimensions
    Measures
    Years
    Scenario
    Product
    Market
    Since you did not specify a dataexportcolheader it took the dense dimension Scenario as the columns. Your fix statement is limiting that to one member. Doing the math
    5 -1 + 1 = 5 columns in your table which is what you found works.  Suppose you fixed on bothe Actual and budget in scenario then you would need 6 columns 5 -1 +2

  • "SAP_PAYSLIP_US does not exist" error in Salary statement iView of ESS

    Hi all,
    We have SAP EP7.0 (NW 2004s) with the ESS business package for MySAPERP 2005.Most of our iViews of the business package are working fine,but some are givig problems.
    When we try to launch the Salary Statement iView under BEnefits and Payments Workset we get the "SAP_PAYSLIP_US does not exist" error.
    The form name SAP_PAYSLIP_US is active and also we have specified the form name in the SPRO settings.
    If we change the form name (for e.g.UF01) then the error displayed is "UF01 does not exist".
    Can anyone point out as to what the problem is.
    Is there any settings we are missing?
    Thanks,
    Pradeep Shetty

    Hi To all!
    The Form SAP_TIMESLIP doesn't exist. The correct form to use in the feature HRFOR is SAP_TIM_99_0001 or SAP_TIM_99_0002.
    Activate the form in transaction HRFORMS.
    SAP didn't release the form SAP_TIMESLIP.
    Hope this information is usefull.
    Sónia

  • Oracle Table Values are not displayed when tried to display with Essbase

    Hi,
    I was trying to create a report with Oracle RDB Table and Essbase by following the steps given in "Federating Essbase and Relational Data Sources in Oracle Business Intelligence Suite Enterprise Edition Plus" document at the location http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/fed_data/fed_data.html.
    I am able to see the members from the Essbase cubes and I can also see the Oracle Table values, if they are displayed individually (i.e. different reports) but when I try to get one report with Essbase values with Oracle table records then Oracle table records are not displayed and when see the query log I don't see the query for Oracle table but I see obviously MDX queries for the essbase.
    Please help.
    Regards,
    Paresh

    Hi,
    Smitha, you can defnetly use dynamic table in interactive form. I had similar problem and I acheived like follwing:Basically you have to bind the table .
    If you want to have fixed number of rows in the interactive form, then in wddoinit method bind the internal table to ur table node. for exmaple: if u want 2 rows in the form loop times . So by default when you open the form you will get two rows for the table.
    **************BIND THE ITAB ****************************
    DO 2 TIMES.
    APPEND LW_LFBK TO LT_LFBK.
    CLEAR LW_LFBK.
    ENDDO.
    CALL METHOD lo_nd_t_lfbk->bind_table
    EXPORTING
    new_items = LT_LFBK.
    If you want to have dynmic table then take a submit button in the form instead of normal button,
    in onaction submit write a loop every time you click that new submit button it should add a new row.
    use above coding in onactionsubmit instead of doinit.
    Thats it.
    Regards,
    Ravi

  • Table values are not visible

    Hi,
    I have designed the GUI, which contains JTable.
    Every time the table is loaded with some values dynamically, after doing some operation.
    The table values are first stored in the vector and set to DefaultTableModel.
    The DefaultTableModel contains two vectors, in which first vector will have row values and
    second vector has column name (or heading, always it is four).
    The problem is only 40 row's values are visible in GUI.
    Not able to move the scroller down to see the table values after the 40th row.
    Please suggest me in what way i can correct this problem.
    Thanks & Regards

    calvino_ind wrote:
    kathyayini wrote:
    Its not stupid.
    I know that there are more than 40 rows.
    Because i have displayed the values which are loaded into table and also i am writing the table as excel file.
    Don't act to smart.he wasn't acting smart, but actually acting dumbYeah as if your first comment asking whether he added a JScrollPane was much smarter, especially because the OP mentioned that he has a scroller in the GUI...
    Be it as it is, you could post the relevant code snippet here.

  • SQL-Developer 1.5.4 - SQL-Worksheet does not use Table-Owner

    In old versions of the sql-Developer you can drop a Table in the Worksheet and a select Query was built. With the new version 1.5.4 the table-owner is missng and you must fill in the table-owner or the query does not work with tables of other users.
    Is that a bug or are there the posibility of change settings to drop tables in the SQL-worksheet with table-owners.

    The drag and drop functionality was updated so that when you use drag and drop the schema is not prefixed for the current user you are connected to. However it is appended if you drag a table form another connection. It appears to have been overlooked for Other Users. We will address this in a future release. In the meantime,a workaround is to create a connection to the other users and then the drag and drop will append the connection name.
    Sue

  • Table-Valued Function not returning any results

    ALTER FUNCTION [dbo].[fGetVendorInfo]
    @VendorAddr char(30),
    @RemitAddr char(100),
    @PmntAddr char(100)
    RETURNS
    @VendorInfo TABLE
    vengroup char(25),
    vendnum char(9),
    remit char(10),
    payment char(10)
    AS
    BEGIN
    insert into @VendorInfo (vengroup,vendnum)
    select ks183, ks178
    from hsi.keysetdata115
    where ks184 like ltrim(@VendorAddr) + '%'
    update @VendorInfo
    set remit = r.remit
    from
    @VendorInfo ven
    INNER JOIN
    (Select ksd.ks188 as remit, ksd.ks183 as vengroup, ksd.ks178 as vendnum
    from hsi.keysetdata117 ksd
    inner join @VendorInfo ven
    on ven.vengroup = ksd.ks183 and ven.vendnum = ksd.ks178
    where ksd.ks192 like ltrim(@RemitAddr) + '%'
    and ks189 = 'R') r
    on ven.vengroup = r.vengroup and ven.vendnum = r.vendnum
    update @VendorInfo
    set payment = p.payment
    from
    @VendorInfo ven
    INNER JOIN
    (Select ksd.ks188 as payment, ksd.ks183 as vengroup, ksd.ks178 as vendnum
    from hsi.keysetdata117 ksd
    inner join @VendorInfo ven
    on ven.vengroup = ksd.ks183 and ven.vendnum = ksd.ks178
    where ksd.ks192 like ltrim(@PmntAddr) + '%'
    and ks189 = 'P') p
    on ven.vengroup = p.vengroup and ven.vendnum = p.vendnum
    RETURN
    END
    GO
    Hi all,
    I'm having an issue where my Table-Valued Function is not returning any results.
    When I break it out into a select statement (creating a table, and replacing the passed in parameters with the actual values) it works fine, but with passing in the same exact values (copy and pasted them) it just retuns an empty table.
    The odd thing is I could have SWORN this worked on Friday, but not 100% sure.
    The attached code is my function.
    Here is how I'm calling it:
    SELECT * from dbo.fGetVendorInfo('AUDIO DIGEST', '123 SESAME ST', 'TOP OF OAK MOUNTAIN')
    I tried removing the "+ '%'" and passing it in, but it doesn't work.
    Like I said if I break it out and run it as T-SQL, it works just fine.
    Any assistance would be appreciated.

    Why did you use a proprietary user function instead of a VIEW?  I know the answer is that your mindset does not use sets. You want procedural code. In fact, I see you use an “f-” prefix to mimic the old FORTRAN II convention for in-line functions! 
    Did you know that the old Sybase UPDATE.. FROM.. syntax does not work? It gives the wrong answers! Google it. 
    Your data element names make no sense. What is “KSD.ks188”?? Well, it is a “payment_<something>”, “KSD.ks183” is “vendor_group” and “KSD.ks178” is “vendor_nbr” in your magical world where names mean different things from table to table! 
    An SQL programmer might have a VIEW with the information, something like:
    CREATE VIEW Vendor_Addresses
    AS
    SELECT vendor_group, vendor_nbr, vendor_addr, remit_addr, pmnt_addr
      FROM ..
     WHERE ..;
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

Maybe you are looking for

  • Asking Exchange rate at the time of Customer aging report

    Dear All, I am facing one problem, when I am asking customer aging report the system is asking to enter exchange rate.but at the time of vendor aging is working fine does not asking any exchange rate,this problem happens only one specific  user, not

  • System python interactive shell - cannot input non-ascii charecters

    If I open Terminal.app (with default setup, in particular utf-8 is the default encoding) I can input non-ascii characters without any problem, in particular I can input all itelian accented letters. But I can't input such characters in system's pytho

  • My mac was stolen.  How can I remotely lock it or find it?

    How do I access find my mac?  Can I remotely find it?

  • Consinment (miro) probleam

    dear all, i created a info record for consinment material. by entering following , vendor/material/ my pur.org and company code. after creation po, i enter po number to do process migo with reference to purchase order, but every time it givng message

  • Surround sound mix, have I got this right (CS6).

    OK, done some reading and this is what I think I need to do with my 6 WAV files. Channel 1 Left - Drag dot in surround pannier to top left. Channel 2 Right - Drag dot in surround pannier to top right. Channel 3 Centre - Drag dot in surround pannier t