About updating  long text  in the document item  with bdc of fb02

HI,
I have a question about updating  long text  in the document item of sap:
Can I directly updating the long text information with the fuction save_text?
The long text is in :
tcode: fb02 -->input document no ... --> Document overview --> select one document
long text --> updating the value.
Becaust I want to update some items in a G/L Account with bdc or other technique, but I found I can't   choose the items in the G/L Account with bdc automatically .That means I can't get the selected items and update them.So I try to update them with the function save_text  directly (I know the doc no,bukrs,fiscal year ,item no which will decide the long text item).
Who can help me ?Or is there any way to solve the problem? Thanks very much.

Yes, you can update directly using SAVE_TEXT.
Check this for the same.
[update long text in FB02|https://forums.sdn.sap.com/click.jspa?searchID=22194840&messageID=5418662]

Similar Messages

  • Tcode FV50: How to find long text in FI Document line item Before Saving.

    Hi,
    How to find long text in FI Document line item.
    During Parking of the FI document through Tcode FV50 i m giving the some text in the long text not in the text field.
    I would like to validate the Long Text Before Saving in user exit "U300" under  the  "Sunstitution" .
    Please anybody can be help me out where exactly this long text is going to be stored or in which internal table or memory id.
    Please give me the answer as soon as possible .
    Note:- Read_Text function module is not useful. Because Read_text useful after saving document.

    Hi Amit,
    In application area FINANCIAL ACCOUNTING , go for node LINE ITEM. Here create a step & maintain the prerequisite as per your requirement & in the check you can mention the code or you can direct it to a custom program like ZFI_RGGBR000.
    Here while maintaining the check you will get structures BKPF & BSEG in which you will get the desired field you are looking for.
    Just try to explore in your system how the other validations are maintained.
    After you are done with all your code, you have to run the regeneration program RGUGBR00.
    Here utmost care should be taken while running regeneration program, you should select all the checkboxes in the selection screen except  GENERATE SETS, GEN SUBSTN ROUTNS IN ALL CLNTS  & TRACE PROG. GENERATE CALLS .
    Hope this make your doubt clear.
    Regards
    Abhii

  • Text in the document line item

    Hi,
    In COI, I am doing reclassification using document type.
    System has posting the documents correctly, but strange thing is in the document header text, it was giving some text by itself.
    Example of the actual text in the document header is as below:
    "3B586AF9C74AF958DC4EFAB080B180B6D2E90F25"
    Thanks in Advance,
    Richard

    Hi Dan,
    You are correct. The text is coming by itself while doing Reclassification for dividend at PL 30.
    Still confused why it is throwing some text in the document header..
    Regards,
    Richard

  • How to load long text in BOM line item

    Hello Experts
    How do i load Long text in BOM Line item using LSMW
    Thanks
    S
    Edited by: Alvaro Tejada Galindo on Jan 31, 2008 5:11 PM

    Use Read_text function module.
    you need to pass
    ID
    LANGUAGE
    NAME
    OBJECT   to the function moduel
    To find the Text id name language and object these are the following steps. Example: FB02
    1. goto FB02, Enter Document number
    2. from menuselect Goto>Header-->header Text..... New window will be displayed 
    3. select the Header Text. here you can see all the text. 
    4. click on the TEXT (which you want to know the Text id) , then press log ICON (you can find in bottom right of the text window) it looks like a rolled paper. 
    5. in the Next window you will find Text Name. Text ID, Language. etc...
    Regards,
    Lalit Mohan Gupta.

  • Some text in the document is shown in reverse order (arabic or something)

    Here's the link to the document https://onedrive.live.com/view.aspx?resid=D3A41CE2D04354EE!4999&cid=d3a41ce2d04354ee&app=Word&wdo=2
    As you can see Word Online (and also standalone Office 2013) is showing one line (marked yellow) in reverse. This line also selects in reverse order and acts like some arabic or other RTL language. Though all text is in Lithuanian. Our employees have to
    work with this document (it's a standard form) all the time. It shows fine with Office 2007, but as we have upgraded to 2013 it now shows like that and every time managers has to deal with this (copying to Outlook or other program where it copies normally
    from left to right, and then back to this document). I wasn't able to find a setting to fix this text.

    Yes, you can update directly using SAVE_TEXT.
    Check this for the same.
    [update long text in FB02|https://forums.sdn.sap.com/click.jspa?searchID=22194840&messageID=5418662]

  • 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

  • How do I convert a pdf-presentation into Powerpoint, which it is said that I can do? I can convert into Word, but that is of no help as I need to change the text in the document.

    How do I convert a pdf-presentation into Powerpoint, which it is said that I can do? I can convert into Word, but that is of no help as I need to change the text in the document.

    Hi Sara!
    Yes this sounds interesting. Can I update to that from the PDF Export I have just renewed? How much would that cost?
    Thanks for your quick answer.
    Best Regards
    Per-Olof Egli                                         Logga Egli C.I.S
    Managing Director
    Egli C.I.S. Consulting
    Lapphundsgränd 43
    SE-128 62 SKÖNDAL
    Sweden/Швеция
    Phone:         +46 708 23 03 53
    <http://www.eglicisconsulting.se/> www.eglicisconsulting.se
    <mailto:[email protected]> [email protected]
    Skype: eglipo
    Från: Sara.Forsberg 
    Skickat: den 10 september 2014 22:11
    Till: P-o Egli
    Ämne:  How do I convert a pdf-presentation into Powerpoint, which it is said that I can do? I can convert into Word, but that is of no help as I need to change the text in the document.
    How do I convert a pdf-presentation into Powerpoint, which it is said that I can do? I can convert into Word, but that is of no help as I need to change the text in the document.
    created by Sara.Forsberg <https://forums.adobe.com/people/Sara.Forsberg>  n Adobe ExportPDF - View the full discussion <https://forums.adobe.com/message/6718870#6718870>

  • Function to retrieve long text in FI document for payment file

    Hi
    Is there a function i could use to retrieve the long text in the invoice document for the payment reference field in the payment file?
    Would appreciate your urgetn advice.
    Thanks.

    Possiblity could be that you have passed the wrong object name id or any parameters.
    See below the similar code.
    If you want to know the correct tdobject and correct tdname combinations go to table STXH and under name give the document number ie 1900000000 ie docno then you will come to know the correct tdname and object and tdid from which you can use the read_text function module
    DATA : tdobject TYPE thead-tdobject,
               tdname   TYPE thead-tdname,
               tdid     TYPE thead-tdid,
               tdspras  TYPE thead-tdspras.
      DATA : lines    TYPE STANDARD TABLE OF tline INITIAL SIZE 0,
             wa_lines TYPE tline.
    CONCATENATE bkpf-bukrs bkpf-belnr bkpf-gjahr INTO tdname.
      tdobject = 'BELEG'.
      tdid     = '0005'.
      tdspras  = sy-langu.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
    *     CLIENT                        = SY-MANDT
          id                            = tdid
          language                      = tdspras
          name                          = tdname
          object                        = tdobject
    *     ARCHIVE_HANDLE                = 0
    *     LOCAL_CAT                     = ' '
    *   IMPORTING
    *     HEADER                        =
        TABLES
          lines                         = lines
        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.
       ELSE.
         READ TABLE lines INTO wa_lines INDEX 1.
         IF sy-subrc = 0.
           write at 51(10) wa_lines-tdline.
         ENDIF.
       ENDIF.
    Regards
    Gopi

  • Distiller failure on a portion of text in the document

    I have a question that I'm hoping someone can assist me with, we have a Mac running Acrobat 8.1.6 (Distiller version 8.1.3) that continually fails on a portion of text in the document when creating a PDF from an EPS file. I have verified that this machine is setup identical to the other Mac that is doing the same type of tasks just watching different folders, the PDF creation is successful on the machine we'll call EPS2, yet fails on EPS1 with the below failure log.
    Can anyone point me in the correct direction as to where to look to try and rectify this issue?
    The Stack portion of the error is the text I'm talking about (* Tax credit to 1st time homebuyers who have) this text is the beginning of a sentence about a promo for 1st time homebuyers, like I stated above the PDF creation is successful on one machine and fails on the other. I am at a loss as to where to look to correct this issue, any assistance that can be provided would be greatly appreciated.
    Error log:
    Distilling: 07-29-2009 Page-01.eps
    Start Time: Wednesday, July 29, 2009 at 9:29 AM
    Source: /Volumes/Vol1/4 Shaun/EPS Files/07-29-2009 Page-01.eps
    Destination: /Volumes/Vol1/4 Shaun/EPS Files/07-29-2009 Page-01.pdf
    Adobe PDF Settings: /Users/EPS2/Library/Application Support/Adobe/Adobe PDF/Settings/folder.joboptions
    %%[ Error: ioerror; OffendingCommand: show ]%%
    Stack:
    (* Tax credit to 1st time homebuyers who have)
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    Distill Time: 21 seconds (00:00:21)
    **** End of Job ****

    hockeyshaun wrote:
    Philip,
    Yes I had looked into clearing out the font caches, that also seemed to make no difference. We had one extra license sitting around for Acrobat Pro 9.0 so I installed that version and what do you know? the problem went away, must be something with the Intel's and how 8.1.3 handles the conversion. The file would fail on ALL the intel's but not the G5's, as soon as I upgraded the Intel with version 9.0 the problem vanished....odd, but understandable to a point I guess.
    THat's good to know. Now we will know if you have a problem with Distiller 8 and you using a Intel machine perhaps Distiller 8 is not completely compatible with Intel machines.

  • MM02: Problem in updating Long Text

    Hi All,
    My requirement is to do MM02 Conversion. I have to Update 14 fields in the transaction.I got a Problem with my LONG TEXT Field.
    Requirement for updating is whenever a double quotes comes in the place of LONG TEXT in the input file, i have to empty the LONG TEXT in the transaction.
    For modifying the already existing Long Text, its working perfectly. But problem is arising only when i want to empty the LONG TEXT field.
    What i did was,    IF zbasic-matnr_long_text = ' "" '.
                               bmmh7-tdline = ' '.
    Also i have passed Text ID, Text Langauge.
    So please Help me with this Problem
    Message was edited by:
            karthikeyan Thangavel

    Hi Sathish,
    If i use Fm Delete_Text, as soon as it encounters the FM it will delete the LONG Text.
    Since Im using LSMW, everything should happen after i run the step 'Start Direct Input Program'.
    Please just consider, suppose there is a Transaction Error in my LSMW. So according to this situation no transaction should happen i mean LONG TEXT should not get deleted.
    But Since it has enountered the FM, Long text must get deleted.
    Please correct me if anything is wrong in my Logic.
    Also tell me what i should do if my Logic is correct.

  • EBS - Auto posting not working  if text behind the document number

    Hi,
    When the document number is at the end of the payment reference, there is no problem.
        However, when there is text behind the document number, the posting rule doesn't work anymore.
        The autoposting also fails when there is a seperator (like a comma) directly added to the document number.
    -   In the posting rule for invoice numbers (BE51), it is able to find multiple invoice numbers and clear these together.
        We were expecting this posting rule will behave the same, so when a customer mentions more than 1 document number,
        it is able to find them all and clear if they fulfill the criteria (total amount of the documents matches the amount received).
        But because of 1st mentioned problem, system doesn't clear anything because of additional text present.
    I am look help to solve this issue
    Thanks.
    With regards,
    V.K
    Best regards,

    Hi,
    Any input for above issue?
    With regards,
    V.K

  • Need to assign char in o12c to show long text of the char in PI sheet

    Hi, Trying to learn PP-PI.  in o12c t-code, created instruction category u201Ctextu201D under instruction cattype (0) and trying to assign a characteristic (test) which is having char group as u201Cprocess instruction characteristicsu201D and willing to select u201Clong text indictor- Tu201D against this characteristic, but getting the error that u201Cthis characteristic is not supported for long textu201D. Please advise how to set long text indicator so that we can show long text in the pi sheet. Thank you.

    Hi,
    To Maintain Long text for characteristic in O12C , you need to
    1) create the Char in T-code O25C with Data type character and click on Proc.Mgmt tab
    2) Tick unlimited field situated right of Length and SAVE the char
    3) Assign this char in O12C under instruction cattype (0). You can see the indicator in the field Text. Now it will allow to main long text for that char in O12C.
    Hope this will help
    Regards
    Brahmaji D

  • Employees  has the same cost center long text as the previous record

    Hiiii Experts,
                          in ABAP-HR 2 employees have got the same cost centr text (kostl) with different perner.we shouldnt get  the same cost centres long text for diff pernr(employee numbers). please solve this.
    thanks and regards,
    Vishal

    Employee 01605429 has the same cost center long text as the previous record.
    01605304;A;MIKE.GESSLERMichael;Gessler;19000101;0500192745;;NUSA;NUSA SLS Solon Prepared Foods Sales;CD SOLON HQ
    01605429;A;DANA.SHERMAN;Dana;Sherman;19000101;0500193070;;NBSNA;NBS Solon Employee HR Services;CD SOLON HQ
    There are records in the file with no const center which should not be included in the file.  We need to know why they were extracted and why
    don't they have a cost center. See below.
    10252768;A;CHARISSA.HALFORD1Charissa;Halford;19000101;;;NPFC;;
    10252770;A;MATTHEW.CANADAY1;Matthew;Canaday;19000101;;;NPFC;;

  • When I get the Please wait... message and have the latest Adobe update why won't the document open?

    When I get the Please wait... message and have the latest Adobe update why won't the document open?

    What is your operating system?  Reader version ("latest" means nothing)?
    Is this a local or only PDF?  If online, in what browser?

  • Pioneer 8400 DVD receiver player, as iPhone ios6 update now when connecting the new iPhone with ios6 via blutooth (firmware prob) to my car DVD 8400 unit, when playing music such as on my phone or Pandora the track button does not function or work at all

    pioneer 8400 DVD receiver player, as iPhone ios6 update now when connecting the new iPhone with ios6 to my car DVD 8400 unit, when playing music such as on my phone or Pandora the track button does not function or work at all not even if i press skip track forward or back on the unit it doesn't function everything works except that. on listening to radio or anything else related not pairing thru Bluetooth unit works fine, seems there to be Bluetooth update that is not making iPhone and unit not compatible at all. does pioneer need fix this problem with update firmware or thru apple need help. my iPhone was working fine before with previous ios 5 before.

    Dear Valued Pioneer Customer:
    We would like to inform you of the availability of an optional Bluetooth® firmware update (HW05-SW01.27.20) that enables Bluetooth AVRCP control and metadata display from a compatible Pioneer CD or DVD Receiver when used with an iPhone® 5 or iOS 6 device.  If you do not own an iPhone 5 or iOS 6 device, there is no need to install this update.
    This firmware update may be used only with the following 2012 Pioneer products:
    CD Receivers
    DVD Receivers
    DEH-P8400BH
    DEH-P9400BH
    DEH-80PRS
    AVH-P2400BT
    AVH-P3400BH
    AVH-P4400BH
    AVH-P8400BH
    In order to perform this update, the following items are needed:
    A Pioneer CD or DVD Receiver above with built-in Bluetooth
    Laptop with built-in Bluetooth running Windows® 7
    Bluetooth firmware update (HW05-SW01.27.20)
    How to Obtain the Free Firmware Update
    1. Download the INSTRUCTIONS for the optional Bluetooth firmware update (HW05_SW01.27.20).
    2. Download the UPDATE FILE to a computer and transfer the file to a compatible 2012 Pioneer CD or DVD Receiver via a Bluetooth-enabled Windows 7 laptop.
    You can also arrange for Pioneer to update your 2012 Pioneer CD or DVD Receiver by calling Pioneer Customer Service toll free at 800-421-1404 during regular business hours (M-F 10AM-7:30PM Eastern Time, except on holidays). If this firmware update is performed by Pioneer, there is a charge of $60.00 (this charge includes return shipping of the updated unit within the U.S.). Charges for removal/reinstallation of the unit and shipment to Pioneer are the customer’s responsibility.
    How to Determine if the Firware Update has Already been Installed
    CD Receivers:
    • With the unit turned off (press and hold the source button until the CD Receiver turns off), press and hold the center of the volume knob to bring up the Settings menu → rotate the volume knob until "BT Version Info" is displayed and then press the center of the volume knob → The firmware version should show HW05-SW01.27.20.
    DVD Receivers:
    • With the unit turned off (press the home button and select ‘OFF’ from the source icons), press the home button → Press the “System” icon at the bottom of the screen → Select the “Bluetooth Version Info” option → The firmware version should show HW05-SW01.27.20.
    If the Bluetooth firmware version shows HW05-SW01.27.20, no further action is necessary.
    Questions
    If you have any questions, please contact the Pioneer Customer Service Center toll free at 1-800-421-1404, Monday through Friday, 10:00 a.m. to 7:30 p.m. (Eastern Time), except on holidays.
    Sincerely,
    Pioneer Electronics (USA) Inc.

