How to get shorttext for the field

Hi everyone,
My question is
The first column is auart(order type) from aufk(order master data)
01     Internal Order (Controlling)
02     Accrual Calculation Order (Controlling)
03     Model Order (Controlling)
04     CO Production Order
When I am printing values of field auart, I am getting 01 printed for Internal order and 02  for Accrual Calculation Order and so on.
How can I print the text Internal order .

Hi venkata,
I'm afraid you are talking about field AUFK-AUTYP (order category) (instead of AUFK-AUART).
That's easy! Just access table DD07T for domname = 'AUFTYP' and ddlanguage = 'EN'. And domvalue_l = (order_category). Then you'll have the description into dd07t-ddtext.
I hope it helps. Best regards,
Alvaro

Similar Messages

  • How to give References for the field in the Abap Query

    Dear Freinds,
               I am not able to get Text for Cost Centre which iam using in My custom infotype , when iam calling the Custom infotype in abap querry i dont find the T symbol for my field Cost Centre , since i have created in my custom infotype for Cost Centre similar to the infotype 0001. When i look at the
    infotype 0001 fields in my abap query i can see that there is T field for P0001-KOSTL and again if i double click on it i can see that in the REFERENCES Tab i can see " Function Module:HR_TXID_KOSTL" . Could any one let me how i can assign to my custom field "Function Module:HR_TXID_KOSTL " in the References Tab.
    Regards
    divya

    solved the problem

  • How can we sum for the field on alv grid

    Dear Freinds,
                   I am having the field count .....in the ouput (iam using alv grid) .......which dispalys  the id's which are identical .
    i have scneario similar to the below in my ALV Output
    ID                count         total
    4000              3              100
                                          100
                                         200       Can i get count 3 also along with 200 in alv?
    i am using the code as follows for count can any one please let me know.
    my earlier question which i put was confusing.........so i am givin the qustion again
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 1.
      ls_fieldcat-fieldname    = 'ORGUNIT'.
      ls_fieldcat-seltext_l    =  text-015.  "'Orgunit'.
      ls_fieldcat-key          = 'X'.
      ls_fieldcat-key_sel      = 'X'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 2.
      ls_fieldcat-fieldname    = 'COUNT'.
      ls_fieldcat-seltext_l    = 'H.Count'.
      ls_fieldcat-outputlen    = 4.
      ls_fieldcat-do_sum       = 'X'.
    ls_fieldcat-datatype    = 'NUMC'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname   = 'TOTAL'.
      ls_fieldcat-seltext_m   = 'total'.
      ls_fieldcat-col_pos     = 3.
      ls_fieldcat-outputlen   = 17.
      ls_fieldcat-do_sum      = 'X'.
      ls_fieldcat-datatype    = 'CURR'.
      append ls_fieldcat to fp_i_fieldcat.
    Please let me know how can do if so what is the parameter i have to change for COUNT
    regards
    syamal

    Hi Shamala Kiran.
                          My name is also kiran.I have a develop a code for u.Actually i cant understand your code.But i know ur problem .Plz check that code.In that code i develop a subtotals and grandttotal.Plz observe the FORM "FIELD CATALOG" in that observe the NETWR FIELD and observe the FORM SORTCATALOG then ur problem will be solved.
    Copy the the below code and execute that code and the result.
    If u r Satisfied with the answer plz give the REWARD POINTS.
    CODE:
    Type Pools
    TYPE-POOLS:slis.
    Tables
    TABLES: vbak,vbap.
    Global Variable
    data: w_var type i.
    Global Data
    DATA:it_fieldcat TYPE slis_t_fieldcat_alv,
         wa_fieldcat TYPE slis_fieldcat_alv,
         it_sortcat TYPE slis_t_sortinfo_alv,
         wa_sortcat  LIKE LINE OF it_sortcat.
    Internal Table
    data: BEGIN OF it_salesorder OCCURS 0,
            vbeln LIKE vbak-vbeln,    " Sales Document Number
            posnr like vbap-posnr,    " Sales Doc Item
            netwr like vbap-netwr,    " Net Value
          END OF it_salesorder.
    SELECT OPTIONS
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.   " Sales Document Number.
    SELECTION-SCREEN END OF BLOCK b1.
    Initialization
    INITIALIZATION.
      PERFORM initialization.
    *&      Form  initialization
          text
    -->  p1        text
    <--  p2        text
    form initialization .
      s_vbeln-sign   = 'I'.
      s_vbeln-option = 'BT'.
      s_vbeln-low    = '4969'.
      s_vbeln-high   = '5000'.
      APPEND s_vbeln.
    endform.                    " initialization
    Start Of Selection
    START-OF-SELECTION.
      PERFORM field_catalog.   "For Structure Creation
      PERFORM fetch_data.      "Get the Data From DB Table
      PERFORM sorting USING it_sortcat.
    End Of Selection
    END-OF-SELECTION.
      perform display_data.
    *&      Form  field_catalog
          text
    -->  p1        text
    <--  p2        text
    form field_catalog .
      wa_fieldcat-col_pos       = w_var.          " Column Position Variable
      wa_fieldcat-tabname       = 'IT_SALESORDER'. " Internal Table Name
      wa_fieldcat-fieldname     = 'VBELN'.         " Field Name
      wa_fieldcat-key           = 'X'.             " Blue Color
      wa_fieldcat-ref_tabname   = 'VBAK'.          " Table Name
      wa_fieldcat-ref_fieldname = 'VBELN'.         " Field Name
      wa_fieldcat-seltext_m     = 'Sales Doc No'.  " Display Text In Screen
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat.
      ADD 1 TO w_var.
      wa_fieldcat-col_pos       = w_var.          " Column Position Variable
      wa_fieldcat-tabname       = 'IT_SALESORDER'. " Internal Table Name
      wa_fieldcat-fieldname     = 'POSNR'.         " Field Name
      wa_fieldcat-ref_tabname   = 'VBAP'.          " Table Name
      wa_fieldcat-ref_fieldname = 'POSNR'.         " Field Name
      wa_fieldcat-seltext_m     = 'Sales Doc Item'. " Display Text In Screen
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat.
      ADD 1 TO w_var.
      wa_fieldcat-col_pos       = w_var.          " Column Position Variable
      wa_fieldcat-tabname       = 'IT_SALESORDER'. " Internal Table Name
      wa_fieldcat-fieldname     = 'NETWR'.         " Field Name
      wa_fieldcat-ref_tabname   = 'VBAP'.          " Table Name
      wa_fieldcat-ref_fieldname = 'NETWR'.         " Field Name
      wa_fieldcat-do_sum        = 'X'.             " Sum
      wa_fieldcat-seltext_m     = 'Net Value'.  " Display Text In Screen
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat.
      ADD 1 TO w_var.
    endform.                    " field_catalog
    *&      Form  sorting
          text
         -->P_IT_SORTCAT  text
    form sorting using p_it_sortcat TYPE slis_t_sortinfo_alv.
      wa_sortcat-fieldname = 'VBELN'.
      wa_sortcat-up        ='X'.
      wa_sortcat-subtot    = 'X'.
      APPEND wa_sortcat TO p_it_sortcat.
    endform.                    " sorting
    *&      Form  display_data
          text
    -->  p1        text
    <--  p2        text
    form display_data .
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
        I_CALLBACK_PROGRAM                = SY-REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
        IT_FIELDCAT                       = it_fieldcat
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
        IT_SORT                           = it_sortcat
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
      TABLES
        t_outtab                          = it_salesorder
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.                    " display_data
    *&      Form  fetch_data
          text
    -->  p1        text
    <--  p2        text
    form fetch_data .
    select a~vbeln
           posnr
           b~netwr
      from vbak as a
    inner join vbap as b on  avbeln = bvbeln
      into table it_salesorder
      where a~vbeln in s_vbeln.
    endform.                    " fetch_data

  • How to get description from the field name

    Hello fellow SAP Fanatics,
    I am trying to find an easy way to get the description of a field if I know the technical name. I know I can view them in tables but is there one place where I can just look up the field and get the description?
    Thanks.

    Hello
    For all the tables, descriptions and fields you can refer to these tables:
    DD02L : ALL SAP TABLE NAMES
    DD02T : DESCRIPTION OF TABLE NAMES
    DD03L : FIELDS IN A TABLE.
    Moreover you can always goto the menu on the selection screen of the table and goto Settings > User Parameters > Key word > Field name / label
    Hope this helps

  • How to interchange sign for the field

    Hello Experts,
    My interface is ABAP proxy to JDBC , ECC is sending the data PI has peocessed succesfully but it in receiver channel throwing Invalid identifier i find that Paylaod has one field like
    <STOCK_QTY>58.931-</STOCK_QTY>  in this quantity has negative value,sign is after the value data base is not accepting this format it will accept
    <STOCK_QTY>-58.931</STOCK_QTY> it will accept this format sign should be before the value.How to change the sign to before the value when it is after the value what function i has to use for changing like this
    And one more if STOCK_QTY comes with positive nothing changes has to be done only if it is negative sign after the value we have to change the sign to before the value.
    Any help is highly appreciated
    Regards
    Praveen

    Praveen
               Constant: '-'---\
                             Concatenate----\
    STOCK_QTY ----- Replace ----/           |
    Constant: '-'------/                    |
    Constant: ''------/                    |
                                            |
                                            |
    STOCK_QTY -->EndsWith ------------------If ------------------Target
    Constant: '-'------/                    |
                                            |
    STOCK_QTY -----------------------------/
    Regards
    Raj

  • How to get Tables for the datasource

    Hi ,
    When i have a datasource,How do i get to know..What are the table for that data source.
    Thanks,
    Kiran.

    Hi,
    In ECC:
    1. goto RSO2 and give datasource name and display, if it is SAP defined datasource it will display some warning message in Status bar, so again press Enter Button and then see teh datasource there you can fine FM, Table/VIiew, InfoSet like that, in this way you can fine, if it is build on Function Module then you need to see that FM and debug and find. For LO dataSources you can fine in LBWE.
    https://wiki.sdn.sap.com/wiki/display/BI/BWSDMMFIDATASOURCES
    Thanks
    Reddy

  • How to get updates for the ThinkCentre 58P shown below?

    I cannot seem to post pictures from a screen shot; so I have type it in below:
    From a programs called Driver Detective which if I want to have solve cost me $40!
    Your Driver Problems
    IDE ATA/ATAPI controllers (Out of date: 1)
       Standard AHCI 1.0 Serial ATA Controller
    System devices (Out of date: 4)
    (2) Intel(R)  4 Series Chipset PCI Express Root Port - 2E11
         Intel(R)  ICH10 Family SMBus Controller - 3A60
         Intel(R)  ICH10 Family SMBus Controller - 3A14
    Universal Serial Bus controllers (Out of date: 8)
    (8) Intel(R) ICH10 Family USB Enhanced Host Controller - 3A6A
    Here is my machine: MT-M.7483-XB4
    Serial number is: MJ02768
    I would like to have links so I can update the above:
    I have  installed: Lenovo Device Experience -  Updates and Drivers and Lenovo ThinkVantage Tools.  Nothing happens no finding of these items and you cannot pick on the Lenvovo support website in the search and drill down under machine type; you do not get these topics.   At least I cannot locate them.
    Any help would save me $40 and hopefully I can get it from Lenovo technical support!  I have done the result of the items from Intel tecnical support.  But I don't know what Intel consider this motherboard or I could do the rest of the items from Intel too.  There is a list of generic motherboards and I don't have a clue as to which one is the right one!
    Please help me!  Spend about 8 hours working on this list from 20 plus items now to only five left!
    Solved!
    Go to Solution.

    Forgot to mention that when I run System Update 5: if come up with Password Manger as the optional update only.
    When I go and do the Support  - Drivers & Download for Chipset it come up with this shown below:
                Chipset
    Intel Active Management Technology driver for Windows 7 (32-bit and 64-bit), Vista (32-bit and 64-bi...
    Not sure what that is I am updating?  Is it the Intel Management Engine Interface?
    Oh I skip a couple of item in the list too and one of them is shown below:
    Universal Serial Bus Controller
    Lost totally!  Help me please!

  • How to get password for the Sql server 2008 r2

    Always when a user forgets a  SA password , Blogs suggest to get into the server through windows Authentication having SysAdmin , and change the password for user SA.
    Sir,
    Is there any other methods to retrieve or see the password what we assigned before.
    Example: If SA Password is assigned as Test 
                   I have to get Test
    , Instead of changing password.
    Thanks in Advance.
     

    Hello,
    Dont you think it would create a Havoc if one could specifically see other admins password.Apply Gumption, you wont use SQL server if that feature is there.You cannot obtain password for other users.
    If user forgets it change it ,there is no restriction on changing.
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • How to handle "Validation failed for the field - Tax code" issue?

    We had mass uplaod the order that create on Mar with tax code effective date on Apr. Now we would like return on this order  and getting error of "Validation failed for the field - Tax code". How to handle this issue?

    Hi
    You will have to check if the Tax_Code of RMA being received is the same as the one in the related sales order.
    If not you will need to use the same tax_code.
    Refer below document : Doc ID 1584338.1

  • I have an apple ID for the South African iTunes store how do I get one for the US store?, I have an apple ID for the South African iTunes store how do I get one for the US store?

    I have an apple ID for the South african i Tunes store.  How do I get one for the US one?  I want to use Mind Snacks.

    You will need a valid billing address in the US and be in the US when you want to buy anything from it. You can try requesting that it be added to the South African, but ultimately it's the app's developer that will have to grant Apple a licence to sell it there : http://www.apple.com/feedback/itunes.html

  • How do you get apps for the 1st generation iPod touch

    How do I get apps for the 1st generation iPod touch?

    By updating the iOS on the iPOd.  The 1G can go as high as 3.1.3.  That works with a lot of apps.  But some apps require a higher iOS and/or newer iPod.
    Purchasing iOS 3.1 Software Update for iPod touch (1st generation)

  • How to find table name for the fields from Standard Extractor in CRM system

    How to find table name of fields from the standard extractor in CRM system ?
    e.g. We use LBWE TCode in R/3 system to find table name for the field from Extractor VCSCL(e.g.).
    Likewise is there any way to find table name for the fields from Standard extractor like 0CRM_LEAD_I.

    Hi ,
    Please find the link below for understanding BW CRM analysis.
    http://help.sap.com/bp_biv135/html/bw.htm
    activate the CRM DSs by scenario:
    1) Activate the application component hierarchy (tcode RSA9). Changes made to the application component hierarchy in the CRM system can be transferred to the BW using the "Edit Application Component Hierarchy" (SBIW - Postprocessing of DataSources).
    SAP Note 434886 must be implemented in CRM 3.0 before the application component hierarchy is activated.
    2) Activate the Business Content DataSources (tcode RSA5).
    Select/enter the application component and choose Execute (F8).
    To compare the shipped and active versions, choose the 'Select Delta' pushbutton. If there is no active version of the DataSource, it is selected automatically.
    To activate the shipped version, choose the 'Transfer DataSources' pushbutton.
    3) Management of the versions of the BW-Adapter metadata (tcode BWA5). All DataSources are displayed that are managed by the BW Adapter.
    As in transaction RSA5 (Service API Metadata Activation), the 'Select Delta' function can be used to select the inactive DataSources or compare shipped and active versions.
    You can also go directly to the screen for maintaining DataSources that are managed by the BW Adapter.
    The 'Compare Version' function makes a detailed comparison of the shipped and active versions.
    All BW-Adapter metadata is considered when versions are compared:
    Header information (Table SMOXHEAD)
    Mapping information (Table SMOXRELP)
    Global selection conditions (Table SMOXGSEL)
    Attribute key fields (Table SMOXAFLD)
    Hope this helps.
    Regards,
    csm reddy

  • HT4463 I attempted to purchase Civilizations V on my Macbook Pro, yet the application will not download.  How can I either get the download to complete or get refunded for the purchase?

    I attempted to purchase the app Civilization V for my Macbook Pro, but the app will not download.  How can I get the app to either finish the download or get refunded for the purchase?

    Yuk, what a horrible app. But if you insist...
    Mac App Store: How to resume interrupted downloads
              http://support.apple.com/kb/HT4485

  • I have canceled my account same day and joining because the convert PDF to word did not convert correctly how to get credit for cancelled membership

    I have canceled my account same day and joining because the convert PDF to word did not convert correctly how to get credit for cancelled membership

    You need to contact Adobe Customer Support :
    They will check and assist you. (Live Chat)
    Contact Customer Care

  • How to create Search help for the field /SAPSLL/PRGEN-ATTR20V

    Hi ,
    I need to add a search help for the field /SAPSLL/PRGEN-ATTR20V and their is a chk table used for this field is /SAPSLL/TCOATV20.
    In this table /SAPSLL/TCOATV20-ATTRV20V is a Primary key field.
    How can I add search help for this field?
    Any suggestions will be appreciated!
    Regards,
    Kittu

    HI,
    Fixed on my own..
    I am closing this thread!
    Thank you!
    Kittu

