Review Planning "Status" column result text change

Hi SAP HCM experts,
we are on EhP4 , and we have Manager Self Service 1.41 and on compesation side we are using Review planning iView (WDA),in Review Planning iView we have Status column with list of result like "New","Open", "approved" result based on the status, do we have any option to change this text like new,open,approved
I appreciate your help.
Thanks and regards
Vijai

no, do not change these status unless you want to break the application.  no flexibility here yet that I am aware of. 
entire application / processes is driven off these fixed statuses...

Similar Messages

  • CL_SALV_TABLE - Exception column text change

    Hi Experts,
    I am using CL_SALV_TABLE class for displaying data in ALV.
    Traffic lights are displayed in ALV. For traffic lights column the text displayed by default is 'Exception'. I tried to set the custom text for it using below code but it is not working.
    Below is the code for reference.
    REPORT  ZMDR_SALV_TEST.
    TYPES: BEGIN OF ty_alv,
             lights(1) TYPE c, "Exception, Holding the value of the lights
             text(20) TYPE c,  "some text
            END OF ty_alv.
    DATA: gs_alv TYPE ty_alv,
           gt_alv TYPE TABLE OF ty_alv,
           gr_alv TYPE REF TO cl_salv_table,
           gr_columns TYPE REF TO cl_salv_columns_table,
            gr_column TYPE REF TO cl_salv_column_table.
    START-OF-SELECTION.
       gs_alv-lights = '1'.    "Color red
       gs_alv-text = 'RED SIGNAL'.
       APPEND gs_alv TO gt_alv.  gs_alv-lights = '2'.    "Color yellow
       gs_alv-text = 'YELLOW SIGNAL'.
       APPEND gs_alv TO gt_alv.  gs_alv-lights = '3'.    "Color green
       gs_alv-text = 'GREEN SIGNAL'.
       APPEND gs_alv TO gt_alv.
    CALL METHOD cl_salv_table=>factory
         IMPORTING
           r_salv_table = gr_alv
         CHANGING
           t_table      = gt_alv.
    gr_columns = gr_alv->get_columns( ).
    gr_columns->set_exception_column( value = 'LIGHTS' ).
       TRY.
           gr_column ?= gr_columns->get_column( 'EXCEPTION' ). "Exception Column
           gr_column->set_medium_text( 'STATUS' ).
           gr_column->set_long_text( 'STATUS' ).
           gr_column->set_short_text( 'STATUS' ).
         CATCH cx_salv_not_found.                            "#EC NO_HANDLER
       ENDTRY.
    CALL METHOD gr_alv->display.
    Please share if any ideas on it.
    Regards,
    Mohammed

    Hi Rafi,
    Try the  below code it will works fine.
      gr_columns = gr_alv->get_columns( ).
    *remove this line from your code
    gr_columns->set_exception_column( value = 'LIGHTS' ).
    add the following code.
      TRY.
          gr_column ?= gr_columns->get_column( 'LIGHTS' ). "Exception Column
          gr_column->set_medium_text( 'STATUS' ).
          gr_column->set_long_text( 'STATUS' ).
          gr_column->set_short_text( 'STATUS' ).
        CATCH cx_salv_not_found.                            "#EC NO_HANDLER
      ENDTRY.
    Let me know if you have any issues.
    Regards,
    Gurunath D

  • How can i  change the column label text in a alv table display

    how can i change the column label text in a alv table display??
    A similar kinda of question was posted previuosly where the requirement was the label text was needed and following below code was given as solution :
    <i>*  declare column, settings, header object
    DATA: lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    DATA: lr_column_header type ref to CL_SALV_WD_COLUMN_HEADER.
    get column by specifying column name.
    lr_column = lr_column_settings->get_column( 'COLUMN_NAME1' ).
    set Header Text as null
    lr_column_header = lr_column->get_header( ).
    lr_column_header->set_text( ' ' ).</i>
    My specific requirement is i have an input field on the screen and i want reflect that value as the column label for one of the column in the alv table. I have used he above code with slight modification in the MODIFYVIEW method of the view since it is a process after input. The component gets activated without any errors but while run time i get an error stating
    <i>"The following error text was processed in the system CDV : Access via 'NULL' object reference not possible."</i>
    i have checked in debugging and the error occured at the statement :
    <i>lr_column = lr_column_settings->get_column( 'CURRENT_YEAR' ).</i>Please can you provide me an alternative for my requirement or correct me if i have done it wrong.
    Thanks,
    Suri

    I found it myself how to do it. The error says that it is not able to find the reference object i.e  it is asking us to refer to the table. The following piece of code will solve this problem. Have to implement this in WDDOMODIFYVIEW method of the view. This thing works comrades enjoy...
      DATA : lr_cmp_usage TYPE REF TO if_wd_component_usage,
             lr_if_controller  TYPE REF TO iwci_salv_wd_table,
             lr_cmdl   TYPE REF TO cl_salv_wd_config_table,
             lr_col    TYPE REF TO cl_salv_wd_column.
      DATA : node_year  TYPE REF TO if_wd_context_node,
             elem_year  TYPE REF TO if_wd_context_element,
             stru_year  TYPE if_alv_layout=>element_importing,
             item_year  LIKE stru_year-i_current_year,
             lf_string    TYPE char(x),
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      DATA: lr_column_header TYPE REF TO cl_salv_wd_column_header.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    Get the entered value from the input field of the screen
    node_year  = wd_context->get_child_node( name = 'IMPORTING_NODE' ).
    elem_year  = node_year->get_element( ).
      elem_year->get_attribute(
       EXPORTING
        name = 'IMPORT_NODE-PARAMETER'
       IMPORTING
        value = L_IMPORT_PARAM ).
      WRITE L_IMPORT_PARAM TO lf_string.
    Get the reference of the table
      lr_cmp_usage  =  wd_this->wd_cpuse_alv( ).
      IF lr_cmp_usage->has_active_component( ) IS INITIAL.
        lr_cmp_usage->create_component( ).
      ENDIF.
      lr_if_controller  = wd_this->wd_cpifc_alv( ).
      lr_column_settings = lr_if_controller->get_model( ).
    get column by specifying column name.
      IF lr_column_settings IS BOUND.
        lr_column = lr_column_settings->get_column( 'COLUMN_NAME').
    set Header Text as null
        lr_column_header = lr_column->get_header( ).
        lr_column_header->set_text( lf_string ).
    endif.

  • How do I copy a list from one site to another that has a column that appends changes to existing text?

    I want to move a list from one SharePoint site to another, within the same collection. I have created a template and included the content but the column that is selected to append changes to existing text, has not copied in all cases, although it has for
    some items.
    I have a limited knowledge so won't be able to implement any solutions that require the use of code.

    Hi,
    According to your post, my understanding is that you wanted to copy a list from one site to another that has a column that appends changes to existing text.
    I recommend to use the custom workflow activity  Copy List Item Extended Activityto
    copy list items and files cross site.
    You can do this with codeless SharePoint Designer workflows as long as you can install the
    Codeplex Custom SharePoint Designer Workflow Activities. 
    These activities are also built-in to SPD2010.
    To install the custom activities, please follow the steps as below:
    Download the solution file form
    Useful Sharepoint Designer Custom Workflow Activities
    Copy the wps file to the Disk C.
    Open the SharePoint 2010 Management Shell.
    Run the command: add spsolution c:\ dp.sharepoint.workflow.wsp
    Open the Center Administration, click System Setting->Manage Farm Solution-> dp.sharepoint.workflow.wsp->Deploy to one or more Web Application.
    Open the SharePoint designer, add action from Custom Actions.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Change column header text dynamically

    Hi,
    I have requirement to change the column header text dynamically in sap gui programming. but couldn't see straight forward way to achieve this.
    i tried following link but no success:
    [Re: Dynamic header text in table control - Dialog programming;
    Please share your suggestions if it can be acheived.
    Thanks,
    Rahul
    Edited by: Rahul Yadav on Oct 25, 2010 7:29 PM

    >
    anmol112 wrote:
    > Hi,
    >   So you can try 1 thing,
    > * Dont use default Column Headings
    > * Create I/O and choose ouput only and fix them in place of Column headings.
    > * pass the values to these I/O accordingly.
    >
    >
    > Thanks,
    > Anmol.
    How is this different from the previous post?
    Rob

  • Planning Layout Column Width and Text Wrapping

    Hello,
    Is there a way in a BPS layout to set the column width to a certain length and have the column heading texts wrap?  I noticed an answer for adjusting a table API for BW Web columns, but not BPS.
    Thanks,
    Cherie

    A coworker figured out by selecting the line break in the change subcomponent it wraps the column text.

  • How to change "Details" column header text in AdvanceTable in AdvancedTable

    Hi All,
    i am using adavanced table in advanced table in OAF page to show the master and details ,
    my requirement is to change the header text of "Details" to some other meaning ful text .
    "Details' column will be visible at runtime ,no we cant change using process request ,
    Please help me on this ,its urgent
    Thanks & Regards
    Maheswara Raju

    You can get the handle to the Detail column by using the following:
    UINode d = outerTable.getDetail();
    However, as per OAF developer guide, it is not possible to change the label for the detail column. The devloper guide has the following:
    "In accordance with BLAF guidelines, the Detail column header text for the detail disclosure column and the Show/Hide link texts within the cells of the detail disclosure column can not be modified."
    Cheers,
    Saurabh

  • Change Table control Column Header text dynamically

    Hi,
    I have an requirement to change table control column header text dynamically.
    i.e. I have about 10 columns in table control, out that need to change 5 columns header text. These header texts are stored in an internal table.
    I had looked into the below link but could not get exactly how to do it.
    Dynamic headers in table control
    Could you please tell me how to do that.
    Thanks in Advance.

    Hi Saba,
    What you will need to do is this.....
    1. First replace the column Header Text box by I/O Fields and name them accordingly.
    Say for example we will consider the same example which i had explained in the link.
    there in the column header we want the header to change when some dates and entered into two fields which are out of table control say
    Start Date: 01.01.2010 to End Date: 06.01.2010
    Now we want the header to look like this,
    Column  No.    -        1               2             3                  4               5               6
    Header label   -    01/FRI       02/SAT     03/SUN       04/MON     05/TUE      06/WED
    Header name -    SPOTS1   SPOTS2    SPOTS3      SPOTS4     SPOTS5    SPOTS6
    then you go as per the instructions in the link......
    Let me know if you need further help,
    Hope this solves your problem....
    Regards,
    Abhijit G. Borkar

  • Hiding Status column in MSS Status Overview for Personnel Change Requests

    Hi,
    We have MSS implemented in SAP Portal.
    We are using Status Overview for Personnel Change Requests iview for which we have multiple columns displayed with data.
    We need to hide Status column in Status Overview for Personnel Change Requests iview for all the users.
    Can any body please let me know how it can be done.
    Regards,
    Pradeep B
    Edited by: pradeep balam on May 17, 2011 4:01 PM

    Hi Pradeep,
    Preview the portal page which you want to edit, in this case status overview in PCR. In the preview press the CTRL-key and right-click on the column that you want to edit. Here, you will be able to perform your customizations like hiding columns, labels etc
    Hope it helps,
    Prathamesh

  • MSS---Compensation----Review Planning Approval Status Problem

    Hi All,
    I configured MSS Compensation Review Planning successfully, i was able to see my reporting structre in Review Planning iView properly.
    I am having my organizational structure with five level approvals.
    Whan i was submitting Compensation plan for my employees as an first level manager it went to higher level for approvals. as an higher level manager i rejected what ever the lower level manager was submitted for approvals. The status "rejection" was updating fine in infotype 0759 without running any reports.
    again i submitted for approval as an first level manager to higher level manager for approval, this time i approved as an higher level but the "Approved" status is not updating in infotype 0759.
    We are facing this issue with all level managers.
    This is the first i am configuring MSS EHP4 Compensation Review Planning.
    If any one facing this issue and having solution, please provide the proper solution.
    Thanks in Advance.
    Regards,
    Abhiram.

    Can u pls update the solution
    Thanks,
    Chowdary

  • Invoice Plan Status Change

    Friends,
    Here is my requirement...
    When a batch program runs (using RMMR1MIS), based on certain criteria, the Invoice plan status changes from A to C (table : FPLT-FKSAF).
    I would like to start a workflow by tracking the status change, but I do not see any default event or update in any change document....
    Thanks in advance.
    Muthu

    HI,
    Unfortunately I can only confirm that there is missing functionality
    for change management in area of MM invoicing plan. No change documents
    are created in CDHDR and CDPOS tables for any change for invoicing
    plan.
    Best Regards,
    Arminda Jack

  • Send Email when built in approval workflow status column changes to approved

    I Implemented the built in approval work flow in a document library,I want to send an email when the column indicating the status of the workflows changes from in progress to approved.

    Hi ,
    According to your description, my understanding is that you want to send email when the built-in approval workflow status was approved.
    For the default built-in approval workflow, per my knowledge, there is not a way to modify it. As a workaround, you can create a Reusable Workflow with SharePoint Designer 2010, and publish it to your SharePoint, then you can use it like the built-in approval
    workflow.
    You can do as the followings:
    Install SharePoint Designer 2010.
    Open your site with SharePoint Designer 2010.
    Click Workflow under Navigation.
    Click Reusable Workflow, and type a name.
    Add “Start Approval Process” action, in the ‘these user’ , type the approvers.
    Click ‘Approval’ field, and under Customization, click “Change the behavior of a single task”.
    On the “When a Task Completes”, add “Send an Email” action in the approved condition,like the screenshot below.
    Then save and publish the workflow, then you can use the workflow in your SharePoint site .
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Fact columns Datatype is changing from char to int in OBIEE 11g

    Hi ,
    I am taking measure columns - "product description","tot cost" against a dimension "project name" .
    I am generating this report in a planing form and OBIEE .
    in planing form :
    product description tot cost
    project name
    P1 A 1500
    p2 B 1700
    p3 C 1800
    in obiee report :
    product description
    project name
    P1 16 1500
    p2 17 1700
    p3 19 1800
    Somehow , measure's datatype are getting changed from char to number , in OBIEE report.
    By default , the data type for all fact's is Double .I tried changing that to varchar , but result is same .
    Do I need to change anything in physical layer / RPD .
    OBIEE version : 11.1.1.6
    Essbase version : 11.1.2

    Hi ,
    Thanks for your reply . To confirm , the data type of product description column is "double" in essbase .
    I found out ,thers's a RDBMS table , consisting of two columns - ID, text value . where product description's are in text value's with the corresponding ID's(integer values) .
    Now , when I am creating a form in planning , its fetching the text values of product description (there's some inbulit setting's available for this in plannng) .
    However , in obiee its fetching the ID values of product description .
    So ,
    1. Is there any similer setting I can do for OBIEE , so that it's fetches only text value's of product description .
    2. If not , then I have to join the essbase fact table with this RDBMS table . I am not sure how to do it .

  • How to tell if column value has changed for use in workflow actions

    Hello,
    I am using Sharepoint 2010 and for one of my Lists, I am using a general list workflow.  What I need to be able to do is determine if a column value has change (say an "Assigned To" field) because I only want to take some action if that particular
    value has changed.  I want to be able to have a workflow action that would be something like:
    If Current Item: Assigned To not equals [OLD VALUE]
    I have found some web searches that talk about creating a duplicate list or duplicate (but hidden) column but that doesn't seem to be the way to go.  I have document versioning set but don't if that can be used to help with this.  One possible
    thought (although I haven't tried it to see if it works) is to create local variables and have the values in the variables be the "old value".  Just not sure if there is a best practices for doing this.
    Thanks for any thoughts - Peter

    Helen,
    Not sure I fully understand your goal.  We don't use "tasks" at all but if you are looking to have your workflow check certain valus and be able to send email messages to people based on whatever, then you can certainly do that (as long as your Sharepoint
    has the email setup.  We do this for alot of workflow tasks.
    So, in the workflow you can have a blanket statement like what I previously listed:
    if Current Item:hiddenStatus  not equals Current Item:Status
        .... do something
    or you can do something like:
    if Current Item:hiddenStatus equals "In-Progress"
        .... do something
    Else if Current Item:hiddenStatus  equals "Completed"
        .... do something
    or combine the two and do nested "if" statements.  Then you add an email statement wherever you need it like:
    if Current Item:hiddenStatus  equals "Completed"
       then email "these users"
    To add the email part, just type in "email" on the line where you want to add a statment.  There is only one option to choose from.  That will display the line "then email these users".   The "these users" will be a link.  When you
    click it you will get a popup to add the email info.  We typically will send the email to a user (or users) that are already listed in one of the PeoplePicker fields.  On the email form, you can type in your own text, designate that a value is based
    on a column value (like our PeoplePicker), designate that a value is based on a workflow variable, add a link to the current item, etc.  To get to these options you will click the button to the right of the fields or use the "Add or Change Lookup" button
    in the bottom-left for the text area.  There is alot you can set in the mail.
    Does this help answer your question?
    - Peter

  • Status Column Of v$log on standby database

    DB Version : 11.2.0.1
    OS Version : AIX 7.1
    Status column of v$log is showing values as "CLEARING" & "CLEARING_CURRENT". It doesn't change even after adding the standby log files. Here are values from this view. I am not using real time apply feature and have delay of 120 Minutes.
    SQL> select * from v$log;
        GROUP#    THREAD#  SEQUENCE#      BYTES  BLOCKSIZE    MEMBERS ARC STATUS           FIRST_CHANGE# FIRST_TIM NEXT_CHANGE# NEXT_TIME
             1          1       3397  104857600        512          2 YES CLEARING              22886147 03-APR-13     22887606 03-APR-13
             3          1       3396  104857600        512          2 YES CLEARING              22886111 03-APR-13     22886147 03-APR-13
             2          1       3398  104857600        512          2 YES CLEARING_CURRENT      22887606 03-APR-13     22886111 03-APR-13
    SQL> select group#,Thread#, sequence#,USER,archived,status,first_change# from v$standby_log;
        GROUP#    THREAD#  SEQUENCE# USER                           ARC STATUS     FIRST_CHANGE#
             4          1       3398 SYS                            YES ACTIVE          22887606
             5          1          0 SYS                            NO  UNASSIGNED             0
             6          0          0 SYS                            YES UNASSIGNED             0
             7          0          0 SYS                            YES UNASSIGNED             0is the status column showing value "CURREN" & "CLEARING_CURRENT" correct, since i have added standby redo logs, i was expecting value to be "INACTIVE" ? reason for expecting this value is because now, standby log files are in use and original log files will be used only in case of switchover or failover. Please comment.
    Edited by: user11982706 on Apr 3, 2013 10:31 AM

    size are same on both primary and standby. See the results from below query:
    Primary
    SQL> select GROUP#,THREAD#,bytes/1024/1024,STATUS from v$log;
        GROUP#    THREAD# BYTES/1024/1024 STATUS
             1          1             100 INACTIVE
             2          1             100 INACTIVE
             3          1             100 CURRENTStandby
    SQL> select GROUP#,THREAD#,bytes/1024/1024,STATUS from v$log;
        GROUP#    THREAD# BYTES/1024/1024 STATUS
             1          1             100 CLEARING
             3          1             100 CLEARING_CURRENT
             2          1             100 CLEARING
    SQL> select GROUP#,THREAD#,bytes/1024/1024,STATUS from v$standby_log;
        GROUP#    THREAD# BYTES/1024/1024 STATUS
             4          1             100 ACTIVE
             5          1             100 UNASSIGNED
             6          0             100 UNASSIGNED
             7          0             100 UNASSIGNEDSo, on standby size of online logs as well as standby logs is exactly same as primary and i have one more standby redo then primary as oracle recommends. Please comment....

Maybe you are looking for

  • How do i get a hit counter on my site

    Hi everyone Im looking for a we hit counter for my site, but it seems like its abit more complecated than i want it to be, or am i getting it wrong? I have looked on the dreamweaver exchange, i dowloaded one called 'visit counter v.1.0' by felixone,

  • Next & Previous frame issue

    I am setting up a touchscreen for a museum. I have a 275 frame file. At the start of the setup up people press the screen to watch an embeded movie. At the end of the move there is a link to a series of info pages with next and previous frame buttons

  • New to FCE from Adobe Premiere Elements

    Hi. I've just switched from the bug laden Premiere Elements 8 to FCE on my iMac and I have to say so far so good. I just have a basic question about setup for my projects. I may be getting confused here on account of being Premiere Elements user for

  • Magic Bullet Instant HD Advance Is Tanking forever to render

    Don't know if it normally takes this long to render in Adobe After Effects CS4. I have a 64-bit sytem and I hardly got anything on my pc just a few music and music videos so its probably not the computer. I must of done somthig wrong.Heres what I did

  • Ovi Music Download Doesn't Start in Noxia X6 16 GB

    Dear Friends,  I have bought Nokia x6 16 GB, It was working wall with music download but now when i try to download Ovi music it not get start.my music subscription is still valid. please help me if u can.