Can anyone let me the step by step procedure for FI-SL

Hi,
Can anyone tell me the procedure for extraction FI-sl.
thanxs
hari

Hi Hari,
Generate Extract Structure for FI-SL Tables (Transaction BW01)
1. Use F4 help to choose the required totals table.
2. Flag whether you want extract structures to be generated for totals records and/or line items.
3. Choose Execute.
4. Result: You have generated the extract structure(s).
The extract structures contain the name of the totals table:
¡ Totals record extract structure: T in the totals table is replaced by B
¡ Line item extract structure: T in the totals table is replaced by W
Table group GLFUNC:
§ Totals table: GLFUNCT
§ Totals table extract structure; GLFUNCB
§ Line item extract structure: GLFUNCW
Assign DataSource to a Ledger (Transaction BW03)
1. After starting the transaction, you see a list of all selectable ledgers for which you can generate or maintain DataSources for totals records and/or line items.
If a required ledger does not appear, you might not have generated an extract structure for the corresponding table. In this case, execute transaction BW01.
The list contains the following information (columns from left to right)
· Ledger
· Description of the ledger
· Table (totals table corresponding to the ledger)
· Totals record DataSource
· Delta-compatibility of the totals record DataSource (from Release 4.70)
· Status of the totals record DataSource
· Line item DataSource
· Status of the line item DataSource
The status display in the column to the right of the field shows the current status of each DataSource.
2. Choose a DataSource by placing the cursor in the corresponding row for the ledger and column for the totals records or line items and carrying out a double-click.
Depending on your choice, the system now displays either the Totals record DataSource or Assign Line Item DataSource dialog box.
3. Enter the corresponding data.
When you create a new DataSource, the system proposes a name according to the following naming convention:
¡ Total record DataSources: 3FI_SL_xx_TT
¡ Line item DataSources: 3FI_SL_xx_SI (“xx“ stands for the ledger in question)
You can change the proposed name (though the 3 at the beginning cannot be changed). However, you are strongly advised to retain the naming convention from the proposal.
For the totals record DataSource, the option Activate Delta Updating is only displayed from Release SAP R/3 470. Delta updating is mandatory for line item DataSources. To display these, the flag Activate Delta Updating has to be activated in the dialog box.
4. Choose Continue.
The DataSource: Edit Customer Version screen appears. Here, you can exclude individual fields in the ledger from selection or transfer to the BW.
5. Configure the DataSource and save your settings.
6. Result: You have generated and can now use a DataSource for data extraction for your FI-SL ledger.
. for furthur information go thru this..
http://help.sap.com/saphelp_nw04s/helpdata/en/f3/3a69377f2b8032e10000009b38f8cf/frameset.htm
Thanks
@jay

