Sales Text Display

Hi
i displayed the Sales text for one sales order and im struck at displaying all sales order texts
TABLES:VBAK.
SELECT-OPTIONS : S_VBELN FOR VBAK-VBELN.
DATA: BEGIN OF ITAB_VBAP OCCURS 0,
          VBELN LIKE VBAP-VBELN,
          POSNR LIKE VBAP-POSNR,
          ARKTX LIKE VBAP-ARKTX,
      END OF ITAB_VBAP.
data : itab type table of TLINE with header line.
*data : v_name type THEAD-TDNAME.
*data : v_id type THEAD-TDID.
*data : v_object type THEAD-TDOBJECT.
*v_name = '0000004969000010'.
*v_id = '0001'.
*v_object = 'VBBP'.
SELECT VBELN POSNR ARKTX FROM VBAP INTO TABLE ITAB_VBAP WHERE VBELN IN S_VBELN.
LOOP AT ITAB_VBAP.
WRITE: / ITAB_VBAP-VBELN,ITAB_VBAP-POSNR,ITAB_VBAP-ARKTX.
ENDLOOP.
CALL FUNCTION 'READ_TEXT'
  EXPORTING
   CLIENT                        = SY-MANDT
    ID                            = '0001'
    LANGUAGE                      = sy-langu
    NAME                          =  '0005000134000010'
    OBJECT                        = 'VBBP'
  ARCHIVE_HANDLE                = 0
  LOCAL_CAT                     = ' '
IMPORTING
  HEADER                        =
  TABLES
    LINES                         = itab
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.
IF sy-subrc EQ 0.
loop at itab.
write: / itab.
endloop.
ELSE.
WRITE:/ 'Sy-Subrc = ', sy-subrc.
ENDIF

Hello,
What i ur problem?
In itab u must be getting tdformat and tdline.
in the loop you have to display itab-tdline.
Regards,
Neelambari

