How to change the description of a program or report

Hi,
I had copy a report of and changed thereby the name.
But the description is still the same and I can't find
a way to change this.
The problem with the description is that it appears
as program-title in selection-screen-->select-options.
Thanks for help

Hi
change the attributes or
In the REPORT along with name
declare NO STANDARD PAGE HEADING
it will not display the report description in the output.
Reward points for useful Answers
Regards
Anji
Message was edited by:
        Anji Reddy Vangala

Similar Messages

  • How to change the description

    hi all,
    can any body tell how to change the description of the field in the sales order.ex pricing date to customer date some thing like that

    (same answer) for the same question
    Hi,
    to modify the description of field :
    SE38 with program : RSMODWRD
    Enter your field (data element) + language.
    Another way :
    TCode : CMOD and in menu bar Goto / Text enhancements / keywords/Change
    I think, a direct transaction exists but i don't find.
    Regards,
    Lionel

  • How to change the description in CV03(N) transaction ?

    How to chnage the long test description in CV03N transaction  
    Posted: Jan 10, 2010 11:36 PM     Edit          Reply 
    Hi Friends,
    I have a requirement as below:
    1. Excecute the transaction CV04N
    2. Give Document value(s) and Excecute
    3. Double click on any row on the ALV generated which takes you to CV03N transaction
    4. Here in the additional data Tab, I need to concatenate Subject1,Subject3,Subject3 values and this value need to be put Description in the Document data Tab.
    Ex:
    If Subject1 = Test1, Subject2 = Test2 and Subject3 = Test3 then i have to change the description as Test1
    Test2 Test3 When the change followed by save is clicked.
    Please drop your suitable answers ASAP.
    Below is the code i have used using the BADI 'DOCUMENT_MAIN01' and the method 'AFTER_SAVE'.
    Below is the code :
      TYPES:
        BEGIN OF ty_ausp,
          objek TYPE ausp-objek,        "Key of object to be classified
          atinn TYPE ausp-atinn,        "Internal characteristic
          atwrt TYPE ausp-atwrt,        "Characteristic Value
        END OF ty_ausp.
      DATA:
        w_objek      TYPE ausp-objek,
        w_ltext(120) TYPE c,
        w_name       TYPE thead-tdname,        "Name
        wa_drat      TYPE drat,
        wa_ausp      TYPE ty_ausp,
        wa_tline     TYPE tline,
        wa_draw      TYPE draw,
        t_ausp       TYPE STANDARD TABLE OF ty_ausp,
        wa_thead      TYPE thead,              "SAPscript: Text Header
        t_tline      TYPE STANDARD TABLE OF tline.
      CLEAR w_objek.
      w_objek+0(3)  = draw-dokar.
      w_objek+3(25) = draw-doknr.
      w_objek+28(2) = draw-dokvr.
      w_objek+30(3) = draw-doktl.
      SELECT objek                         " Key of object to be classified
             atinn                         " Internal characteristic
             atwrt                         " Characteristic Value
        INTO TABLE t_ausp
        FROM ausp
       WHERE objek = w_objek
         AND atinn IN ('0000000858', '0000001038', '0000001039' ).
      IF sy-subrc = 0.
        SORT t_ausp BY objek atinn.
      ENDIF.                               " IF sy-subrc = 0.
      LOOP AT t_ausp INTO wa_ausp.
        CONCATENATE w_ltext wa_ausp-atwrt INTO w_ltext SEPARATED BY space.
      ENDLOOP.                             " LOOP AT t_ausp INTO wa_ausp.
      CLEAR w_name.
      MOVE draw TO wa_draw.
      w_name+0(3) = wa_draw-mandt.
      w_name+3(3) = wa_draw-dokar.
      w_name+6(25) = wa_draw-doknr.
      w_name+31(2) = wa_draw-dokvr.
      w_name+33(3) = wa_draw-doktl.
      REFRESH t_tline.
      CALL FUNCTION 'DELETE_TEXT'
        EXPORTING
        CLIENT                = SY-MANDT
          id                    = 'LTXT'
          language              = 'E'
          name                  = w_name
          object                = 'DRAT'
        savemode_direct        = ' '
        textmemory_only        = ' '
        local_cat              = ' '
       EXCEPTIONS
         not_found              = 1
         OTHERS                 = 2.
      IF sy-subrc <> 0.                    "IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.                               "IF sy-subrc <> 0.
      wa_tline-tdformat = '='.
      wa_tline-tdline = w_ltext.
      APPEND wa_tline TO t_tline.
      wa_thead-tdobject = 'DRAT'.
      wa_thead-tdname = w_name.
      wa_thead-tdid = 'LTXT'.
      wa_thead-tdspras = 'E'.
    wa_thead-tdtitle = w_ltext.
      DATA:
        w_function TYPE c,
        wa_newheader  TYPE thead.
      CALL FUNCTION 'SAVE_TEXT'
        EXPORTING
         CLIENT                = SY-MANDT
          header                = wa_thead
          insert                = ' '
         SAVEMODE_DIRECT        = 'V'
        OWNER_SPECIFIED       = ' '
        LOCAL_CAT             = ' '
       IMPORTING
         function              = w_function
         newheader             = wa_newheader
        TABLES
          lines                 = t_tline
       EXCEPTIONS
          id                    = 1
          language              = 2
          name                  = 3
          object                = 4
          OTHERS                = 5.
      IF sy-subrc <> 0.                    "IF sy-subrc <> 0.
    Raise message
      ENDIF.
      REFRESH t_tline[].
      CLEAR wa_thead.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
        CLIENT                        = SY-MANDT
          id                    = 'LTXT'
          language              = 'E'
          name                  = w_name
          object                = 'DRAT'
        ARCHIVE_HANDLE                = 0
        LOCAL_CAT                     = ' '
       IMPORTING
         header                        = wa_thead
        TABLES
          lines                         = t_tline
       EXCEPTIONS
         id                            = 1
         language                      = 2
         name                          = 3
         not_found                     = 4
         object                        = 5
         reference_check               = 6
         wrong_access_to_archive       = 7
         OTHERS                        = 8.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Please help why it is not getting effeted OR
    Give a differnt way of Solving this issue.
    Please drop your suitable answers ASAP.
    Regards,
    Rama.P

    Hi Claud,
    Go to SPROSRM ServerCross App Basic SettingsNumber rangesDefine transaction typesSelect BUS2200 and double click on transaction typesHere you will see BID (transaction type)--Just double click on this and in the screen that follows change the description.
    PS: The system will generate a transport request.
    Regards,
    Nikhil

  • How to change  the Timestamp In  a program

    Hi,
    We faced a problem today, Some of the critical jobs from a source system are going to short Dump. Unfortunately we couldn't find any lockwaits, deadlocks and any delay in SM37. After analyzing, we came to know that, SAP trace indicates failure occured during program /GLB/RGTCSR_RC_INV execution :
    B  *** ERROR => DISTRIBUTED_TA_FAILED:
    The timestamp for the execution of the program has been set as "20.070.801.000.000", that does mean it will try to retrieve all values after the date 01.08.2007 and the time 00:00:00. Now checking on the code we can see there is a logic written which retrieves the values from the table /GLB/RGTT_CS_RC, checking on the Goods Movement status (wbsta) , timestamp and document number (VBELN_SO) if any. For this case VBELN_SO is blank and vbsta is equal to space (Not Relevant). This retrieval helped to logic to retrieve 706706 document and items from the table. This amount of data is huge and we would like to request BW team to run the program with a smaller timestamp to avoid any inconsistencies and also to avoid the dumps which can occur when we try to play with this huge entries.
    Checking on the code, two similar selects have been written on the same table /GLB/RGTT_CS_RC, firstly to select all the document numbers relevant to the timestamp and wbsta value and secondly to check "Get records that may have already been used", depending on the document number and item numbers. But as we are doing a select * it will automatically select VBELN_SO as well as POSNR_SO.  Hence, the second select from the same table is irrelevant and it will only effect the performance of the system, in the worst case it will terminate the program with this huge amount of entries. Hence, this logic has to be combined to one single select for which the first select statement is enough. Playing with a huge amount of data 706706, and retrieving from the same table twice can surely result in a short dump. Also there are couple of loops has been done on the same table which reduces the performance too.
    Possible solution looks like we need to reduce the time stamp and run it,
    can some one tell me how to change the time stamp in a program???

    First check the connection with the source system. If its ok then replicate the datasource and activate. Then try with running job.
    Time stamp error usually happens when source system in BI and r/3 side differs.

  • How to change the description of Transaction Type

    hi ,expert
       i want to change the description of Tansaction type.
        eg, change the description of BUS2200 :'RFx  '   to 'RFQ' . 
        please give me some advice. thanks in advance.
         regards
                claud

    Hi Claud,
    Go to SPROSRM ServerCross App Basic SettingsNumber rangesDefine transaction typesSelect BUS2200 and double click on transaction typesHere you will see BID (transaction type)--Just double click on this and in the screen that follows change the description.
    PS: The system will generate a transport request.
    Regards,
    Nikhil

  • How to Change the position of Column in ALV report

    Hi Follks,
        Is is possible to change the position of column in ALV report?.If yes then how?
        Basically my requirement is, that user want afacility where , he should be able to change the position
        of column aftre he runs the report.
        Eg: After running the report , user felt that column 5 should be at position 2 , in that case he should   
               be able to drag column 5 at position 2 and vice versa.
        Please help me, how to solve this issue.
        Note : I am using NW 7.0 SP 9
        Regards
        PG
    Edited by: PG on Apr 13, 2009 11:10 AM

    HI PG,
    do below whie filling the filed catlog
    wa_fieldcat-fieldname        = 'Field1".
    wa_fieldcat-COL_POS = '1',
    append wa_fieldcat to it_fieldcat.
    wa_fieldcat-fieldname         = 'Field2".
    wa_fieldcat-COL_POS = '2',
    wa_fieldcat-fieldname         = 'Field3".
    wa_fieldcat-COL_POS = '3',
    Thanks!

  • How to change the description of a selection screen

    Hi , I created a selection screen with the description as 'Test' , now the program has grown real big . I want to change the desccription to something else as it shows at the top of the selection screen. Can this be done with out copying the program to a new progarm with a new description. I mean , is there a way to change the current description .
    Thank you .

    Hi
    in SE38 Enter the program name.
    Select the Radio button<b> Attributes.</b>
    Change the <b>Title </b>of the Program.
    This title will appear in the selection screen as well as the list by default.
    We can also set this TITLE dynamically using the command.
    SET TITLE-BAR 'T1'.  "double click on T1 and create (Activate) it.
    <b>reward if Helpful.</b>

  • How to change the description of variant article

    Hi All,
    I need to append some value( size or country) to the variant article description.
    suppose if the generic article no is 123456 (football shoe)then the variant article numbers will be
    123456001 , 123456002 etc...which is done by default by SAP. and the description also is taken from geenric article football shoe, same like generic article, this we need to change.
    now the description of the variant article also will be taken from Generic article.
    but here the description is to be chagned(appened) with some value.
    ex. football shoe IN 9 (indicating the India and size 9)...
    iam looking at some enhancement MGW00002 and user exit:EXIT_SAPLMGNK_003, but this is useful only to change the variant article number not description.
    Any hints will be great help.

    Hi,
       I know I am a little to late to the party! But for all those who are going to search for this in the future there is a very good blog...i am posting the link below...
    Basically run the program RDDIT076...
    http://scn.sap.com/community/abap/blog/2015/03/12/program-to-change-transport-request-description-after-release
    Regards,
    Divaker

  • How to change the display in standard program.."SAPLCKML_MR11_ALV"

    hi.... 
    one of the report of finance (SAPRCKMR11)  is calling this program SAPLCKML_MR11_ALV ..for the display...
    i had to add three more fields in the display...
    1) PO quantity    ekpo-menge
    2) PO value         ekpo-netwr
    3) INCOTERM     ekpo-inco1.
    i had try to modify the standard program by copying it...but didnt getting the result.
    please help me .... how to meet the requirement.....  if u can tell please also tell me where in the program i have to do the changes...
    any suggestion is appreciable..
    thanks

    Purchase Order Quantity and price......If you get an answer please advise.
    Thanks
    Justin

  • How to change the table's for an existing report

    Hello,
    How can I change the table names for reports created with a different table name? for e.g If I created a report which included a table called "2009_10_example", How can I change that table to a different table "2010_10_example1".
    I am using Crystal reports 2008, and the reports were created using Report Creating Wizard.
    Thanks,
    Abhishek

    In the Database Menu, there is an option Set Datasource Location.  This allows you to pick a table from the current tables used, and select a table to replace it with.  Press the Update button, and Crystal will swap one for the other.  If the field names and data types are all the same, it will automatically change all references throughout the report to the new table's fields.
    May I suggest that your tables are set up improperly if you have to change report code to run it for different months?  The data should all be in one table with dates, and parameters to select the date range to report on.  (That was said in the spirit of helping...)
    HTH,
    Carl

  • How to change the text variables for a standard report-writer report ?

    I am trying to change the text variables for a report -writer report and transport the same so as to change the title page and the report output heading  .I know the Report-Group 6Z02 and the library 6O1 to which it belongs.I tried using the change transaction GR32 after going to the area menu through FGRP . I try to change the text variables through  but it throws an error "You chose a name in the reserved name range - try different name ".
    I have also tried copying this report into another report and changing the new report . I was able to change and save the text variables . Now when I try to overwrite the original report 6Z02-001 with this new report , it does not allow that.
    Let me know how I can change the text variables for the same

    Can anyone please suggest me what to do here ?

  • How to change the utilised join for a particular report

    Hi,
    I have a discoverer report which is very similar to a previously developed report. I copied the report and now I want to change the join that is utilised by the new one (Two different joins exist between the two folders being used). How can I do this?
    In the report items tab under selected items in edit work sheet I can see the different joins and the one it is currently being used is ticked, i can right mouse click on the joins but the options to add/remove from worksheet are disabled (Greyed out)
    Can anyone tell me how to do this?
    Thanks in advance
    Keith

    Short answer - I'd recreate the new report.
    Long answer - I'm not sure if 10g handles this differently, but I've seen many a Disco 4 report that somehow has a 'memory' that you just can't get rid of.
    For example, if you chose some items from one folder and some others from another folder due to a join, then you deleted all those 2nd folder items, and chose from a third - and you absolutely, positively (thx. fedex) know that there's nothing referring to the original 2nd. folder (ie: no conditions, calculations, functions, etc.), you may very well still see the original 2nd. folder being referred to in the SQL. Sounds strange but it does occur.
    So, again, if 4.x, then for sure I'd start from scratch for the new report. If 10.x, I'd probably still start from scratch as even if fixed, I've just seen it screw up my day too many times in the past to try to copy something that probably only takes 15 minutes of recreation work.
    Russ

  • How to change the channels of an 2D-Axis report using script

    D2ChnX(i),D2CChnX.... doesn't really work
    Please a short example
    Diadem 9.1 on WIN2000
    Attachments:
    Objektgruppe_aendern.VBS ‏3 KB

    Hi PeterBR,
    I hope the following script base functions may help you:
    '-- VBS - Autosequenz - Datei
    '-- Neu erstellt am 22/01/2002 11:26:43
    '-- Ersteller:
    '-- Kommentar:
    Option Explicit
    call SetNewParameter
    Sub SetNewParameter
    Dim iObjNo,sObjType
    call NewParamFor_Main_Frame
    For iObjNo = 1 To ObjectNoMax
    if ( 0 < Len(PicObj(iObjNo)) ) Then
    sObjType = Lcase(PicObjType(iObjNo))
    Select Case sObjType
    Case "freeframe"
    Call NewParamFor_Frame_Obj(PicObj(iObjNo))
    Case "textline"
    Call NewParamFor_Text_Obj(PicObj(iObjNo))
    Case "xy"
    Call NewParamFor_XY_Obj(PicObj(iObjNo))
    Case "xyz"
    Call NewParamFor_XYZ_Obj(PicObj(iObjNo))
    Case "xytab"
    Call NewParamFor_XYTab_Obj(PicObj(iObjNo))
    Case "xyztab"
    Call NewParamFor_XYZTab_Obj(PicObj(iObjNo))
    Case "polar"
    Call NewParamFor_Polar_Obj(PicObj(iObjNo))
    Case Else
    End Select
    End If
    Next
    End Sub
    ' Set for main frame to new colors
    sub NewParamFor_Main_Frame
    ' do something
    end sub
    ' Set for frame objects to new colors
    Sub NewParamFor_Frame_Obj(sObjectName)
    Call GRAPHObjOpen(sObjectName)
    ' do something
    Call GRAPHObjClose(sObjectName)
    End Sub
    ' Set for text objects to new colors
    sub NewParamFor_Text_Obj(sObjectName)
    Call GRAPHObjOpen(sObjectName)
    ' do something
    Call GRAPHObjClose(sObjectName)
    end sub
    ' Set for 2-D Axis system to new colors
    Sub NewParamFor_XY_Obj(sObjectName)
    call GraphObjOpen(sObjectName)
    For iCurveNo = 1 To CurveNoMax
    if D2CURVEOBJ(iCurveNo) <> "" then
    call GraphObjOpen(D2CurveObj(iCurveNo))
    ' do something
    call GraphObjClose(D2CurveObj(iCurveNo))
    end if
    Next
    call GraphObjClose(sObjectName)
    End Sub
    ' Set for 3-D Axis system to new colors
    Sub NewParamFor_XYZ_Obj(sObjectName)
    call GraphObjOpen(sObjectName)
    For iCurveNo = 1 To CurveNoMax
    if D3CURVEOBJ(iCurveNo) <> "" then
    call GraphObjOpen(D3CurveObj(iCurveNo))
    ' do something
    Call GRAPHObjClose(D3CurveObj(iCurveNo))
    end if
    next
    call GraphObjClose(sObjectName)
    End Sub
    ' Set for 2-D table system to new colors
    Sub NewParamFor_XYTab_Obj(sObjectName)
    call GraphObjOpen(sObjectName)
    ' do something
    call GraphObjClose(sObjectName)
    End Sub
    ' Set for 3-D table system to new colors
    Sub NewParamFor_XYZTab_Obj(sObjectName)
    call GraphObjOpen(sObjectName)
    ' do something
    call GraphObjClose(sObjectName)
    End Sub
    ' Set for Polar Axis system to new colors
    Sub NewParamFor_Polar_Obj(sObjectName)
    call GraphObjOpen(sObjectName)
    For iCurveNo = 1 To CurveNoMax
    If D2PolarCURVEOBJ(iCurveNo) <> "" Then
    Call GRAPHObjOpen(D2PolarCURVEOBJ(iCurveNo))
    ' do something
    Call GRAPHObjClose(D2PolarCURVEOBJ(iCurveNo))
    end if
    next
    call GraphObjClose(sObjectName)
    End Sub
    Greetings
    Walter Rick

  • Change the Description of Purchasing Organization

    Hi Frenz,
      Could some body guide me how to change the description for the Purchasing organization?
    Saurabh

    in IMG the path is..
    SAP Customizing Implementation Guide
    Enterprise Structure
    Definition
    Materials Management
        Maintain Purchasing Organization

  • How to change the field length in standard sap program.

    Hi All,
    How to change the field length in standard sap program.
    Urgent
    Example:
    Text1 type c length 75,
    To change :
    Text1 type c length 150,
    Point will be rewarded..
    Thank you,
    Vikram.C

    If the only solution is to change the sap standard program, simply change the program, it will prompt for an access key. This key can be retrieved in the SAP support portal (service.sap.com) at keys and requests, sccr keys, register object.
    Sometimes these actions are outsourced to a competence center, so maybe youre not entitled to do this, in any case ask a resident senior developer for support.
    regards, Rob

