How to upload text in va01 for item details

Hi Experts
I have used FM INIT_TEXT , CREATE_TEXT and SAVE_TEXT.
for one sales order it's getting created but more than one am getting error
I/O error for text VBBP 0201000473000020 0001 EN .
how to solve this issue

hi Pradeep,
Go through the following link
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f8283ca1-0601-0010-e285-e8974f8dd360

Similar Messages

  • How can I upload text master data for attribute-only Charactertic?

    I can't create infosource for attribute-only Charactertic via direct update from Infoobject, because attribute-only Charactertics you can't choose from available infoobject.
    How can I upload text master data for attribute-only Charactertic?
    Thanks!

    Hi roberto,
    I soloved the problem. I can input the attribute-only char directly in the text box instead of choosing from list of infoobjects, but I still can't find the char in infoobject selection dialog even using search.

  • How to add pictures in CCM for items in SRM_EXTRAXTED_CATLG

    Hi guys (and girls of course),
    Best wishes for 2007 for all of you.
    I've got following issue I've been struggling with: I'm trying to add a picture to items in CCM, but for items coming from R3 (replicated to SRM). I want to use the standard PICTURE/URL field for this ('complex' data type)
    (procedure for uploading R/3-materials is currently already working)
    I've been checking out following BADI's:
    <u>/CCM/IF_EX_CTLG_ENRICHMENT~ENRICH_ITEM</u>
    I have found an example for implementing this in another thread and this seems to work for 'simple' characteristics, eg /CCM/CONTRACT_ID as mentioned in the example)
    <u>IF_EX_BBP_CCM_CHAR_MAINT~VALUATE_PRODUCT</u>
    for additional customer-characteristics this works fine, also for simple standard characteristics (eg /CCM/MPN) this works fine.
    But in both cases i seem to be unable to fill the complex characteristic /CCM/PICTURE (subfield /CCM/URL). I tried to use the same syntax as in the CSV-load file (ie /CCM/PICTURE#/CCM/URL) but it's not working as i expect.
    When i add this info manually to the field, the picture shows as expected. (But adding this info manually is not an option of course.)
    Any thoughts or hints would be greatly appreciated.
    Some additional information
    SAP_ABA     700     0009     SAPKA70009
    SAP_BASIS     700     0009     SAPKB70009
    PI_BASIS     2005_1_700     0009     SAPKIPYJ79
    ST-PI     2005_1_700     0001     SAPKITLQI1
    SAP_BW     700     0009     SAPKW70009
    SAP_AP     700     0006     SAPKNA7006
    CCM     200_700     0005     SAPK-27005INCCM
    SRM_PLUS     550     0006     SAPKIBK006
    SRM_SERVER     550     0006     SAPKIBKT06

    Hi ,
    I was not active on SDN for some time hence did not see yr thread.
    We had used SRM_EXTRACTED_CATALOG in our earlier project and managed to get pictures for all the items in shopping.
    The path we took:
    with the report BBP_CCM_TRANSFER_CATALOG get the SRM_EXTRACTED_CATALOG in CAT
    map the relevant categories in SRM_EXTARCTED_CATALOG to /CCM/MASTER_CATALOG.
    import all the picture JPEG files for all the items in the MIME of server
    SE80->MIME repository -> drill down to BSP/SAP/BC/CCM (sorry i don't remember the exact path and I don' t have the system now) -> create yr own folder-> import all the JPEG files to this folder.
    now derive a URL for each item in a format: http:
    server name.domain name\services (sap\bc\bsp\cat\yr folder name\file name)
    validate this URL in IE
    it should derive the picture from the MIME of yr server and show you on screen
    now go to mastrer catalog ->open the chara "image" for each item -> paste this url and type (JPEG) -> and save the item
    this should give picture of each item when you are shopping in EBP as preview and in detail also
    it's somewhat cubersome to paster those URLs but it's one time activity.
    Helpful?
    BR
    Dinesh
    reward if helps

  • How to put text line just for a moment ?

    Hi,
    Do you know how to put a text line  just  for one photo? I mean I have more photos  in one portfolio but i need the text line to be seen just for one photo for the others no.
    Thank you in advance.

    You can use composition for this , where you can insert text frame for that specific photo where you want to add some description and for rest dont use text frame.
    Thanks,
    Sanjit

  • How to upload text file

    hi
    i want to create BDC program for the data uploding.. but i dont hv much knwloadge of about it. i need to sample code the data upload program. i hv to upload text file format. im using gui_upload funtion  if u hv any sample plz send me it plz... thnx
    regad
    nawa

    Check the following code:
    Selection screen :
    SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-020.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001 .
    PARAMETERS: p_locl  RADIOBUTTON GROUP g1                   " desktop file
                        DEFAULT 'X' USER-COMMAND fil,
                p_phys  RADIOBUTTON GROUP g1.                  " appln server file
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002 .
    PARAMETERS: p_ifile  TYPE   dxfile-filename LOWER CASE,       " source file
                p_afile  TYPE   dxfile-filename LOWER CASE,       " asset class file
                p_cfile  TYPE   dxfile-filename LOWER CASE,       " Cost center file
                p_dfile  TYPE   dxfile-filename LOWER CASE,       " Depr key  file
                p_ofile  TYPE   dxfile-filename LOWER CASE.       " Audit file
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-015.
    PARAMETERS: p_test RADIOBUTTON GROUP g2 DEFAULT 'X',        " test run
                p_create RADIOBUTTON GROUP g2.                  " data migretion
    SELECTION-SCREEN END OF BLOCK b3.
    SELECTION-SCREEN END OF BLOCK b4.
    Main program :
    REPORT  zfaac900
            LINE-SIZE 132
            LINE-COUNT 65
            NO STANDARD PAGE HEADING
            MESSAGE-ID ZFAA.
    * includes
    INCLUDE: zfaac900_top,
             zfaac900_selection_screen,
             zfaac900_subroutine.
    * AT SELECTION SCREEN ON VALUE REQUEST
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_ifile.
      PERFORM help_input_file USING p_phys p_locl CHANGING p_ifile.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_afile.
      PERFORM help_asset_file USING p_phys p_locl CHANGING p_afile.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_cfile.
      PERFORM help_cost_file USING p_phys p_locl CHANGING p_cfile.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_dfile.
      PERFORM help_depr_file USING p_phys p_locl CHANGING p_dfile.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_ofile.
      PERFORM help_audit_file USING p_phys p_locl CHANGING p_ofile.
    * AT SELECTION-SCREEN
    AT SELECTION-SCREEN.
      PERFORM check_screen USING p_ifile p_afile p_cfile p_dfile
                                 p_ofile p_locl p_phys.
    * TOP-OF-PAGE
    TOP-OF-PAGE.
      ULINE.
       PERFORM sjm_heading IN PROGRAM zacai0005.
      ULINE.
    * START_OF_SELECTION
    START-OF-SELECTION.
      PERFORM get_input USING    p_ifile p_afile p_cfile p_dfile
                        CHANGING i_input i_asset i_cost i_depr.
    Subroutines :
    *&      Form  help_input_file
    *        text
    FORM help_input_file  USING    p_phys_file   TYPE c
                                   p_locl_file   TYPE c
                          CHANGING p_source_path TYPE any.
      IF p_phys_file EQ 'X'.
        CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
          EXPORTING
            dynpfield_filename = 'P_IFILE'
            dyname             = sy-repid
            dynumb             = sy-dynnr
            filetype           = 'P'
            location           = 'A'.
      ELSEIF p_locl_file EQ 'X'.
        PERFORM help_local_file CHANGING p_source_path.
      ENDIF.
    ENDFORM.                    " help_input_file
    *&      Form  help_asset_file
    *       text
    FORM help_asset_file  USING    p_phys_file   TYPE c
                                   p_locl_file   TYPE c
                          CHANGING p_source_path TYPE any.
      IF p_phys_file EQ 'X'.
        CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
          EXPORTING
            dynpfield_filename = 'P_AFILE'
            dyname             = sy-repid
            dynumb             = sy-dynnr
            filetype           = 'P'
            location           = 'A'.
      ELSEIF p_locl_file EQ 'X'.
        PERFORM help_local_file CHANGING p_source_path.
      ENDIF.
    ENDFORM.                    " help_asset_file
    *&      Form  help_cost_file
    *       text
    FORM help_cost_file  USING     p_phys_file   TYPE c
                                   p_locl_file   TYPE c
                          CHANGING p_source_path TYPE any.
      IF p_phys_file EQ 'X'.
        CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
          EXPORTING
            dynpfield_filename = 'P_CFILE'
            dyname             = sy-repid
            dynumb             = sy-dynnr
            filetype           = 'P'
            location           = 'A'.
      ELSEIF p_locl_file EQ 'X'.
        PERFORM help_local_file CHANGING p_source_path.
      ENDIF.
    ENDFORM.                    " help_cost_file
    *&      Form  help_depr_file
    *       text
    FORM help_depr_file  USING     p_phys_file   TYPE c
                                   p_locl_file   TYPE c
                          CHANGING p_source_path TYPE any.
      IF p_phys_file EQ 'X'.
        CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
          EXPORTING
            dynpfield_filename = 'P_DFILE'
            dyname             = sy-repid
            dynumb             = sy-dynnr
            filetype           = 'P'
            location           = 'A'.
      ELSEIF p_locl_file EQ 'X'.
        PERFORM help_local_file CHANGING p_source_path.
      ENDIF.
    ENDFORM.                    " help_depr_file
    *&      Form  help_audit_file
    *        text
    FORM help_audit_file  USING    p_phys_file TYPE c
                                   p_locl_file TYPE c
                          CHANGING p_audit_path TYPE any.
      IF p_phys_file EQ 'X'.
        CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
          EXPORTING
            dynpfield_filename = 'P_OFILE'
            dyname             = sy-repid
            dynumb             = sy-dynnr
            filetype           = 'P'
            location           = 'A'.
      ELSEIF p_locl_file EQ 'X'.
        PERFORM help_local_file CHANGING p_audit_path.
      ENDIF.
    ENDFORM.                    " help_audit_file
    *&      Form  help_local_file
    *       Local File Path
    FORM help_local_file  CHANGING p_path TYPE any .
      DATA:  lt_file_table TYPE filetable,
             la_file_table LIKE LINE OF lt_file_table,
             l_rc TYPE i,
             l_pcdsn TYPE cffile-filename.
      REFRESH lt_file_table.
      CLEAR la_file_table.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        CHANGING
          file_table = lt_file_table
          rc         = l_rc.
      READ TABLE lt_file_table INTO la_file_table INDEX 1.
      l_pcdsn = la_file_table-filename.
      MOVE l_pcdsn TO p_path.
    ENDFORM.                    " help_local_file
    *&      Form  check_phys_file
    *      Validation of Physical  File
    FORM check_phys_file  USING  p_file TYPE any.
      DATA: l_str(300) TYPE c.
      CLEAR l_str.
      OPEN DATASET p_file IN TEXT MODE FOR INPUT ENCODING DEFAULT.
      IF sy-subrc <> 0.
        IF g_file_flag = 'I'.
          MESSAGE e000 WITH text-021.
        ELSEIF g_file_flag = 'A'.
          MESSAGE e000 WITH text-095.
        ELSEIF g_file_flag = 'C'.
          MESSAGE e000 WITH text-096.
        ELSEIF g_file_flag = 'D'.
          MESSAGE e000 WITH text-097.
        ENDIF.
      ENDIF.
      READ DATASET p_file INTO l_str.
      IF sy-subrc <> 0.
        IF g_file_flag = 'I'.
          MESSAGE e000 WITH text-017.
        ELSEIF g_file_flag = 'A'.
          MESSAGE e000 WITH text-098.
        ELSEIF g_file_flag = 'C'.
          MESSAGE e000 WITH text-099.
        ELSEIF g_file_flag = 'D'.
          MESSAGE e000 WITH text-100.
        ENDIF.
      ENDIF.
      CLEAR: g_file_flag.
      CLOSE DATASET p_file.
    ENDFORM.                    " check_phys_file
    *&      Form  check_local_file
    *       Validation of Local File
    FORM check_local_file  USING    p_file TYPE any.
      DATA:  l_size       TYPE     i.
      CLEAR: l_size.
      CALL FUNCTION 'TMP_GUI_GET_FILE_EXIST'
        EXPORTING
          fname          = p_file
        IMPORTING
    *      exist          = l_exist
          filesize       = l_size
        EXCEPTIONS
          fileinfo_error = 1
          OTHERS         = 2.
      IF sy-subrc <> 0.
        IF g_file_flag = 'I'.
          MESSAGE e000 WITH text-016.
        ELSEIF g_file_flag = 'A'.
          MESSAGE e000 WITH text-101.
        ELSEIF g_file_flag = 'C'.
          MESSAGE e000 WITH text-102.
        ELSEIF g_file_flag = 'D'.
          MESSAGE e000 WITH text-103.
        ENDIF.
      ENDIF.
      IF l_size IS INITIAL.
        IF g_file_flag = 'I'.
          MESSAGE e000 WITH text-024.
        ELSEIF g_file_flag = 'A'.
          MESSAGE e000 WITH text-107.
        ELSEIF g_file_flag = 'C'.
          MESSAGE e000 WITH text-108.
        ELSEIF g_file_flag = 'D'.
          MESSAGE e000 WITH text-109.
        ENDIF.
      ENDIF.
      CLEAR: g_file_flag.
    ENDFORM.                    " check_local_file
    *&      Form  get_input
    *       To gate input data from local file or from application server
    FORM get_input USING     p_ifilename TYPE   any
                             p_afilename TYPE   any
                             p_cfilename TYPE   any
                             p_dfilename TYPE   any
                   CHANGING  p_input_table TYPE t_input_table
                             p_asset_table TYPE t_asset_table
                             p_cost_table  TYPE t_cost_table
                             p_depr_table TYPE t_depr_table.
    * to populate the input table
      PERFORM upload_file USING p_ifilename CHANGING i_local.
      g_file_flag = 'I'.
      PERFORM split_localtable CHANGING p_input_table p_asset_table
                                        p_cost_table  p_depr_table.
      CLEAR g_file_flag.
      REFRESH i_local.
    * to populate the asset class table
      PERFORM upload_file USING p_afilename CHANGING i_local.
      g_file_flag = 'A'.
      PERFORM split_localtable CHANGING p_input_table p_asset_table
                                        p_cost_table  p_depr_table  .
      CLEAR g_file_flag.
      REFRESH i_local.
    * to populate the cost center table
      PERFORM upload_file USING p_cfilename CHANGING i_local.
      g_file_flag = 'C'.
      PERFORM split_localtable CHANGING p_input_table p_asset_table
                                        p_cost_table  p_depr_table  .
      CLEAR g_file_flag.
      REFRESH i_local.
    * to populate the depr key table
      PERFORM upload_file USING p_dfilename CHANGING i_local.
      g_file_flag = 'D'.
      PERFORM split_localtable CHANGING p_input_table p_asset_table
                                        p_cost_table  p_depr_table  .
      CLEAR g_file_flag.
      REFRESH i_local.
    ENDFORM.                    " get_input
    *&      Form  upload_file
    *       text
    FORM upload_file  USING    p_filename TYPE any
                 CHANGING p_local_table TYPE t_local_table.
    * To get the input data from desktop file
      IF p_locl = 'X'.
        DATA:  l_file TYPE string.
        CLEAR: l_file,
               p_local_table.
        l_file = p_filename.
        CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename                = l_file
            filetype                = 'ASC'
          TABLES
            data_tab                = p_local_table
          EXCEPTIONS
            file_open_error         = 1
            file_read_error         = 2
            no_batch                = 3
            gui_refuse_filetransfer = 4
            invalid_type            = 5
            no_authority            = 6
            unknown_error           = 7
            bad_data_format         = 8
            header_not_allowed      = 9
            separator_not_allowed   = 10
            header_too_long         = 11
            unknown_dp_error        = 12
            access_denied           = 13
            dp_out_of_memory        = 14
            disk_full               = 15
            dp_timeout              = 16
            OTHERS                  = 17.
        IF sy-subrc <> 0.
          MESSAGE e002 WITH l_file.
        ENDIF.
      ELSE.
    *    To get the data from application server file
        OPEN DATASET p_filename IN TEXT MODE FOR INPUT ENCODING DEFAULT.
        IF sy-subrc <> 0.
          MESSAGE e001 WITH p_filename.
        ENDIF.
        CLEAR: wa_local.
        DO.
          READ DATASET p_filename INTO wa_local.
          IF sy-subrc <> 0.
            EXIT.
          ENDIF.
          APPEND wa_local TO p_local_table.
          CLEAR: wa_local.
        ENDDO.
        CLOSE DATASET p_filename.
      ENDIF.
    ENDFORM.                    " upload_file
    *&      Form  split_localtable
    *       text
    FORM split_localtable CHANGING p_input_tab TYPE t_input_table
                                   p_asset_tab TYPE t_asset_table
                                   p_cost_tab  TYPE t_cost_table
                                   p_depr_tab TYPE t_depr_table.
      DATA: l_cnt TYPE i.
      CLEAR: l_cnt, wa_local.
      LOOP AT i_local INTO wa_local.
        REFRESH i_split[].
        SPLIT wa_local AT c_tab INTO TABLE i_split.
        CLEAR l_cnt.
        ADD 1 TO l_cnt.
        CLEAR wa_split.
        LOOP AT i_split INTO wa_split.
          IF g_file_flag = 'I'.
            ASSIGN COMPONENT l_cnt OF STRUCTURE wa_input TO <fs_field>.
          ELSEIF g_file_flag = 'A'.
            ASSIGN COMPONENT l_cnt OF STRUCTURE wa_asset TO <fs_field>.
          ELSEIF g_file_flag = 'C'.
            ASSIGN COMPONENT l_cnt OF STRUCTURE wa_cost TO <fs_field>.
          ELSEIF g_file_flag = 'D'.
            ASSIGN COMPONENT l_cnt OF STRUCTURE wa_depr TO <fs_field>.
          ENDIF.
          CLEAR <fs_field>.
          <fs_field> = wa_split-col.
          ADD 1 TO l_cnt.
          CLEAR wa_split.
        ENDLOOP.
        IF g_file_flag = 'I'.
          APPEND wa_input TO p_input_tab.
          CLEAR: wa_input .
        ELSEIF g_file_flag = 'A'.
          APPEND wa_asset TO p_asset_tab.
          CLEAR: wa_asset .
        ELSEIF g_file_flag = 'C'.
          APPEND wa_cost TO p_cost_tab.
          CLEAR: wa_cost .
        ELSEIF g_file_flag = 'D'.
          APPEND wa_depr TO p_depr_tab.
          CLEAR: wa_depr .
        ENDIF.
        CLEAR: wa_local .
      ENDLOOP.
    ENDFORM.                    " split_localtable

  • Sciprt - Repeat Column headings for Item details in Main Window.

    Hi,
         I have to repeat the column headings for each line item in main window.How can this be done.
    For example:
    ItemNo            material           Quantity
    0001            100-100            99.00
    ItemNo            material           Quantity
    0002            100-300            99.00
    ItemNo            material           Quantity
    0003            100-300            99.00
    This i need to do in the main window while printing the item details.

    Hi,
    It is very much possible..
    Follow the steps..
    1. In your print program Put write_form function module in a Loop.. pass the element as Item_line (whatever in your case)..
    and the window as Main..
    2. Put the below code in script editor:
    /E  ITEM_LINE
      /:  &zzItemNo&,, &zzmaterial&,, &zzQuantity&
      /:  &W_value-item&,, &w_value-MATNR&,, &w_value-MENGE&
    One more thing for you.. There is a table calles TTDTG.. here you can maintain some user defined variables... Like zzmaterial.. maintain its text as Material Number.. and then  you can use this ZZMATERIAL in sap script editor to diplay output as Material Number (On the layout)
    I hope you got it....
    Regs,
    Lokesh.
    Edited by: Lokesh Tarey on May 7, 2010 9:00 AM

  • How to set a page template for news detailed view?

    Is there a way to set a page template for the detailed view of the news module?
    I have a page template setup and added the {module_announcement,,,,,} to the page. When the news item is clicked it always opens the default template - is this how it is designed to work or is there a way I can specify it to use a different page template?
    Dave.

    Hey Dave, See the image below:

  • How to read text and it's font details (Family and size) using Acrobat plugin?

    Hello,
           I have query about reading PDF, I wanted to extract text and it's font details (Family and size) using Acrobat plugin. How can I achieve that?
    Any suggestions are welcome.
    Thanks
    Rohit Shinde

    Look at the samples in the SDK around PDFEdit and the PDEdit APIs.

  • From canada - how to buy text in spanish for elementary school student in Colombia

    How can I purchase elementary school text books iin I books for a student in Colombia ( in Spanish)

    Hi pctiger92!
    The WRVS4400N is now being handled by the Cisco Small Business Support Community.
    For discussions about this product, please go here.

  • How to use text-by-speech for N80?

    I have been reading some posts here and there, but I havent seen anywhere where it states that text by speech works or does not work for N80? I was hoping somebody coud tell me, if it does work how do you install it?
    Thank you so much

    text to speech is a feature on a certainphone eg E90.the phone has to support text to speech.And the software that u download is only the langague for text to speech.
    At last a nseries phone im truely happy with THE N82

  • How to change text in symbol for slideshow

    Hello, Newby here. I have done the lesson 5 in Adobe Edge Animate Classroom in a Book and everything went well up to a point. When I edit the text for the drop down moreinfo symbol it changes the text for all of the slides. How do I make the text individual to each slide??? The book does not explain this. Many thanks for any help.

    Since I am not sure what you have I can just give you general info.
    To create an array for text, for example create an array called info.
    var info = [
    'your enter your text for slide 1 here',
    'your enter your text for slide 2 here',
    'your enter your text for slide 3 here',
    'your enter your text for slide 4 here',
    'your enter your text for slide 5 here'  // no comma here - it is the last element of the array.
    Now you will have to add the code to reach the text in your symbol and this is where it can be tricky, depending what depth it is in. A basic symbol named slide with a text inside named caption would be
    sym.getSymbol('slide').$('caption').html(info[0]);
    and it will show element 0 in the array (the first element).
    The way you call it depends on you.
    I usually call it the way I showed above on a click event or another kind of event.

  • HT2305 how to upload text files to Iphone

    How can I transfer Text file from my PC to my Iphone cloud??

    Copy word documents from PC to iPhone 5s... without any third party applications.
    You will need a Google Drive account.
    You need Google Drive app installed on your iPhone. (free at app store)
    1)  Save the Document you need copied on your account in Google Drive.
    2)  Download and install Google Drive on your Phone.
    3)  Open Google Drive on your phone and open the Document in Google Drive.
    4) Tap” i “icon and tap on make available on device (for offline editing).
    5) Close the document on phone
    6)  While still in Google Drive, On Phone, Swipe to the right on screen to access screen with Google Drive settings.
    7) Tap on pin icon-ON Device to access and open your Document.
    8) Press your finger on screen till you get a semitransparent blue box.
    9) This box is expandable. Touch and pull the dark dots to cover the area of your text/matter on the page.
    10) You will get a copy option on the page.
    12) Tap on copy.
    13) Open notes on your iPhone.
    14) Tap on New Note.
    15) Touch screen, and you will get an option to paste. Paste it.
    16)  Tap Done.
    That’s it.
    The Document on your PC is now available on your iPhone to SMS, Whatsapp or Email it and other uses.

  • How 2 add text (BSEG-SGTXT) for a particular G/L of a Document (FB02) ?

    Hi,
    The standard program RFBIBL00 does FAE(FI) posting in our custom program.
    For doing so, we are passing a file with all the revenue G/L account details based on the structure BSEG.
    The standard program creates a document for the FI posting.
    When we view the document in transaction FB03, posting has been made for all the revenue G/L accounts and
    also the corresponding VAT G/L accounts and the exact Tax amount has been determined by the standard program and posting has been made for the same.
    But the Text field (BSEG-SGTXT) is empty for the VAT G/L accounts, since those account details has been determined in run-time by the standard program.
    NOTE: Text fields have the constant value only for the revenue G/L accounts, since we pass to the file to the standard program only for the revenue G/L accounts.
    Our requirement is to add the value in the text field for a particular VAT G/L account.
    Kindly suggest few methods to add the constant value in the text field for a particular G/L account of the document through our custom program.
    Thanks in Advance.
    Yogesh.

    Thanks for your quick answer,
    I have checked the table BSAS as well, it also has no entries corresponding the above G/Laccount.
    I can find the entries in BSEG for that G/L, but since it does not have the G/L account as primary key
    my program will take very long processing time as the user will give range of G/L accounts.
    When I Check the Report FS10N with the same G/L account, and double click to see the lineitems
    it also gives me the message 'no line items found' eventhough it shows some amount in the first screen.
    Salman Zahir

  • Text not found for item line in PO

    Hi,
    When creating an item line in ME23N, I get the error message:
    TEXT ID Z155 language EN not found.
    When are these texts maintained ?

    Hi,
    use READ_TEXT FM.
    goto se37 READ_TEXT keep brk-pt in source code...
    run ur transaction ME23N ull come to know whats happ........
    Cheers,
    Will.

  • How to Calculate the total orders for Items with supplier

    How do I write a function or SQL query that will give me the total quantity of an item that an organization has on order with other suppliers? Any help would be greatly appreciated. Thank you.

    It would help if you provided the description of the tables.
    To do totals by say item_id
    select item_id, sum(quantity)
          from supply_table A
          where org_id = 1
               and exists (select 1 from supplier B
                                         where a.org_id = b.org_id )
    group by item_id
    How do I write a function or SQL query that will give me the total quantity of an item that an organization has on order with other suppliers? Any help would be greatly appreciated. Thank you.

Maybe you are looking for