Update long text in notification

Hi experts,
I try to update (add next entry) to the long text in notification header. I tried with BAPI 'BAPI_ALM_NOTIF_DATA_ADD' to fill table NOTFULLTXT, but it seems that it can only add an entry and not append another one (one entry already exists). In 'BAPI_ALM_NOTIF_DATA_MODIFY' there is no table NOTFULLTXT. Could you advice me how to do it? Thank you in advance.
BR
Paul

Just found something. Have a look at class CL_ILM_BE_WOC, Method NOTIF_TEXT_UPDATE, as they do this here.

Similar Messages

  • Put Fixed guide line in long text of Notification: IW21

    Hi,
    I have an requirement where I need to put some fixed guide line in the notification long text whenever notification order gets created.
    For an example below guidelines need to be incorporated automatically in the long text of notification whenever they get created
    Ex:
    Long Text Template as follows:
    Detailed description of fault:
    What caused the fault?
    Action taken to date:
              Who:
    Suggested Repair / resourcec:
    Please suggest how can I implement this requirement?
    Appreciate your help in advance.
    Thanks,
    Jay.
    Moderator message : Duplicate post locked. Continue with original thread.
    Edited by: Vinod Kumar on Sep 14, 2011 11:29 AM

    Hi,
         Check the user exit :- QQMA0025 PM/SM: Default values when adding a notification
    For wiring into longtext i think u can update via WRITE_TEXT
    You should also ensure that this information  should not be changed
    regards
    pushpa

  • 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]

  • How can I print long text in Notification

    Dear All,
    I want to take Long Text of notification in my printout . Please tell me where this is stored and how can I access it as I am unable to find out it in notification table.
    Regards

    In the long text screen
    Go to header
    Here all the details of the text are available.

  • Exit to create long text of notification by IW31

    Hi
      We have requirement , where we have to pass some fixed text to notification's long text when notification is being created by TCS service order(Tcode- iw31).
       Is there any exit/bapi/ fm to achieve same?

    issue is solved.
      I had to do implicit enhancement at end of FM ' IQS0_CREATE_NOTIF_TO_ORDER'.
    Code is as below.
       ENHANCEMENT 1  ZENH_IW31.    "active version
    * Declaration of local variables, workareas and internal tables
    DATA: LTA_LINES  TYPE STANDARD TABLE OF TLINE,
          LWA_LINES  TYPE TLINE,
          ltp_zaccesstime TYPE zaccesstime.
    IF SY-TCODE = 'IW31'.    " Put condition for code
    SELECT SINGLE zaccesstime
               FROM equi
               into ltp_zaccesstime
              WHERE equnr = VIQMEL-equnr.
        IF sy-subrc Eq 0.
         LWA_LINES-TDFORMAT = '*'.
         CONCATENATE 'Access Time:' ltp_zaccesstime INTO LWA_LINES-TDLINE SEPARATED BY space.
         APPEND LWA_LINES TO LTA_LINES.
         CLEAR: LWA_LINES.
        ENDIF.
       CALL FUNCTION 'IQS0_ADD_NOTIFICATION_LONGTEXT'
         EXPORTING
           i_qmnum             = VIQMEL-QMNUM
    *      I_POST              = ' '
    *      I_RESET             =
         tables
           t_inlines           = LTA_LINES
        EXCEPTIONS
          SHOW_MESSAGES       = 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.
    ENDIF.
    ENDENHANCEMENT.

  • 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 to update long text in symptoms/problems ?

    Hi All,
    Can anybody help me regarding how to update the long text of a symptom/problem?
    Please help.
    Regards,
    Jeetu

    Hi Jeetu,
    Can you Please elaborate your query.
    Are you talking about Problem/solutions created using Tcode: IS01( used in service scenario)
    Or
    The Text Management i.e. Text Types
    Regards.
    Shalini Chauhan

  • Update Long Text of Production Order

    Hi ABAP Gurus,
    We want to update some information in long text automatically while releasing production order.
    We try PPCO0007
    We found that we must update AUFK-LTEXT as 'E' then we can see long text via CO02, CO03.
    Without updating AUFK-LTEXT, even if the long text value saved in SXTL, but it can not be displayed via CO02, CO03.
    After saving the text using 'SAVE_TEXT' function module and commiting it we 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.
    However, it only works when we go to CO02 and press 'Save' button without changing anything.
    If we press 'release' button, AUFK-LTEXT will be overwritten by system. >_<
    What we expect system to do is that when we release production order, AUFK-LTEXT can be changed to 'E', so that we can display long text via CO02, CO03.
    Please help.
    Cheers,
    Qiang

    There is no standard SAP enhancement we can use for this purpose.
    We have developed another program to maintian the long text in production order.
    This call can be closed.
    Cheers,
    Qiang

  • Empty long text in notification

    Hello Everyone,
    Here is my problem.
    We create a notification via IW21following these steps :
      - Fill the mandatory fields
      - Fill the Subject LONG Text
      - Create the order
    After saving the created notification and while trying to display/modify our notification, we find that the LONG Text previously filled EMPTY.
    Can you please propose a solution to get the LONG Text once we save the notification?
    For you information, I tried the solution Import FROM MEMORY ID 'SAPLSTXD000001' but the customer isn't satisfied with it and wants something more efficient.
    Thank you for your help.
    Kima

    Hi kima,
    I feel this thread has the answer. Long text not saving data
    Jogeswara Rao K

  • RFBIBL00 - updating long text

    Hello Experts,
    I am using RFBIBL00 program to post documents through FB01.
    I have a requirement to update longtexts.
    I updated BBKPF, BBSEG structures and wrote to a file which is the input for the program RFBIBL00.
    Everything is working fine but i could not able to find the way to update the long text.
    Please guide me how to deal with this issue.
    I seen some posts for this type of issues but no where I got solution.
    Thanks in Advance,
    Venkat

    Since there is no option in RFBIBL00, I have developed a program separately using Save_text and run the program take text from flat file and create long text

  • Allow modifications over  "Long Text" in notifications until it's released

    Hi friends!!!
    It is possible to allow modifications over field LONG TEXT until the notification is released??, I know you can disable a field in customizing but I don't know how to restrict the action just until the notification is released,
    I need your help!!!!!
    Thanks so much,
    Frinee

    Peculiar - I was just looking at this (for a different problem). Look at OSS note #876698.
    Rob

  • 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.

  • Using CATT to update Long Text in Info Records

    I am in a 4.7 environment, and trying to use CATT to update Purchasing Info Records (PIR) to include Long Text.  Does anyone know how I can get the script to work with long text that changes for each PIR?  I have tried several times, but can only get it to work with a single text entry.  Any help would be greatly appreciated.
    Cathy

    Hello Cathy,
    I use tcode OMQ3 to transfer texts. It took me awhile to figure out the easiest way to use and find it very simple now. Read the program documentation on how to use.
    Hope this helps.
    Cheers !

  • Issue in updating the long text for Routings

    Hello,
    I am developing an onject to update Long text(which are already created but need to be overwritten).
    Can this be done using /SAPDMC/SAP_LSMW_IMPORT_TEXTS via LSMW.
    I developed an LSMW witht this, I am able to retrieve the required field for name which are needed as key from tables.But how can I dynamically update this field for the correct value relating the operation.One issue regarding this I am facing is that in conversion, I have operation number in the source field and have maintained source field according to source file but use values just to retrieve correct value for name field in mapping,it is taking only the last operation number into account from the source file itself and not earlier values.please guide.
    Regards

    yes you can use /SAPDMC/SAP_LSMW_IMPORT_TEXTS via LSMW
    In the SAP system, there is no uniform rule for the structure of the actual text key Textname. However, in order to be able to maintain the structures and fields, you have to know what the structure of text name as well as the values for text object and text ID are.
    Procedure
           1.      Display a text of the required text type.
           2.      Branch to the editor.
           3.      Choose Goto > Header.
    The Text header dialog box appears.
    Result
    In the Text header dialog box, you gather the required information.

  • Long Text not transfered from Notification to Order

    Hi Experts,
    We have 4.6 c version where in the Long Text from Notification created does not gets transfereed to Order if Order is created through Notification.
    Does any one knows about any config missing or any note which needs to be applied.
    Also if we go for E.C.C 6.0 do we need to maintain the config
    Plant Maintenance and Customer Service->Maintenance and Service Processing->Maintenance and Service Order >Functions and Settings for Order Types>Define Notification and Order Integration
    instead of or in addition to the config
    Plant Maintenance and Customer Service->Maintenance and Service Processing->Maintenance and Service Notifications >Notification Creation>Notification Types-->Assign Notification Types to Order Types
    Appreciate your valuable input in this regards
    Thanks
    Manish

    Hi
    These are the some of the notes related to ur issue...
    I am not sure its gonna solve... but check it.. u might get some idea
    [445628|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=445628]
    [661800|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=661800]
    Pl Note : i think in 4.6c it not available kindly check in Define notification and order data in one screen whether option is available or not
    - Pithan