Similar Messages

  • Can anyone tell me the field name, table name for the following scenario?

    Hi All,
    Can anyone tell me the field name and the respective table name for the following scenario's?
    1. A report to list all the materials to which Invoice is done and delivery is pending.
    2. A report for Order tracking.
    3. A report, which gives PO(Purchase Order),  Pricing details.
    4. A report, which calculates the MATERIAL COST. It will select all the material issued for the entered service order number from  stock.
    Thanks & Regards,
    P.Gowrishanker
    Edited by: Gowrishanker pari on Jun 1, 2008 8:58 AM

    I believe that OmniVision Technologies has the contract for the 3gs.

  • Can anyone let me know the step by step procedure for creating userexits?

    Hi all,
    can anyone let me know the step by step procedure for creating user exits? for any transaction code like mm01 or vd01. If you have any docs send it across to my email id : [email protected]
    thanxs in advance
    hari

    Hi,
    *& Report  ZEXITFINDER
    *report  zexitfinder.
    *& Enter the transaction code that you want to search through in order
    *& to find which Standard SAP User Exits exists.
    *& Tables
    tables : tstc, "SAP Transaction Codes
    tadir, "Directory of Repository Objects
    modsapt, "SAP Enhancements - Short Texts
    modact, "Modifications
    trdir, "System table TRDIR
    tfdir, "Function Module
    enlfdir, "Additional Attributes for Function Modules
    tstct. "Transaction Code Texts
    *& Variables
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    *& Selection Screen Parameters
    selection-screen begin of block a01 with frame title text-001.
    selection-screen skip.
    parameters : p_tcode like tstc-tcode obligatory.
    selection-screen skip.
    selection-screen end of block a01.
    *& Start of main program
    start-of-selection.
    Validate Transaction Code
    select single * from tstc
    where tcode eq p_tcode.
    Find Repository Objects for transaction code
    if sy-subrc eq 0.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir
    where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir
    where pname = tstc-pgmna.
    select single * from enlfdir
    where funcname = tfdir-funcname.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name = enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    Find SAP Modifactions
    select * from tadir
    into table jtab
    where pgmid = 'R3TR'
    and object = 'SMOD'
    and devclass = v_devclass.
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(95) sy-uline.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    write:/(95) sy-uline.
    loop at jtab.
    select single * from modsapt
    where sprsl = sy-langu and
    name = jtab-obj_name.
    format color col_normal intensified off.
    write:/1 sy-vline,
    2 jtab-obj_name hotspot on,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    endloop.
    write:/(95) sy-uline.
    describe table jtab.
    skip.
    format color col_total intensified on.
    write:/ 'No of Exits:' , sy-tfill.
    else.
    format color col_negative intensified on.
    write:/(95) 'No User Exit exists'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(95) 'Transaction Code Does Not Exist'.
    endif.
    Take the user to SMOD for the Exit that was selected.
    at line-selection.
    get cursor field field1.
    check field1(4) eq 'JTAB'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    look in txn CMOD or SMOD, check enhancement 0VRF0001. It uses function module EXIT_SAPL0VRF_001. It is used to manipulate route determination for SD.
    Here is the code
        DATA: ls_xvbpa LIKE xvbpa,
              lf_aland LIKE tvst-aland,
              lf_azone LIKE tvst-azone,
              lf_lland LIKE trolz-lland,
              lf_lzone LIKE trolz-lzone,
              ls_vbadr LIKE vbadr,
              ls_xvbap LIKE xvbap,
              ls_tvst LIKE tvst,
              lv_route LIKE trolz-route.
        LOOP AT xvbap INTO ls_xvbap.
          IF NOT ls_xvbap-vstel IS INITIAL.
            SELECT SINGLE * FROM tvst
              INTO ls_tvst
             WHERE vstel EQ ls_xvbap-vstel.
            IF sy-subrc = 0.
              lf_aland = ls_tvst-aland.
              lf_azone = ls_tvst-azone.
            ENDIF.
          ENDIF.
          READ TABLE xvbpa INTO ls_xvbpa WITH KEY vbeln = ls_xvbap-vbeln
                                                  posnr = ls_xvbap-posnr
                                                  parvw = 'Q1'.
          IF sy-subrc = 0.
            CALL FUNCTION 'SD_ADDRESS_GET'
              EXPORTING
                fif_address_number      = ls_xvbpa-adrnr
              IMPORTING
                fes_address             = ls_vbadr
              EXCEPTIONS
                address_not_found       = 1
                address_type_not_exists = 2
                no_person_number        = 3
                OTHERS                  = 4.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ELSE.
              lf_lland = ls_vbadr-land1.
              lf_lzone = ls_vbadr-lzone.
            ENDIF.
          ENDIF.
          CALL FUNCTION 'SD_ROUTE_DETERMINATION'
            EXPORTING
              i_aland             = lf_aland
              i_azone             = lf_azone
              i_lland             = lf_lland
              i_lzone             = lf_lzone
            IMPORTING
              e_route             = lv_route
            EXCEPTIONS
              no_route_found      = 1
              departure_error     = 2
              destination_error   = 3
              invalid_generic_key = 4
              customer_exit_error = 5
              OTHERS              = 6.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
            ls_xvbap-route = lv_route.
            MODIFY xvbap FROM ls_xvbap TRANSPORTING route.
          ENDIF.
        ENDLOOP.
    For information on Exits, check these links
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.planetsap.com/userexit_main_page.htm
    User-Exits
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/ab038.htm
    http://www.planetsap.com/userexit_main_page.htm
    http://www.sap-basis-abap.com/sapab013.htm
    http://sap.ittoolbox.com/documents/popular-q-and-a/user-exits-for-the-transaction-code-migo-3283
    <b>Reward points</b>
    Regards

  • Can anyone tell me the steps to setup my lc550 os7.5 internet software

    Need help
    can anyone tell me the step by step instructions to setup the software and connect my old mac lc 550 with os 7.5 and apple ethernet rj45 card to the internet.

    A plain System 7.5 would have a MacTCP control panel. You can find details about MacTCP configuration under the link that BDAqua provided above.
    The setup can be easier with an operating system running Open Transport networking. Such a system would have a TCP/IP control panel instead. Although it is possible to update an earlier system to Open Transport, many prefer to just install a complete version 7.5.3 that can be downloaded from Apple.
    http://www.info.apple.com/support/oldersoftwarelist.html#system
    (nineteen files, System_7.5.3_01of19.smi.bin et cetera)
    System 7.5.3 contains a Network Software Selector, which can be set to Open Transport networking. With the TCP/IP control panel active, the Internet setup is similar to the one for Mac OS 8 and 9. Typically, DHCP is used.
    http://support.apple.com/kb/TA20782
    If you need additional information about how to transfer and install System 7.5.3 (and programs), please post back. If so, tell us what you have to work with (for example, old/new Mac, a Windows PC, USB floppy drive).
    You would need a web browser (such as iCab or WannaBe) and/or an appropriate email program. Please note that the 68030 processor in the LC 550 means that Internet access is going to be very slow. Ideally, only text-based browsing or email should be used.
    http://support.apple.com/kb/sp215
    Jan

  • Can anyone let me know how can i get the ouput from BW in .txt format.

    Can anyone let me know how can i get the ouput from BW in .txt format. See we can get output as Excel(i.e BEX) and manually convert it into txt format. I need a direct or automated way to do the same.no human intervention.
    mail me at [email protected] or post answer in sdn.

    Please do not multiple post across forums..
    how can i save the data in BEX reports in .txt format automatically
    This helps in keeping track of answers and avoids the issue of repeated answers across forums...
    Please close one of the threads as answered and provide the link that you want to follow
    Arun

  • Can anyone let me know abt the new selection

    hi all,
    While we create reports using query designer. when u click on the structure, there are 2 options that turns up new selection and new formula.
    Can anyone let me know the significance of new selection with an example. Why it is used And what is it importance.
    thanxs in advance
    regds
    hari

    Selection is for Restricted Key Figure while Formula is for Calculated Key figure. Both Selection and formula is for locally declared and execute for that query where it is defined at, but CKF and RKF are global in nature, you use them globally in all queries which uses the underlying infoprovider.
    thanks.
    Wond

  • I am trying to buy my album. I have an English ID but am operating in Switzerland in the German part. When I go to buy book the instructions are in French and price in  CHF. Can anyone let me know if I can change the language to English and order in £

    I am trying to buy my album. I have an English ID but am operating in Switzerland in the German part. When I go to buy book the instructions are in French and price in  CHF. Can anyone let me know if I can change the language to English and order in £ and use english Id from switzerland.
    All other systems set to English and i tunes

    see instructions here - since they are in Frencha and german I have no idea if they will solve your ptoblem
    LN

  • Hi all can anyone let me know about navigational attributes?

    hi all,
    Can anyone let me know the importance of navigational attributes with examples.
    if docs pls email at [email protected]
    regds
    haritha

    HI haritha,
    Navigational attribute is used for drilling down in the report. We don't need to maintain Navigational attribute in the cube as a characteristic (that is the advantage) to drill down
    0MATERIAL has a Display attribute called MATGROUP and a Navigational attribute called MATTYPE.
    If you want your report to show MATGROUP, you need to have 0MATERIAL in the query too. A Display attribute always 'tags' along with the 'parent' characteristic.
    However you can include MATTYPE in your report without using 0MATERIAL. For reporting purposes a navigational attribute behaves just like another characteristic. This means that you can also have variables for navigational attributes.
    One drawback is that since they are stored outside your Info Cube (in master data tables), the OLAP has to perform an extra step to pull in this data and this leads to some performance impact, although in most cases this is negligible.
    When you double click on a cell in a report which contains a characteristic value, the report is filtered for this value and the entire characteristic column is removed from the results area. If you double click on material 1001, the material column goes away from the results and in the filter cells above the report, you can see value 1001 against Material.
    If you double click on a key figure value, nothing
    happens.
    If you double click on a Char column heading, the char is removed from the drill down.
    If you double click on a key figure column heading, all key figures go away, and the values that are left are for the key figure you double clicked. Again you can verify this by looking at the filter cells against the key figure structure.
    Re: Navigate Attribute
    assign points if helps,
    regards,
    yunus

  • Can anyone Explain me the difference between Batch Input, Direct  input met

    Can anyone Explain me the difference between Batch Input Method and Direct Input Method.

    hi
    good
    Direct input method                     Batch Input Method
    1) We cannot send the fields   | 1) We can send fields as per 
       according to our requirement|    requirement.
    2) validations are done based
    2) validations are done based
       on pre-defined function
    on applications.
       modules
    Batch Input Session:
    - It is a sequence of transactions, which is generated when user run a particular program. 
    - It contains the accounting documents that are to be created. The SAP system stores these transactions until you decide to process them online. 
    - It does not update transaction figures until the session has been processed.  Using this technique, you can transfer large amounts of data to the SAP system in a short time.
    Three processing modes of executing Batch Input Session :-
    (1) Run Visibly : You can correct faulty transactions online & work step-by-step through  the transactions not yet executed. 
    (2) Display Errors only : You can correct faulty transactions online.   Transactions not yet executed, but without error, run in the background.
    (3) Run in Background : Recommended by SAP.                          
    thanks
    mrutyun^

  • Can anyone tell me the flow of BDC program?

    Hi
    Can anyone tell me the flow of BDC program and also what is the significance of each step?
    Thanks
    Gagan

    Not sure what you are asking here.  A BDC program is a recording over an SAP transaction.  The flow is determined by the screen sequence of the transaction which is being recorded. 
    What you do is fill an internal table with screen numbers and fields with values and fcodes.  Then call the transaction using the internal table.
    For example, the following program calls PA30 and enters a time event.
    report zrich_0001
           no standard page heading.
    parameters: p_pernr type pa0002-pernr,
                p_plans type t528b-plans.
    data: mode type c value 'N'.
    data:   bdcdata type table of bdcdata    with header line.
    data:   messtab type table of bdcmsgcoll with header line.
    start-of-selection.
      perform do_transaction using 'P10'
                             p_pernr
                             p_plans.
    *       FORM do_transaction                                            *
    form do_transaction using timev
                              pernr
                              plans.
      data: bdcdate(10) type c,
            bdctime(8) type c.
      call function 'CONVERT_DATE_TO_EXTERNAL'
           exporting
                date_internal = sy-datum
           importing
                date_external = bdcdate.
      write sy-uzeit to bdctime.
      clear bdcdata.  refresh bdcdata.
      clear messtab.  refresh messtab.
      perform bdc_dynpro      using 'SAPMP50A' '1000'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=INS'.
      perform bdc_field       using 'RP50G-PERNR'
                              pernr.
      perform bdc_field       using 'RP50G-TIMR6'
                                    'X'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'RP50G-CHOIC'.
      perform bdc_field       using 'RP50G-CHOIC'
                              '2011'.
      perform bdc_dynpro      using 'MP200000' '2500'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'T705H-GTEXT'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=DIFP'.
      perform bdc_field       using 'P2011-LDATE'
                              bdcdate.
      perform bdc_field       using 'P2011-LTIME'
                              bdctime.
      perform bdc_field       using 'P2011-SATZA'
                              timev.
      if timev = 'P10'.
        perform bdc_dynpro      using 'MP200000' '2221'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'P2APL-PLANS'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=DOIT'.
        perform bdc_field       using 'P2APL-OTYPE'
                                'A'.
        perform bdc_field       using 'P2APL-PLANS'
                                plans.
        perform bdc_field       using 'P2APL-WAERS'
                                'USD'.
      endif.
      perform bdc_dynpro      using 'MP200000' '2500'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'P2011-LDATE'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=UPD'.
      call transaction 'PA30' using bdcdata
                                    mode mode
                                    messages into messtab.
    * If error occurs, give message and come out.
      if sy-subrc <> 0.
      endif.
      clear bdcdata.  refresh bdcdata.
      clear messtab.  refresh messtab.
    endform.
    *       bdc_dynpro
    form bdc_dynpro using program dynpro.
      clear bdcdata.
      bdcdata-program  = program.
      bdcdata-dynpro   = dynpro.
      bdcdata-dynbegin = 'X'.
      append bdcdata.
    endform.
    *        bdc_field
    form bdc_field using fnam fval.
      clear bdcdata.
      bdcdata-fnam = fnam.
      bdcdata-fval = fval.
      append bdcdata.
    endform.
    Regards,
    Rich Heilman

  • URGENT can anyone let me know how to include sort buttons in table maintian

    hi
    can anyone let me know how to include sort buttons in table maintianence
    as generally table maintianec done have sort buttons i need to include the sort buttons kindly let me know on that asap
    or can we use module pool in between table maintianece screen
    if yes how touse and how to cod for that
    regards
    Arora

    You can change the coding of Table Maintenance.
    >> Goto SM30, give table name and goto Display/Maintain mode and copy all the GUI status from standard program into your function group. Add sort button in the GUI Status of Maintain & Display mode.
    >> Goto to tablemaintenance screen generated using SE51.
    >> Select change mode.
    >> After PROCESS BEFORE OUTPUT, create one module to assign your function group program name to " X_HEADER-GUI_PROG = "
    >> In PROCESS AFTER INPUT, add another module at the end to perform the action.
    -Alpesh.Saparia

  • Can anyone let me know how to do MCSI configuration?

    Hi all,
    Can anyone let  me know how to configure MCSI reports ? is there any links in sap nor docs about it ?
    Thanks
    Pooja

    Steps in LIS:
    1. Crete Field Catalogue (Key Figures & Statistics)
    2. Create Info Structures using Field Catalogues
    3. Assign Update Groups to Info Structures & Set up Update Rules for Key Figures & Characteristics.
    4. Activate the Update for Info Structures
    5. Perform statically set-up to upload and Post data in LIS.
    T-Codes:
    1. OMOA / OMOB / OMOC - Create / Change / Display - Application
    2. MC18 / MC19 / MC20 - Create / Change / Display - Field Catalogue
    3. MC / MC22 / MC23 - Create / Change / Display - Info Structures
    4. MC24 / MC25 / MC26 - Maintain update rules
    5. OMO1 - Activate Update.
    Hope this helps...
    Thanks,
    Jignesh Mehta

  • Hi Can anyone explain how the abaper's first day will be in office

    Hi all,
    Thank you very much to all of you ..
    I have got a job in Texas..
    Can anyone let me know .. how the real time work will be ..
    I mean how the first day will be...
    Wht are the necessary things to be prepared...
    Wht are the topics i need to concentrate on....
    Kindly respond this is the problem of my life...
    Thanks and Regards
    Santosh

    I have to say it really depends on the position you are being hired for.. if it is a brand new implementation, you will have a fairly smooth learning curve.. like what was mentioned in the previous post.. but if they need you to fix something that is broken, the client will expect something right away.. I have been to a place where the Manager logged me in on her user id & just showed a couple of screens & what she expected me to do.. I was literally on my own within an hour, entering their premises..this is not to scare you.. but just that be mentally prepared if you are going to a client that has already been using SAP for a while.. expect fairly knowledgeable colleagues.. if you can show you some result in the first few days, then you automatically win their trust..
    Good Luck,
    ~Suresh

  • I have Adobe CS4 Photoshop for Windows (PN 65015634 - from 2008) -- Can anyone let me know if this is compatible with Windows 7??  Thanks!!

    I have Adobe CS4 Photoshop for Windows (PN 65015634 - from 2008) -- Can anyone let me know if this is compatible with Windows 7??
    Many and sincere thanks!!

    You need to have your computer looked at for upgrading and evaluate your third party hardware, software and files.
    To fix your issue is too complicated and lengthy to go into all of it here, it will require the services of person very familiar and experienced with Mac's to first recover your data and then restore OS X back to a functional state which may or may not require new hardware/software installed.
    You can hire the services of a local Mac computer support technician experienced in these matters.
    Have them look at your Wifi security/speed, RAM amount, extra storage and computer backup proceedures in the process.
    Good Luck.

  • I have a MacBook Pro 17 inch and I just destroyed the screen.  Can anyone tell me the keystrokes to turn on the external display as primary?

    I have a 17-inch MacBook Pro with a destroyed screen.  (My son put it on the top of his car and drove off and it fell off.)  Can anyone tell me the keystrokes to make an external monitor the primary monitor?  I can see only the upper left side of the laptop screen so I CAN select system preferences.  I can then arrow over to system preferences and down to make selections I cannot see.  I don't know then what to do or IF I can make the choices needed to make the external monitor primary when all I can do is make keystrokes on items I cannot see.  It's an older (about 2008) MacBook Pro and I would like to use the external monitor to see to connect an external hard drive and download files to install on a new MacBook.  My son might know the iOS but I don't.

    • I don't know then what to do or IF I can make the choices needed to make the external monitor primary
    This is the left side of System Preferences in OS 10.8.3. (if that is not what the MBP is running post back). By the way, if you can grab the top of that pane you could move it over to the top far left. - Same for any pane.
    Do this with the external monitor connected and powered on.
    You need to click on Displays., and then grope for Arrangement and click there.
    When you get there, the two screens are shown.
    The trick is to grab the white stripe (on the left in this image) and move it to the other rectangle. You do not have to position it exactly, it snaps into place when it gets close.

Maybe you are looking for