Imact of attachemnt in FB03

Hi,
On T-code FB03 there is a option to attach any document on System, but anybody knows the drawback of uploading any document. I guess if we upload any document through FB03 it will be stored into Database directly becuase there is no Content Server in Picture. I am unable to find any information about the impact and limitations of Document attachement through FB03.
Please provide your valuable input about this requirements.
Regards,
Subhash

Hello Subhash,
Actually, there is a drawback as that funcitionality isn't recommended by SAP any longer.  If you check the SAP Data Management Guide, it states:
Note: Further developments of the current SAPoffice functionality were stopped with SAP
Web AS 6.30. Maintenance on SAPoffice continues until the end of maintenance of SAP R/3
Enterprise (March 31, 2009). Therefore SAP recommends that you use SAPoffice only for the
storage of temporary documents and that you store documents that have to be kept for the
long term in storage systems using an appropriate technology such as ArchiveLink. No
archiving functions are currently planned for SAPoffice.
If you will be storing images, it is recommended to use Standard ArchiveLink functionality to attach the images as well as using a content repository.
Best Regards,
Karin Tillotson

Similar Messages

  • Unable to find field which i added to FB03

    HI Experts,
    My requirement is to add field Amount and document line items field for particular document which i usually get by double clicking of document number in FB03
    Is it possibel to add field Amount,. document line items which should be available when i clicked change layout button
    I try to add field by following the below procedure
                         ""  Enhancing Selection Views in the dynamic selection of FB03, FBL3n, FBL5n and etc
    Related OSS Note: 188663 and 832997
    Requirement: The business requires the Doc. Header Text be added in the dynamic selection in FB03
      Solution:
    Execute Transaction code SE36. Click F4. Enter the table name wherein you think the field could be found. In this case the table is BKPF and the logical database is BRF
    From the initial screen of SE36, Choose from the path EXTRAS>> Selection Views
    Copy Selection View "SAP" to "CUS"
    Change the selection views "CUS"
    In the right corner, double click your table BKPF.
    In the right corner, check whether what functional groups does your field belong. If it is 01 then input it beside your field name.
    Then Save it afterwards.""
    By following the above procedure i selected table BSEG and Logical data base BRF .I created function group 02 called document segment  and mentioned 02 before  requiredfield names and selected check box after field names and clicked save.When i clicked Display contents i found the entries which i made but i closed and reopen it i didnt found any changes.
    Please let me know where i went wrong.Anything is Appreciable.
    Thanks&Regards,
    narasimha.

    Hi ,
    I can now able to see the fields that i added to BRF logical data base in se36  but how this enhancement is related to FB03 tcode
    Thanks&Regards,
    narasimha.

  • BAPI / Function Module to Retrieve AR Customer Invoices like FB03

    I’m writing some code to post and retrieve AR Customer Invoices.  It looks like BAPI_ACC_DOCUMENT_POST is the way to create the invoice (any way to park it?) but I’ve only found BAPI_AR_ACC_GETOPENITEMS to retrieve invoice data which does not seem like what I really want.  I do want line item details but only for the invoice I’m after and it may not be open any longer.  T-code FB03 is the GUI way.  How do I get the invoice data throug a remote enabled BAPI or FM?
    Thanks for any help,
    Karl

    BAPI_INCOMINGINVOICE_CREATE Invoice Verification: Post Invoice
    After the CALL of BAPI_ACC_INVOICE_RECEIPT_POST is finsihed and there are no errors, you have to call 'BAPI_TRANSACTION_COMMIT' to commit the invoice.
    BAPI_ACC_DOCUMENT_POST
    Please give me reward points if it is useful...

  • Jump from alv report to FB03 screen when u click BELNR field

    Hi experts,
    I developed one alv report in that one field is there (BELNR .When u click on BELNR field it will directly go to FB03  screen.
    I wrote in this way.
      FORM USER_COMMAND USING UCOMM LIKE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD
      CASE SELFIELD-FIELDNAME.
        WHEN 'BELNR'.
          READ TABLE T_FINAL INDEX SELFIELD-TABINDEX.
          SET PARAMETER ID  'BLN' FIELD T_FINAL-BELNR.
          CALL TRANSACTION 'FB03'   AND SKIP FIRST SCREEN.
      ENDCASE.
    ENDFORM.
    But it is going to initial screen then u enter year it is going to next screen but i don't want this.
    I want to go to directly fb03 screen without entering year in the initial screen.Is it possible? pls help me in this.

       IF  RS_SELFIELD-FIELDNAME = 'BELNR'.
                    READ TABLE GT_FINAL INTO GS_FINAL INDEX RS_SELFIELD-TABINDEX.
                   SET PARAMETER ID 'MBN' FIELD GS_FINAL-BELNR.
                    CALL TRANSACTION 'MIGO' AND SKIP FIRST SCREEN.
               ENDIF.
    i m not getting the value of belnr in migo here is my code

  • Nee help on ALV report for Total of BSEG-BUZEI & F1 document in FB03

    Hi friends,
    I need to diplay line items total & when double clicked on BELNR field it should open the F1 document in FB03.
    Could anyone plz guide me on this.
    Waiting for response.
    below is my code,
    Kindly needed help.
    REPORT  YALV_1.
    TABLES : BKPF,BSEG.
    Data for ALV display
    TYPE-POOLS: SLIS.
    data : int_fcat type SLIS_T_FIELDCAT_ALV,
           fieldcatalog type slis_t_fieldcat_alv with header line.
    DATA:  wa_sortinfo TYPE slis_sortinfo_alv,
           i_sortcat TYPE slis_t_sortinfo_alv.
    TYPES  : BEGIN OF T_BKPF,
            BUKRS TYPE BKPF-BUKRS,
            BELNR TYPE BKPF-BELNR,
            GJAHR TYPE BKPF-GJAHR,
            BLART TYPE BKPF-BLART,
            BLDAT TYPE BKPF-BLDAT,
            BUDAT TYPE BKPF-BUDAT,
            END OF T_BKPF.
    types: begin of t_bseg,
           BUZEI TYPE BSEG-BUZEI,
           end of t_bseg.
    DATA : it_bkpf TYPE STANDARD TABLE OF t_bkpf with header line,
          wa_bkpf TYPE t_bkpf,
           it_bseg type standard table of t_bseg.
          wa_bseg type t_bseg.
    field to store report name
    DATA :  i_repid like sy-repid.
    select bukrs belnr gjahr blart bldat budat from bkpf into table
    it_bkpf where blart = 'AA'.
    field to check table length
    *data i_lines like sy-tabix.
    *Start-of-selection.
    START-OF-SELECTION.
    perform data_retrieval.
    perform build_fieldcatalog.
    PERFORM sortcat_init CHANGING i_sortcat.
    perform display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    form build_fieldcatalog.
    There are a number of ways to create a fieldcat.
    For the purpose of this example i will build the fieldcatalog manualy
    by populating the internal table fields individually and then
    appending the rows. This method can be the most time consuming but
    *can
    also allow you  more control of the final product.
    Beware though, you need to ensure that all fields required are
    populated. When using some of functionality available via ALV, such
    *as
    total. You may need to provide more information than if you were
    simply displaying the result
                  I.e. Field type may be required in-order for
                       the 'TOTAL' function to work.
      fieldcatalog-fieldname   = 'BUKRS'.
      fieldcatalog-seltext_m   = 'Company Code'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 4.
    fieldcatalog-do_sum      = 'X'.
    fieldcatalog-no_zero     = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BELNR'.
      fieldcatalog-seltext_m   = 'Doc No'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'GJAHR'.
      fieldcatalog-seltext_m   = 'Fiscal Year'.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BLART'.
      fieldcatalog-seltext_m   = 'DOC Type'.
      fieldcatalog-col_pos     = 3.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BLDAT'.
      fieldcatalog-seltext_m   = 'Doc Date'.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BUDAT'.
      fieldcatalog-seltext_m   = 'Popsting Date'.
      fieldcatalog-col_pos     = 5.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BUZEI'.
      fieldcatalog-seltext_m   = 'Line Items'.
      fieldcatalog-col_pos     = 6.
      fieldcatalog-do_sum      = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " BUILD_FIELDCATALOG
    FORM sortcat_init CHANGING i_sortcat TYPE slis_t_sortinfo_alv.
      CLEAR wa_sortinfo.
      wa_sortinfo-fieldname = 'BUKRS'.
      wa_sortinfo-tabname = 'T_BKPF'.
      wa_sortinfo-spos = 1.            " First sort by this field.
      wa_sortinfo-up = 'X'.            "   Ascending
      wa_sortinfo-subtot = 'X'.        " Subtotal at Name1
      APPEND wa_sortinfo TO i_sortcat.
      CLEAR wa_sortinfo.
      wa_sortinfo-fieldname = 'BELNR'.
      wa_sortinfo-tabname = 'T_BKPF'.
      wa_sortinfo-spos = 2.            " Sec sort by this field.
      wa_sortinfo-up = 'X'.            "   Ascending
      wa_sortinfo-subtot = 'X'.        " Subtotal at Name1
      APPEND wa_sortinfo TO i_sortcat.
    ENDFORM.                    " sortcat_init
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    form display_alv_report.
      i_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = i_repid
               i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
               i_callback_user_command = 'USER_COMMAND'
               i_grid_title           = outtext
               is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
               it_sort                = i_sortcat
               it_special_groups       = gd_tabgroup
               IT_EVENTS                = GT_XEVENTS
                i_save                  = 'X'
               is_variant              = z_template
           tables
                t_outtab                = IT_BKPF
           exceptions
                program_error           = 1
                others                  = 2.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
    form data_retrieval.
    IF it_bkpf[] IS NOT INITIAL.
       select buzei from bseg into
         table it_bseg for all entries in it_bkpf
         where bukrs = it_bkpf-bukrs
         and belnr = it_bkpf-belnr
         and gjahr = it_bkpf-gjahr.
         endif.
    endform.                    " DATA_RETRIEVAL.

    Hello
    1.
    form display_alv_report.
    i_repid = sy-repid.
    call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
    i_callback_program = i_repid
    i_callback_user_command = 'USER_COMMAND'
    it_fieldcat = fieldcatalog[]
    i_save = 'X'
    tables
    t_outtab = IT_BKPF
    exceptions
    program_error = 1
    others = 2.
    2.
    * FORM USER_COMMAND
    FORM user_command USING u_com LIKE sy-ucomm sel_lin TYPE slis_selfield.
    CASE u_com.
      WHEN '&IC1'. 
        CASE sel_lin.
          WHEN 'BELNR'.
          read TABLE IT_BKPF INDEX sel_lin-tabindex.
          SET PARAMETER ID 'BLN' FIELD IT_BKPF-BELNR.
          SET PARAMETER ID 'BUK' FIELD IT_BKPF-BUKRS.
          SET PARAMETER ID 'GJR' FIELD IT_BKPF-GJAHR.
          CALL TRANSACTION 'FB03' AND SKIP FIRST SCREEN. 
        ENDCASE.
    CLEAR u_com.
    ENDCASE.
    ENDFORM. "USER_COMMAND

  • Error while opening document in FB03

    Hi,
        I have used archive link for attaching documents. I have attached a pdf file by using the transaction OAAD to an accounting document. In FB03 it is showing the the document name by following the path
    Environment>>Additional assignments>> object links.
    But while trying to open the file I am getting the below message.
    Error when opening document with HTML control;
    DP_ERROR_GENERAL
    Any help regarding  this will be appreciated.
    Regards,
    B P Singh

    For your problem,please see if the corrections indicated in SAP note 1502912 could help you out.
    Regards,
    Pradeepkumar Haragoldavar

  • Error while opening an attached FI Document in transaction FB03.

    Hi Gurus,
    I have to open the attached documents in trasaction FB03 but I am recieving the following Error.
    ERROR: Error calling application via OLE ALVIEWER.APP.
    Thanks and Regards,
    Amit.

    Hi Amit,
    Thanks for the help.
    I had one more problem now.
    A link is being created in the tcode FB03 when I execute FM ARCHIV_CREATE_TABLE, but when open that link there is no data present inside the document.
    If you have an example for the same, It will surely be a great help to me.
    Please help.
    Regards,
    Amit.

  • Payment in CJIA and document in FB03, Value not matching

    ********Reposting from FI group***********
    Dear Gurus,
    In a scenario where user has made a payment to vendor, a clearing document has been posted. The values are not martching in payment transaction, CJIA and the document disaplay FB03. Please find the screen shot as below:
    The amount paid in FB03 TC is 11,550,730.20- and  7,945,096.92.
    Whereas in CJIA report it displays 61,363,254.58- and 55,591,175.59
    Kindly Note, I have already deleted and regenerated Project cash management document via programs RFFMDL16 and RFFMRP15P, but the values displays same.
    I am not able to understand the values which are shown in TC CJIA.
    Kindly provide your input.
    Thanks and regards,
    Narender.

    HI Gokul,
    Thanks for your reply. There are no entries in table RPSCO.
    But the entries are in table COFP with BTran as KAFM and value type 57.
    Regarding your questions: Another thing that i wanted to know is whether you ran CJFN for the accounting document after doing the actual payment?
    Initially these values were displaying once the payment was done (VType 57). I tried to execute the correction programs considering there will be inconsistencies in table. But the values did not changed. After this values were displaying in VType 54 and hence I execute CJFN to display Vtype as 57 such as to bring the system display as initial condition.
    Let me know if this helps. Further inputs awaited.
    Thanks and regards,
    Narender.

  • User exit or badi for FB03 to deactivating 'DELETE' button in attacmentlist

    Hi All,
    I have a requirement to put an authorization check on the 'DELETE' function in the attachment list of FB03 transaction.
    Meaning, if user is not authorized to delete, then he cannot delete the (link) attachment.
    Any user exits to do that enhancement.
    Thanks,
    Narsimha.

    Hi
    I believe there isn't a BADI or EXIT allows to change item data, I usually use the exit to change the item text EXIT_SAPMM07M_001 (the BADI MB_MIGO_ITEM_BADI should be the same thing) where I change the data by field-symbols:
    FIELD-SYMBOLS: <KOSTL> TYPE MSEG-KOSTL.
    ASSIGN '(SAPMM07M)MSEG-KOSTL' TO <KOSTL>.
    <KOSTL> = .......
    Max

  • Reg:Print program For FB03

    Hi All,
       In the Fb03 Transaction When i give print Preview I want to show the Document Date as Blank, by default print preview its coming, hoe can i restrict this, i have done the following steps i don't know how to proceed after this, the steps are as follows,
    I have Created a new correspondence type as ZFB03 in OB77.
    For Allocation Program For Correspondence i have given the Correspondence and company code in OB78
    I don't Know what to give in the Form Name For Correspondence Print?
    and also i don't know which program i have to copy and change to ZProgram and where to assign it?
    Does anybody know how to resolve this issue?

    Hi Suresh,
    Goto the TCODE OB96 and click on the position and enter your company code..
    you will get directly the print program and its form name... the default print program is RFKORD00.
    Else you can do like this....
    In SPRO follow this path.
    ex:-Form 16A
    Financial Accounting
    Global settings
    withholding tax
    Extended Witholdong tax
    POstings
    India
    Withholding tax certificates for vendors
    maintain no.groups and script forms.
    For cheques and Payment Advisory.
    Go to FBZP
    click on printmethods in company code
    click on position
    give Company code and payment method
    then in the next screen double click on the payment method
    This way you will get to see the forms assigned to it.
    For Forms for Correspondence.
    Financial Accounting
    ---Global settings
    correspondence
    define form names for correspondence print.
    Thanks & regards,
    Dileep .C

  • FB03 GOS (Generic Object Services) not working at header level

    Hi all,
    We have a problem with transaction FB03 when we try to display attached image documents for Fi documents.
    At Header level we have no image.
    At post level we can see the attached image.
    How can we let the display of image list active from Header level.
    Thank you in advance.
    Kind Regards
    Mohammed

    Hi,
    I have same problem but in this case only user specific.
    2 users with same authorization. First can park the invoice, attach document and can view after document save. Then he post document and able view attachment added during park.
    But other user when upload attachment during park document not able to view same attachment when document is posted. Also strange part is when this user upload new attachment during posting other users are not able to see new attachment he has attached during posting.
    I dont see any authorization difference in two except parameter values for F02, F03 and FP is different.
    Can anybody tell me how this can be resolved?
    Thanks,
    Bharati

  • Services for object buttons randomly disappearing from FB03

    Hello SAP Experts,
    We display an FI document via tcode FB03 (Display Document) and use the "services for object" buttons to attach documents via the "create attachment" button and also to view attached documents via the "attachment list" button.
    However, quite often when displaying the FI document after a document has been attached, the "services for objects" buttons are not displayed.  Just a blank toolbar appears.
    Later on the when the FI document is displayed again via tcode FB03 (Display Document), the "services for objects" buttons do appear and the attachments can then be displayed.
    As the attachments can be viewed sometimes, I would say that this issue is not related to security.
    Any idea's what maybe causing the "services for objects" buttons randomly disappearing???
    Regards,
    SAP Muppet

    Hello SAP Experts,
    Any ideas or comments here???
    Regards,
    SAP Muppet

  • I have a DVD stock in my Imact and the finder does not recognice it. How can I get it out?

    I have a DVD stock in my Imact and the finder does not recognice it. How can I get it out?

    Hold down the mouse button when shutting down,  If that doesn't work, try holding the Mac sideways and shaking gently, then if you see the edge of the disc, use tweezers to pull it out.

  • Doc. #900044989 in FBL5N but not in FD10N and FB03

    Hi Team,
    I have an issue with FI-doc #900044989 in Company code 3021. When running FBL5N for open items this doc. is displayed. But when running FD10N this doc. is not displayed and also FB03 does not find this doc. It seems the databases are not consistent.
    Kindly give your inputs
    Regards,
    Aravind
    Bangalore

    Hi,
    I think you'll get a much better and quicker answer if you post this question in the financials forum.
    Eddy
    PS. Reward the useful answers and you will get <a href="http:///people/baris.buyuktanir2/blog/2007/04/04/point-for-points-reward-yourself">one point</a> yourself!

  • Changing  Vendor Line item text @ FB03

    Hi Gurus,
       When running MEB4 (Rebate Settlement) it'll create Accounting Entries that can be seen @ FB03... My problem is how to change the vendor line item text at FB03 upon running MEB4.
    Thanks in advance

    Hi,
    You can use FB02 to change the vendor line item text.
    Regards,
    Vinod

Maybe you are looking for

  • HT1423 Upgrade memory in an iMac.

    It's looking pretty straightforward to install more memory in and iMac.   Is it really that easy - for a non-teckie, that is!

  • How to save CSV into a file

    Hi, I’m using the following javascript statement to save the web query result into CSV file.             window.open(SAP_BW_URL_Get()+                 "&DATA_PROVIDER=DATAPROVIDER_1&CMD=EXPORT&FORMAT=CSV"); At present the data is saved into the defau

  • Cannot install driver for high definition audiuo bus

    i have sound but every reboot, the device manager prompts for driver of high definition bus. pls help! btw, just assembled my pc, specs-msi 7858GTM-E45; amd X3 440; 2G corsair 800; 460 coolermaster PSU, thanks

  • Photoshop Elements 11 costco

    where is the serial number?

  • Search for a mac email address

    can i search for a friend with a mac email address