Special SQL charater in fields description

Hi,
a custumer user charater as ' " % * on item description or BP descrption. I think that that it's no so good.
Have you the same opinion ? Do you know if there are problem for the future ? ... some of this charater are SQL-use charater.
Regards.

Hi ALessando,
I have not tried this before, but can only see a problem with queries that you are going to run with a like operator instead of an equals. The like operator uses the % as a wildcard.
Hope it helps,
Adele

Similar Messages

  • Field Descriptions in the IDT

    Hello,
    Is there a way to get the field description in IDT 4.1? Currently my universe is incorporated with SAP ECC tables like MARA,MARC etc from the SQL.
    But the fields like MATNR,MMSTA does not come up with the description. The user is writing a WEBi report on top of this universe but having hard time in pulling the fields into report, because its coming up with technical name only not with descrption.
    Any help would be great.
    thanks,
    Vinay

    Then you can change names of target fields in query transform in data Services.
    OR
    You can add field description in IDT.
    So when user move mouse on that fields in query browser of webi report ,he can view field decription.

  • Field Descriptions without TOP OF PAGE

    Hi Experts,
    I have one Z report  and this was written somebody long back.
    This report was normal standard report i.e just writing the table values to screen using WRITE statement.
    Eventhogh there is no TOP OF PAGE event in the report, field names were displaying in the screen output with highlighted color.
    As soon as WITE statement calling, program is displaying fieldnames automatically? how it possible?
    Now, I modified my program by adding another field values to the screen output.
    The field which I added it's not showing field name.
    How can I display my field description to that output. (without adding TOP OF PAGE)
    As I told you report doesn't have TOP OF PAGE event. Please help me.
    Thanks
    Raghu

    Raghu,
    I'm guessing that your report is organized in a tabular form and by field description you mean column headings. There are two ways to display column headings 1) by explicitely writing the WRITE statements to output to the column headings, 2) by maintaining the standard list & column headings. (in ABAP editor follow menu path GOTO>Text Elements>List Headings.
    You can disable the display of standard headings by using addition in NO STANDARD PAGE HEADING as below.
    REPORT  YTEST NO STANDARD PAGE HEADING
                  LINE-SIZE 120
                  LINE-COUNT 65
                  MESSAGE ZMSG.
    Regards,
    Gajendra

  • English Version for field description in CO reports

    Hi,
    I am using a standard SAP report from CO -> example : S_ALR_87013599. However, when logon in English version, the fields description are not in English. Some other reports do not have this problem. When I logon in Chinese language, it is ok. The description will be in chinese.
    Please advise how do I change the fields to English decriptions. And will it affect the chinese language after the change ?
    Thanks.
    Angel.

    Hi,
    Try imporitng the reports when you are log-on in English via OKD3 transaction. This should solve the problem...
    Also check your GCRS (transaction) definitions
    Regards,
    Eli

  • Display Long field Description in 2 lines in Header when using REUSE_ALV_HI

    Hi,
      I am using REUSE_ALV_HIERSEQ_LIST_DISPLAY .
    I need to have 2 lines in the header to display  long field descriptions like
    Ex   Shipment Notification Idoc or Billing Document Cancel  should appear as
    Shipment Notification       Billing Document
    Idoc                                        Cancel
    Is there a way of doing this when calling the above ALV function?
    Thanks
    Prashant

    Hi Prashanta ,
    We can give headers in ALV using short/medium/long text.
    And this comes in one line. You can use short/medium text, if possible.
    Hence , having 2 lines in the header to display long field descriptions is not possible.
    Hope this helps you.

  • Change the field description in the query report

    Dear All,
    I have created a querry using SQVI,It is working fine Now i want to change the field description in the querry report,Please suggest on this.

    Hi,
    follow below steps
    SQVI -> Enter Report name -> Change -> click on layout mode - > Expand tables - > double click on filed names - >
    coming right side you are able see list of output fields .
    Just double click on the field then going to the editable mode Description.
    Thanks
    Balakrishna

  • Multiple lines for field description in ALV

    Hi ,
    Is there any way to display the field description in  multiple lines in ALV grid .
    Regards,
    Pradipta

    Hi pradipta,
    1. No its not possible.
    2. At the most, we can set the WIDTH of the
       column, to ACCOMODATE the field description.
    3. We cannot do WRAP as u require.
    regards,
    amit m.

  • Regarding field description in report

    HI,
    I had made a report in which i am displaying the changes made to a material in a purticular month.
    it is working fine but 1 field i am looking for is d description which is similar to MM04 tcode when we execute there is field called field description and i want to display it my report also.plzz help me out as it is really urgent to me..
    here is d code:-
    REPORT ZNEW01 no standard page heading LINE-SIZE 310.
    TABLES: cdhdr,cdpos.
    DATA : BEGIN OF itab OCCURS 0,
    objectclas LIKE cdhdr-objectclas,
    objectid LIKE cdhdr-objectid,
    username LIKE cdhdr-username,
    udate LIKE cdhdr-udate,
    utime LIKE cdhdr-utime,
    tcode LIKE cdhdr-tcode,
    change_ind LIKE cdhdr-change_ind,
    changenr LIKE cdhdr-changenr,
    END OF itab.
    DATA: BEGIN OF itab1 OCCURS 0,
    OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
    objectid LIKE cdpos-objectid,
    changenr LIKE cdpos-changenr,
    fname LIKE cdpos-fname,
    chngind LIKE cdpos-chngind,
    value_new LIKE cdpos-value_new,
    value_old LIKE cdpos-value_old,
    TABKEY LIKE CDPOS-TABKEY,
    END OF itab1.
    DATA : BEGIN OF it_final OCCURS 0,
            objectclas LIKE cdhdr-objectclas,
            objectid   LIKE cdhdr-objectid,
            username   LIKE cdhdr-username,
            udate      LIKE cdhdr-udate,
            utime      LIKE cdhdr-utime,
            tcode      LIKE cdhdr-tcode,
            change_ind LIKE cdhdr-change_ind,
            changenr   LIKE cdhdr-changenr,
            fname LIKE cdpos-fname,
            chngind LIKE cdpos-chngind,
            value_new LIKE cdpos-value_new,
            value_old LIKE cdpos-value_old,
            TABKEY LIKE CDPOS-TABKEY,
         end of it_final.
    select-options : m_date for cdhdr-udate.
    SELECT objectclas objectid username udate utime tcode change_ind changenr
          FROM cdhdr
          INTO TABLE itab WHERE objectclas = 'MATERIAL' AND
                                change_ind = 'U' AND
                                     udate IN m_date.
    IF NOT itab[] IS INITIAL.
    SELECT objectclas objectid changenr fname chngind value_new value_old TABKEY
            FROM cdpos
            INTO TABLE itab1
            FOR ALL ENTRIES IN itab
            WHERE changenr = itab-changenr and chngind = itab-change_ind.
    ENDIF.
    LOOP AT itab1.
    READ TABLE itab WITH KEY changenr = itab1-changenr.
    it_final-objectid = itab-objectid.
    it_final-username = itab-username.
    it_final-udate    = itab-udate.
    it_final-utime     = itab-utime.
    it_final-tcode    =  itab-tcode.
    it_final-fname    =  itab1-fname.
    it_final-chngind  = itab1-chngind.
    it_final-value_old =  itab1-value_old.
    it_final-value_new =  itab1-value_new.
    it_final-TABKEY = itab1-TABKEY.
    APPEND it_final.
    CLEAR it_final.
    ENDLOOP.
    uline.
    write: / 'ITEMID    C.PERSON     C.DATE      C.TIME   TCODE     OLD VALUE                              NEW VALUE                                   ORG.UNIT'.
    uline.
    loop at it_final.
    write : / it_final-objectid11(11),12 it_final-username,22 it_final-udate,35 it_final-utime,45 it_final-tcode,55 it_final-value_old,94 it_final-value_new,139 it_final-tabkey21(5).
    endloop.
    Edited by: ric .s on Feb 21, 2008 11:48 AM
    Edited by: ric .s on Feb 21, 2008 12:33 PM
    Edited by: Alvaro Tejada Galindo on Feb 21, 2008 3:24 PM

    CASE ausg-tabname.
                  WHEN 'DPROW'.
                    MOVE indtext TO ls_alv_display_position-action.
                    CLEAR lv_orgunit.
                    CONCATENATE text-029 space ausg-tabkey(4)
                                          INTO lv_orgunit RESPECTING BLANKS.
                    MOVE lv_orgunit TO ls_alv_display_position-orgunit.
                    MOVE text-027 TO ls_alv_display_position-description.
                    IF indtext NE text-013.
                      MOVE priod TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE priod TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN 'DGESV'.
                    MOVE indtext TO ls_alv_display_position-action.
                    CLEAR lv_orgunit.
                    CONCATENATE text-029 space ausg-tabkey(4)
                                          INTO lv_orgunit RESPECTING BLANKS.
                    MOVE lv_orgunit TO ls_alv_display_position-orgunit.
                    MOVE text-030 TO ls_alv_display_position-description.
                    IF indtext NE text-013.
                      MOVE priod TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE priod TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN 'DUNGV'.
                    MOVE indtext TO ls_alv_display_position-action.
                    CLEAR lv_orgunit.
                    CONCATENATE text-029 space ausg-tabkey(4)
                                          INTO lv_orgunit RESPECTING BLANKS.
                    MOVE lv_orgunit TO ls_alv_display_position-orgunit.
                    MOVE text-031 TO ls_alv_display_position-description.
                    IF indtext NE text-013.
                      MOVE priod TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE priod TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN 'DMKAL'.
                    MOVE indtext TO ls_alv_display_position-action.
                    CLEAR lv_orgunit.
                    CONCATENATE text-029 space ausg-tabkey(4) space
                                text-050 space ausg-tabkey+4(4)
                                          INTO lv_orgunit RESPECTING BLANKS.
                    MOVE lv_orgunit TO ls_alv_display_position-orgunit.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN 'DMAKT'.
                    MOVE indtext TO ls_alv_display_position-action.
                    MOVE text-025 TO ls_alv_display_position-description.
                    MOVE <key> TO ls_alv_display_position-additional_info.
                    IF indtext NE text-013.
                      APPEND ls_alv_display_position TO
                                              lt_alv_display_position.
                      CLEAR ls_alv_display_position.
                    ENDIF.
                  WHEN 'DMARM'.
                    MOVE indtext TO ls_alv_display_position-action.
                    MOVE text-026 TO ls_alv_display_position-description.
                    IF indtext NE text-013.
                      MOVE <key> TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE <key> TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN 'DMEAN'.
                    MOVE indtext TO ls_alv_display_position-action.
                    MOVE text-051 TO ls_alv_display_position-description.
                    IF indtext NE text-013.
                      MOVE <key> TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE <key> TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN 'DMAEX'.
                    MOVE indtext TO ls_alv_display_position-action.
                    MOVE text-068 TO ls_alv_display_position-description.
                    IF indtext NE text-013.
                      MOVE <key> TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE <key> TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN 'DMAPE'.                                 "ch zu 30e
                    MOVE indtext TO ls_alv_display_position-action.
                    MOVE text-067 TO ls_alv_display_position-description.
                    IF indtext NE text-013.
                      MOVE <key> TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE <key> TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN 'DMLAN'.
                    MOVE indtext TO ls_alv_display_position-action.
                    MOVE text-052 TO ls_alv_display_position-description.
                    IF indtext NE text-013.
                      MOVE <key> TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE <key> TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                  WHEN OTHERS.
                    MOVE indtext TO ls_alv_display_position-action.
                    CASE ausg-tabname.
                      WHEN 'MARA'.
                        MOVE text-055 TO
                                      ls_alv_display_position-description.
                      WHEN 'MARC'.
                        MOVE text-056 TO
                                      ls_alv_display_position-description.
                      WHEN 'MARD'.
                        MOVE text-057 TO
                                      ls_alv_display_position-description.
                      WHEN 'MLGN'.
                        MOVE text-058 TO
                                      ls_alv_display_position-description.
                      WHEN 'MLGT'.
                        MOVE text-059 TO
                                      ls_alv_display_position-description.
                      WHEN 'MBEW'.
                        MOVE text-064 TO
                                      ls_alv_display_position-description.
                      WHEN 'MVKE'.
                        MOVE text-063 TO
                                      ls_alv_display_position-description.
                        include /nfm/m03a1.                           "/NFM/
                      WHEN 'MPOP'.
                        MOVE text-065 TO
                                      ls_alv_display_position-description.
                      WHEN OTHERS.
                        MOVE ausg-tabname TO
                                      ls_alv_display_position-description.
                    ENDCASE.
                    include /nfm/m03a3.                               "/NFM/
                    if ausg-tabname(6) ne '/NFM/T'.                   "/NFM/
                      write: 55 <key>.                                "/NFM/
                    endif.                                            "/NFM/
                    IF indtext NE text-013.
                      MOVE <key> TO ls_alv_display_position-newvalue.
                    ELSE.
                      MOVE <key> TO ls_alv_display_position-oldvalue.
                    ENDIF.
                    APPEND ls_alv_display_position TO
                                            lt_alv_display_position.
                    CLEAR ls_alv_display_position.
                ENDCASE.

  • Field description in selection screen

    Hello,
    Please help me by answering a silly question: what settings have to be done so that in the selection screen for a report the field description to appear instead of the technical field name?
    Regards,
    Ileana

    If it is for a report (a custom developed one i.e. starting with Y* or Z*), the ABAP developer needs to do the setting.
    (S)he needs to make the changes in SE38. Once in the ABAP Editor, Go To --> Text Elements --> Selection Texts and maintain the texts (and Activate).
    If it is for SE16 (Table Display), then the reply by SAP Enjoy is correct.
    If it is for a LIS (or any Information System) report, then the reply by PSantosh is correct.
    Hope this helps,
    Lakshman

  • Field description in roles

    Hi All,
    We are developing a custom application where we need to pull the field description e.g. ACTVT = Activity, BERGRU = Authorization group etc. I need to know how to link the technical name of the field to its description and get the output in a report (e.g as in report USR030 where the field description appears). Any pointers?
    Many thanks
    Vijaya

    Sorry, I misread your question.
    This is indeed a bit trickier because it depends of the field type of the authorization field. You can find this in table AUTHX, but as there are many you cannot reasonably do any download or joining of tables, but would need to do it programmatically.
    See this thread for your options: Authorisation Field Texts - Where are they defined?
    There is an easy way and a hard way
    Cheers,
    Julius

  • Field descriptions not showing in page layout

    I have custom content types with custom fields. The field types vary - text, image, user and so forth. I am building an intranet so this is a publishing site with workflow and I am using custom page layouts with a custom master page.
    The issue I have is that the field controls, whilst all having descriptions, rarely show the description in the custom page layout. They are all shown correctly in EditForm.aspx so I know that they are there. However when editing a page using a custom page
    layout it seems that only UserField types show the description. Below is an extract from a page layout:
    <SharePointWebControls:UserField FieldName="ContentOwner" runat="server"></SharePointWebControls:UserField>
    <SharePointWebControls:TextField FieldName="ContentOwnerRemark" runat="server"></SharePointWebControls:TextField>
    The first field ContentOwner shows the field description. The second does not. I have tried deleting and re-adding, making fields mandatory and optional, but to no avail. If it's not a UserField it doesn't show the description.

    Showing names of Site Columns on a Page Layout
    Thanks. That allows me to do this:
    <SharePointWebControls:FieldProperty FieldName="ContentOwnerRemark" PropertyName="Description" runat="server" />
    However the original question is why is it that the OOTB control only displays the description for UserField and not for other types of field in a custom page layout, whereas it shows all descriptions in EditForm.aspx. I could do what you have suggested but
    it's a lot of work as I have many fields and custom page layouts, and it seems to me that having the OOTB field control on the page should display the description for all field types not just user field types.

  • ORACLE 8I SQL*LOADER DATAFILE의 특정 FIELD DATA를 SKIP하고 LOADING하는 방법

    제품 : ORACLE SERVER
    작성날짜 : 2002-04-09
    ORACLE 8I SQL*LOADER DATAFILE의 특정 FIELD DATA를 SKIP하고 LOADING하는 방법
    ===========================================================================
    아래의 예제와 같이 가변 길이의 filed들이 ',', '|' 와 같은 구분자로
    구분이 되고 있는 경우 oracle 8i부터 제공되는 'FILLER'라고 하는 필드
    구분자를 사용하여 상태인식자로 표시하여 insert시 skip할 수 있다.
    <Example>
    TABLE : skiptab
    ===========================
         col1 varchar2(20)
         col2 varchar2(20)
         col3 varchar2(20)
    CONTROLFIEL : skip.ctl
    load data
    infile skip.dat
    into table skiptab
    fields terminated by ","
    (col1 char,
    col2 filler char,
    col3 char)
    DATAFILE : skip.dat
    SMITH, DALLAS, RESEARCH
    ALLEN, CHICAGO, SALES
    WARD, CHICAGO, SALES
    data loading :
    $sqlldr scott/tiger control=skip.ctl
    결과 :
    COL1 COL3
    SMITH RESEARCH
    ALLEN SALES
    WARD SALES

  • Need to change Field Description

    Hi Experts,
                   After did AFS implementation some fields are added in the COOIS transaction. some of those fields three fields description are showing technical name.. anyone kindly advice to resolve it.
    )  In T-code COOIS
    the technical name S_COMB,S_GRID,S_CATG is coming while searching in Structure
    J_3ACOMORD - Combined order number
    J_3ASIZE- Grid Value
    J_4KSCAT - Stock category
    Here i need to change S_COMB as Combined Order Number..

    Hello
    You must implement the changes described on the following note:
    1661762 - Translation texts missing on Production Order Info. System
    Since there are only manual changes, I'm pasting here for your convenience:
    1. Execute transaction SE38
    2. Enter "PPIO_ENTRY" in the "Program" field
    3. Select the radio button "Text elements" and click on change button
    4. Select the tab "Text symbols" and press the "Last Page" button (Ctrl+Page down)
    5. Enter the following information
    Sym
    Text
    mLen
    ADD
    Display AFS Additional Data
    27
    AFS
    Selection for AFS
    17
    CLC
    Collection
    10
    SEA
    Season
    6
    THM
    Theme
    5
    6. Select the tab "Selection Texts" and add the missing Texts for the following field names
    Name
    Text
    P_AFSSEL
    Display AFS Additional Data
    P_COLLN
    Collection
    P_SEASN
    Season
    P_THEME
    Theme
    S_CATG
    Stock Category
    S_COMB
    Combined Order Number
    S_GRID
    Grid Value
    7. Save and activate
    BR
    Caetano

  • I am hiving some table field descriptions I need in which table these table

    I am having table field descriptions : Order Value,Discount Value,Actual Margin,Actual Margin %.
    I need in which tables these fields are available.

    Hi Bunny:
    1. goto se15
    2. expand abap dictionary
    3. expand fields
    4. double click on table fields
    5. Just paste the description , which you are having in the SHORT DESCRIPTION input area, at the beside screen..like "Order value"
    6. press F8.
    you should get:
    Table Name       Short Description
    Table field                    Short Description
    TREC_FORC_COMPL  Temporary data for the receiving forecast
    TVALUE                         Order value in document currency
    EMBK             Legal Control: License Master - Header Data
    GAUFW                          Value consumed by orders
    Thanks,
    Naveen.I

  • UserTable.txt and UserVariables.txt fields descriptions

    Hello,
    I would like to get UserTable.txt and UserVariables.txt fields descriptions. These two files come in the package.cab obtained from an ACS SE 1113 running V4.2. These files, which uses a CSV format, do not include a heading row with field descriptions, nor i found this information in the ACS documentation.
    The reason for that is that we get a daily copy of package.cab, and from it we would like to write an application to generate a formatted daily report for every user with several fields including those:
    Name
    MaxSession
    MaxSess2
    Profile
    Aging policy
    Description
    So far i was able to discover the columns for Name and MaxSessions. But not the other fields, which are probably also included in the UserTable and Uservariables text files.
    Kind regards.

    Dear Albert
    Why not take a look at aaa-reports! enterprise? We can automatically import the cab file and pull out the data you're after.. plus more besides.
    www.extraxi.com