Similar Messages

  • Report for the list of meterials with  sales text .

    dear all,
    can any body help me in code for  list of meterials with sales text as discription.
    thanks &rgds
    vamsee krishna yadav

    Hi Vamsee
    The table for material related Sales data is MVKE.
    If you want to display materials then you may write a select query on MVKE, selecting Sales Organization and Distributuion Channel.
    the concatenate mat number (with the leading zeros), Sales Org and Dist Channel into what will be the 'Name'
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    id = '0001'
    language = <language>
    NAME = 'Name'
    object = 'MVKE'
    TABLES
    lines = li_lines.
    Now read the li_lines table for the Sales Text.
    Thanks
    Pushpraj

  • Problem in using FM READ_TEXT to read Material Sales Text.

    Hi Guys,
    I am developing a Customer Outstanding report in which I display all the invoices of a particular customer.
    I need  to read "Material Sales Text" which comes under "Item Text" tab in transaction FBL5N.
    I have used READ_TEXT in my program. I have identified the Object, and ID but I am stuck up with the Name. I dont know what Name to pass. I have tried passing the Invoice Number in "Name" but couldnt get the text.
    Request you to please help me out. Please check the below code.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
      CLIENT                        = SY-MANDT
        id                            =    '0001'
        language                      =  SY-LANGU
        name                          =  -
        object                        =  'VBBP'
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      tables
        lines                         =  tl001
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       OTHERS                        = 8
    Thanks.

    *&      Form  READ_TEXT
    FORM read_text  USING    p_tdid  p_tdname
                    CHANGING p_tdline.
      DATA: it_line  TYPE STANDARD TABLE OF tline,
            wa_line  TYPE tline                  ,
            l_tdid   TYPE thead-tdid,
            l_tdname TYPE thead-tdname.
      l_tdid   = p_tdid.
      l_tdname = p_tdname.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          id       = l_tdid
          language = 'E'
          name     = l_tdname
          object   = 'VBBP'
        TABLES
          lines    = it_line
        EXCEPTIONS
          OTHERS   = 8.
      LOOP AT it_line INTO wa_line.
        IF NOT wa_line-tdline IS INITIAL.
          p_tdline = wa_line-tdline.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " READ_TEXT

  • How to insert sales text (MM02) into a single record of a Ztable.

    Hi,
    I'm extracting data from different data base tables and populating a Ztable which has Matnr as primary key and sales text as a field.
    I have already used READ_TEXT to display the text and it is displayed in multiple records which in turn leads to duplication of Material numbers.
    Now I want to avoid duplication of records (Matnr) as this being a primary record, and display the sales text of a particular material number into one single record.
    Can anyone tell me how to insert sales text (MM02) transaction into one single record.
    Thanks,
    Govind

    sorry i am not enough clear about your requirement...
    as i can understand i am explaining to you.
    suppose your itab contains repaeating matnr.
    matnr
    1
    1
    2
    2
    2
    3
    3
    like this.
    data : text(200),
             matnr like mara-matnr.
    loop at itab.
    call READ_TEXT fnmodule.
    loop at tline.
    concatenate text tline-tdline into text.
    endloop.
    matnr = itab-matnr.
    at end of matnr.
    itab1-matnr = matnr.
    itab1-text = text.
    append itab1.
    clear text.
    endat.
    endloop.
    NB change the code as per your requirement
    regards
    shiba dutta

  • Creating Sales Text By BAPI

    Hi
    I am uploading sales text by using bapi BAPI_MATERIAL_SAVEDATA ...
    when i am upload  the  long text it displays Material Created or extenden but it does appear in mm03 sales text...
    I have coded like this..
    {    LOOP AT IT_LT.
        BAPIMATHEAD-MATERIAL = IT_LT-MATNR.
        BAPIMATHEAD-SALES_VIEW = 'X'.
         Sales data
        BAPI_MVKE-SALES_ORG = IT_LT-VKORG.
        BAPI_MVKE-DISTR_CHAN = IT_LT-VTWEG.
        BAPI_MVKEX-SALES_ORG = IT_LT-VKORG.
        BAPI_MVKEX-DISTR_CHAN = IT_LT-VTWEG.
         LONG TXT
        IT_MLTX-APPLOBJECT =  'MKVE'.
        IT_MLTX-TEXT_NAME = IT_LT-MATNR.
        IT_MLTX-TEXT_ID  = '0001'.
        IT_MLTX-LANGU   = 'E'.
        IT_MLTX-LANGU_ISO  = 'EN'.
        IT_MLTX-FORMAT_COL = '*'.
        IT_MLTX-TEXT_LINE = IT_LT-LTEXT.
        APPEND IT_MLTX TO IT_MLTX.
        CLEAR IT_MLTX.
        CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
          EXPORTING
            HEADDATA                   = BAPIMATHEAD
       SALESDATA                  = BAPI_MVKE
       SALESDATAX                 = BAPI_MVKEX
    IMPORTING
       RETURN                     = IT_RETURN1
    TABLES
        MATERIALLONGTEXT           = IT_MLTX.
        READ TABLE IT_RETURN1 WITH KEY TYPE = 'S'.
        IF SY-SUBRC = 0.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              WAIT   = SPACE
            IMPORTING
              RETURN = IT_RETURN1.
    ENDLOOP }
    Can any one

    Hi Nagaraj,
    I have use save_text Fm .
    When i am uploading the  long text i can see the long text in stxh ( through FM read_text in se37..)
    But can't see the long text in mm03 sales text...
    i have Coded like this
       LOOP AT IT_LT.
         TB_LINES-TDFORMAT = '*'.
         TB_LINES-TDLINE = IT_LT-LTEXT.
         APPEND TB_LINES.
         CLEAR TB_LINES.
         THEAD-TDOBJECT = 'MVKE'.
         CONCATENATE IT_LT-MATNR IT_LT-VKORG IT_LT-VTWEG INTO
         THEAD-TDNAME.
         THEAD-TDID = '0001'.
         THEAD-TDSPRAS = 'E'.
         CALL FUNCTION 'SAVE_TEXT'
           EXPORTING
             CLIENT                = SY-MANDT
             HEADER                = THEAD
             INSERT                =   'X'
           TABLES
             LINES                 = TB_LINES
          EXCEPTIONS
            ID                    = 1
            LANGUAGE              = 2
            NAME                  = 3
            OBJECT                = 4
            OTHERS                = 5
         IF SY-SUBRC = 0.
          COMMIT WORK AND WAIT.
        ENDIF.

  • Sales Text

    Hi All,
      I am working on Invoice Smartform ZLB_BIL_INVOICE.
      In output i want to display sales text which is in MM02.For that i use include text in smartform in which i want to define
    TEXT NAME  Material sales organisation distribution Ch
    TEXT OBJECT MVKE
    TEXT ID 0001
    LANGUAGE EN
    But my problem is how to pass fields in TEXT NAME which is combination of these three Material sales organisation and distribution ch?
    there is any field in ZLB_BIL_INVOICE which i can use directly?
    Thank you
    Vijay

    Hi Suhas,
    Since we are doing a custom smartform we need to define what we need in the smartform
    or we need to find the field being passed to the standard text ( text name) by debugging on actions such as change/create and see if it can be made available in smartform
    Otherwise...We need to declare a variable of character type to be passed...
    concatenate in the right order and pass it to the include text
    To understand how exactly the variable is passed go to se37 and pass it to READ_TEXT to see if the retrieval is successful
    eg: consider PO Text & PO Item
    declare : wf_char  in the global variables
    po number :000111
    po item :is 0010
    we need 0001110010
    ....means we need to get po number in one variable with leading zeroes/po item in another with leading zeroes(use CONVERSION_EXIT_ALPHA_INPUT to add leading zeroes for the non-character variable) and move each into a character variable and finally concatenate it to the text name
    Before calling the include text , write program lines of code and fill the wf_char as required
    Finally pass the  TEXT NAME as &WF_CHAR&
    and give option - not to give error messages on fail
    Hope it helps,Pls check and revert
    Regards
    Byju

  • Material Sales Text Problem

    Hi
    I was wondering if there is a way to display Material sales text maintained in one plant(sales org) to be display in all the plants(sales org), which can make the maintenance of the sales text easier,Thanks.
    Regards
    Pinky

    Hi!
    Well, the material's sales text is independent from the plant, it belongs only to the sales organization.
    You can write a small Z-report to list the texts for all sales organization.
    You can select fot the available texts from the STXH, STXL tables.
    TDOBJECT: MVKE
    Use the READ_TEXT function module for readin the texts.
    Regards
    Tamá

  • SALEX TEXT Display in ALV

    Dear Friends.
    I have getting sales text against the material code
    so i want to display it in alv list
    i using string type variable to store the sales text
    but when i run the alv report it came only 127 characters.
    are there any limitations in alv field catalog displaying?
    Thanks in advance.
    Nelson Rodrigo

    Here's a sample code for ur reference
    I hope it will solve ur problem.
    REPORT  ZAFTER_LINE_OUTPUT.
    type-pools:slis.
    DATA :I_CATALOG TYPE STANDARD TABLE OF slis_fieldcat_alv WITH HEADER LINE,
          I_VBAP TYPE STANDARD TABLE OF VBAP with header line,
          I_EVENTS TYPE STANDARD TABLE OF slis_alv_event with header line,
          slis_lineinfo TYPE slis_lineinfo.
    *Data selection
    SELECT VBELN
           MATNR
           ARKTX UP TO 40 ROWS
           FROM VBAP
           INTO CORRESPONDING FIELDS OF TABLE I_VBAP.
    *Populate events
    I_EVENTS-NAME = 'AFTER_LINE_OUTPUT'.
    I_EVENTS-FORM = 'AFTER_LINE_OUTPUT'.
    APPEND I_EVENTS.
    CLEAR I_EVENTS.
    *Populate field catalog
    I_CATALOG-FIELDNAME = 'VBELN'.
    I_CATALOG-ref_tabname   = 'VBAK'.
    I_CATALOG-col_pos       = 1.
    I_CATALOG-ref_fieldname = 'VBELN'.
    APPEND I_CATALOG.
    CLEAR I_CATALOG.
    I_CATALOG-FIELDNAME = 'MATNR'.
    I_CATALOG-ref_tabname   = 'VBAK'.
    I_CATALOG-col_pos       = 2.
    I_CATALOG-ref_fieldname = 'MATNR'.
    APPEND I_CATALOG.
    CLEAR I_CATALOG.
    *Call ALV list
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
      EXPORTING
        I_CALLBACK_PROGRAM = SY-REPID
       I_STRUCTURE_NAME   = 'VBAK'
        IT_FIELDCAT        = I_CATALOG[]
        IT_EVENTS          = I_EVENTS[]
      TABLES
        T_OUTTAB           = I_VBAP[]
      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.
    *&      Form  AFTER_LINE_OUTPUT
          text
    FORM AFTER_LINE_OUTPUT USING P_slis_lineinfo LIKE slis_lineinfo.
    CLEAR I_VBAP.
    READ TABLE I_VBAP INDEX P_slis_lineinfo-TABINDEX.
    IF SY-SUBRC EQ 0.
      SKIP 1.
      WRITE: / I_VBAp-ARKTX .
      SKIP 1.
      ENDIF.
    ENDFORM.                    "AFTER_LINE_OUTPUT

  • Problem in Material master sales text update

    Hi,
      I have make the LSMW for uploading material master sales text update by using standad batch / direct input object 001 program /SAPDMC/SAP_LSMW_IMPORT_TEXTS  but as the formate of NAME required is as below
    Materila code  18 Char             SALES ORG 4 CHAR      DIS. CHANNEL 2 CHAR   total 24 char    but  in our system  some material code is only 6 CHAR  e.g  ABCXYZ   now when we pass the value for name
    ABCXYZ            SORGDC ,  it works  OK  we have to add blank spaces  between material code asnd sales organuization  so that total lenght of material should be 18 char  so is there any option  for this  insted of addin gblank spaces  because  for each material code lenght is diffrent  due to external number range .
    regards,
    zafar
    Moderator Message: Search before you post. If you fail to get an answer, type a question, spell-check it and post it here.
    Edited by: kishan P on Feb 16, 2011 4:47 PM

    from http://help.sap.com/saphelp_erp2005/helpdata/en/f4/b49e8c453611d189710000e8322d00/content.htm
    Text Entry Area 
    Type your text into the text entry lines. You can type continuously: SAPscript fills your text using a line length of 72 characters as soon as you choose ENTER or a function.
    To enter text in the line editor continuously, the checkbox Automatic tab at field end must be marked. For more information on setting automatic tabbing, see Setting Automatic Tabbing and Entering Text.
    Note that the line editoru2019s text filling has no influence on the final appearance of the text. Your text is formatted no earlier than at the time it is displayed or printed. For more information, see Previewing and Printing SAPscript Documents.

  • User exit for sales text

    Hi,
    I would like to ask if you know any user exit where i can add new validation on the values being inputted by the user in the sales text during mm01/mm02..
    thanks!

    Hi,
    Please see the user exits used in mm01 and mm02.
    Transaction Code - MM01                    
    Exit Name           Description
    MGA00001            Material Master (Industry): Checks and Enhancements
    MGA00002            Material Master (Industry): Number Assignment
    MGA00003            Material Master (Industry and Retail): Number Display
    Transaction Code - MM02
    Exit Name           Description
    MGA00001            Material Master (Industry): Checks and Enhancements
    MGA00002            Material Master (Industry): Number Assignment
    MGA00003            Material Master (Industry and Retail): Number Display
    you can use MGA00001 for checks and validations.
    Regards,
    Anusha v.

  • Material master -sales text / purchase order text

    Dear MM experts,
    we are maintaining materials sales text & purchase order text while creating material master.
    sales text is required for our customers quotations & purchase order text is required for our Vendors Purchase orders.
    I have an issue, where sales text in material master is limited to 6.5 inch length, but need 7.5 inch length, where I can set this page length. Also i wanted to have same font characteristics to be changed from exiting font size and font style to required, how to do this?
    pl help &  how the above can be changed from default settings to flexible settings with regard to material master.
    thanks  in advance
    regards
    Srihari

    from http://help.sap.com/saphelp_erp2005/helpdata/en/f4/b49e8c453611d189710000e8322d00/content.htm
    Text Entry Area 
    Type your text into the text entry lines. You can type continuously: SAPscript fills your text using a line length of 72 characters as soon as you choose ENTER or a function.
    To enter text in the line editor continuously, the checkbox Automatic tab at field end must be marked. For more information on setting automatic tabbing, see Setting Automatic Tabbing and Entering Text.
    Note that the line editoru2019s text filling has no influence on the final appearance of the text. Your text is formatted no earlier than at the time it is displayed or printed. For more information, see Previewing and Printing SAPscript Documents.

  • Upload sales text for material master using LSMW direct input method

    Hello Experts,
    I was trying to upload sales text for a material master using LSMW direct input method.
    I followed the following steps for the same
    Tab dlimited Text file format
    MATNR           LONGTEXT                                                     LINE       
    MATERIAL1    LONGTEXT FOR MATERIAL MATERIAL1       1
    Step1 -> Maintain object attributes
    Object -> 0001
    Method-> 0001
    Program name -> /SAPDMC/SAP_LSMW_IMPORT_TEXTS
    Program type -> D
    Step2 -> Maintain Source Structure
    Source structure -> LONG_TEXT            Source structure for long text
    Step 3-> Maintain souce file
    Source Fields
    ZLONG_TEXT             Source structure for long text
                           MATNR                         C(018)    MATNR
                           LTEXT                          C(132)    LTEXT
    Step 4-> Maintain structure relationship
    Structure Relations
    /SAPDMC/LTXTH Long Texts: Header                                           <<<< ZLONG_TEXT Source structure for long text
                  Select Target Structure /SAPDMC/LTXTH .
    /SAPDMC/LTXTL Long Texts: Row                                              <<<< ZLONG_TEXT Source structure for long text
                 Select Target Structure /SAPDMC/LTXTL .
    Step 5-> Maintain Field mapping and conversion rules
    Here i have assigned constan rules to couple of them like
    /SAPDMC/LTXTH                  Long Texts: Header
    Fields
       OBJECT                Texts: Application Object
                                    Rule :   Constant
                                    Code:    /SAPDMC/LTXTH-OBJECT = 'MVKE'.
       NAME                  Name
                                    Source:  ZLONG_TEXT-MATNR (MATNR)
                                    Rule :   Transfer (MOVE)
                                    Code:    /SAPDMC/LTXTH-NAME = ZLONG_TEXT-MATNR.
       ID                         Text ID
                                    Rule :   Constant
                                    Code:    /SAPDMC/LTXTH-ID = '0001'.
       SPRAS                 Language Key
                                    Rule :   Constant
                                    Code:    /SAPDMC/LTXTH-SPRAS = 'E'.
    /SAPDMC/LTXTL                  Long Texts: Row
      Fields
        TEXTFORMAT     Tag column
                                    Rule :   Constant
                                    Code:    /SAPDMC/LTXTL-TEXTFORMAT = '/'.
        TEXTLINE             Text Line
                                    Source:  ZLONG_TEXT-LTEXT (LTEXT)
                                    Rule :   Transfer (MOVE)
                                    Code:    /SAPDMC/LTXTL-TEXTLINE = ZLONG_TEXT-LTEXT.
    Step6 -> Specify file
    Legacy Data          On the PC (Frontend)
                 Data                           D:\Sales_Longtext.txt
    Step7 -> Assign File
    ZLONG_TEXT Source structure for long text
                  Data D:\Sales_Longtext.txt
    Step8 -> Read data
    Output result
    Source Structure             Read      Written        Not Written
    ZLONG_TEXT              1                1              0
    Transactions Read:            1
    Records Read:                   1
    Transactions Written:         1
    Records Written:                 1
    Step 8 -> Display read data
    Field Name                    Field Text Field Value
    MATNR                          MATNR      MATERIA1
    LTEXT                            LTEXT      SALES TEXT FOR Material MATERIAL1
    Step 9 -> Convert data
    File Read:          ZNRD_PRJ1_ZNRD_SUBPRJ2_ZNRD_LTEXT.lsmw.read
    File Written:       ZNRD_PRJ1_ZNRD_SUBPRJ2_ZNRD_LTEXT.lsmw.conv
    Transactions Read:                 1
    Records Read:                        1
    Transactions Written:              1
    Records Written:                     2
    Step 10 -> Display converted data
    1 /SAPDMC/LTXTH                   1MVKE      MATERIAL1                                                                   0001E
    2 /SAPDMC/LTXTL                   2/ SALES TEXT FOR Material MATERIAL1
    Step 11 -> Start direct input program
    Output result for the same
    Legacy System Migration Workbench
    Project:                              ZNRD_PRJ1       ORH
    Subproject:                        ZNRD_SUBPRJ2    Upload long text
    Object:                               ZNRD_LTEXT      Long text tru direct input
    File :                                   ZNRD_PRJ1_ZNRD_SUBPRJ2_ZNRD_LTEXT.lsmw.conv
    Long Texts in Total:                                1
    Successfully Transferred Long Texts:  1
    Non-Transferred Long Texts:                 0
    Now when i check the material master sales view -> sales text it is empty.
    Please help me with the same.
    Regards,
    Ranjith N

    Hello Experts, I was trying to upload sales text for a material master using LSMW direct input method.
    I followed the following steps for the same
    Tab dlimited Text file format
    MATNR             LONGTEXT                                              LINE
    MATERIAL1     LONGTEXT FOR MATERIAL MATERIAL1 1 *************************************************************************************************************
    Step1 -> Maintain object attributes
    Object -> 0001
    Method-> 0001
    Program name -> /SAPDMC/SAP_LSMW_IMPORT_TEXTS
    Program type -> D
    Step2 -> Maintain Source Structure
    Source structure -> LONG_TEXT Source structure for long text
    Step 3-> Maintain souce file Source Fields
    ZLONG_TEXT Source structure for long text
    MATNR C(018) MATNR
    LTEXT C(132) LTEXT
    Step 4-> Maintain structure relationship
    Structure Relations 
    /SAPDMC/LTXTH Long Texts:  Header <<<< ZLONG_TEXT Source structure for long text
    Select Target Structure
    /SAPDMC/LTXTH . /SAPDMC/LTXTL Long Texts: Row <<<< ZLONG_TEXT Source structure for long text
    Select Target Structure /SAPDMC/LTXTL .
    Step 5-> Maintain Field mapping and conversion rules
    Here i have assigned constan rules to couple of them like
    /SAPDMC/LTXTH Long Texts: Header
    Fields
    OBJECT            Texts: Application Object
                             Rule : Constant
                              Code: /SAPDMC/LTXTH-OBJECT = 'MVKE'.
    NAME               Name
                             Source: ZLONG_TEXT-MATNR (MATNR)
                             Rule : Transfer (MOVE)
                             Code: /SAPDMC/LTXTH-NAME = ZLONG_TEXT-MATNR.
    ID                     Text ID
                             Rule : Constant
                             Code: /SAPDMC/LTXTH-ID = '0001'.
    SPRAS             Language Key
                             Rule : Constant
                            Code: /SAPDMC/LTXTH-SPRAS = 'E'.
    /SAPDMC/LTXTL Long Texts: Row
    Fields
    TEXTFORMAT  Tag column 
                             Rule : Constant
                             Code: /SAPDMC/LTXTL-TEXTFORMAT = '/'.
    TEXTLINE          Text Line
                             Source: ZLONG_TEXT-LTEXT (LTEXT)
                             Rule : Transfer (MOVE)
                             Code: /SAPDMC/LTXTL-TEXTLINE = ZLONG_TEXT-LTEXT.
    Step6 -> Specify file Legacy
    Data On the PC (Frontend)
                 Data D:\Sales_Longtext.txt
    Step7 -> Assign File ZLONG_TEXT
    Source structure for long text
              Data D:\Sales_Longtext.txt
    Step8 -> Read data
    Output result
    Source Structure            Read                Written                Not Written
    ZLONG_TEXT                  1                       1                            0
    Transactions Read          1
    Records Read:                1
    Transactions Written:      1
    Records Written:             1
    Step 8 -> Display read data
    Field Name             Field Text                      Field Value
    MATNR                    MATNR                         MATERIA1
    LTEXT                     LTEXT                            SALES TEXT FOR Material MATERIAL1
    Step 9 -> Convert data
    File Read: ZNRD_PRJ1_ZNRD_SUBPRJ2_ZNRD_LTEXT.lsmw.read
    File Written: ZNRD_PRJ1_ZNRD_SUBPRJ2_ZNRD_LTEXT.lsmw.conv
    Transactions Read:    1
    Records Read:           1
    Transactions Written: 1
    Records Written:         2
    tep 10 -> Display converted data
    1 /SAPDMC/LTXTH     1    MVKE        MATERIAL1 0001   E
    2 /SAPDMC/LTXTL     2/   SALES TEXT FOR Material       MATERIAL1
    Step 11 -> Start direct input program
    Output result for the same
    Legacy System Migration Workbench Project:
    ZNRD_PRJ1  ORH
    Subproject:   ZNRD_SUBPRJ2     Upload long text
    Object:          ZNRD_LTEXT          Long text tru direct input
    File :              ZNRD_PRJ1_ZNRD_SUBPRJ2_ZNRD_LTEXT.lsmw.conv
    Long Texts in Total:                                1
    Successfully Transferred Long Texts:  1
    Non-Transferred Long Texts:                0
    Now when i check the material master sales view -> sales text it is empty. Please help me with the same.
    Regards,
    Ranjith N

  • Can anyone help me solve the problem of text displaying very rough on my new ASUS PA279Q display monitor running off my MacBook Pro?

    This is regarding a brand new ASUS PA 279Q, 2560 x 1440 IPS monitor. I'm connected via mini display port (into thunderbolt port on MacBook Pro) to display port on ASUS monitor; using cable ASUS included with the monitor. Mid 2012 MacBook Pro…full specs at bottom of this post.
    I have resolution set at 2560 x 1440 which is the native resolution according to the ASUS spec. I tried the other resolutions available in my System Preferences and text displayed rough with those settings too. I've tried adjusting contrast, brightness and sharpness via the ASUS control panel and didn't solve the problem. Also tried calibrating via Mac's system preferences/display and that did not improve text display either. All the text on this monitor (no matter what software I launch, Finder, InDesign, Illustrator, MS Word, Excel, VMWare Windows XP, Windows versions of Word, Excel, Acrobat, etc, all are consistently rendering text the same way ---  ROUGH and with "HALOS" around each letter.
    All point sizes of text and at various scales, display very rough on the screen. (My comparison is the retina display of my MBP and a Thunderbolt…so those two displays are my expectations.) I'm using the same MBP for both a Thunderbolt display (at work) and this ASUS at my home office.
    On the ASUS it's not as noticeable when the text is on white backgrounds, but I'm a graphic designer and compose images with text all day everyday. Not to mention the specs on this ASUS PA279Q indicate it's built for the professional so I would expect better text rendering. I haven't even addressed color calibration and balance yet, because that won't matter to me if the text won't display any better than it is now.
    I was so hopeful after researching all the specs on this monitor it would be a viable alternative to the glossy display of the Thunderbolt display. (Which, I do love the Thunderbolt display for it's clarity and how it displays crisp, clean text at all sizes. (This ASUS actually displays text decently if I increase the text so each letter is about 4" high. Which is pointless for practical purposes -- that'd be like doing page layout through a microscope!)
    I kept holding off on getting a monitor for the home office thinking the Thunderbolt would be updated soon. I'd be sick if I dropped a grand on piece of 2011 technology only to learn a few days later an updated Thunderbolt display hit the market! Not to mention, I'm praying Apple comes out with a less reflective Thunderbolt display. The glare and reflection is the main reason I looked elsewhere for a large monitor; hence my asking for help. Hoping the ASUS text display issue can be worked out. My expectation is for it to display like the MBP retina and Thunderbolt display text. That possible?
    Alternatively, I guess I could do the Apple Refurb Thunderbolt at $799. And see if there's a decent aftermarket anti-glare I could stick on it?
    Thanks for reading my post. Hope someone can help; offer any suggestions? Words or wisdom?
    Has anyone else had similar issues and figured out a resolution? Help!
    MacBook Pro
    Retina, Mid 2012, 2.3 Ghz Intel i7
    8GB 1600 MHz DDR3
    OS X 10.8.5
    NVIDIA GeForce GT 650M 1024 MB
    ASUS PA279Q

    I uninstalled those two items. It still runs slow on start-up and when opening safari, firefox, iphoto, itunes, etc. It's not snappy like it used to be. Any other ideas? Thanks.

  • New Text in the Sales Text View in the Material Master

    Hi All,
    I want to create new text ID in the material master sales text tab
    Can you please help me in how to create the new text for material master sales text tab view.
    Regards
    Rajesh

    Well it may not be possible by standard SAP to create in Material.
    AN alternative might be to use a standard text type and then call it in your Text Determination Procedure.
    T-code "SO10" --> Give "Text Name  & Text ID & Language --> Click at "Create" --> On next screen --> Go to (Menu) --> change editor --> Write the text which you want
    Go to VOTXN , and maintain the required confirguation to get this standard Text copied to the material during order processing.
    Regards
    Sai
    Edited by: Sai on Apr 16, 2010 1:39 PM

  • How to update the sales text in the Sales Order.

    Dear all,
    I want to Update the sales text in the Sales Order. I used the "CREATE_TEXT" but i couldn't update using it.
    Can u please guide me, how to use the Function Module to update the sales Order line item text values.
    Thank U
    Uwanthi

    HI
    Check this link
    User Exit to update Sales order text (Terms of delivery) on saving it
    Regards,
    Krishna

