Create the Header Text In Sales Order Header

Hi All,
I want to create a new header text in the sales order header level, Would you mind give me some manual to create this ?
Regards,
Luke

Hi Luke,
Please goto T-code VOTXN->Sales Document->Header->Text object     VBBK
You could create Text ID and access sequence.
Assign the access sequence to text ID.
Assign the text ID to the procedure.
Assign the procedure to sales order type.
Please also refer the following online documentation:
http://help.sap.com/saphelp_47x200/helpdata/en/dd/55f993545a11d1a7020000e829fd11/frameset.htm
Hope it helps.
Regards,
Smile
Edited by: Smile Zhang on Jul 3, 2008 7:22 AM

Similar Messages

  • Dump after creating new header text on sales order and invoice.

    Hello,
    We have created one header text on sales order and the same text for invoices, on VOTXN customizing.
    Testing the new text, system let us save the text fine, but later, if we display the text, system give us dump error.
    My question is, after transport the customizing to the next environment, is necessary run a standard program. Since VOTXN, we have generated the new access created, but dump appear displaying text header tab.
    Any help on this?
    Thanks in advance

    Hello Customer master table man
    1) Did you review the dump analysis- ST22?  Do that because the dump amy or may not be related to the Text config changes.
    2) You are also mentioning about transporting?  Did you already transport and are facing this issue in the target client or is it happening in the source client and you want to avoid it in the target? OSS note 1117467 throws light on transporting issues.
    Review the following OSS notes:
    548615 - FAQ: Text determination in SD II
    548517 - FAQ: Text determination in SD I
    1117467 - Text Customizing change not transferred in target system II
    970153 - Change to Customizing text not transferred to target system
    Hope this helps.

  • How to update TEXT in Sales order header

    Hello ,
    I have requirement in which I am creating SO via IDOC calling BAPI_SALESORDER_CREATEFROMDAT2.
    Question: Can any one help me in finding a solution to update the TEXT in sales order header which is confogured IN TEXT CONTROL in SD.
    I have tried various option using CREATE_TEXT but it is only updating STXH table , the text is not coming in the sales order.
    If someone knows about this , <removed by moderator>.
    Edited by: Thomas Zloch on Nov 15, 2010 4:20 PM - please do assign priorities > normal

    Sounds like a text determination config issue - have you assigned the text in VOTXN?  Have you run the text determination analysis from VA02 in the document?

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

  • How to create a sap script for sales order header items?

    Hi friends i am totally new to scripts i have got a task where i have to create a sap script for sales order header items details, the clue that i have got is to create using MEDRUCK but i have got no idea please can any body help me with this task with any sample sap script?
    Points will be rwwared with out fail Thks in advance.

    Hi,
    The Standard Form NAme is RVORDER01
    Regards
    Sandipan

  • HEADER TEXT OF SALES ORDERS

    WHERE CAN I SEE THE PARAMETERS VALUES IN  "READ_TEXT "   FM
    OBJECT
    ID
    NAME
    LANGU
    SUPPOSE I WANT TO READ THE HEADER TEXT FOR SALES ORDER. IAM USING 4.7 IDES.

    hi  ,
    its easy to find where the the parameters are stored.
    Just right click on the parameter  and click on Technical information to see the table name..
    this is applicable for all.
    Siva

  • Budget control in project WBS'e  while creating the auto PR from Sale order

    Hi experts,
    we are creating the auto pr from sales order for trading process with budget wbs element. but commitment is not posted in project wbs were as pr is created through sale order
    pls suggest if any additional setting is required  to post commitment while creating auto pr from sale order.
    rgds
    rajesh

    Check account assignement categories in SD for PR creation and See if you can make PR to be created with WBS as account assignement like we do in OPTT.

  • Can u tell me any bapi to create the purchase req with sales order as refer

    can u tell me any bapi to create the purchase req with sales order as reference?

    Hi Mukesh,
    You can use 'BAPI_REQUISITION_CREATE' for the purchase requisition creation if through transaction, you use transaction ME51N for creating the purchase requisition.
    Cheers,
    Sujay

  • The header text in sales order are coming on DE (and has to be PT)

    Hi SDN Team members,
    I have a strange issue. In the sale s order header the text by default it is coming as DE(German language) but it should be PT portugal language. This situation is in production system. The SAP log on language is PT.
    I have replicated the same scenario in Relica of Production as well as test system where i am getting by default language is Portugal.   Even i have tried to log on in to PT language where i am not getting the above problem where sales order shows the header text as default PT.
    I have checked the sold to party - where the language is maintained as PT, Also in Sales organization and in company code level where the language is maintained in PT.
    I have checked the OSS Notes also 442976 and Note 451147 and also the report -  RVTEXTE..
    This problem comes for almost all the sales users of the portugal.
    Can you please help me to resolve this problem.
    Looking forward for your favorable reply.
    Thanks and Regards,
    Jana

    Hi SDN team,
    I have solved this request.  By running the Program - RVTEXTE and inputing the selection parameters as per out business requirement and the problem has been resolved.
    Team - Thanks for all your valuable inputs.
    Regards,
    Jana

  • Reading the block message or text from sales order header.

    Dear All,
    Please let me know how to read the block text which is present in the sales order header under texts tab.
    thanks in advance
    regards,
    Shoban

    HI
    Please look intothe follwoing code, which helps you to understand how to read the header slaetext.
      DATA: BEGIN OF text_head.
              INCLUDE STRUCTURE thead.
      DATA: END OF text_head.
    DATA: BEGIN OF TEXT_LINES1 OCCURS 10.
          INCLUDE STRUCTURE TLINE.
    DATA: END OF TEXT_LINES1 .
    DATA: text_id     LIKE thead-tdid     VALUE '0001'.
      DATA: text_spras  LIKE thead-tdspras   VALUE 'EN'.
      DATA: text_name   LIKE thead-tdname.
      DATA: text_object LIKE thead-tdobject VALUE 'VBBK'.
    CALL FUNCTION 'READ_TEXT'
          EXPORTING
            client                  = sy-mandt
            id                       = text_head-tdid
            language                = text_head-tdspras
            name                    = text_head-tdname
            object                  = text_head-tdobject
          TABLES
            lines                   = text_lines1
          EXCEPTIONS
            id                      = 1
            language                = 2
            name                    = 3
            object                  = 5
            reference_check         = 6
            wrong_access_to_archive = 7
            OTHERS                  = 8.
        CASE sy-subrc.
          WHEN 1. RAISE invalid_id.
          WHEN 2. RAISE invalid_language.
          WHEN 3. RAISE invalid_name.
           WHEN 4. RAISE NOT_FOUND.
        ENDCASE.

  • Header Text Update(Sales Order) in - MV45AFZZ - USEREXIT_SAVE_DOCUMENT_PREP

    Hi,
    I am creating a sales order from third party systme and do saom validation in EXIT - MV45AFZZ(the exit called before saving Sales Order). Based on my validation I am appending the header text incase if it is available already else I key in some text incase if we don't have a text.
    Since we don't have the OBJECT NAME (Sales order number) at this point I am not able to do this. Can you please help me to resolve this.
    Thanks in Advance... <<Text removed>>
    Regards
    Mohan
    Edited by: Matt on Apr 9, 2009 9:58 AM - Do not offer points

    Write the same logic 'after sales order number has been generated', it will be done in USEREXIT_SAVE_DOCUMENT  user exit.

  • Error in header texts of sales orders

    Hi gurus
    I am working on ecc5.0.
    This issue is related to sales order creation.
    When i want to create header texts for the sales order it says that error in text processing.It gives the following error msg.
    The SD_WORD_PROCESSING function module is for creating the "Maintain Text" dialog box. You have called up the function module with the wrong values so it is not possible to edit text properly.
    Check the parameters for the SD_WORD_PROCESSING_PUT function module.
    Any help on this is highly appreciated.
    Thanks
    S.

    If in batch - look to SAVE_TEXT func module
    DATA BEGIN OF TXLINES OCCURS 1000.     "table for SAVE_TEXT
      INCLUDE STRUCTURE TLINE.
    DATA END OF TXLINES.
    DATA BEGIN OF TXHEAD.                  "HEADER for SAVE_TEXT
      INCLUDE STRUCTURE THEAD.
    DATA END OF TXHEAD.
    CALL FUNCTION 'SAVE_TEXT'
      EXPORTING HEADER = TXHEAD
                SAVEMODE_DIRECT = 'X'
      IMPORTING NEWHEADER = TXHEAD
      TABLES    LINES = TXLINES
      EXCEPTIONS ID = 1
                 LANGUAGE = 2
                 NAME = 3
                 OBJECT = 4.

  • Marketing text in sales order header

    Hi All,
    Please let me know from where does the text gets reflected in sales order header. Header has a tab TEXTS, in which we have series of texts.
    Do we have option to save the texts in any table/structure
    Thanks in advance
    regards,
    satya

    Hi
    Go to SO10 and check the material text . Now go to VOTXN and check wheather the assignment is there for sales header or not
    Regards
    Srinath

  • Header text in sales order level

    Dear Experts,
    Kindly advise me how to control sales order header level text as not modifiable in T.Code:VA02.
    this is not for all text ids only 2 text ids out of 15.
    Thx

    Hello Colleague;
    All of configuration related with text you can find in t-code VOTXN. There you can choose for each ID if the text is obligatory and if it will displayed when transferring, but you can't set "non-modificable" during VA02 or something like this.
    In order to execute the rule that you want to apply I advise you do add a "Z" routine or user-exit to attend it.
    I hoe it can clarify the question.
    Regards
    Ruy Castro

  • Idoc problem: I canu00B4t modify Header text before sales order is created

    We are generating Sales order with Idoc :ORDERS01 (Inbound), and we´d like modify some  text in E1EDKT1 AND E1EDKT2 segments, at header level.
    We are using EXIT_SAPLVEDA_011 with this coding:
    data: v_e1edkt1 like e1edkt1,
          v_e1edkt2 like e1edkt2,
          v_index like sy-tabix.
    segment E1EDKT1----
        read table dedidd with key segnam = 'E1EDKT1'.
        if sy-subrc eq 0.
          v_index = sy-tabix.
          v_e1edkt1 = dedidd-sdata.
          v_e1edkt1-tdid = '001'.
          v_e1edkt1-tsspras = 'EN'.
          v_e1edkt1-tsspras_iso = 'E'.
          v_e1edkt1-tdobject = 'VBBK'.
          dedidd-sdata = v_e1edkt1.
          modify dedidd index v_index.
    segment:E1EDKT2----
              read table dedidd with key segnam = 'E1EDKT2'.
              if sy-subrc eq 0.
                v_index = sy-tabix.
                v_e1edkt2 = dedidd-sdata.
                v_e1edkt2-tdline = 'FIXED TEXT BLA BLA BLA '.
                v_e1edkt2-tdformat = '*'.
                dedidd-sdata = v_e1edkt2.
                modify dedidd index v_index.
             endif.
        endif.
    but Nothing .. I'm not able to modify the text when the Sales ordes is created.
    Are we modifying the right structure ?? or  do we need to flagear some variable ??
    any suggestion ???

    Ok!. I moved the coding to EXIT_SAPLVEDA_001:
    if segment-segnam = 'E1EDKT1'.
          V_puntero   = sy-tabix.
          V_E1EDKT1 = segment-sdata.
          V_E1EDKT1-TDID        ='003'.
          V_E1EDKT1-TSSPRAS     ='EN'.
          V_E1EDKT1-TSSPRAS_ISO ='E'.
          V_E1EDKT1-TDOBJECT    ='VBBK'.
          segment-sdata = V_E1EDKT1.
    endif.
    if segment-segnam = 'E1EDKT2'.
          V_puntero   = sy-tabix.
          V_E1EDKT2   = segment-sdata.
          V_E1EDKT2-TDLINE     ='FIXED TEXT BLA BLA BLA..'.
          V_E1EDKT2-TDFORMAT   ='*'.
          segment-sdata = V_E1EDKT2.
    endif.
    It´s not working .! .
    I have a suspect with TDID   ='003', if I check the Sap table: STXH-TDID , that ID is char 4.

Maybe you are looking for

  • Refurbished iPod Touch Help Please?

    Hello, I'm considering purchasing two of the iPod Touch for my wife and I for Christmas. Considering that the cheapest one is $229, I thought about the refurbished ones that are selling a lot cheaper and I'm interested in maybe getting those. I found

  • Procedure for creating Inbox views

    HI All, Could you please let us know the procedure for creating new Inbox view in BPM 11g. We have an option to create my Views / Sharing Views in 11g but how we can put that under Inbox views. Thanks, Aravind.

  • Can't open Quicktime player after installing

    Hi, I did a search and couldn't find this problem being directly addressed so hopefully someone can enlighten me. I had an older version of Quicktime on my computer that just stopped working properly (it may have been after I upgraded Internet Explor

  • My ibook suddenly shut down and wont start up. please help!!!

    hi, im new to macs so i need help! my ibook g3 700hmz was acting completly normal and i was using elmedia player on it, suddenly it went on hybernate while i was using it. i could not revive it no matter what i did and i could not shut it down so i t

  • ERecruitment Process Template Activities

    Hi All,         I am working in eRecruitment implementation project. I have an issue with activities. I Rejected a candidate application by creating Rejection activity. But after rejecting the application still the system is allowing to change the st