Steps and methods to extract general ledger and special ledger

Hi all:
     could you please tell me the method and steps about  how to extract general ledger and special ledger?
    Thank you very much!!!

Hi Sony,
          Search in forums....
Thanks,
Vijay.

Similar Messages

  • Re:Method for extracting all hyperlinks and hypertext available in html pag

    i want to extrct all the hyperlinks and hypertext available in html page which is displayed in a JEditorPane. i have done this using reg.expression and it is working 90% correctly but the problem occurs when a image is a hyperlink or span tag is used . so i want to know if there is any other method available to extract these things ...
    i will be higly thankful to u !!!!!
    with regards,
    neetigya

    http://www.exampledepot.com/egs/javax.swing.text.html/pkg.html

  • Budgeting and Integrated Planning?  General Info and advice?

    Hello all,
    I have a series of reports that I am working with a team on. Each of these reports contains historical figures (going back month by month for at least 2 years). Each report also contains Budgeted figures as well as a variance calculation.
    I would like to ask you if you can any quick summarizing description for how to generated budget figures using Integrated Planner?
    Thanks so much!
    Kind regards,
    Mike

    1) create a real-time cube
    2) in case actual data needs to be displayed as well for reference, include this cube into a mult-provider
    3) create an aggregation level containing all the relevant characteristics and key figures for planning (to be done in the planning modeler -> transaction RSPLAN)
    4) create a filter for your query restricting both actual and plan data. (planning modeler)
    5) create a query based on the aggregation level, used the filter defined in 4 and make sure your plan keyfigures always have unique values (for exampel period 1 - 12 in one key figure is not plannable, because system does not know which period to post to). In other words, all characteristics which are not in the leading columns, should have a unique value (via the filter, or using restricted key figures).
    6) create a workbook with your planquery, add some buttons, like save and start planning
    D

  • Extract from BSAS and BSIS in FI to BW

    Hi,
    Can someone please recommend a method of extraction from BSAS and BSIS to BW.Is there a standard datasource available for this or do we have to do it through Generic extraction?
    thanks
    Srishti

    Hi Priya,
    To avoid the complexity of converting XML's to Idocs without XI or ABAP programming you can easily go for the LSMW uploading.
    I know your company does not want to use the LSMW process.However if you are trying with the XML ports for the XML to Idoc convertion it will further involve extensive coding and complexities.
    On the other hand you can extract MDM data in simple Excel format and then use LSMW with simple mappings and conversion to upload this master data in ECC without much difficulty.
    As to work with the MDM and ECC system data transfer avoiding both XI and Lsmw as the data transfer tools will make your scenario more complex and error prone with ofcourse the extra time factor involved.
    Hope it helps
    Thanks & Regards
    Simona Pinto

  • Can I use classes and methods for a maintenance view events?

    Hello experts,
    Instead of perform/form, can I instead use classes and methods, etc for a given maintenance view event, lets say for example I want to use event '01' which is before saving records in the database. Help would be greatly appreciated. Thanks a lot guys!

    Hi viraylab,
    1. The architecture provided by maintenance view
       for using EVENTS and our own code inside it -
       It is provided using FORM/PERFORM
       concept only.
    2. At this stage,we cannot use classes.
    3. However, inside the FORM routine,
       we can write what ever we want.
       We can aswell use any abap code, including
       classes and methods.
      (But this classes and methods won't have any
       effect on the EVENT provided by maintenance view)
    regards,
    amit m.

  • How to implement classes and methods in badi's ?

    how to implement classes and methods in badi's? and where i have to write the code based on the requirement?can anyone explain me briefly?

    Hi
    Every BADI by default Implements an INTERFACE which already contains some methods with parameters.
    So you have to find the relavenet method based on the related paramters (by checking the fields in that paramters) you have to double click on the method and to write the code.
    see the doc
    DEFINING THE BADI
    1) execute Tcode SE18.
    2) Specify a definition Name : ZBADI_SPFLI
    3) Press create
    4) Choose the attribute tab. Specify short desc for badi.. and specify the type :
    multiple use.
    5) Choose the interface tab
    6) Specify interface name: ZIF_EX_BADI_SPFLI and save.
    7) Dbl clk on interface name to start class builder . specify a method name (name,
    level, desc).
    Method level desc
    Linese;ection instance methos some desc
    8) place the cursor on the method name desc its parameters to define the interface.
    Parameter type refe field desc
    I_carrid import spfli-carrid some
    I_connid import spefi-connid some
    9) save , check and activate…adapter class proposed by system is
    ZCL_IM_IM_LINESEL is genereated.
    IMPLEMENTATION OF BADI DEFINITION
    1) EXECUTE tcode se18.choose menuitem create from the implementation menubar.
    2) Specify aname for implementation ZIM_LINESEL
    3) Specify short desc.
    4) Choose interface tab. System proposes a name fo the implementation class.
    ZCL_IM_IMLINESEL which is already generarted.
    5) Specify short desc for method
    6) Dbl clk on method to insert code..(check the code in “AAA”).
    7) Save , check and activate the code.
    Some useful URL
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    Now write a sample program to use this badi method..
    Look for “BBB” sample program.
    “AAA”
    data : wa_flights type sflight,
    it_flights type table of sflight.
    format color col_heading.
    write:/ 'Flight info of:', i_carrid, i_connid.
    format color col_normal.
    select * from sflight
    into corresponding fields of table it_flights
    where carrid = i_carrid
    and connid = i_connid.
    loop at it_flights into wa_flights.
    write:/ wa_flights-fldate,
    wa_flights-planetype,
    wa_flights-price currency wa_flights-currency,
    wa_flights-seatsmax,
    wa_flights-seatsocc.
    endloop.
    “BBB”
    *& Report ZBADI_TEST *
    REPORT ZBADI_TEST .
    tables: spfli.
    data: wa_spfli type spfli,
    it_spfli type table of spfli with key carrid connid.
    *Initialise the object of the interface.
    data: exit_ref type ref to ZCL_IM_IM_LINESEL,
    exit_ref1 type ref to ZIF_EX_BADISPFLI1.
    selection-screen begin of block b1.
    select-options: s_carr for spfli-carrid.
    selection-screen end of block b1.
    start-of-selection.
    select * from spfli into corresponding fields of table it_spfli
    where carrid in s_carr.
    end-of-selection.
    loop at it_spfli into wa_spfli.
    write:/ wa_spfli-carrid,
    wa_spfli-connid,
    wa_spfli-cityfrom,
    wa_spfli-deptime,
    wa_spfli-arrtime.
    hide: wa_spfli-carrid, wa_spfli-connid.
    endloop.
    at line-selection.
    check not wa_spfli-carrid is initial.
    create object exit_ref.
    exit_ref1 = exit_ref.
    call method exit_ref1->lineselection
    EXPORTING
    i_carrid = wa_spfli-carrid
    i_connid = wa_spfli-connid.
    clear wa_spfli.
    Reward points for useful Answers
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • Variance between Material Ledger and General Ledger of

    There is again a variance between Material Ledger and General Ledger of
    7.026,64 (Tcode MB5L) as it was already in $$100036500(G/L).
    The strange thing is, that there is only a difference in the GL Account
    Balance report (FS10N) for S240077000(G/L ). In the Line Item report (FBL3N)
    all documents are available. This issue impacts at least the Balance
    carry forward negativ at the year end, because the system will forward
    the the amount of the balance for S240077000, which is now 7.026,64 to
    less.
    Ther first investigations results:
    - all Material- and FI documents are available.
    - the variances in June refer to FI-documnets 4900015286 and 4900015293.
    - the documents, e.g. 4900015292 and 4900015287, are correct and was
    posted at the same day by the same user and with the same transaction
    MI07.
    - there are no differences for the posted materials identificable from
    the other materials

    Material Ledger/Actual costing  MLAC
    MLAC is used where the FG cost varies every month due to external procurement variation.
    Ex: Jan 2011
    FG cost of manufcature internally = 100
    FG cost of procurement externally = 120 ( Company procures due to capacity constraint)
    FG Standard price at the end of month = 110...This is standard price of FG
    Due to heavy fluctuations in the month of February 2011 in procurement...
    Ex: Feb 2011
    FG cost of manufcature internally = 140
    FG cost of procurement externally = 460 ( Company procures due to capacity constraint)
    FG Standard price at the end of month = 300...This is standard price of FG.
    The variance is very high in Feb 2011 and company want to absorb this variance in Feb 2011 iteslef hence they will use MLAC.
    So if the variance is within reasonable limits company usually do not follow MLAC.
    Where as if the variance is very high company usually follow MLAC.
    In Pharma Industry usually the variance is very high on month to month basis hence they follow MLAC.
    Where as in Industrial Mahcineery Manufacturing Company the variance is with in reasonable limits hence they do not follow MLAC. Ofcourse they can use MLAC as well.
    Srinivas

  • Integration General new ledger and SAP orgmanagement

    Hello,
    as desribed in
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/42/f8f25eba761a7de10000000a422035/content.htm
    there is a possibility to integrate object from the new general ledger into SAP HR.
    In my case it is not enough to integrate those obect in IT0001, far better would be an deep integration in sap orgmanagement (like the cost center in om IT1001)
    Does anyone knows a way to integrate this areas?
    Best regards
    GeKa

    Hi Udo Werner
    Thanks for your answer, now is clear that is not any integration between New Ledger and Matereial ledger, even that, I would like to know, what do you mean when you said u201CThe only integration topics might be how to handle the postings of material ledger within the accounting interfaceu201D?, is any transaction related ?
    Thanks in advance,
    Best regards,
    Sergio

  • PRC: Interface Usage and Miscellaneous Costs to General Ledger

    Urgent request
    We have the AP team that run the request PRC: Interface Usage and Miscellaneous Costs to General Ledger and it has been running for 2 hours+
    This report is run every month without any problems.
    Work Around: had end user cancel and resubmit request. Again taking awhile, it is still running.
    ANYONE WHO HAS RUN INTO THIS PROBLEM, PLEASE LET ME KNOW OF A SOLUTION. THANKS IN ADVANCE.

    are u using lower than 11.5.10.2, then i think you need to raise an SR with Oracle.
    Sometime back my client experinces this and raised an SR with Oracle ,and what i understood there is missing index on one of the underline table
    There was an issue with pa_bc_commitments table . Check out the Bug No. 7206084 on metalink.

  • I have followed the steps to remove a saved password, but it hasn't actually removed it from firefox as there is a general password and an admin password. I accidently saved the general password so unable to open as an admin. Thank you for your help.

    I have followed the steps under security within Firefox to remove a saved password, but it hasn't actually removed it. I removed it and then tried to sign on again and it automatically went to the saved password. This URL uses an admin and a general password and I accidentally saved the general password so unable to open as an admin. When I go to the URL to enter my admin password it goes to the saved general password. As administrator for my church website, I can't get into it and make changes without using my admin password.

    Remove saved Password(s) here:
    * Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    * http://kb.mozillazine.org/Deleting_autocomplete_entries
    * http://kb.mozillazine.org/Password_Manager

  • Push method and Pull method of extraction

    hello Friends,
    Can you please suggest me what is the diffrance between Push method and Pull method of extraction.
    i am having some confusion in this.
    It would be great if you can elobrate your view on this.
    Regards,Jain

    We used this in the Start Routine of Update Rule, The Oull Method is used if you will looked- up another value other than your source
    Example, You have an ODS name ODS123 and the its Load came from ODS234 and ODS345, If the requirement states that you must select a value other than your Source (let say your ODS is Delivery) you must extract from other ODS (let say Order or Billing that will serve as a Key to your Start Routine)
    The Pull Method is when you implement a routine directly from your source to do some conversion or computation
    Example
    Example, You have an ODS name ODS123 and the its Load came from ODS234 and ODS345, you will implement a routine to from Update Rule 8ODS234 and 8ODS345 to do some Key Figure computations

  • How to update check number in general ledger and vendor ledger automatical

    Dear All,
    i need some clarification in check updation in general ledger and Vendor ledger through the  system automatically.
    While making vendor payment system will not update check details in vendor ledger and bank GL code.while doing  bank reconcilation its very difficult to identify check no and amount for that we have updating manually but its time taking. Is there any program or any enahancement for updating check number in general ledger and vendor ledger.
    Kindly suggest me how to update check number . Is there any programm or enahancement for check updation.kindly suggest me.
    Thanks in advance
    Thanks and Regards
    Girish

    HI,
    If I am understanding correctly what you are wanting is to be able to see the check number for the payment document in both FBL1N and FAGLL03.
    Special fields for AP line item reporting can be configured via IMG. Define additional fields for line item display> 
    Not all fields are available, but this one is.  Add this entry, you can also add check encashment date if desired.
    PAYR  table name.
    CHECF Field name
    After these fields are saved, they can be selected in the line item layout on FBL1N.
    You may also need to reset the ALV buffer using program BALVBUFDEL
    Resetting the buffer is only necessary once in each client.
    Hope this helps.
    Alicia

  • Difference Between Special Purpose Ledger and New General Ledger

    Dear All,
    Could any boy explain me the difference between Special Purpose Ledger and New General Ledger?
    Regards
    JS

    Hi
    General Ledger Accounting (FI-GL) (New) The central task of G/L accounting is to provide a comprehensive picture of external accounting and accounts. Recording all business transactions (primary postings as well as settlements from internal accounting) in a software system that is fully integrated with all the other operational areas of a company ensures that the accounting data is always complete and accurate. Beyond fulfilling the legal requirements, General Ledger Accounting also fulfills other requirements for modern accounting: - Parallel Accounting General Ledger Accounting allows you to perform parallel accounting by managing several parallel ledgers for different accounting principles. - Integration of Legal and Management Reporting In General Ledger Accounting, you can perform internal management reporting in parallel with legal reporting. For this purpose, the Profit Center Accounting functions are integrated with General Ledger Accounting. Furthermore, you can generate financial statements for any dimension (such as profit center). - Segment Reporting General Ledger Accounting supports the segment reports required by the accounting principles IFRS (International Financial Reporting Standards) and US GAAP (Generally Accepted Accounting Principles). For this purpose, General Ledger Accounting contains the Segment dimension. - Cost of Sales Accounting You can perform cost of sales accounting in General Ledger Accounting. For this purpose, General Ledger Accounting contains the Functional Area dimension. Features General Ledger Accounting comprises the following functions for entering and evaluating posting data: - Choice between group level or company level - Automatic and simultaneous posting of all subledger items in the appropriate general ledger accounts (reconciliation accounts) - Simultaneous updating of the parallel general ledgers and of the cost accounting areas - Real-time evaluation of and reporting on current posting data, in the form of account displays, financial statements with different balance sheet versions, and additional analyses. In this way, General Ledger Accounting automatically serves as a complete record of all business transactions. It is the central and up-to-date component for reporting. Individual transactions can be checked at any time in real time by displaying the original documents, line items, and monthly debits and credits at various levels such as: - Account information - Journals - Totals/transaction figures - Balance sheet/profit and loss evaluations However, SAP still offers to choose between the New GL and the old Classic GL way of accounting. There are certain limitations in the new GL and clients are adopting to the new gl concept.
    You also see the nsap note 756146
    Regards
    Roobal

  • The New General Ledger and another one abouy Extended Treasury

    Please a manual of The New General Ledger and another one abouy Extended Treasury,
    Thanks in advance
    Olga
    Moderator: Please, use help.sap.com

    With old G/L in R/3, the tables GLT0 (totals), BSEG, BKPF (Line Item) get filled. in BI side u have to use data model
    0FI_GL_1 --> 0FI_GL_1 --> 0FIGL_C01 (for Totals)
    0FI_GL_4 --> 0FI_GL_4 --> 0FIGL_O02 (for Line item)
    With New G/L in R/3, the tables FAGLFLEXT (totals), FAGLFLEXA, BSEG, BKPF (Line Item) get filled. in BI side u have to use data model
    0FI_GL_10 --> 0FI_GL_10 --> 0FIGL_C10 (for Totals)
    0FI_GL_14 --> 0FIGL_O14 (for Line item)
    Functionally, this effects other financial modules like AP, AR, PCA (Profit Center Accounting)
    for ex: with new G/L implented in BI side, this fullfils most of profit center Acounting requirements, and u donot have to implement PCA module seperately.

  • Can't sign into my Apple Youtube app (the app that Safari links to when you click on a Youtube video). Ive tried the 2 step verification method and tried signing in with my gmail and the password given for the app- doesnt work? What do I do?

    Ive tried followinf a number of posts on using the 2 step verification method- none of it works. Please I need help with this, thanks.

    Also forgot to mention- i can log in with Google's Youtube app- the problem is Safari doesnt link to this app.  So if anyone knows how to get Safari to link to Google's Youtube app youd also solve this problem for me.