Maybe you are looking for

  • IPhone 3GS stopped showing up in iTunes 11.1.3 Mac OS X 10.7.5

    My iPhone 3GS non longer shows up as a device in iTunes 11.1.3 on my Mac OS X 10.7.5 machine. The only warning was that the last time it was connected I got a message that it could not backup the device. I was still able to sync. Ever since then I ha

  • Slow-motion (high shutter speed) camera to video my golf swing with 240fps

    What is the best model to choose?  Would also like a shutter speed of at least 1/2000. I had a Canon SD4000IS that did the trick but was lost (don't ask how!).

  • Problem with SQL Query

    I am a java developer and having problem writing a simple sql query. Any help is highly appreciated. USER_LOGIN CREATE TABLE USER_LOGIN EMAIL_ADDRESS VARCHAR2(30 BYTE) NOT NULL, PASSWORD VARCHAR2(30 BYTE) NOT NULL, LAST_NAME VARCHAR2(20 BYTE), FIRST_

  • Is Raid 50 Really safe?

    I am interested in striping my to raid 5 arrays together to make 1 raid 50 (2.7 TB) array. My tech department was told by a top apple technician named keith (He supposedly designed much of the xserve raids design) that the raid 50 was not safe and th

  • Calculating percentage change in pivot table

    Hi, In my requirement i want calculate percentage change of revenue in month wise(i.e.,by comparing current month previous month).that result should display in pivot table.but iam not getting values.can any one know.plz give sol ASAP