Any Standard Program to upload the financial data

Hi Team,
             Any standard program which will upload the financial data(trail balance) into sap fi.
The scenario is  that there are few company codes which is not in sap and we need to upload their financial data in sap like trail balance, I need to upload this company code data in sap fi, please suggest some standard program which uploads this data.
Thanks in advance
Kind Regards
sridhar

Hi,
Standard programs are there, but those dont fit to your requirement.
e.g. Based on the account type(D, K, S) there are different different fields should be filled up.
If it is Vendor invoice, you have to capture Inv.no., text, leacy subledger number if required.
All these fields are not required for GL data upload.
Better create 3 LSMW'S for GL, Vedor & Customers.
Rgds
Murali. N

Similar Messages

  • Issue in Using FM /RPM/FIN_PLAN_EXCEL_UPLOAD to upload the Financial Data

    Hi All,
    We have a FM '/RPM/FIN_PLAN_EXCEL_UPLOAD' through which we can upload the Financial view data in SAP. However when I an Executing the FM, I am getting an error "Unable to save; Planning data being edited by other User(s)". And when I check SM12, the object is locked by me. However there is no other session, which is opened by me. When I exit from the FM, The object list referesh to Zero. It means that the object is getting loacked by using FM.
    Kindly let me know, how we can upload the data in Financial View.

    Hi,
    Are the zeroes appearing in the excel file? Try by formatting the excel column for qmnum as text then upload again.
    If the cell format is set to
    - general, value like '00032' will appear as 32.
    - While if it is set to text it will appear correctly as '00032'.
    Regards.
    Edited by: Dev Parbutteea on May 7, 2009 12:13 PM

  • Program for uploading the PO data of known vendor in MM using the flat file

    hi friends,
                    I got problem while uploading PO data for a vendor.what are the possible ways of uploading data.
    Moderator message: please do your own research before asking.
    Edited by: Thomas Zloch on Jan 11, 2011 11:37 AM

    hi friends,
                    I got problem while uploading PO data for a vendor.what are the possible ways of uploading data.
    Moderator message: please do your own research before asking.
    Edited by: Thomas Zloch on Jan 11, 2011 11:37 AM

  • Problem in the BDC program to upload the data from a flat file.

    Hi,
    I am required to write a BDC program to upload the data from a flat file. The conditions are as mentioned below:-
    1) Selection Screen will be prompted to user and user needs to provide:- File Path on presentation server (with F4 help for this obligatory parameter) and File Separator e.g. @,#,$,%,... etc(fields in the file will be separated by using this special character) or fields may be separated by tab(tab delimited).
    2) Finally after the data is uploaded, following messages need to be displayed:-
    a) Total Number of records successfully uploaded.
    b) Session Name
    c) Number of Sessions created.
    Problem is when each record is fetched from flat file, the record needs to be split into individual fields separated by delimiter or in case tab separated, then proceeding in usual manner.
    It would be great if you provide me either the logic, pseudocode, or sample code for this BDC program.
    Thanks,

    Here is an example program,  if you require the delimitor to be a TAB, then enter TAB on the selection screen, if you require the delimitor to be a comma, slash, pipe, whatever, then simply enter that value.  This example is simply the uploading of the file, not the BDC, I assume that you know what to do once you have the data into the internal table.
    REPORT zrich_0001.
    TYPES: BEGIN OF ttab,
            rec TYPE string,
           END OF ttab.
    TYPES: BEGIN OF tdat,
           fld1(10) TYPE c,
           fld2(10) TYPE c,
           fld3(10) TYPE c,
           fld4(10) TYPE c,
           END OF tdat.
    DATA: itab TYPE TABLE OF ttab.
    data: xtab like line of itab.
    DATA: idat TYPE TABLE OF tdat.
    data: xdat like line of idat.
    DATA: file_str TYPE string.
    DATA: delimitor TYPE string.
    PARAMETERS: p_file TYPE localfile.
    PARAMETERS: p_del(5) TYPE c.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      DATA: ifiletab TYPE filetable.
      DATA: xfiletab LIKE LINE OF ifiletab.
      DATA: rc TYPE i.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        CHANGING
          file_table = ifiletab
          rc         = rc.
      READ TABLE ifiletab INTO xfiletab INDEX 1.
      IF sy-subrc = 0.
        p_file = xfiletab-filename.
      ENDIF.
    START-OF-SELECTION.
      TRANSLATE p_del TO UPPER CASE.
      CASE p_del.
        WHEN 'TAB'.
          delimitor = cl_abap_char_utilities=>horizontal_tab.
        WHEN others.
          delimitor = p_del.
      ENDCASE.
      file_str = p_file.
      CALL METHOD cl_gui_frontend_services=>gui_upload
        EXPORTING
          filename = file_str
        CHANGING
          data_tab = itab.
      LOOP AT itab into xtab.
        CLEAR xdat.
        SPLIT xtab-rec AT delimitor INTO xdat-fld1
                                         xdat-fld2
                                         xdat-fld3
                                         xdat-fld4.
        APPEND xdat to idat.
      ENDLOOP.
      LOOP AT idat into xdat.
        WRITE:/ xdat-fld1, xdat-fld2, xdat-fld3, xdat-fld4.
      ENDLOOP.
    Regards,
    Rich Heilman

  • LSMW program to upload the sales order with multiple line items.

    Dear SD and PP Gurus,
    I am new to creating LSMW Program.
    I want to create a LSMW program to upload the sales order with multiple line items. I have read on SDN that it can be done on two phases. First Create Header Data than line items. IS IT TRUE??, Or
    Is there any procedure by which we can load the sales orders with multiple line items in a single run (part).
    I want to use Batch process, not a BAPI or IDOC procedure.
    I have created a program with
    object 0090
    Method 0000
    Program Name RVINVB10
    Program Type D
    Source Structure 1 - For Header and Source Structure 2  for Line Items.
    Mapped Field INDET (With Fix Value 1), ORDERTYPE, SALESORG, DISTCHANNEL, DIVISION, CUSTOMER, PONUMBER , DELVDATE, PRCGDATE, PMTTERM
    INCOT1 INCOT2 with Source Structure - 1 and
    Field INDENT (With Fix Value 2),  ITEMNO, MATCODE, MATQTY, SUOM, PLANT, BATCH, AMOUNT with Structure-2
    than maintained Structure relation ship, field Mapping, Specified Files, Assigned files, Read Data and other process,
    At final stage (Start Direct Input program RVINVB10) it is giving a message - Table name not allowed.
    Please tell me where I am wrong.
    Thanks in advance.
    DSC

    Dear SD Gurus n Experts,
    I have solved the above problem. But there is another problem appearing regarding the date format. Now system generating a message: Date . . is not valid.
    While I am using Date: YYYYMMDD format in flat file, which is SAP's Standard Format.
    In SDN Link: LSMW upload Sales Order using VA01/VA02     I have found that there are some date fields which are mandatory to filled. Here I have mapped
    VDATU - Requested delivery date,  BSTDK - Customer purchase order date,  PRSDT - Date for pricing and exchange rate,  BSTDK_E - Ship-to party's PO date, FKDAT - Billing Date, KORDT - Delivery Date,
    and PRGRS - Date type is Constant = D
    Can any one tell me, where is the priblem.
    With thanks,
    DSC

  • Standard program for uploading budget values in expenses

    Hi Experts,
    can u please tell me the standard program to upload budget values in Expenses
    thanks & regards..
    Narendra

    Hi,
    This is a sample program to upload through excel sheet.
    Check this code to upload vendor master through SHDB transaction.
    report ZVEND_MST no standard page heading line-size
    255.
    *include bdcrecx1.
    *parameters: dataset(132) lower case default
    'c:\vend.mst'.
       DO NOT CHANGE - the generated data section - DO
    NOT CHANGE    ***
      If it is nessesary to change the data section use
    the rules:
      1.) Each definition of a field exists of two lines
      2.) The first line shows exactly the comment
          '* data element: ' followed with the data
    element
          which describes the field.
          If you don't have a data element use the
          comment without a data element name
      3.) The second line shows the fieldname of the
          structure, the fieldname must consist of
          a fieldname and optional the character '_' and
          three numbers and the field length in brackets
      4.) Each field must be type C.
    Generated data section with specific formatting -
    DO NOT CHANGE  ***
    data: begin of record,
    data element: LIF16
            LIFNR_001(016),
    data element: BUKRS
            BUKRS_002(004),
    data element: EKORG
            EKORG_003(004),
    data element: KTOKK
            KTOKK_004(004),
    data element: NAME1_GP
            NAME1_005(035),
    data element: SORTL
            SORTL_006(010),
    data element: LAND1_GP
            LAND1_007(003),
    data element: SPRAS
            SPRAS_008(002),
    data element: BSTWA
            WAERS_009(005),
          end of record.
    End generated data section ***
    DATA : ITAB TABLE OF RECORD WITH HEADER LINE.
    start-of-selection.
    *perform open_dataset using dataset.
    *perform open_group.
    *do.
    *read dataset dataset into record.
    *if sy-subrc <> 0. exit. endif.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\VENDOR.TXT'  
    "TEXT FILE
       FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                      = ITAB
    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 ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT ITAB.
    *In Loop Change Record With ITAB
    like record-lifnr_001 with itab-lifnr_001 
      perform bdc_dynpro      using 'SAPMF02K' '0100'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-KTOKK'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_field       using 'RF02K-LIFNR'
                                  record-LIFNR_001.
      perform bdc_field       using 'RF02K-BUKRS'
                                  record-BUKRS_002.
      perform bdc_field       using 'RF02K-EKORG'
                                  record-EKORG_003.
      perform bdc_field       using 'RF02K-KTOKK'
                                  record-KTOKK_004.
      perform bdc_dynpro      using 'SAPMF02K' '0110'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-SPRAS'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_field       using 'LFA1-NAME1'
                                  record-NAME1_005.
      perform bdc_field       using 'LFA1-SORTL'
                                  record-SORTL_006.
      perform bdc_field       using 'LFA1-LAND1'
                                  record-LAND1_007.
      perform bdc_field       using 'LFA1-SPRAS'
                                  record-SPRAS_008.
      perform bdc_dynpro      using 'SAPMF02K' '0120'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-KUNNR'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0130'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFBK-BANKS(01)'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
      perform bdc_dynpro      using 'SAPMF02K' '0210'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB1-AKONT'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0215'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB1-ZTERM'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0220'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB5-MAHNA'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0310'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFM1-WAERS'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_field       using 'LFM1-WAERS'
                                    record-WAERS_009.
      perform bdc_dynpro      using 'SAPMF02K' '0320'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'RF02K-LIFNR'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=ENTR'.
      perform bdc_dynpro      using 'SAPLSPO1' '0300'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=YES'.
      perform bdc_transaction using 'XK01'.
    endLOOP..
    Check It, Activate it and process in SM35.

  • FI Invoices Outbound - Any Standard Program ?

    Hi,
      Is there any Standard program to send SAP FI Open, Chnaged and Closed Invoices in to a File (Outbound)?
    How to Track Invoice is new or chnaged or closed ?
    I appricate any help. Thank you.

    i am away from my system...Just check BKPF / BSEG tables...U can get the field name....
    Award points if useful...

  • Hi Is there any standard program?

    Hi All,
    This is my question to the forum? Is there any standard program to create a report for AP manager to manage workpools? Please help me..
    Vicky

    Hi,
    The requirement is to create a report with a transaction for AP manager to view all the expense reports assigned or to be assigned. Once he see the list he must be able to assign the expense reports to different processors in the workpool.
    Thanks
    Vickie

  • Standard program for uploading of IDOCs - CREMAS

    Dear SAP gurus,
    I would like to ask you if there exists some standard program for uploading IDOCs messages - type CREMAS (Vendor master data).
    Thank you in advance.
    Alena

    Has not been solved.

  • Is there any standard program or FM to configure mail from SAP?

    Hi Experts,
    Is there any standard program or FM to configure mail from SAP?
    Regards
    Ramesh V

    Hi Ramesh,
    PFB.
    You can use function SO_NEW_DOCUMENT_SEND_API1
    Have a look at URL-> http://sapr3.tripod.com/abap011.htm
    Check the below forum:
    http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html
    Regards,
    Faisal.

  • Upload the master data in abap-hr using Lsmw tool

    Hi Friends,
    Any one Help me How to Upload the Master data in ABAP-HR using LSMW.
    In Recording what need to fill.
    If any screenshots are availave please provied me.
    Thanks and Regards,
    Sai.

    http://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    Try this .....

  • How to upload the heirarchy data in BW system

    Hi All,
    I want to download & upload the hierachy data in BW. How can we do this, Please let me know.
    Thanks in advance.
    Regards,
    Vishal

    Hi Vishal,
    Pls use BW07 & BW10 Tcodes for generating the Hierarchy Data Source in R/3.
    If its a set of hierarchy you can use tcode BW07 to generate datasoucre, and for standard hierachies you must be having datasources already created.
    Now just replicate datasoucre in BW side, and in infopckage selection you can get newly created hierarchy. Select and schedule it, it will be loaded into BW.
    For External Hierarchy in BW , download to Flatfild and then upload.
    The useful link:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0403a990-0201-0010-38b3-e1fc442848cb
    material hierarchy data source
    and:
    How to create a hierarchy datasource in R/3
    **PLS assign points,if info is useful***
    Regards
    CSM Reddy

  • DATE QUERY (Need to find the financial dates)

    **I want to get the first and last financial dates of any year when i enter some date**
    Say, If i enter today's date "07-aug-2012", The query should written me the financial dates are 01-apr-2012 to 31-mar-2013
    And Note : That query should written me the financial dates of any year. (" not only this year alone ")
    Is there any possibility to find query for this?
    Shoot me if possible!!!

    with t as (
               select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
    select to_char(add_months(fiscal_year,3),'DD-MON-YYYY') fiscal_year_start,
           to_char(add_months(fiscal_year,15) - 1,'DD-MON-YYYY') fiscal_year_end
      from t
    / For example:
    SQL> with t as (
      2             select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
      3            )
      4  select to_char(add_months(fiscal_year,3),'DD-MON-YYYY') fiscal_year_start,
      5         to_char(add_months(fiscal_year,15) - 1,'DD-MON-YYYY') fiscal_year_end
      6    from t
      7  /
    Enter value for enter_date: 2012-08-07
    old   2:            select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
    new   2:            select trunc(add_months(date '2012-08-07',-3),'YYYY') fiscal_year from dual
    FISCAL_YEAR FISCAL_YEAR
    01-APR-2012 31-MAR-2013
    SQL> /
    Enter value for enter_date: 2013-03-31
    old   2:            select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
    new   2:            select trunc(add_months(date '2013-03-31',-3),'YYYY') fiscal_year from dual
    FISCAL_YEAR FISCAL_YEAR
    01-APR-2012 31-MAR-2013
    SQL> /
    Enter value for enter_date: 2013-04-01
    old   2:            select trunc(add_months(date '&enter_date',-3),'YYYY') fiscal_year from dual
    new   2:            select trunc(add_months(date '2013-04-01',-3),'YYYY') fiscal_year from dual
    FISCAL_YEAR FISCAL_YEAR
    01-APR-2013 31-MAR-2014
    SQL> SY.

  • Uploading the Master data From SCAT

    Hi Experts ,
                        Can any one explain how to upload the mater data by using SCAT(In Step Wise).

    SCAT (CATT)

  • Is there any tool to check whether the proper data is inserting or not?

    Hi,
    We have different products A,B and C.
    whenever user crates an account under these products some X,Y,Z table gets updated.
    If user1 creates an account under A then X, Y, Z tables update with some data along with some ID
    If user2 creates an account under A then X, Y, Z tables update with SAME DATA along with some other ID
    Is there any tool to check whether the proper data is inserting (same data is inserting every time) or not?
    p.s : if this thread is not related to this forum .. where can I post?
    Thanks,
    Praveen

    Is there any tool to check whether the proper data is inserting (same data is inserting every time) or not?You need to check the code to see that. Is the update or insert on the table has from different places? In that case it would be better to have them moved to a centralized place may be a package.
    If you want to restrict the columns to specific values then you can use constraints.

Maybe you are looking for

  • I cant scroll using the touch mouse in firefox but i can in Internet explorer

    I've just got a new laptop with windows XP professional, I've reloaeded windows and the drivers. I cant scroll using my mousepad in Firefox but I can in internet explorer and it works in other programs such as MS word. == This happened == Every time

  • Firefox keeps on crashing - i tried all the solutions

    My firefox keeps on crashing. So i decided to reinstall Windows XP install all drivers and update them but unfortunately firefox keeps on crashing. I've tried all the theories on Firefox to solve it but still it keeps on crashing. This happens any ti

  • Strage Situation : Delaying the message processing in IE ( ABAP Stack )

    Hey, I'm in a starange situation in processing messages in Integration Engine ( ABAP Stack - SXMB_MONI ) in File to IDoc scenario. I have processed bunch of 1000 messages from legacy system into the queue, AE picks all the messages at a one glace, bu

  • Contacts are all messed up

    First switching contacts from my Torch 9800 to my Z10 was a nightmare. Now some seem to be on my phone and some on my sim card and when I try and transfer them it says some cannot be transfered. My big question is why are my contacts tied to an email

  • External iSight Powers Up (Gets Green Light) Then Stops

    I have one of the first iSights I can confirm worked up until two years ago. At that point I unplugged it and never plugged it back in. It stayed mounted on the computer. Today, I decided to re-plug it back in but I can't get it to stay on. I've foll