Maybe you are looking for

  • Cocoon - Tomcat - APEX for FOP PDF printing

    I'm trying to setup Cocoon & Tomcat with APEX 4.1 for doing PDF printing of some reports. I'm using Linux 64bit, Tomcat 7.0.22, Cocoon 2.1.11, and JDK (build 1.6.0_24-b07). I followed Carl Backstrom's very helpful [blog entry|http://carlback.blogspot

  • Nokia E72: Memory full. Delete or move some data f...

    HI All, I've recently purchased a Nokia E72 phone for business use and after about three days of trouble-free operation it has suddenly run out of space on the phone system drive C:. This is very surprising as I am not aware of installing any apps or

  • "CMD_PATTERN= CGEN_PRBS" option doesn`t work properly in example design

    Hi,  I am using V6; MIG 3.6.1. When I use the option above, CGEN_PRBS, the memory controller is trying to wirte and read to "bank x" and Micron DDR3 memory model gave me the error, stopping simulation.   parameter BEGIN_ADDRESS           = 32'h05fff3

  • URGENT !!! Detail Event in Agenda

    Hello, I have made an Agenda. But I have a problem with that. My Agenda show upcoming events. If I click on an event then I get every upcoming events. I know that if you link a report with a report, you must use a bind variable in your detail report

  • DBMS_OUTPUT.put_line  to file

    Hi I have a PL/SQL code wiht DBMS_OUTPUT , I must print result in file   DECLARE     myvar   integer;   BEGIN     bla     bla     etc    DBMS_OUTPUT.PUT_LINE ('my data is ' : myvar); END ;How can I do ? tks