Maybe you are looking for

  • How do I get a song to play when it requests authorization, I authorize it, then iTunes acknowledges it was already authorized and still won't play?

    I have gone through several different troubleshoots and still the problem remains. Inside the "get info" tab on the song it says that it was authorized by my account. The song is part of an album where I purchased the entire album. Out of the 14 song

  • Need to be Able to use a TB-1328 with an SCXI-1125

    I need some labview code to show me how to read temp from a SCXI-1125 with a TB-1328 thermocouple on it. I have a K type thermocouple wire, I have to stick with Labview V7.0, NI-DAQ 6.9.3f5, and this is running on an RT machine using a PXI-1010 split

  • Calling Web PL/SQL page from Employee Search Page

    Hello, I have a requirement where in I have to call a custom Web PL/SQL self service page from the Employee Search page (this is a page where managers search employees giving criteria as First Name, Last Name, Assignment number etc. which is a OA Fra

  • XI restart in qRFC not allowed

    I am new in XI. Have prior experience in debugging BW related queues or CIF queue (APO) but not XI qRFC. In our XI system's inbound queue is having stuck queue with large no. of LUWs from mdm system with SYSFAIL error. Opening the qRFC for details sh

  • Assigning Exposé to Unassignable Keys

    Hi there. I have a Powerbook, so using Expose on F9 is hard, since the key is so small and out of the way. Is there a way I can switch it to the Enter key or the Arrow keys, which would be more convenient? I figure I'd have to get into some preferenc