Duplicate text element description in RPCP45GN_PRESELECTION

Hi,
After following master note 1314614, we have sucessfully applied the solution for IYMV 2009-10.
However, our users have noticed that in the selection screen of program RPCP45GN_PRESELECTION, the section marked "Tax Record Details" contains 2 radio buttons with the same description. i.e. buttons 1 and 3 both read "from issue date of P45 form".
When comparing the above with program RPCP45GN, we think the 1st button (text id ISD) should say "From 1 day after pay date of the leaving period".
Please suggest how to resolve this issue.
Regards
Nimmi

Hi,
This issue might appear if the note installation process went wrong some where. If you want you can correct the description by your self also.
  Manual steps to add the new text element :-
  1. Go to transaction SE38.
  2. Open the report RPCP45GN/RPCP45GN_PRESELECTION for editing
      after choosing the radio button labelled text elements.
  3. Scroll down and make the changes in text element.
  4. Save the changes and activate.
Hope this could solve the issue.
Regards
Roop

Similar Messages

  • Changing text element description in Workbook

    Hi
    We are creating Workbooks, with text elements "Last Refreshed" and "Status of Data"  displayed in the report.
    Is there a way to change description of these default text elements?
    The user wants it changed to "Load Date" and "Run Date" respectively. I'm not sure if it's possible to change the standard text elements.
    Thanks!
    Pooja

    Hi Pooja,
    The answers you have so far are good.  Here is an alternative:
    Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
    Dim rng As Range
        On Error Resume Next
        Set rng = Range("SAPBEXqueries!" & queryID & "tROLLUPTIME")
        If rng Is Nothing Then Exit Sub
        rng.Cells(1) = "Load Date"
        Set rng = Range("SAPBEXqueries!" & queryID & "tSYUZEIT")
        If rng Is Nothing Then Exit Sub
        rng.Cells(1) = "Run Date"
    End Sub
    This will work even if you move the text elements to a different worksheet within the workbook.
    - Pete

  • Dump error when clicked on text elements in SAP Script window

    Hi All,
    There is an inclusion in SAP Script. I have written the code in driver program. I need to pass the value to SAP Script in the requested position. But when I go to SE71 > Form Name > Change or Display > MAIN Window > Text Elements > I get a dump error.
    Category               ABAP Programming Error
    Runtime Errors         DATA_LENGTH_TOO_LARGE
    Except.                CX_SY_RANGE_OUT_OF_BOUNDS
    ABAP Program           SAPLSTXK
    Application Component  BC-SRV-SCR
    Date and Time          30.04.2014 20:00:08
    Short text
         Invalid partial field access: Length is too large
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLSTXK" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
         Using Transaction ST22 for ABAP Dump Analysis, you can look
         at and manage termination messages, and you can also
         keep them for a long time.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_RANGE_OUT_OF_BOUNDS', was not
          caught in
         procedure "TOKEN_COMMENT" "(FORM)", nor was it propagated by a RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
        The reason for the exception is:
        In the executed program "SAPLSTXK", the system attempted to access the field
        "ITF_TOKEN" of the type "C" and with the length 255 using the length 272.
        However, a partial field access with a length specification that is
        larger than the field length is not allowed.
    How to correct the error
        Reduce the length used to access the field.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DATA_LENGTH_TOO_LARGE" "CX_SY_RANGE_OUT_OF_BOUNDS"
        "SAPLSTXK" or "LSTXKFRN"
        "TOKEN_COMMENT"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
    2937 * todo empty comment ???
    2938       if g_tm_open    eq true or     " Section
    2939          g_tm_b_close eq true.
    2940         l_token = '\chcbpat0'.
    2941         l_len = strlen( l_token ).
    2942         token_control = true.
    2943         assign l_token to <itf1>.
    2944         perform put_itf1_new using l_len.
    2945         perform token_line_begin changing l_next_token.
    2946       else.                          " without section
    2947         concatenate '\chcbpat0\line' g_cf_string l_cbpat_token into l_token.
    2948         l_len = strlen( l_token ).
    2949         token_control = true.
    2950         assign l_token to <itf1>.
    2951         perform put_itf1_new using l_len.
    2952       endif.
    2953     elseif l_next_token-code eq ')L'.         " \par
    2954       l_token = '\par'.
    2955       l_len = strlen( l_token ).
    2956       token_control = true.
    2957       assign l_token to <itf1>.
    2958       perform put_itf1_new using l_len.
    2959     elseif l_next_token-code eq '(C' or       " \par + format
    2960            l_next_token-code eq ')C' or
    2961            l_next_token-code eq '(&' or
    2962            l_next_token-code eq 'TA' or
    2963            l_next_token-code eq 'SC' or
    2964            l_next_token-code eq 'ST'.
    2965       concatenate '\chcbpat0\par' g_pf_string g_cf_string l_cbpat_token into l_token.
    2966       l_len = strlen( l_token ).
    >>>>>       itf_token(l_len) = l_token.
    2968       token_control = true.
    2969       assign l_token to <itf1>.
    2970       perform put_itf1_new using l_len.
    2971     endif.
    2972
    2973 * Step 7: (L to disarm
    2974   if g_compose eq true and
    2975      l_next_token-code eq '(L'.
    2976     perform read_next_itf_token(rstxscan) using p_token.
    2977   endif.
    2978
    2979 ENDFORM.                    " token_comment
    2980 *&---------------------------------------------------------------------*
    2981 *&      Form  create_lang_info
    2982 *&---------------------------------------------------------------------*
    2983 *       add default language to rtf
    2984 *----------------------------------------------------------------------*
    2985 *      -->P_HEADER  text
    2986 *      <--P_RESULT  text
    How do I open the text elements? I need to pass the variable inside SAP Script.
    Please Help. The requirement is pending from very long. Not able to rectify this issue.
    Regards,
    Rekha

    Hi,
    There is a SAP Note about this problem
    566794 - Runtime error: STRING_OFFSET_TOO_LARGE during conversion
    Correction Instructions
    Correction Instructions
    Software Component
    Valid from
    Valid to
    Number
    SAP_BASIS
    46B
    46D
    473267
    SAP_BASIS
    610
    620
    473185
    Support Packages & Patches
    Support Packages
    Software Component
    Release
    Support Package
    SAP_BASIS
    46B
    SAPKB46B48
    46C
    SAPKB46C39
    46D
    SAPKB46D28
    610
    SAPKB61027
    620
    SAPKB62014
    Regards
    Miguel

  • Text elements in the Bex Report

    Bex Gurus,
    When we execute the Bex report, it will display with icons on top as Chart, Filter and Information - Information will display all the text elements as standard. Right now I want to modify these standard elements and disply the text elements which are more meaningful to any business user when they execute any report/query in Bex
    Left Side:
    Current User     II79747
    InfoProvider     ZBYDCTBUD          
    Status of Data     04/18/2008 10:01:05
    Query Technical Name     Y_ZBYDCTBUD_VP_POOL
    Query Description     VP Matrix by Pool - Actual     
    Right Side: (based on Variable Enteries/selection)
    Fiscal Year
    Posting Period
    Value Type
    Version:
    I want to implement this in Bex excel report when we click on Informaion icon which will show the text elements as explaiend above. (I know it is possible with WAD when we design the code)

    You may do this in a workbook inserting Buttons in design mode.
    I dont think so there is an easy way to accomplish this when a report is executed.
    May be possible with lot of coding....

  • Cost element description now showing in Report painter

    Hi,
    I selected to display KEY and DESCRIPTION in the report layout settings for a report painter however the report is displaying only the cost element number and not the description in the rows.
    In this case, how to display the cost element description in the report painter rows?

    Hi,
    ensure that KEY + DESCRIPTION is selected in the layout settings. Description will only appear if it is maintained in the logon-language (means if your logon language is EN but cost element texts are not maintained in EN no descripiton can be seen).
    best regards, Christian

  • GL Account and Cost Element Description

    Hi,
    Does it make good sense that GL account description is 50 char while Cost element description is 40 char?

    Hi newbird,
    Yes SAP standard is set G/L Account Long Text length is 50 char and Cost element description is 40 char. Something like doesn't make a good sense but truely it's SAP standard. : )
    Hope this answer your question
    TQ
    Regards,
    Nazrul

  • Create colum headings using text elements

    Hi Experts,
    I want to create column heading of a report using text element, how can i create create column headings using text elements and how can i use in the top-of-page event.
    Thanks

    Hi,
    1 For Creating Text Element,
    go to Se38 -
    > Write Name of the Program - > Click Change button - > Then go to GoTo on Menu Bar--> text Elements
    > Select Text Symbol
    In First Column( Sym)  Write any Number which is not used  like 001, 002.....
    In Second Column (Text) write in text or description .... like Sales Order....
    U can use this text Symbol in code -
    >  text-001, text-002.....
    2 In order to insert a report heading in to the ALV grid you need to perform the following steps:
                        1. Update 'REUSE_ALV_GRID_DISPLAY' FM call to include 'top-of-page' FORM
                    2. Create 'top-of-page' FORM
    3 In order to add event functionality such as 'END_OF_PAGE' to the ALV grid you need to setup the
      IT_EVENTS option of the ALV function module. Also depending on which event you are using you
       may also need to setup the print parameters by activating the IS_PRINT option. Please note for events
      such as end_of_page, end_of_list etc they will not be displayed on screen but only in the printed
       output.
            Step 1. Add data declaration for events and print parameters
            Step 2. Update 'REUSE_ALV_GRID_DISPLAY' FM call to include parameter 'it_events' and 'is_print'
            Step 3. Add code to setup events table and print parameters
            Step 4. Create event FORM(s), which are executed when event is triggered
    Thanks & Regards,
    ShreeMohan

  • Variable  is used in description text Task description, but does not exist

    Hi,
    I am getting following error in the standard task 207914 ERMS_DECSN.
    Workflow Error
    Variable &REQREQ.REQUISITIONERUSER.ITSDESTINATIONSY& exists in description text Task description, but not in the container
    Message no. 5W146
    Diagnosis
    Variable  is used in description text Task description, but does not exist in the container.
    System Response
    The task could cause workflow errors.
    Procedure
    Correct description text Task description or add the variable to the container.
    Can anybody please guide step by step process to correct this error.
    Regards,
    Deepak

    Hi Deepak,
    I face a similar issue,Task description contains an element which is available in container, but during Check, it throws below error.
    Variable &ZINFO.REASON& exists in description text Task description, but not in the container
    but variable "&ZINFO.REASON&" is not accessed in Task description.
    suggest any ways to check the binding or adjust binding between workflow/task.
    Please provide a solution to fix this error or advice if this error can be ignored?

  • Fm 10: Show Element Descriptive Tags

    Fm 10 > Element Catalog Display Options: what is the option "Show Element Descriptive Tags" supposed to do?
    It's not explained in the Fm 10 Help (or I am unable to find it, but that applies to almost anything I search for in this "Help").
    Thanks
    Yves

    Yves,
    If defined in the EDD using the FM10-new element <DescriptiveTag> additional text will be visible in the element catalog. Lynne Price took advantage of this in her improved template for EDDs, see http://forums.adobe.com/message/3956109#3956109
    It looks like this with the mouse hovering over entry <CommentTable>:
    As I am acustomed to keep my element catalog small I would have to rely on the tooltip appearance. Also, it should be the goal of the EDD designer to select element names which are semantic enough to not need additional information. But anyway, here it is, this feature.
    - Michael
    PS: Further description: http://blogs.adobe.com/tcs/2011/04/framemaker/framemaker-element-description.html
    PS was added by: Michael Müller-Hillebrand

  • Smartforms - How to import ttdtg text elements

    Hello Techies,
    I'm transforming a sapscript to a smartform. In the sapscript they make use of text elements from the ttdtg table. Sapscript knows this a translates an element example &ZTEST& to its corresponding text in the correct language.
    Can this still be used in some way in SMARTFORMS?
    Best Regards,
    Frederik

    Hi
    U can use same but it can be use upto 4.6c only
    otherwise u hav to use
    Text            QTY_TEXT
    Description     Text for Quantity
    <b>Text type</b> <b>Include Text</b>
    Text name         ZGRQTY
    Text object       TEXT
    Text ID           ST
    Language          &W_LANGUAGE&
    regards
    vinod

  • Initialising constants using text-element

    hiii, I want to initialize the constant data object used in my ABAP program with the value of text element, Can anybody plz tell me how to do so?

    Actually in my program I was using some constants data object to hold the description of the field name which will be displayed in ALV list in header. for example,, like this
    *Constants for Field Descriptions:
    Constants:
              c_text1 TYPE descr_40 VALUE 'Material',
              c_text2 TYPE descr_40 VALUE 'Description',
              c_text3 TYPE descr_40 VALUE 'Phys Inv Doc',
              c_text4 TYPE descr_40 VALUE 'Plant'.
    Now i want to make these descriptions <u><b>language independent</b></u> hence i tend to use text element like this:-
        c_text1 TYPE descr_40 VALUE text-001
    but this thing is not working giving some error.

  • DUPLICATE TEXT IN SLIDESHOW

    ELEMENT 9 SLIDESHOW TEXT DUPLICATES HOW DO I FIX THIS RE INSTALLED SOFTWARE

    Hi,
    Can you be a little more specific please.
    What is the text?   caption?
    When do you see the duplicate text?  in the preview display?
    If it is captions, do you add them to the photo in the editor as text?
    When creating a slideshow, there is an option to display captions on the slide - If you add captions in the organizer, then these will be displayed.
    If you have also added the captions as text in the editor then you may see duplicate text.
    If you could include details of your workflow and a screenshot showing the duplicate text, we might be able to help you further.
    Brian

  • In Footer text elements are spliting in smartform

    Hi,
    In smartform, I am using text elements for printing gross / net totals in the Main window -> Table -> Footer. Now problem I am facing is all the set of elements are breaking from page to page. I want it print in one page with out any page break. How should I do that. Please suggest.
    Thanks
    Ram

    Hi,
    In the footer text , in the output options tab ..there is a check box "Page protection".. Check that..
    Documentation for "Page protection"
    In some cases you may want to avoid that text is divided by a page    
    break. Therefore, you can protect text sections with a page protection.
    Thanks,
    Naren

  • Issue with if condition in smartform text elements

    Hi all.
    iam having a problem in smart forms
    itab has 3 fields
    id   matnr    werks
    1 a p1
    1 b p2
    1 c p3
    2 b l1
    2 c l2
    3 q u1
    3 l u2
    i neead output like in the smart form
    -id = 1-
    a p1
    b p2
    c p3
    -id = 2-
    b l1
    c l2
    -id = 3-
    q u1
    l u2
    I have aloop in main window
    itab into wa_itab.
    then i have program lines
    iam writing any perform statment insted iam write the code in here
    input paramters wa_itab-id
    output paramters id
    i declared id type zabc-id under global data in global definations
    CLEAR : ID.
    ON CHANGE OF WA_itab-ID.
    *BREAK point.
    ID = WA_ITab-iD.
    ENDON.
    after the program lines i have a text
    /: if &id& ne ' '.
    ---id = &id& ---
    /: endif
    &wa_itab-matnr&  &wa_itab-werks&
    now i see the output
    -id = 1-
    a p1
    -id=-  i don't need this (&id& has no value)
    b p2
    -id=-  i don't need this
    c p3
    -id = 2-
    b l1
    -id=-  i don't need this
    c l2
    -id = 3-
    q u1
    -id=-  i don't need this
    l u2
    I checked my code if two items have same id the id has no value and you can see the output also
    but for some reason its still goinng into the if condition
    And also is there away that i can debugg my text elements like in scripts. my break point doesn't take me to the text elements
    Thanks

    1. Move only the ID into one internal table say i_id,
    2. Now in your smartform,  create a table and loop at i_id into wa_id.
    3.Print your ID in a text, &wa_id-id&
    3. Now in main area  of the table Create a loop with the internal table you mentioned above with 3 elements, say, i_data into wa_data  give CONDITION as wa_data-id = wa_id-id.
    4. Print your other values &wa_data-matnr& &wa_data-werks&
    5. outside main area, clear the work areas.
    This should work fine as i use the same logic in one of my current developments!!!

  • Text element is not getting printed in the output

    Hi all,
    I'm trying to print address from table KNA1in address window through a text element.
    The corresponding code being :
    In Delivery Prg,
    Data : lv_kna1 type STANDARD TABLE OF kna1,
              lv_adr6 type STANDARD TABLE OF adr6.
    DATA : WA_ADR6 TYPE ADR6.
      SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBPA-KUNNR.
      SELECT SINGLE * FROM ADR6 INTO WA_ADR6 where ADDRNUMBER = kna1-adrnr.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'DELIVERY_ADDRESS'
       WINDOW                         = 'DELIVADR'
    and calling the same text element 'DELIVERY_ADDRESS' as follows in the Script:
    /E           DELIVERY_ADDRESS
    /:           IF &LV_KNA1-TELF1& <> &SPACE&
    IL           Tel.: &LV_KNA1-TELF1&
    /:           ENDIF
    /:           IF &LV_KNA1-TELFX& <> &SPACE&
    IL           Fax : &LV_KNA1-TELFX&
    /:           ENDIF
    /:           IF &LV_ADR6-SMTP_ADDR& <> &SPACE&
    IL           E-mail : &LV_ADR6-SMTP_ADDR&
    /:           ENDIF
    But,this text element is not printing in the output.
    Any pointer on this would be of great help.
    Regards,
    Vamsee Priya.

    yes, it is.
    I'm trying to get the e-mail address from adr6 table with the corresponding address number  from table kna1.
    so I created two tables as below:
      Data : lv_kna1 type STANDARD TABLE OF kna1,
             lv_adr6 type STANDARD TABLE OF adr6.
    DATA : WA_ADR6 TYPE ADR6.
      SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBPA-KUNNR.
      SELECT SINGLE * FROM ADR6 INTO WA_ADR6 where ADDRNUMBER = kna1-adrnr.
    now, I'm trying to fill e-mail adress from lv_adr6. but the problem is lv_adr6 is not getting filled.
    data is coming to work area wa_adr6.
    SAP is not allowing me to write the below statement:
    SELECT SINGLE * FROM ADR6 INTO LV_ADR6 where ADDRNUMBER = kna1-adrnr.
    Now, will any move-corresponding statement from work area to its table works?? Is that logically correct??

