Long Text, Missing data

Hi Gurus,
Whenever i save our normal sales order, it gives error.
Long text, missing data.
Waiting for ur positive reply.
Dhananjay

hi
What jude xavier  told is right.
The same go to edit incomp. log. n got the problem.
if u got right answer plz reward points n close the thread
regards
nitin

Similar Messages

  • Long Text Missing In COA(Certificate of Analysis) Report

    Hi Friends,
    We have a case where Long text entered in the results recording is missing  in the COA Report for only certain Batches .
    For same MICs and COA Profile,the Long text is displayed correctly in the report for the different batches.
    I have investigated this and text element been used in the MIC is 0024 Code short text with results long text.
    We have checked the COA Profile for this MIC and material has been assigned ,so profile find to be correct.
    The SAP form used for COA Print is a standard and MIC is of Qualitative.
    Could you please help on this .
    Thank you.
    Regards
    Siddartha

    No idea really but look at this:
    Any chance the user was logged in with a differnt language when they created the long text?  If they logged in as ES for instance, the long text might be stored as ES.  But the COA is bring printed in EN so the ES long text is not found.
    Do you see an entry in table STXH for the long text for the batches that don't display it?  (Text ID is QMEP).
    I'd compare the entries in STXH for a long text that prints and one that doesn't and see if you notice any differences.
    Craig

  • How to create Long Text in Module Pool Program

    Hi all,
    I want to develop a new module pool program and I want to use Long text screen in this program and also want this text will store in table.I never develop such type of module pool before.This long text will like sales order long text.Please let me know the steps how I can develop such type of program and how I save long text huge data in table.
    Thanks & Regards
    Nirmal

    Hai ,
    here you have to use custom control, for this
    DATA: line(256) TYPE c,
          text_tab LIKE STANDARD TABLE OF line,
          field LIKE line.
    1)  Create custom control in your screen
    2)   CREATE OBJECT: container EXPORTING container_name = 'TEXTEDIT',   "--> (this is custom control name in screen)
                       editor    EXPORTING parent = container.
    3)  CALL METHOD editor->get_text_as_stream  "This method reads data from custom control , inserts into itab 'text_tab' 
             IMPORTING       
              text = text_tab.                                       "
          READ TABLE text_tab  INTO line INDEX 1. read the text into wa 'line'
    if you want more clarity , see  'ABAPDOCU' >ABAP USER DIALOGS>    COMPLEXSCREEN ELEMENTS-->  DEMO CUSTOM_CONTROL

  • BAPI_SERVNOT_ADD_DATA-update long text of activities in Change Notification

    Hi All,
    I am trying to use this "BAPI-BAPI_SERVNOT_ADD_DATA" call to change a Service Notification.
    The partners,activities get updated. I am unable to update the long text of each of the actvities item.
    I am using the following code to update the longtext.
    Defects/activities table
    data: activities like table of bapi2080_notactvi with header line.
    long text table
    data: longtext like table of bapi2080_notfulltxti with header line.
    *partnr table
    data:  notifpartnr  like table of bapi2080_notpartnri with header line,
            longtext-objtype = 'QMFE'.
            longtext-objkey = activities-act_sort_no.(item # of the activity)
            longtext-format_col = 'U1'.
            longtext-text_line = zwin-misc_text1.
            append longtext.
            longtext-format_col = 'U1'.
            longtext-text_line = zwin-misc_text2.
            append longtext.
            longtext-format_col = 'U1'.
            longtext-text_line = zwin-misc_text3.
            append longtext.
    call function 'BAPI_SERVNOT_ADD_DATA'
        exporting
          number                  = zwin-qmnum
      I_BAPI                  = ' '
    IMPORTING
      NOTIFHEADER             =
      NOTIFHDTEXT             =
       tables
       notfulltxt               = longtext
      NOTITEM                 =
      NOTIFCAUS               =
          notifactv             = activities
      NOTIFTASK               =
        notifpartnr             = notifpartnr
      KEY_RELATIONSHIPS       =
         return                 = lt_return
    Any help appreciated.
    Thanks
    Mala

    Hi Neil,
    Thanks for the update.  The issue has been resolved.
    The BAPI- 'BAPI_SERVNOT_ADD_DATA'   cannot be used to update the item long text. (activities long text ) . The length of the object key is only 8 characters.
    I used the following function module('IQS0_ADD_ACTIVITY_LONGTEXT')  to update the item>>activties>> long text after the  BAPI  call to  'BAPI_SERVNOT_ADD_DATA' .
    data:  v_line like table of  tline with header line.
    call function 'IQS0_ADD_ACTIVITY_LONGTEXT'
                 exporting
                   i_qmnum             = wa_qmnum
                   i_manum             = wa_item_no
                   i_post              = 'X'
                    I_RESET             =
                 tables
                   t_inlines           = v_line
                  EXCEPTIONS
                    SHOW_MESSAGES       = 1
                    OTHERS              = 2
    The call to 'BAPI_SERVNOT_ADD_DATA'  took care of all changes to the Notification except the update of the item>> long text. After committing this transaction, I did a BAP  call to 'IQS0_ADD_ACTIVITY_LONGTEXT' to update the item>>actvities>>long text.. This has been working fine and is currently in productin.
    Appreciate all your feedback .
    Thanks
    Mala

  • Loading Long text longer than 132.

    Hi,
    I am trying to load Material Master long text (Basic data, Purchase order Text) . The LSMW (a standard batch / direct input) for Long text only allows 132 chars and my long text is longer than 132?
    What can i use to load the long text?
    Regards,
    K.

    Hi
      Within the program, structure TLINE loads the text.
    This structure consists to fields TDFORMAT and TDLINE.
    The text exists in field TLINE-TDLINE.
    Whereever, we need to give extended text we can use '=' symbol for TDFORMAT. Just like in SAP Script Form(Extended Line).
    Alternatively you can use FM: SAVE_TEXT for loading the texts.
    Insert a convert routine to split the text in several lines.
    You can use the following function module to split your long text into multiple lines.
    QADB_DOCU_CONVERT_TO_SAPSCRIPT
    You can refer this link for further information
    Re: insert it into the next line in internal table
    Thanks.

  • Extract values from a long text

    Hi, I need help in extracting value from a long text
    Sample data:
    A_BOARD_MEETING_600
    I need to extract MEETING from the text.
    I tried to use CHARINDEX and SUBSTRING but it's not returning the text I wanted.  I hope you can help me.
    select SUBSTRING(ID, CHARINDEX('_', ID,1+CHARINDEX('_', ID))+1, CHARINDEX('_', ID, 1+CHARINDEX('_', ID, 1+CHARINDEX('_', ID,1)))-1 ) from table
    Using the query above it's returning MEETING_600.

    Hi, thanks!  But would like to ask how can this be converted where it can get the column ID in a table, I'm still learning SQL.
    Select Parsename(Replace(YOURCOLUMNNAME,'_','.'),2)From your tablename

  • User status- when selected it logs date/time & User in Work Not. long text

    Hello,
    Is there a way when a user clicks on a user status on Work Notification the long text will be updated to date/time and username.
    For example:
    If we have 3 approval process: Supervisor Approved, Deputy Manager Approved,, and Manager Approved.
    When the Supervior press the Supervior Approved (User Status and saves) the long text on the Work Notification will update with log of  time/date & user. Then the same for the next 2 approvals.
    This will help us a lot.
    Thanks,

    Jay,
    I really dont know why you guys need to update the long text when user status has been changed. You could simply trigger the email to the approver who needs to be notified. but anyway if this is your rqmt, I think you can do it thru field exit. Talk to ABAPer and get a help from him
    Mahee

  • Loaded data is not yet visible in Reporting (see long text) Message no. RSM

    Hi All,
    I have one issue in BI part of Solman. For one of the scenario of Solution Manager uses its own BI component (BI_CONT 7.03 SP08 SAP_BW 700 SP15).
    There is one background job which has to update the data in one of the infocube 0SMD_PE2D. This job is getting failed for the past 2 months.
    When i check the logs of that background job, it shows the long text as below.
    Loaded data is not yet visible in Reporting (see long text)
    Message no. RSM1130
    Diagnosis
    There is an inconsistency between the load status of the data and the option of reporting on this data.
    There is data in the InfoProvider that is OK from a quality point of view, but is not yet displayed in reporting.
    The problem, for example, is to do with request 0000000494, number APO_R4CEHVODV7XS7MRL741GSMV9UB.
    Procedure
    Choose Refresh to remove the inconsistency.
    I went to RSA1 and selected that cube and choose "Execution changes - Manage". On the right hand side under request tab page it shows all the requests with request status as Green.  In Monitor there is No Data Available
    I found a similar thread [Loaded data is not yet visible in Reporting for Data Mart destination cub; unfortunately solution is not updated.
    Could any one help me
    regards
    Naveen

    Hi Aduri,
    In LISTCUBE i am getting the following error
    SQL Error 0
    Unknown error in SQL interface
    System error in program SAPLRS_EXCEPTION and form RS_EXCEPTION_TO_MESSAGE 
    Source system is Solution Manager only, production client and BI by default its running in 001 client. We dont have any APO system in our landscape.
    Kindly advice
    Regards
    Naveen

  • Upload vendor master data long texts to CRM

    Hi
    I do have the same problem of this thread:
    [CRM Middleware - R3 to CRM - Long Text transfer |CRM Middleware - R3 to CRM - Long Text transfer]
    Does anyone know how to upload long texts of Vendor master data to Business Partner mater data?
    Thanks in advance for any help
    Pierluigi

    By learning the basics of BDC recording and the use of GUI_UPLOAD

  • User Exit: Saving data in Production Order Header Long Text

    Hi PP Gurus,
    Can any one let me know which user exit can be used to save some data in the Long Text of Production Order Header.
    We try PPCO0007, it works well on ECC, but my client's system version is 4.7, it does not work.
    In 4.7 version, is there any other User Exit or BADI can be used to comply with this requirement?
    It's quite common requirement, hope someone can help me. Thanks.
    Best regards,
    Sun Qiang

    Hi All,
    Thank for your reply.
    After saving the text using 'SAVE_TEXT' function module and commiting it you need to update the 'ltext' field in AUFK table.
    SELECT SINGLE * INTO wa_aufk FROM aufk WHERE aufnr EQ '000012345678'.
    wa_aufk-ltext = 'D'.
    MODIFY aufk FROM wa_aufk.
    It works in Enhancement PPCO0007.
    This call can be closed. Thanks.
    BR
    Qiang

  • How to read Production Order Long Text data in ABAP program

    Hi friends,
      I have the issue in reading the ' Long Text '  tab view data of production order
    in CO03 transaction.Please can some body help me out to get this in ABAP program.
    Regards,
    Rajesh Akarte

    ok goto the long text, double click it, or use the small pencil, so that you proceed to the text editor.
    Once you are there, use the menu: goto->head
    a small popup will come up, stating the information you need.
    what you need is OBJECT, ID, Language and NAME.
    with those information you can feed the FM READ_TEXT.
    and woooohooo there you go

  • BAPI_ACC_DOCUMENT_POST long text field missing

    Hi,
    I will have to transfer our vendor open items from v 3.1 to ERP 2004. I
    am using <b>BAPI_ACC_DOCUMENT_POST</b> to upload these open items. However, I
    cannot find the <b>'LONG TEXT'</b> field in the said BAPI. In using <b>F-02</b>, a
    long text field/button is available. <u><b>How can i post an entry in the long text
    field of the line item in f-02 using BAPI_ACC_DOCUMENT_POST</b></u>.
    Also, i have used the extension1 table and a BTE (note 487722) in
    uploading the posting key. Since field bschl is available in table
    accit, there was no problem in doing this. However, i cannot seem to
    find the field long text in this table. Is it available? If not, what
    can I do with the above situation.
    Thanks.

    Hi
    Excuse me! you can't use RFBIBL00, use the fm SAVE_TEXT.
    After calling the BAPI you should have the number of FI document will be created and know in which item you need to insert the long text so:
    THEAD-TDOBJECT     = <Object text>.
    THEAD-TDNAME(4)    = <Company code>
    THEAD-TDNAME+4(10) = <Document number>
    THEAD-TDNAME+14(4) = <Fyscal year>
    THEAD-TDNAME+18(3) = <Item number>.
    THEAD-TDID         = <Id text>.
    THEAD-TDSPRAS      = <Language>.
    THEAD-TDLINESIZE   = 72.
    These are the header data, transfer the text in LINES parameters.
    Max

  • Apex Report to Excel Problem in long text data in one cell

    Hi
    Using apex 3.1, I have created one sql Report based on UNION.
    Report has 10 rows & 2 columns only. first column contain title & second Column display values.
    9 rows contain numeric value (converted to char) one last row display Remarks (lot of text).
    When stored in excel last line display data in single line.
    ex
    col1 col2
    A1 456.12
    A2 789.165
    B1 784.126
    B2 456.1
    C1 0
    C2 1
    D1 0
    D2 2
    E1 34.23
    E2 This is row containing long text. This is row containing long text . This is row containing long text.........
    Due to this Report does not fit on one A4 size Paper for printout . Any Solution.

    Hi,
    There's a solution in Excel... Select the cell, select Format, Cells from the menu and select the Alignment tab - tick the "Wrap text" option.
    Obviously, that would require a manual action by the user and would be after the export has taken place.
    Andy

  • Loaded data is not yet visible in Reporting (see long text)

    hello
    all
    I have the next problem : in transaction RSA1, with infocube 0SD_C03 (Sales: Overview) click right/option/manage. appear the next message "Loaded data is not yet visible in Reporting (see long text)", when execute the rollup, show the next message : "Request 'REQU_48QRSOY3PVEJYDCO1B9II221D(    23393)' in DTA '0SD_C03' locked against Qualok using real-time Planning
    as I solve this problem ?

    Jurado,
    What is the frequency of your real time load? was it loading when you query the cube? Have you checked the status of the load? Yellow, if Yellow and if the load is completed Change the technical status to Green and you should be able to see the data. Are you sure your query restriction (if any) satisfies the data?
    Probably if you look closely you would know the answer.
    Goodluck,
    Alex
    (Arthur Samson)

  • How to insert long text data in oracle for LONG column type??

    Anybody who can tell me what is best way to store long text (more than 8k) in Oralce table.
    I am using Long datatype for column but it still doenst let me insert longer strings.
    Also I am using ODP.Net.
    Anybody with a good suggestion???
    Thanks in advance

    Hi,
    Are you getting an error? If so, what?
    This works for me..
    Greg
    create table longtab(col1 varchar2(10), col2 long );
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    using System.Text;
    public class longwrite
    public static void Main()
    // make a long string
    StringBuilder sb = new StringBuilder();
    for (int i=0;i<55000;i++)
    sb.Append("a");
    sb.Append("Z");
    string indata = sb.ToString();
    Console.WriteLine("string length is {0}",indata .Length);
    // insert into database
    OracleConnection con = new OracleConnection("user id=scott;password=tiger;data source=orcl");
    con.Open();
    OracleCommand cmd = new OracleCommand();
    cmd.CommandText = "insert into longtab values(1,:longparam)";
    cmd.Connection = con;
    OracleParameter longparam = new OracleParameter("longparam",OracleDbType.Long,indata .Length);
    longparam.Direction = ParameterDirection.Input;
    longparam.Value = indata ;
    cmd.Parameters.Add(longparam);
    cmd.ExecuteNonQuery();
    Console.WriteLine("insert complete");
    //now retrieve it
    cmd.CommandText = "select rowid,col2 from longtab where col1 = 1";
    OracleDataReader reader = cmd.ExecuteReader();
    reader.Read();
    string outdata = (string)reader.GetOracleString(1);
    Console.WriteLine("string length is {0}",outdata.Length);
    //Console.WriteLine("string is {0}",outdata);
    reader.Close();     
    con.Close();
    con.Close();
    }

Maybe you are looking for