Header Text in delivery to be made mandatory

Dear Friends,
   I want to make Certain Text in the delivery to be made mandaotry, the sytem should not allow the user to process further without updating the required text.
I could not find the exact field to be included in the incompletion log. I had made the text obligatory and the text are appearing in the incompletion log but it doesnot issue any messages or block the system from further process.
Please guide me...
sunil

Hi,
Perhaps this links helps you: http://www.sapfans.com/forums/viewtopic.php?f=13&t=318598
I've use 2 years ago, but now I don't remember how (I dont find documents about this issue). I remember that you must use the structure XTHEAD (the definition is lika THEADVB, where the field UPDKZ behaves as the same field in structures XVBAP,and so on).
I hope this helps you
Regards,
Eduardo

Similar Messages

  • Copy header text of Delivery to Shipment

    Hi All,
    Please let me know the user/customer exit to copy the header text of delivery to shipment while creation(VT01N) or deletion(VT02N) of shipment for deliveries.
    Please provide the code samples or procedure, if you have any.
    Thanks in advance and points will be rewarded
    -Venkat

    Hi
    Use these User exit and write the code for the same in one perform of its include this is having the delivery details and capture the same into your shipping
    EXIT_SAPLV56F_010
    regards
    Shiva

  • Header text for delivery order

    Hi,
    I want to retreive the header text for the given delivery number. Can anyone explain me in detail way how to retreive this.
    If there is any FM please let me know What inputs should be given to that FM.
    Thanks,
    Rose.

    Hi,
    You can use the FM read_text.
    see the link below to solve your purpose.
    http://www.blogtoplist.com/rss/function.html
    Please reward points if useful.
    Regards
    Rose

  • Copy delivery header text to shipment header text

    Hi All,
    Please let me know the user/customer exit to copy the header text of delivery to shipment while creation(VT01N) or deletion(VT02N) of shipment for deliveries.
    Please provide the code samples or procedure, if you have any.
    Thanks in advance and points will be rewarded
    -Venkat

    Hi
    Use these User exit and write the code for the same in one perform of its include this is having the delivery details and capture the same into your shipping
    EXIT_SAPLV56F_010
    regards
    Shiva

  • Sales Header Text copy to Delivery Header Text

    Hello,
    We want to copy sales order header text to delivery header text.
    We already did the configuration VOTXN in DEV client and it is working.
    When transported to QA client, we're not able to copy sales order header text to delivery header text.  It is still saying Access Sequence missing.  Checked the configuration in QA, and the access sequence is there attached to the Text Field.
    What else could have been missing?

    Hello,
    Have you created Sales order Header Text by using transaction SO10.
    if Yes,then Run the program 'RSTXTRAN' and attach the Text object to your TR.
    Then Transport this Text to Quality.
    There will be 2 workbench request and 2 Cutomising request.
    Please take care of Sequence in order to move it to QAS(As per Condition Technique Determination)
    Revert if not resolved.
    Regards
    Amit

  • Modify Delivery header Text

    I have a requirement where I need to modify a header text of delivery and update it . The header text however is copied from STO (we are creating delivery from STO) through a copy routine.
    I need to know the user exit / badi / extension where I can implement this logic. The point where STO header text is copied from Delivery and I can acess this data before delivery save and update it.
    I tried many user exits but the text was not available until that point.

    Hi Neha,
    I would recommend you to create the copy of the routine xxx to 9xx that does the part of copying the text from STO to delivery and then after configuring the same routine in SPRO instead of the standard one.
    In the copied routine i.e. 9xx you can add the code and see the change happen.
    Please validate the same at your end as well, please come back if any inputs from my end are required on this.
    BR/Thanks
    Pranav Agrawal

  • Get Header Text with special characters

    Dear Experts,
    I have written a program using READ_TEXT FM to get header text from Delivery.
    However, one of the fields has a value "K&N".
    When I get the header text, it shows "K<(>%<)>N".
    How can I get back the normal text? Or do I need to replace the strings manually?
    It is stupid.
    Thanks.
    Regards,
    Cato

    Hi Cato,
    Just go to this thread and solution from Valter.
    [Read_text|Read_text with special character "&".;
    Regards,
    Madhu.

  • How to get the header text of a PO

    Hi,
    Do you guys know which table stores the header text of a PO? i'm only getting RM06E which is a structure.
    Thanks!

    Hi,
    You need to use the Function Module 'READ_TEXT' for retrieving any text in the header texts.
    For this FM, the mandatory export parameters will be
    a) client b) ID c) language d) name e) object
    here the parameter name will be your P.O.No and the object will be your P.O. table - 'EKKO'.
    So on executing this FM, all the required texts are retrieved in the tables parameters. From this tables paramater, you can read the table and pass on the values to your required internal table for display purpose.
    lakshminarayanan
    Please mark all helpful answers for points.

  • Mandatory field - Header text and Reference field  for company code

    Hi
    In transaction code FB60, I want to make header text and reference field mandatory at the company code level.
    For one company code , the header text and the reference field should be made mandatory but for the other 8 company codes , those fields should not be mandatory.
    if I make the fields mandatory via the document type , then it will be applicable for all the company codes using the document type.
    thanks in advance
    Kind regards
    sap student

    Hi Chintan
    I have written the validation rule and it is working fine.
    Thanks
    kind regards
    sap student

  • Long text to be made mandatory in QA11 for rejected Inspection lots

    Hi
    My requirement is whenever a inspection lot is rejected in QA11 ie qave-vbewertung = 'R' then reason should be provided in log text section.It has to be made mandatory.
    I am trying EXITs EXIT_SAPMQEVA_007 and EXIT_SAPMQEVA_004 but error message doesnt come.Even if i write code so that error message is triggered still information or abort message comes.Is there any way to forcibly display error message.
    Can you suggest any other solution?
    *& Include ZXQEVU09 *
    DATA: v_lot TYPE qave-prueflos,
    v_codevaluation TYPE qave-vbewertung.
    DATA : it_mattext(150) OCCURS 0 WITH HEADER LINE,
    v_string(1000),
    l_name LIKE thead-tdname,
    l_header LIKE thead,
    it_lines LIKE tline OCCURS 0 WITH HEADER LINE,
    v_string1(3000),
    out_texts(57) OCCURS 0 WITH HEADER LINE.
    v_lot = i_qals-prueflos.
    v_codevaluation = i_qave-vbewertung.
    IF i_qave-vbewertung = 'R'.
    CONCATENATE sy-mandt i_qals-prueflos i_qave-kzart INTO l_name.
    CLEAR : it_lines, it_lines[].
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    client = sy-mandt
    id = 'QAVE'
    language = sy-langu
    name = l_name
    object = 'QPRUEFLOS'
    IMPORTING
    header = l_header
    TABLES
    lines = it_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 ne 0.
    MESSAGE e030(zh).
    ENDIF.
    ENDIF.
    I have tried Message 'Reason is mandatory' type 'E'. also...

    hi Deepika ,
    Instead try to message number try for this method 'MESSAGE ' 'Reason is mandatory' TYPE 'E'.
    i think standard want call the message  number in user exit u need to decalre message id in starting of the program.
    that is not possable .
    i think this may help u.
    regards ,
    santosh
    Edited by: santosh jajur on Jul 16, 2009 1:24 PM

  • REPORT OR TABLE TO CAPTURE SALE ORDER AND DELIVERY ORDER HEADER TEXTS

    HI GURUS,
    where are the sale order header text is stored?
    How to retrieve the same in the form of report.
    the same for Delivery order header text..
    Regards
    Sri

    Hi Sri,
    just goto sales order header text and click on text u will get Text name, Text ID,and Text object
    pass these values to function module READ_TEXT .
    Regards,
    sksk.

  • Table in which if I put the delivery number ..I should get the HEADER TEXT

    Dear Members,
    I am checking for a table in which if I put the delivery number ..I should get the HEADER TEXT. Does such table exists or a Z report shoudl be created for this kind of setup.
    Regards,

    Hi,
    There are two Tables in which the texts will be stored
    One is STXH -
    TEXT HEADER
    other   STXL------- TEXT ITEM
    If you want to get the Header text then input the values in the table
    In STXH
    TEXT OBJECT     is    VBBK
    TEXT NAME      is      DELIVERY NUMBER
    TEXT ID             is       ZS01  ( this is the standard ID for the  Header note 1 )
    Now goto SE37 and give the Function Module READ_TEXT and maintain all the above details and get the TDLINE Which contains the TEXT of the Delivery
    regards,
    santosh

  • Header Text in Billing Document MANDATORY

    HI Gurus,
       Can you please let me know if we can make the Header text field in the Billing Document---> Header Level as mandatory. Is there any possibility to do that or not?
      Thankyou,
      Rakesh Tummala.

    Hi,
    Goto the Transaction code VOTXN and select the SALES DOCUMENT  HEADER radio button
    and goto the change mode inthe application tool bar
    Choose your text determination procedure as defined for Header
    and in the TEXT IDs in the text procedure in the control tab choose your TEXT ID and maintain the TEXT AS OBLIGATORY
    save it and now create the sales order and check the text .
    hope it clarifies your requirement
    thanks
    santosh

  • Report with Delivery number and header text as output

    Hello all,
    I need to create a "quick and dirty" report that which will give me every delivery number, and the corresponding header text, in the month of July for given shipping points.  I am having trouble figuring out how to get the header text for the deliveries.  I have searched and searched but the solutions given just don't make sense to me.
    Regards,
    Davis

    Hi,
    You need to use the function module READ_TEXT to read delivery header text.
    Please go to transaction SE75 and use VBBK as the OBJECT to find the specific ID which is required.
    Regards,
    Ferry Lianto

  • How to get the user entered  header text on a delivery

    Hi All,
    I am looking for a internal table which holds the user entered text in header text of the delivery. I was able to find header data in XTHEAD table. But actual lines(entered text)  in which structure it holds. I checked TLINETAB but its empty.
    My requirement is to check the user enterd text to validate at userexi_save .
    Any help will be appreciated
    Thanks
    Sai.

    Hi all,
    Thanks for ur replies.
    I already tried READ_TEXT. but its not giving the current value.
    check the following code:
            CLEAR lv_valid.
            READ TABLE catalog
                  INTO ls_catalog
                  WITH KEY tdobject = c_vbbk1
                             tdname = likp-vbeln
                               tdid = c_z043.
            IF sy-subrc = 0.
              CHECK ls_catalog-function NE 'D'.
              CALL FUNCTION 'READ_TEXT'
                EXPORTING
                  id                      = ls_catalog-tdid
                  language                = ls_catalog-tdspras
                  name                    = ls_catalog-tdname
                  object                  = ls_catalog-tdobject
                TABLES
                  lines                   = lt_tline
                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.
                CLEAR lv_valid.
                READ TABLE lt_tline INTO ls_tline INDEX 1.
                CALL METHOD z2cl_utilities=>is_valid_text
                  EXPORTING
                    p_text  = ls_tline-tdline
                  IMPORTING
                    p_text1 = lv_text1
                    p_text2 = lv_text2
                    p_valid = lv_valid.
                IF lv_valid IS  INITIAL.
                  MESSAGE e504(z2vl) WITH lv_text1 lv_text2.
                ENDIF.

Maybe you are looking for