Maybe you are looking for

  • Missing XML files in Export of Portal Resource in WebCenter Portal App

    Using JDeveloper 11.1.1.5.0 1) Create a JSF fragment in the Portal Project/WebContent/oracle/webcenter/portalapp/pages -> untiltled3.jsff. 2) From the Component Palette -> Webcenter Content Display Templates, drag a Content Template Def onto the jsff

  • Background-image for commandToolbarButton

    Hi, I want to skin af:commandToolbarButton similar to standard skinned commandbutton. I managed to change the background-image for the link-section, but there seems to be a other section with a background-image which is a little bit bigger than the l

  • Am I allowed to trade an iPod touch 4g for an iPod touch 5g?, Am I allowed to trade an iPod touch 4g for an iPod touch 5g?

    One of my friends told me that you can trade in an iPod Touch 4th Generation and pay $100 for an iPod Touch 5th Generation. Is this true? If so then I want to trade it in.

  • Create database

    Hi Experts, I am installing Solution manager EHP1 on SUSE Linux 10 , SP2 on  Database Oracle 10g . While Instlling , i am struck in the Phase "Create Database " Pls find the error screen shot  ERROR      2009-09-01 09:49:58.594            CJSlibModul

  • Clarification in Archiving

    Hi, Currently we are in 4.6C and  are planning to carry out  archiving for the first time. I would like to know if there is any other transaction code for archival than SARA and is it the job of functional or basis or technical consultants? Thanks Su