EWM Delivery Text

Folks-Can someone please tell me the necessary config to copy text from ECC outbound delivery to EWM Outbound delivery order.
We have done necessary config in Text management creating a text profile and access sequence for the outbound request and order.
I assume my config is 100%.I think I am missing something more than regular delivery text management config
Has anyone ever encountered similar issues regarding text management in EWM before?
Thanks
Kiran Yarlagadda

Hi Kiran,
solved your problem? If not post your customising entries to see.
Cheers, Ulf.

Similar Messages

  • How to use 'delivery text' in VOFA?

    I have selected the field 'delivery text' in VOFA.
    what should do next?

    Hi,
    This customisation is required to enable the copying of texts from delivery to invoice document.
    For confirmation, please read the OSS note 548517.
    The answer for the specific question is pasted here from this OSS Note
    Question: Where can I set that the texts in the billing document are determined from the corresponding delivery document (and not from the order)??
    Answer: In the IMG under "Sales and Distribution -> Billing -> Billing Documents -> Define Billing types" you can set the "Delivery text" indicator for the corresponding billing type. With the corresponding Customizing (see first question), the texts of the billing document are determined from the appropriate delivery (and not from the order).
    Hope this helps you
    Pls reward if this helps you

  • Delivery text for STO delivery

    Hi Gurus,
    When creating a STO in SAP either a ZGA1 or a ZGFS document type created through Tx ME21N there are fileds to enter delivery text.
    However this text doesn't appear on the delivery document.
    Can this be changed/modified?
    Thanks in advance!
    Regards
    Bawa

    Hi Gurus,
    I need this to resolve soon, please help!
    Kindly let me know if it is possible and what are steps involved in making text entered in PO (Stock transport order) should flow in the delivery created for the same.
    I checked the Text procedure DH is assigned to delivery type ZGA1 and there is no Text ID related to PO included in the Text procedure.
    Can I you please comment on this and show me the way to do it.
    Thanks & Regards
    Bawa
    Edited by: Bawa Bawa on Mar 25, 2009 3:05 PM
    Edited by: Bawa Bawa on Apr 21, 2009 11:23 AM

  • Problem in populating the delivery text in Idoc

    Hi Experts,
           We are using a custom EDI output type for VT02n transaction. Currently we are encountering a problem when we set the dispatch time as 'Send immediately'.
           The problem is some of the characters in delivery texts are missing in the segment of the idoc generated.
           The problem does not occur when we set the dispatch time as 'send with application own transaction'.
           But we did not do any coding based on the dispatch time.
           Please provide us suggestions to solve this problem.
    Regards
    K Arasu.

    Hi,
    Check whether you have maintained the condition records for output for the above combination & also the Print device in the Communication tab & Print immediately settings.
    If you haven't maintained the above, do the same & check.
    Thanks & Regards,

  • Delivery text updation using user exits

    Hii All
    Our client has a requirment where we need to update text in delivery header when we save the delivery.
    The delivery text needs to be updated when we save the delivery.
    Can anyone help me in letting me know steps to be followed to do the same.
    Thanks & Regards,
    Gaurav Manocha

    First of all identify the text id associated with your delivery. Once you identify the text id, change the text id in the sample program below. You can have this logic coded within your MV50AFZ1 user exit
    data: w_txt_hdr  LIKE thead,
          i_text  LIKE tline  OCCURS 0 WITH HEADER LINE,
                         i_text-tdformat = '* '.
                         i_text-tdline = 'sample'.
                   append i_text.
                  w_txt_hdr-tdobject = 'VBBK'.
                  w_txt_hdr-tdname   = likp-vbeln.
                  w_txt_hdr-tdid     = '0008'. "text id
                  w_txt_hdr-tdspras  = sy-langu.
                 CALL FUNCTION 'SAVE_TEXT'
                       EXPORTING
                            client          = sy-mandt
                            header          = w_txt_hdr
                            savemode_direct = 'X'
                       TABLES
                            lines           = i_text
                       EXCEPTIONS
                            id              = 1
                            language        = 2
                            name            = 3
                            object          = 4
                            OTHERS          = 5.
                  IF sy-subrc <> 0.
                  ENDIF.

  • Can we add Delivery texts/Sales order text in VL10 report

    Hi,
    Is it possible to have delivery texts/sales order texts on VL10 report.
    Please let me know if there is a way to do it.I've looked at the note198137.
    Thanks in advance.
    Regards,
    Rekha

    Yes I am aware of the fact that text is accessed thru read_text FM .....
    My question is what parameters/ field values can we plug in STXH/STXL to get info that a particular "text" entry exists in this table. I have a sales order which has few texts, I want to know if they have an entry in STXH and STXL about their text i.d.s....
    Let me put it this way - What ever entry exists in STXH for this sales Order I want to see that. What parameters of this sales order do I pass in this Table STXH to see that entry ??
    I hope this is clear now

  • Delivery Text - header level (Template)

    Dear all,
    Is it possible to hold a template with 'constant fields'as one of the delivery header texts, and then edit this with extra information.
    e.g-  I want to use a delivery>header text called 'internal delivery text for customer' I would like this to always default with the following fields
    Collection ref:-
    Haulier:-
    Collection date:-
    Delivery date:-
    Cost
    Gross weight:
    The user would then enter the relevant details for each individual delivery against each of the fields above  ?
    Is this possible and how do you go about it ?
    Many thanks
    Tony

    How do I create the access sequence that will copy the standard TEXT  ?
    I'm struggling to see how this is linked 
    Can I modify the access sequence that is being used at present   ?
    Could you email me direct please, ?  - [email protected]
    Many thanks
    Tony

  • Including delivery text item (object VBBP) in a Smartform

    Hi,
    I want to include 'Delivery Text' ( Object VBBP, Text ID 0004) into my Delivery smartform.
    I have created a Include Text Text field but what is the Text Name of this delivery text item.
    tnks for any help

    it is delivery number + item number
    delivery number should be 10 digits ,0000045677000010

  • Delivery Text  reading , help plz

    Dear all
      i  am supposed to read the Material text from delivery doc so i m using the following code but not piccking the same at all .
      Data: DESC3(1320).
         TIDNO = '0001'.
        CONCATENATE DELNO
                    T_LITEM-POSNR
        INTO        TNAME.
        TOBJT = 'VBBP'.
        PERFORM FINDTEXT.
          LOOP AT MSLINES.
            DESC1 = mslines-tdline(132).
            CONCATENATE  DESC3 DESC1
                  INTO DESC3  SEPARATED BY SPACE.
            IF SY-TABIX GE 10.
              EXIT.
            ENDIF.
          ENDLOOP.
    *&      Form  FINDTEXT
          text
    FORM FINDTEXT.
      REFRESH mslines.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          client                  = sy-mandt
          id                      = tidno
          language                = sy-langu
          name                    = tname
          object                  = tobjt
        TABLES
          lines                   = mslines
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
      DELETE mslines WHERE tdline IS INITIAL.
    ENDFORM.                    "FINDTEXT
    Helllllllppppppp plz.
    Thnx
    Moni
    Message was edited by: md monirujjaman

    Hi Moni,
    First thing to do is to check the key you are using to try and access the text.  Look up the header of the text you are after using SE16 on table STXH.  If you have some trouble finding it you can make a change to the delivery text (using the standard delivery change transaction) and select all records where TDLUSER = [Your SAP logon].
    This should help you locate the exact key you are looking for.  Remember also that leading zeros should be included in the key where appropriate (check in debug that the key is built correctly).
    If the key is correct (including the language!!!) then the READ_TEXT function will for sure retrieve the lines you are looking for.  Remember also that if you are peforming this code within a delivery userexit the possibility exists that the text has not even been saved yet (still running in update task).  In this case, you will have to access the text from memory directly (this can be a painful process).
    Hope that helps.
    Cheers,
    Brad

  • Update Delivery Text - As done for Sales order using RTEXT-SELKZ

    Dear all,
    We have to update the delivery header texts. But could not find the exact field name for the BDC .
    The similar field name for Sales order is RTEXT-SELKZ.
    Thanks in Advance,
    Regards,
    Vivek K

    Hello,
    if you need to update delivery header texts ,then you can get text data from input file .& then find out what's the text id where you have to insert text data.
    Text id,object,language,Text name ,these 3 fields can help you from delivery.
    Delivery-> display->header-> select particular text-> presss details icon->goto->header.This path will give text id ,object name details of the required text.
    Then use function save_text to load this data for each delivery .
    Hope this helps.
    Thanks.

  • How to make Delivery text not modifiable?

    D/ Friends,
    My Client wants that Delivery line item text should be not modifiable after PGI? How to achieve this? Currently user is able to change the Delivery line item text even after invoicing?
    Thanks a lot

    Mani,
    Thanks a lot for your reply. There is another issue just opposite to the trailing one. It is that
    1. In std delivery line item text is changeable even after PGI.
    2. Now if the Delivery line item text is not changeable after PGI, then I think there should be some exit which prevents the item text to be not modifiable!!!
    3. So how to check which exist is triggering this event i.e. which exist/ enhancement is preventing Delivery line item text to become not modifiable after PGI? My ABAPer is very fresher.
    Thank you.

  • Saving Delivery text without the delivery number

    Hi,
    during delivery creation I need to create a standard item text. I did this using SAVE_TEXT in userexit_save_document and it works fine on the central system. But, the delivery is replicated to our decentral system and the text value is not there. The reason it fails is that the function SHP_BAPI_DELIVERY_REPLICA is called before the COMMIT so the new text is not saved yet.
    I cannot find any userexit before the SHP_BAPI_DELIVERY_REPLICA where the delivery number exists - the number is '$        1'. 
    So...._is it possible to create a text where the delivery number is not generated yet?_
    This is what I have tried with VBELN = '$        1'  and  'XXXXXXXXXX':
            CONCATENATE lips-vbeln lips-posnr INTO l_textname.
            l_headertext-tdobject = l_stxh-tdobject.
            l_headertext-tdname   = l_textname.
            l_headertext-tdid     = l_stxh-tdid.
            l_headertext-tdspras  = l_stxh-tdspras.
            CALL FUNCTION 'SAVE_TEXT'
                 EXPORTING
                      header          = l_headertext
                      savemode_direct = 'X'
                 TABLES
                      lines           = lx_lines
                 EXCEPTIONS
                      id              = 1
                      language        = 2
                      name            = 3
                      object          = 4
                      OTHERS          = 5.
    Any ideas?
    Thanks.

    Hi,
    Try calling the function module SAVE_TEXT with parameter
    insert  = 'X'
    fin orm routine 'USEREXIT_SAVE_DOCUMENT_PREPARE" ,user exit 'MV50AFZ1'.
    Regards
    Vinod

  • How to configure the delivery item text is required text

    Dear All,
            I have issues about delivery item text.  I would like to know how configure to delivery item text is required text (if not enter the text then cannot save delivery and show error message).
           In configuration about delivery text in text control. I configure the delivery item text is (text is obligatory) but the delivery item is only show at incompletion log but not requried field.
           In configuration about incompletion control for deliveries. No table and field is about delivery item text. I trial to enter PTEX(item texts) in field: Screen for creating missing data. The result can detect missing delivery item text but cannot specific delivery item text. If I enter other item text then the delivery can be saved. In additional, when I open screen delivery item text and not enter the delivery item text, the delivery can be saved.   These are incorrect. I would like to check the delivery item text is required text.
           Please suggest me how to solve this issue. Thank you very much. 
    Best Regards,
    Lek Lexus

    the

  • Text from Stock Transfer Order to Outbound delivery

    Hi guys
    We wish to enter line item test in a Stock transfer order UB and transfer it to an Outbound delivery type NL.
    The required text are 'ITEM TEXT' and 'DELIVERY TEXT'.
    Please advise on the appropriate configuration that is required to achieve this.
    Thanks, Felix

    Hi Felix,
    Please go to transaction VOTXN ,
    Please follow Note 751441.
    Revert back for any queries.
    Thanks,
    AMOD

  • Transfer of Header text from Sales Order to Delivery

    Hi Experts,
    I had a requirement to populate Terms of delivery text in Sales Order Header text with some predefined value which I have accomplished using MV45AFZB - User Exit USEREXIT_CHECK_VBAP which transfers the text on save of the document to sales order header (terms of Delivery Text ) .
    Now the issue is the same text is required to be copied to delivery - Terms of Delivery header Text. But this is not happening/Its occuring one out of 4 times . I am not able to find out the reason for this.
    Please help in this regard.
    Thanks

    This can be set in conifugration. Transaction VOTXN. The delivery header text can be set to be referenced from the sales order.

Maybe you are looking for

  • Functioning of control file when re-created

    Hi friends, we can recover database without data loss when there is a situation to re-create control file(for suppose control file is lost and no multiplexed copies are available) using NORESETLOGS option in controlfile script. when we re-create cont

  • Ipad to connect to apple tv

    how do i get the ipad to play on apple tv.  i have home share on but i do not know how to make my ipad play

  • How Can I make the toggle navigation OFF a default for an user

    HI, working with ISS6 Windows 2003 and Xir2 (SP3) I am trying to make one specific user (Or all users) to have hidden (grapped) by default the navigation panel in Infoview, but this setting seems to pick the default (Display=true) not from the user's

  • System Freezes with Seagate 120Gb HDD

    I have recently tried to get an Apple certified technitian install a Seagate 120GB 5400rpm drive in my 15" AL-Powerbook 1.25GHz FW800. The system seems to boot but quickly freezes the computer. The same seemed to happen when booting from the same dri

  • Reg: Downgrading and data management

    Hello all, I've been experiencing some performance issues with my Mac Book Pro lately (I've been having trouble using more than 5-6 tabs in safari or chrome while using itunes and Microsoft Word); I've bought this notebook in mid 2010. It's the 13-in