Maybe you are looking for

  • Is there anyway to get music that wasn't purchased on I Tunes from my I phone to my macbook?

    I used to own a pc which i had lots of music on it i transfered this music onto my i phone from my pc and i have hundreds of songs on my i phone. a large portion of these songs were not purchsed on i tunes. I hadnt used my pc in about a year since i

  • Error in calling XI Integration Directory

    Hi, When going to url: http://<host>:<port>/rep in SAP Exchange Infrastructure and then clicking at Integration Directory, the next page displays error message: "The requested client is unknown!" Kindly suggest.

  • Tecra A11 - Bios Update offered - necessary?

    Hi - I've just been offered a BIOS Update for my Tecra A11-17N (Via Toshiba Service Station) - BIOS Update v3.10.... Clicking on the update doesn't offer any details as to what it contains/fixes/improves - it just says basically "install, and compute

  • Access Denied error while Accessing MCP

    Hello Unfortunately it is not possible at this time to register for the exam 70-649. I have to make up the norgen but. otherwise my second shot is lost. Can you check if it is only temporary?

  • Sync Nokia 6102i

    It was suggested that I upgrade from Mac OS 10.3.9 to 10.4 in order to sync my Nokia 6102i phone's calendar and address book w/my iMac. I did so. When trying to sync this phone again I get a message that iSync doesn't recognize the phone. What next?