Maybe you are looking for

  • Phase import abap (problem in the import of the export)

    Hello!: We are doing the IMPORT of the EXPORT (for the CU&UC), and has appears the next error in the IMPORT ABAP PHASE: (GSI) INFO: vname    = "MSSQL                           " (GSI) INFO: hostname = "IBA3SAP\MIG                                     

  • 2 clients of 1 apo system connecting to 2 clients in same ECC system

    Hi We have a requirement at our end as below- 1)We have 2 clients in our APO Developement system and they are using BW functionality of APO 2)These 2 clients need to talk to 2 different client in our ECC System for ex:- APD has 2 clients(100 & 200) a

  • META tag in servlet

    Hi guys, I am having some problem with the <META> tag in a servlet that I am testing. What happened is that I can't get the user to be redirect to another servlet when login is successful. Can anybody tell me whats wrong? Thanks. The code is as below

  • Need all audio at same level

    I have edited 13 basketball games for a highlight video. I have 3 sound tracks in each video:track 1 is audio from the game, track 2 is audio with effects clips -primarily digital juice swipes, etc. and track 3 is a song to rev up the action. I have

  • Incorrect Processing lead time showing in ASCP exception

    Hi All, We have a buy Item say TEST01 which is used in two Different organization A and B and its processing lead time at item level and ASL it 10 for Org A and 111 for Org B, However issue is when we run collection plan for Org A and check for ASCP