TEXT URGENT

The specification is to enhance the Purchase requisition creation process for ZBTO (buy to order) parts.  Currently the requisitions for direct ship parts (ZTAS) have the Purchase Order text from the sales order copied to them.  This enhancement would copy the Purchase Order text from the sales order to the requisition for ZBTO parts, when the planned order is converted to a requisition.
Can someone shed some light on this i need the tables on the SD side, Fields, and what else my input wld be on the SD side.

Hi Ann,
please use  READ_TEXT  and  pass the object name and text id  to the function module as mentioned below code.
CALL FUNCTION 'READ_TEXT'
     EXPORTING
       CLIENT                  = SY-MANDT
       ID                      = V_ID
       LANGUAGE                = 'E'
       NAME                    = V_NAME
       OBJECT                  = 'MATERIAL'
     TABLES
       LINES                   = TXTLNS
     EXCEPTIONS
       ID                      = 1
       LANGUAGE                = 2
       NAME                    = 3
       NOT_FOUND               = 4
       OBJECT                  = 5
       REFERENCE_CHECK         = 6
       WRONG_ACCESS_TO_ARCHIVE = 7
       OTHERS                  = 8.
if you give me brief i can help you out more.
if helpful REWARD points
Thank you .
Regards
Ram

Similar Messages

  • Moving standard text - Urgent

    Hi,
    I have created some standard text in one system.
    I have to move these standard texts to another system.How can i do the same.
    Let me know.
    Its urgent.
    Thanks

    Hi,
    Steps..
    Create a work bench CR in the transaction SE09..
    Modify the task to Development correction / Repair..
    Go to the program RSTXTRAN..
    In the name of correction give the task number (Not the CR number)
    Give the Text Key..Your standard text name..
    Press F8...
    Press select all..
    Then Press enter..
    Then press the button "Trsfr texts to corr".
    Now the standard texts will be moved to a CR..
    Then release the CR and move it to QA..
    Thanks,
    Naren

  • Image in a post element text : urgent

    hello.
    I am simulating a lov popup field (display description, return key..) because I am building the popup page manually...
    All works fine, I have a text field witch receive the key and display a description, I am concatening an image (in the post text element), when I click on this image My lov popup is openeing...
    My problem is : the image witch is right to the text field must be stuck to this text field ( I have a space between them),
    Any idea please ?

    lila,
    We can look at your application on htmldb.oracle.com where you reproduce this problem. Just post the app ID and we'll take a look.
    Scott

  • PO-header text(urgent)

    Hi all,
    I had written the report program to update the heder text of PO.It is working fine but my problem is when i give the new text it gets replacing with old text,but the new text should have to append with old next.The following is the code for which i had done.What modifications i have to do to append new text and old text.
    data : i_poheader like BAPIMEPOHEADER occurs 0 with header line.
    data : i_poheaderx like BAPIMEPOHEADERX occurs 0 with header line.
    data : i_result like BAPIMEPOHEADER occurs 0 with header line.
    data : po_num(15) type n value '4500008083'.
    DATA : t_text TYPE STANDARD TABLE OF bapimepotext.
    DATA : wa_text TYPE bapimepotext.
    data return like BAPIRET2 occurs 0 with header line.
    parameter v_text(100) type c.
      wa_text-po_number = '4500008083'.
      wa_text-text_id   = 'F02'.
      wa_text-text_form = '*'.
      wa_text-text_line = v_text.
      APPEND wa_text TO t_text.
      CLEAR wa_text.
    CALL FUNCTION 'CREATE_TEXT'
      EXPORTINg
        fid               = 'F02'
        flanguage         =  sy-langu
        fname             = 'Append'
        fobject           = 'EKKO'
       SAVE_DIRECT       = 'X'
       FFORMAT           = '*'
      tables
        flines            = t_text.
    CALL FUNCTION 'BAPI_PO_CHANGE'
      EXPORTING
        purchaseorder                = '4500008083'
    TABLES
       return                       = return
       POTEXTHEADER      = t_text.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = 'X'.
    loop at return.
       write : return-message.
       endloop.

    This will sovle ur problem
    select * into corresponding fields of table itab_stxh from stxh where
    tdname = po.
    loop at itab_stxh.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
      CLIENT                        = SY-MANDT
        id                            = itab_stxh-tdid
        language                      = sy-langu
        name                          = itab_stxh-tdname
        object                        = itab_stxh-tdobject
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      tables
        lines                         = wa_text
    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.
    ENDIF.
    loop at wa_text.
    MOVE wa_TEXT-TDLINE TO IT_text-TDLINE .
    move itab_stxh-tdid to it_text-tdid.
    APPEND IT_text .
    endloop.
    break-point.
    write : / itab_stxh-tdid, itab_stxh-tdobject.
    endloop.
    loop at it_text.
    write : / it_text-tdid, it_text-tdline.
    endloop.

  • Translation of standard text urgent

    Hi All,
        I need to translate standard text that I have created in English languague to other languagues. How can I do this. If I have to do this in transaction SE63 then please provide me complete steps to do this.
    Thanks,
    shravan G

    Hi
    Refer these links
    Standard Text thru SO10
    [url] http://help.sap.com/saphelp_nw04/helpdata/en/c1/becc9313767243bde0a8a3e85b4021/frameset.htm [/url]
    Regards
    Raj

  • Aritmetic operation in text Urgent please..

    Hi
    data : a type  i value '5',
             b trype i value '10',
             c(10) type  c value 'a+b'.
    d is result how can I get 20 using c . I want to catch arithemtic op. in text. But how
    Message was edited by:
            yanut

    Hi
    Please refer my code below ) I want to get text's operation into the value .
    lv_C contains formula  I want to assign d value as this formula operation.
    data : a type i VALUE 5 ,
           b type i VALUE 15,
           c type i         .
    data lv_c(10) type c VALUE 'a + b'.
    c = ( lv_c )..
    write c.
    Message was edited by:
            yanut

  • User Exit for managing Customer Master Texts- Urgent

    Hi All,
    I have a requirement in which the the Customer Master Central texts for certain text Id's are to be maintained in such a way via XD02 that whenever any changes are made and it is saved the changes become non editable and added with user date and time and then the user can add additional line of texts but cannot edit the earlier ones. So in this way the earlier texts are prevented from accidental deletion and any new addition has a stamp( User,date,time) to determine who changed it and when. I searcehd for any exit in the program but could find only one i.e. EXIT_SAPMF02D_001
    Is this requirement faesible in standard SAP?
    Now to me this exit could not serve any purpose.Please help.
    thanks,
    Manish

    Hi,
         use the following BADI's which will suitable for ur reqirement
    business Add-In CUSTOMER_ADD_DATA_CS .
    business Add-In CUSTOMER_ADD_DATA
    Regards

  • Master data text - Urgent

    Hi All,
    I have a master data x and a,b,c.. are the attributes.
    Now i'm making attribute 'a' as a masterdata and i need text data for that 'a'.Usually we create a text datasource for that and extract the description.While creating text datasource for the object 'a' which table should i take? Please let me ASAP. Thanks.
    shana

    hi Shana,
    For Test master data extration
    You can create or load text descriptions for master data in BW. Texts are stored in a text table.
    The Name of the person responsible for the cost center is assigned to the master data Person responsible for the cost center in the text table.
    to extract the data from text table i.e   /BIC/TXXXXXXZCUST_N. naming convertion is /bic/TXXXX
    Regards
    vijju

  • Creating text variable, urgent plz

    Hi friends,
               I would like to create a text variable on fiscalyear/period. the requirement is
    when user enters 001.2007   it has to display jan2007
                               002.2007   it has to display feb2007 so on.
       but when I am trying to create on fiscalyear/period it is not allowing me to create text variable. can any one suggest me please, it is an urgent requirement,
    I appreciate your help very much.....
    Ravi.

    Hi ravi
    we can do this with the text with replacement path and the var which u have created u to put display as text thats it...
    take a selection in the rows and create a variable in the text heading and give replacement fron the user entry default variable which the user enters.
    Assign points if it helps
    Khaja

  • Urgent -- using Standard text in SMart forms

    Hi Techi's.
    I have created a standard text using SO10 , and included the same in smartform.
    But the requirement is , i need to change the format of the standard text with my own style, so i craeted a Smart style with relevant Paragraph  and Character formats.
    Plz help me out in linking the STandard text with the smart style.
    I know how to include smart style in smart form, but the issue is "how to include Smart style for the created  Standard Text ".
    Urgent and helpful answers will be rewraded.
    Regards,
    Naveen

    hi naveen
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    regards
    ravish
    <b>plz dont forget to reward points if helpful</b>

  • V V V V Urgent; User asked for F-02 and F-43 Text FIeld mondatory.

    Dear SAP Gurus
    Please Suggest me how should i make Test field as mondatory field in F-02 and F-43 T codes, As i searched in the Internet saying go for Validation i have tried it but no Output. Now just i would to ask you whetheri should go for Ob41 PK FSG or OBC4 FSG If i go for PK FSG will it be effectd in some other Transaction.
    If i go with Validation please share me exact Preriquisite and check with symbols plzzzzzzzzzzzzzzzzzzzzzzz
    Please this is very urgent Requirement.
    Help me out
    Advance Many thanks to Gurus
    Moderator: Please, read and respect SDN rules. That is 3rd warning. Upon next violation your user will be banned

    Hi,
    If you want Text field mandatory in specific T-code then go for Screen Painter and make it mandatory for this take the help of ABAP consultant if you dont know how to do.
    You can do this from validation also.
    Regards,
    Shayam

  • Upload Task List Operation long Text using SAVE_TEXT-Urgent

    Hi ,
    I am trying to create Task List Operation Long text using the function module ..
    SAVE_TEXT .I am passing the following keys
    Text Name       300ATEST057 0000000900000009
    Language        EN
    Text ID            PLPO Long Text
    Text Object     ROUTING    Texts for task list types
    But the long texts are not getting updated in the Task lists operations .
    Can anyone please suggest whether SAVE_TEXT will work for Operation long Texts or not Are we missing something
    .This is pretty urgent requirement .Award points are assured.
    Regards
    Sam

    hi,
    use function module create text
    check the sample code
    DATA: BEGIN OF itab OCCURS 0,
          asnum LIKE asmd-asnum, " Service No
          text(5000)  TYPE c, " Long Text
          END OF itab.
    *DATA: itab1 LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF itab1 OCCURS 0,
          asnum LIKE asmd-asnum, " Service No
          sequ  type i,          " Text Sequence
          text(5000)  TYPE c, " Long Text
          END OF itab1.
    To create Long Text lines for CREATE_TEXT function module
    DATA:BEGIN OF dt_lines OCCURS 0.
            INCLUDE STRUCTURE tline. " Long Text
    DATA:END OF dt_lines.
    Variable declarations for CREATE_TEXT function module
    DATA : dl_name TYPE thead-tdname, " Object Name
           dl_lan TYPE thead-tdspras. " Language
    Constants
    Object ID for Long Text of Service Master
    CONSTANTS:c_best TYPE thead-tdid VALUE 'LTXT',
              c_material TYPE thead-tdobject VALUE 'ASMD'. " Object
    for file splitting.
    DATA: start TYPE i,
          len   TYPE i VALUE 92,
          totlen TYPE i,
          n TYPE i.
    PARAMETERS p_file LIKE rlgrap-filename."input file
    At selection-screen on Value Request for file Name
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Get the F4 Values for the File
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
        IMPORTING
          file_name     = p_file.
    Start Of Selection
    START-OF-SELECTION.
    *To Upload Flat file
      CALL FUNCTION 'UPLOAD'
        EXPORTING
          filename                = p_file
          filetype                = 'DAT'
        TABLES
          data_tab                = itab
        EXCEPTIONS
          conversion_error        = 1
          invalid_table_width     = 2
          invalid_type            = 3
          no_batch                = 4
          unknown_error           = 5
          gui_refuse_filetransfer = 6
          OTHERS                  = 7.
      LOOP AT itab.
        itab1-asnum = itab-asnum.
        CLEAR: totlen,n, start.
        totlen = STRLEN( itab-text ).
        n = totlen / len.
        n = n + 1.
        DO n TIMES.
          itab1-text  = itab-text+start(len).
          itab1-sequ  = sy-index.
          start = start + len.
          APPEND itab1.
        ENDDO.
      ENDLOOP.
      delete itab1 where text is initial.
      SORT itab1 BY asnum sequ.
      LOOP AT itab1.
        dt_lines-tdformat = '*'.
        dt_lines-tdline = itab1-text.
        APPEND dt_lines.
    Call the Function Module to Create Text
        AT END OF asnum.
          dl_lan = sy-langu.
          WRITE : / itab-asnum.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = itab1-asnum
            IMPORTING
              output = itab1-asnum.
          MOVE itab1-asnum TO dl_name.
          CALL FUNCTION 'CREATE_TEXT'
            EXPORTING
              fid         = c_best
              flanguage   = dl_lan
              fname       = dl_name
              fobject     = c_material
              save_direct = 'X'
              fformat     = '*'
            TABLES
              flines      = dt_lines
            EXCEPTIONS
              no_init     = 1
              no_save     = 2
              OTHERS      = 3.
          IF sy-subrc <> 0.
            WRITE:/ 'Long Text Creation failed for Service No'(001),
            itab1-asnum.
          ELSE.
            WRITE:/ 'Long Text Created Successfully for Service No'(002),
            itab1-asnum.
          ENDIF.
          REFRESH dt_lines.
        ENDAT.
      ENDLOOP.
    in text file give first field records in capitals
    regards
    siva

  • URGENT -Material Sales text

    where will store the Sales text which we maintained in the Material master record.
    Can any body help me to solve this problem.
    Plz treat as urgent basis.
    Thx
    Ramesh.B

    hi,
    goto SE16 table MAKT , enter your matcode and language ,
    refer field MAKTG or MAKTX .
    reward if helpful.
    saravanan

  • "Enter" in a multi-line text item (Urgent)

    Hello,
    I am using developer 6i.
    I have a text item on my form with the following properties:
    Height = 100
    width = 100
    Multiline = True
    Now i am assiging a value to this text item programatically.
    I want to show the data assigned to this field in the same pattern as written below:
    Name: Imran Baig
    Age: 27
    Email: misterimran@hotmail.
    Now how to show Age:27 on the next line of the text item, i am using chr(13) but its not working, is there any other way to do this???
    Please help and its also urgent!
    Thanks a lot
    Imran

    Hello,
    Use CHR(10) instead of CHR(13)
    Francois

  • I cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    i cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    Chester31,
    Thank you very much for sharing your file with us!  Now that we are able to reproduce the problem at our end, you may stop sharing the file on Acrobat.com.
    Do you know when this problem (for not being able to add new highlight/strikeout/underline) has started?  Did you update your iOS from 7.x to 8.0 recently?
    We will continue investigating the problem and let you know what we find.
    Thank you again for your help.

Maybe you are looking for