Table for Long Texts of MICs in Tasklist

Dear All
Can any body tell me from which SAP table i can get the LONG TEXT maintained for MICs in any tasklist.
Table PLMK only shows wether long text maintained or not, but i want the value in LONG TEXT.
thanks
Zeeshan

This may be helpful.
SAP stores comments (text fields) in a separate table. STXH is the text
"header" table (STXD SAPscript text file header). STXH-TDOBJECT =
'KNA1' will bring back all the customer comment headers. STXH-
TDNAME='0000010744' is the header record for the comment for customer
10744.
It is not always so simple to figure out what the TDOBJECT (object needed by function below - sometimes it is a table name, other times...), TDNAME (name needed by function below - sometimes it is a document number & line item or customer number, other times... ) & TDID (id needed by function below - it is always the long text id). There are several methods that can be used. You can create the long text that you are researching and using, SE16 for table STXH search TDLUSER = to your kerberos principal and TDLDATE = to today's date. This is modify date & user. Alternatively, you can find an existing item with the long text and figure out the date and user who last modified it and use this information in your search. Once you have STXH row for text of interest, use ZCAFTXT to test your research. Project Titles and WBS Titles are a bit more complex.
Changes to sales contract long text between 3.0F and 4.5B.
The following code is a function that will return a customer comment.
form get_comment using cur_kunnr.
  call function 'READ_TEXT'
       exporting
            id                      = '0002'
            language                = sy-langu
            object                  = 'KNA1'
            name                    = cur_kunnr
       importing
            header                  = thead
       tables
            lines                   = tlinetab
       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.
    loop at tlinetab.
      write / tlinetab-tdline.
      add 1 to line_cnt.
    endloop.
  endif.
endform.
The above subroutine is called with the following code:
if p_cmnt = 'X'.
   tdname = cur_cust-kunnr.
   perform get_comment using tdname.
endif.
These data elements are defined as:
data: begin of tlinetab occurs 100.    "table to process comments
        include structure tline.
data: end of tlinetab.
data: tdname           like thead-tdname.
Vishal Jonnalwar