Maybe you are looking for

  • Error REP-0001 While starting the Report service

    Hi When trying to start the reports service from 9iAS, i am getting error message as "REP-0001 Unable to open the message file", and in the Window Title it shows "Message 16200 not found, No message file for product rw". Regards Ranganath

  • Labview 8 crashes when using Read Labview Measurement File

    Hi All, I am a new user for Labview. I installed Labview 8.0 from the CD (evaluation copy). I was just testing the sample code provided by NI. I opened the "Load from File and Display" example and I was trying to open the properties for the Read Labv

  • How to deal with BP inconsistencies in SRM?

    Dear Experts, How to deal with Business Partner inconsistency in SRM? A BP is damaged beyond repair? Should we delete the BP of the user (SU01 user)? Are we allowed to delete a BP? or do we need to archive the BP? What will happen to the follow-on do

  • Anyone familiar with DiskWarrior?

    It was suggested that I use this app to fix my main drive. I have a Mac Pro with 2 drives and a laptop that I can connect via firewire. what i'm not sure is, how do I go about installing DiskWarrior, onto what drive, and then how to proceed to fix th

  • Installation of flash player11.5.502.149 on mac osx 10.8.2

    i installed the new flash player, better i used to.... but everytime i want to install it on my mac, theres an error and the installation stops... NOW i have a flash player NOT WORKING and cant watch anything on the internet! what can i do now? will