Maybe you are looking for

  • Process one set of primary and secondary records at a time

    Need to read and analyze all service lines for every claim I wrote these Statements but they are in a never ending state despite of the fact of setting the claims range to one day. Thank you for any suggestions. Harry set serveroutput on declare v_cl

  • File upload in SAP BI using Webdynpro.

    Hi, I have requirement in Webdynpro, where I need to upload the data from file of type Tab delimited (*.txt) file from desktop. In ECC I know how to upload the file i.e., by using the Function module (FM) 'HR_KR_XSTRING_TO_STRING'. But in SAP BI the

  • Problems with Vista SP1 B

    Hi, i installed the sp beta and now there comes no sound from the front speakers (teufel 7. + audigy2zs). i tried kx drivers, creative drivers, but no solution for the problem... how do i install the original MS drivers (where can i find them)? or co

  • PO confirmation alerts in SUS portal

    I created PO in R/3 and sent to vendor SUS portal. Then vendor didn't confirmed PO so i sent alerts for PO confirmation to vendor.. Now when I am trying to see alerts in SUS portal, its giving error as: "Error in call of back end function for compone

  • Epson Perfection 4490 under PE 12 Editor

    My scanner Epson Perfection 4490 Photo doesn't work no more under PE 12 Editor (formerly it worked under PE 8). Does an upgrade exist?