Similar Messages

  • Text table for long text of product catalog area and product description

    Hi experts,
    I'm a new comer in CRM, what my current job is to do the translation for CRM system and its portal, e.g. webshop.  Now I met some questions as below, Could you please give me some advices?
    1. Long text for product catalog area (t-code: COMM_PCAT_ADM; Product Catalog: PCSHOP)
    I found a  table named STXL(STXD SAPscript text file lines), maybe, it is related to the long text(product catalog area), but I can not get anything from the field CLUSTD of the table STXL as  its data type is RAW. Maybe, there is a text table in CRM to store these long text information, but I dont know, Could you please give me some ideas?
    2. Long text for product description (t-code: COMM_PCAT_ADM; Product Catalog: PCSHOP)
    I found a table named COMM_CFGLNGTXT(Long Texts for Different Objects),  I can find some long texts(product description) in this table, but some others, I can not find them. I dont know why? Maybe it is not a correct text table. Could you please give me some advices?
    Thank you very much.
    Quanyin

    Hi Uwe,
    Implement the BADI DOC_PERSONALIZE_BCS and use method PERSONALIZE_DOCUMENT. In this method therz an parameter FLT_VAL, this can be used to derive the description.
    Award points if its useful....
    Regards,
    B Raju

  • I need to know in which table the long text is stored

    Using the transaction code 'AC03' , I go to the ' Create Service Master Page '.  Navigating through the page , I could see a ' long text ' button . Once it is being clicked , the white space for text entry comes .
    My query is this -> <b>I need to know in which table the long text is stored and the name of the field ??</b>
    If one goes to the table 'ASMDT' , one can find a field  'KZLTX' , which is a long text indicator, but not a long text storage field ......  plz help

    Hi
    Use the function module READ_TEXT for fetching the long text..
    I came across similar situation in my project where i need to fetch the long text for Notification no.I have used the following code for fetching the Notificatin long text,you can just compare this logic and change accordingly.
          CALL FUNCTION 'READ_TEXT'
               EXPORTING
                    CLIENT   = SY-MANDT
                    ID       = 'LTXT'
                    LANGUAGE = WA_STRUCT12-KZMLA
                    NAME     = QMNUM
                    OBJECT   = 'QMEL'
               TABLES
                    LINES    = INT_TAB13.
    Specify LANGUAGE if you wanna fetch the long text regardless of the log on lang.The resulting long text will be stored in the itab INT_TAB13 which can be defined with reference to the structure TLINE.
    Hope this helps.
    Regards,
    Hakim

  • How to make single column scrollable in ALV report (for long Text)

    I have a 20 columns which we need to display in ALV grid, including one column for long text. In long text column currently it showing 40 character. I tried to change output length of field catalog but it's not working.
    Can any one help me ....
    Thanks
    Guru
    Message was edited by:
            gurusharan mandal

    hi,
    pls remeove if u give like this in the layout.
    gd_layout-colwidth_optimize = 'X'.
    rgds
    Anver

  • Text Area for long text not appearing properly for BBP_POC_DISPLAY Service

    Hi,
    In our development we have added additional Icon at ITS in Process PO transaction and onclicking  that icon Web dynpro AB screen called with the Purchase Order No of selected row .(SRM 5.0)
    There is one more icon in Web dynpro screen on click of that Purchase order service open in ITS with display mode .This is achieved with service BBP_POC_DISPLAY from Web Dynpro-AB.
    This is also working ok only the issue is in Document tab of PO The Text Area for long text appear at Top  .This functionality is working fine with BBP_POC  service from ITS .
    Has anybody faced this kind of issue ?
    Thanks,
    SMS

    Hi SMS,
    I am unsure of the additional component you are talking about. In general, issues with text area misplacing, is solved by note 1067625. May be you can check it.
    thanks,
    Ashwin

  • Table For Header Text Old Value

    Hi,
    Could Anyone helpme in finding the table for Header text of the PO , as We know  to find the current PO Header Text,by usinf th FM READ_text but i want to to find the header text for the po before Updated , Thanks in advance
    Regards
    Priyanka M Jain

    Hi,
    I believe that you need the text just after entering in PO during the runtime.
    just enter the text and go in the debugg mode, check for table text / textline in the global parameters and you will find the text.
    Hope this helps,
    Raj

  • Insert table in long text

    Hi Gurus,
    My client want to insert a table in long text is it possible.
    Is there any development. guide me.
    regards,
    sbabu

    >
    sbabu babu wrote:
    > My client want to insert a table in long text is it possible.
    1. Operating guideline
    1. The Long text line connects with the PPT Long text line.
    2. Pick up the Long text and heard Beep sound, LCD display u201CINSERT TABLEu201D
    3. LCD displays the total amount of TABLEs.
    4. LCD display recipient number when you make a call. (If the TABLEs are not enough to make a call,
    in the right side it will be display last 8 numbers which you dialed).
    5. After recipient side receive the Long text, user press u201CTalku201D key collect the TABLEs or automatically
    collect the TABLE in the Long text, the LCD right side display the account balance, and the left side
    display the need to continue to call in the amount of TABLEs after the count down.
    6. 20 seconds before finish the call, there is a warning sound in the Long text, LCD display u201CInsert
    TABLEu201D. It means if your want continue to talk will insert TABLEs, otherwise will stop automatically.
    7. Pick up the Long text press u201C*u201D u201C#u201D with 8 numbers of passwords, can be checking the total
    amount in the Long text.
    8. Pick up the Long text.
    Sorry, couldn't resist.
    Clemens

  • Change Pointer /Change documents for long text

    Hi,
    I wanted to know if we need to do some settings for activating change documents for long text.Presently in WAK2 (retail) when ever i change long text i cant see any change documents for it(though for rest feilds i can see that).When i looked at oss i saw some notes like 849348(around other transactions) which says that change documents are possible for long text. I wanted to know what steps we need to follow to activate it for this transaction.

    Hi lucky,
    I am facing the same problem. Can you please let me know the solution you have used?
    Thanks in advance for your help.
    Navin

  • Default values for long text for mic in inspection plan

    hi,
    Some long text are coming default when i am creating inpection plan for mic.
    This is coming for only particular plant. For other plant it is not coming. Is there anywhere we can make it as default for a particualar line item . ie for particular characteristics i.e 10, 20 etc
    sathish. R

    Hi,
    I am not sure , whether you are mentioning about Long text for MIC or Default insp char number (10,20,30..) in the insp plan.
    If you are talking about Insp char number in the insp plan . you can specify the same in SPRO , QM->Q planning ->Insp planning -> General -> Maintain profiles for default values.
    Regards
    K.M.Arun

  • Using BSP text editor for long text formatting

    Hello,
    We are using CRM 7.0. We want to perform simple formatting for the long texts (bold, fonts etc.) We are considering to use thtmlbx <btf:btf> element for text editing. The question is how is it possible to save the formatted text as the long text? Is there any standard way to perform it?
    Thanks in advance,
    Sergey

    Hello,
    In the CRM system there are standard views that display long texts connected to the objects. They are stored in the standard tables and not in the ztables. I just want to enable formatting for this text, to store it formatted in the system and next time the user opens the object to show him the formatted text.
    Thanks in advance,
    Sergey

  • Tables of long texts

    Hi Gurus:
    I need to know the tables where the long texts are saved for the following:
    1. Code description
    2. Inspection method
    3. Documentation when the result is rejected
    N.B: I need the long text itself, not the indicator that a long text exist.
    Regards,
    MaX

    Hi MAX.
    Please find below tables.
    Master Data QMTB Inspection method master record 
    Master Data QMTT Inspection Method Texts 
    Catalog QPCD Inspection catalog codes 
    Catalog QPCT Code texts 
    Catalog QPGR Inspection catalog code groups 
    Catalog QPGT Code group texts 
    Catalog TQ07 Follow-Up Action for Usage Decision of Inspection Lot 
    Catalog TQ07A QM: Function Modules for Follow-Up Action 
    Catalog TQ07T Language-dependent texts for Table TQ07 
    Catalog TQ15 Inspection catalog type index 
    Catalog TQ15T Language-dependent texts for table TQ15 
    Catalog TQ17 Defect classes 
    Catalog TQ17T Language-dependent texts for table TQ17 
    Results Recording TQ73T Texts for origin of results data 
    Results Recording TQ76T Texts for the processing status of insp
    Results Recording TQ77 Attributes for the Inspection Characteristic 
    Results Recording TQ77T Text Tables for Attributes 
    Defects recording TQ84T Text table for confirmation profile 
    Defects recording TQ86 Report category for defects recording 
    Defects recording TQ86A Assignment report category for work center 
    Defects recording TQ86T Text table for report category 
    Defects recording V_T35 2B_F Generated table for view V_T352B_F 
    Regards
    SANIL

  • Remove symbol # for long text in document line item

    Dear Experts,
    I enter some information in the long text field in document line item. For the area that I use "Tab" button, system will display as # symbol. Therefore when we print the information, the output will include the #### symbol which is not correct.
    Please help.
    Thanks.
    -Syaban-

    Dear Gaurav Aggarwal,
    Thanks for the reply, can you guide me the step to perform the suggested solutions? currently, we are using ECC6.
    Thanks.
    syaban

  • Field in portal table for the text contained in an uploaded file

    I have uploaded a file of base item type file into release 2 of the portal.
    Does anyone know which table the clob field for the text contained in
    the uploaded file is stored?
    Thanks,
    Suzanne

    Hi,
    When you run the Search hep is it giving the description or not
    You have to create the serarch help with both the fieldname and its description field then we cna the values. Or
    Try to mantain the text table for this field and get the data.
    Get the valeusinto drop drown with this table Or create the SearchHelp for this text table
    Regards
    Lekha

  • Using paragraph format for long text...

    Hello,
    When I try to print the long text using include then
    it starts printing from the very first line.
    But I want to use some paragraph format for it. How can I use it because I am using
    /: INCLUDE '200007200000100' OBJECT AUFK ID KOPF
    So where do I mention the paragraph format in the tag column becaue I am already using /: controll command in font of the include ?

    Check this thread...
    SAPScript - Standard Text
    It looks like the PARAGRAPH P2 statement can do that declaration, on the subsequent line.
    This website also has some good examples:
    http://www.henrikfrank.dk/abapexamples/SapScript/symbols.htm
    Cheers,
    John

  • How to get text name text object and text id for long text

    Hi,
    I am trying to fetch Long text for a given order number from transaction CO04 in SAPScript. I know that I have to use Include X (OBJECT) XX ID XXX.
    How do I get the text name, text object and text id for the order header long text from Transaction CO04.
    Points will be awarded..
    Tushar

    Tushar,
    When you are in CO02, and are at the Long Text Tab,click on the Icon that is next to the Order Number at the top of the screen (this icon looks like a Pencil and a Pad of Paper and is called "Change Long Text"). When you click on this it will take you to the SAPscript Editor. Now hit Goto->Header and you will get the data you require.
    Hope this helps.
    Cheers,
    Pat.
    PS. Kindly award Reward Points as appropriate.

Maybe you are looking for