Related To FI , Anybody explain

Hi,
Anybody expalin :
Accounts Receivable: Payment History (technical name 0FIAR_C05)
Accounts Receivable: Transaction Data (technical name 0FIAR_C02)
Accounts Receivable: Line Items (technical name 0FIAR_C03)
On what scenarion these dataprovider comes into picture.
Is it necessary to pull data for all the provider for AR
THere are data 9 sources:
0FI_AR_1                          Customers: Transaction figures
0FI_AR_10                         Customer Payment Behavior via Delta Extraction
0FI_AR_3                          Customers: Line Items
0FI_AR_4                          Customers: Line Items with Delta Extraction
0FI_AR_5                          Customers: Payment History
0FI_AR_6                          Customer Sales Figures via Delta Extraction
0FI_AR_7                          Customer SGL Sales Figures via Delta Extraction
0FI_AR_8                          Customer Credit Managemt. Central Data via Delta Extraction
0FI_AR_9                          Customer Credit Managmt. Cntrl Area Data via Delta Extractn
On what basis the datatarget and datasource are mapped ???
Is it only on the basis of SAP provided documentation else we can go ahead with our own way ???
Points assured.......
Thanks,
Debasish

Hi,
In Generally FI EXTRACTION STEPS ARE,
R/3 SIDE
1. RSA5 (Transfer Data Source)
2. RSA6 (Check for Data Source)
B/W SIDE
1.RSA1->SOURCE SYSTEM->SAP R/3->FI->REPLICATE
2.Select the infosource and assiagn source system, select datasource
3. Select the Data target as ODS schedule.
4. Now make the ODS data activate from RSA1->INFO PROVIDER->ODS(right click)
5. Now RSA1->INFOPROVIDER->ODS->UPDATE data target
6. Schedule now look for data
7. Used BEX to get summarised data from cube and detailed data from ODS.
Thanks,
Sankar M

Similar Messages

  • Can anybody explain what is support for ADF Project and to solve the Issues

    Hi,
    I am new to ADF and i am currently associated to ADF Support Project.
    Can anybody explain what is support for ADF Project and to solve the Issues when the ADF Project is in Live.
    we are getting the Tickets for the Issues.
    Thanks in advance.

    I agree with Timo.
    It depends on the size of the project, user base, technologies, etc. We use lot of technologies in fusion middleware stack. We get tickets in many areas.
    In your case, it could be anything like user training issues (user may not know how to use the some system features), browser issues like blank screen, bugs in code like JBO errors (failed to validate, another user has changed row, failed to lock the record, NullPointerException, IllegalArgumentException etc), business logic issues, page may not render properly, performance issues, partial commit issues, application server issues, authentication issues. If you use web services you might get web services related problems.

  • Can anybody explain the difference REDOLG vs ARCHIVE log files

    can anybody explain the difference REDOLG vs ARCHIVE log files?
    and the relation between redolog files and redolog buffers?
    thanx in advance

    Changes made to the database are recorded in the Redo log buffer. This Buffer contains Redo records or entries, which are a description of changes made to the database.
    The Redo Logs are critical in order to recover the database or to reconstruct data files and undo segments after a system crash or hardware failure.
    Each Oracle instance has only one log writer process (LGWR). The log writer operates in the background and writes all records from the Redo log buffer to the Redo log files. When the database operates in Archivelog mode, the redo logs are are archived before overwritten.

  • Can anybody explain me creating Generic Datasource using Function module?

    Hi,
    can anybody explain me creating Generic Datasource using Function module?
    Thax in advance,
    Ravi.

    Generic Extraction via Function Module
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    1. Create s structure with the fields that you need from the 4 tables . Activate.
    2. Goto SE 80 Select The Function Group , Copy , Select the Function module
    " RSAX_BIW_GET_DATA_SIMPLE " and Give a New name starting With
    Y or Z .
    3. SE37 ->Your Function module name -> Change , In table tab give your structure
    name by deleting the associated type given in " E_T_DATA " .
    4. Now select source code and Do the coding . Give Data source name in Coding .
    In your case you have to take data from more that 1 table .
    5. Activate the Function Group .
    6. In RSO2 Create the Data source , Give the Function Module Name , And Save.
    7. RSA3 -> Give data source name and Check for the Records .
    Creation of custom datasource. (Using function module)
    <b>is an example</b>
    1.Create a function group .
    2. Structure ZTEST123
    ZMATNR MATNR CHAR 18 0 Material Number
    ZMTART MTART CHAR 4 0 Material type
    ZMBRSH MBRSH CHAR 1 0 Industry sector
    ZMATKL MATKL CHAR 9 0 Material group
    ZBISMT BISMT CHAR 18 0 Old material number
    ZMAKTX MAKTX CHAR 40 0 Material description
    3. Create function module (i.e. ZTEST….) .
    FM - YMARA_DATA_TRNS
    FUNCTION YMARA_DATA_TRNS.
    ""Local Interface:
    *" IMPORTING
    *" VALUE(I_REQUNR) TYPE SRSC_S_IF_SIMPLE-REQUNR
    *" VALUE(I_DSOURCE) TYPE SRSC_S_IF_SIMPLE-DSOURCE OPTIONAL
    *" VALUE(I_MAXSIZE) TYPE SRSC_S_IF_SIMPLE-MAXSIZE OPTIONAL
    *" VALUE(I_INITFLAG) TYPE SRSC_S_IF_SIMPLE-INITFLAG OPTIONAL
    *" VALUE(I_READ_ONLY) TYPE SRSC_S_IF_SIMPLE-READONLY OPTIONAL
    *" TABLES
    *" I_T_SELECT TYPE SRSC_S_IF_SIMPLE-T_SELECT OPTIONAL
    *" I_T_FIELDS TYPE SRSC_S_IF_SIMPLE-T_FIELDS OPTIONAL
    *" E_T_DATA STRUCTURE ZTEST123 OPTIONAL
    *" EXCEPTIONS
    *" NO_MORE_DATA
    *" ERROR_PASSED_TO_MESS_HANDLER
    data : ZTEST123 type ZTEST123 occurs 0 with header line.
    Maximum number of lines for DB table
    STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,
    S_COUNTER_DATAPAKID LIKE SY-TABIX.
    DATA: begin of t_mara occurs 0,
    ZMATNR type MATNR,
    ZMTART type MTART,
    ZMBRSH type MBRSH,
    ZMATKL type MATKL,
    ZBISMT type BISMT,
    end of t_mara.
    DATA: begin of t_makt occurs 0,
    ZMATNR type MATNR,
    ZMAKTX type MAKTX,
    end of t_makt.
    Initialization mode (first call by SAPI) or data transfer mode
    (following calls) ?
    IF I_INITFLAG = SBIWA_C_FLAG_ON.
    Check DataSource validity
    CASE I_DSOURCE.
    WHEN 'ZZMARA_DATA'.
    WHEN OTHERS.
    IF 1 = 2. MESSAGE E009(R3). ENDIF.
    this is a typical log call. Please write every error message like this
    LOG_WRITE 'E' "message type
    'R3' "message class
    '009' "message number
    I_DSOURCE "message variable 1
    ' '. "message variable 2
    RAISE ERROR_PASSED_TO_MESS_HANDLER.
    ENDCASE.
    Fill parameter buffer for data extraction calls
    S_S_IF-REQUNR = I_REQUNR.
    S_S_IF-DSOURCE = I_DSOURCE.
    S_S_IF-MAXSIZE = I_MAXSIZE.
    ELSE. "Initialization mode or data extraction ?
    Data transfer: First Call OPEN CURSOR + FETCH
    Following Calls FETCH only
    First data package -> OPEN CURSOR
    IF S_COUNTER_DATAPAKID = 0.
    Determine number of database records to be read per FETCH statement
    from input parameter I_MAXSIZE. If there is a one to one relation
    between DataSource table lines and database entries, this is trivial.
    In other cases, it may be impossible and some estimated value has to
    be determined.
    select MATNR
    MTART
    MBRSH
    MATKL
    BISMT
    from mara up to 10 rows
    into table t_mara.
    if not t_mara[] is initial.
    select MATNR
    maktx
    from makt
    into table t_makt
    for all entries in t_mara
    where matnr = t_mara-zmatnr.
    endif.
    loop at t_mara.
    read table t_makt with key zmatnr = t_mara-zmatnr.
    ZTEST123-zmatnr = t_mara-zmatnr.
    ZTEST123-ZMTART = t_mara-ZMTART.
    ZTEST123-ZBISMT = t_mara-ZBISMT.
    ZTEST123-ZMBRSH = t_mara-ZMBRSH.
    ZTEST123-ZMATKL = t_mara-ZMATKL.
    ZTEST123-zmaktx = t_makt-zmaktx.
    append ZTEST123.
    clear ZTEST123.
    endloop.
    clear E_T_DATA.
    refresh E_T_DATA.
    E_T_DATA[] = ZTEST123[].
    ENDIF.
    S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
    ENDIF. "Initialization mode or data extractio
    ENDFUNCTION.
    3. Create the data source using transaction (RSO2).
    4. If structure exists for the table parameter of your function module then ok else create a structure for the table parameter ‘E_T_DATA’.
    5. Test the datasource in R/3 using transaction RSA3.
    6. Transfer the data source to BW –System and replicate it in the BW-System.

  • CAN ANYBODY EXPLAIN ME THE GENERAL FUNCTIONING OF THE SD, MM, PP MODULES.

    CAN ANYBODY EXPLAIN ME THE GENERAL FUNCTIONING OF THE SD, MM, PP MODULES.

    Hi Santosh,
    Seems u r new to SAP.
    SD, MM, PP, FI ,CO,CRM ,etc... are the functional areas dealing in the SAP R/3 ERP.
    They all have their own transaction code and tables. But all are integrated and related to each other.
    For more info check these links.
    http://www.sap-img.com/sap-mm.htm
    http://www.sap-img.com/sap-sd.htm
    http://www.sap-img.com/sap-pp.htm
    Hope this will resolve ur query.
    Reward if helpful.
    Regards.

  • Can anybody explain "Lifecasting (with Maps 3.0T S...

    Hello techies....
    Can anybody explain to me what is meant by
     1. Lifecasting (with Maps 3.0T SR3.0)
     2. Rihanna Service Launcher Added.
    I have updated my phone to V50. I couldnt find anything related to the above ones.
    ----Rakesh

    Lifecasting: http://betalabs.nokia.com/apps/ovi-lifecasting .  Sharing your location with online services like Facebook.  This is integrated into the Maps program itself, look for it in there.
    Rihanna Service Launcher: This will probably be in your Internet folder.  It lets you see what Rihanna (the popular musician) is doing.  This is Nokia's way of seeming hip & popular, much the same as how an 80 year old man might lower his pants from armpit-level to bellybutton-level to seem hip and popular.
    Ravi

  • I just started using fire fox and I cant figure out how to add a new folder to my bookmarks. Can anybody explain how in detail (I'm bad with computers so I need real detail) Please and thank you. :)

    I just started using fire fox and I can't figure out how to add a new folder to my bookmarks.
    Can anybody explain how in detail (I'm bad with computers so I need real detail)
    Please and thank you. :)

    If you use extensions (Tools > Add-ons > Extensions) like <i>Adblock Plus</i> or <i>NoScript</i> or <i>Flash Block</i> that can block content then make sure that such extensions aren't blocking content.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    You can use one of these to start Firefox in <u>Safe mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    If it works in Firefox Safe-mode then disable all extensions (Tools > Add-ons > Extensions) and then try to find which is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Can anybody explain how to configure the Centralized contract in SRM 7

    Hi All,
    Can anybody explain how to configure the Centralized contract management in SRM 7 with ECC EHP4 ?what are all that need to be perform in PI system.
    Thank you,
    praveen

    Hello,
    PI will be required here. You can also refer the config guides maintained at the belwo mentioned location.
    Goto URL http://service.sap.com/srm-inst and then navigate to SAP SRM --> SAP SRM Server 7.0 -> Configuration Guides for SAP SRM 7.0
    Best Regards,
    Rahul

  • Can anybody explain me how to sample and play audio files with logic's EXS2

    can anybody explain me how to sample and play audio files with logic's EXS24 Sampler???
    i cant find a way to upload and manage my own audio content on this sampler...

    i uderstand , thanx...
    i managed to open an audio file and placed it in the sampler,i can play t sample in the little keyboard in the zones section, howver i dont know how to play it with my controller... the sample shows in C1 on logic's keyboard but if i play C1 on my controller nothing happens... how can i fix this?
    Also, i noticed the sample plays from beginning to end once i click on it, how do i do to just make it last until i release the key? like a logic sound??? (in case i want to play a small portion of the sample only)
    Thanx

  • Please Anybody  Explain me about Periodic Processing mettods

    Hi All,
    Under Schduler Tab of Schduler Screen, you will find Periodic Processing, Under this we will find two options... Those are...
    1) Do Not Cancel Job
    2) Cancel Job After X Runs
    Can anybody explain me briefly about these two.......?
    Regards,
    Kiran Telkar

    Hi Kiran,
    When you choose Periodic processing.....the system needs to know if the Job that you are scheduling should be run only X number of times or should be run periodically till the user decides to stop it from running any more.
    eg :
    1) You have scheduled an Infopack with - periodic , and hourly with option Do not cancel job.
    The infopackage would run everyhour , everyday until the user does not require this load anymore.
    2) you have scheduled the infopack with - periodic,  hourly with option Cancel Job after 3 runs.
    Now the infopack will run hourly only 3 times after which the Job will not longer be scheduled to run anymore and the Job will be removed from periodic scheduling after the 3rd run.
    Hope this is clear.
    Regards,
    Praveen.

  • Could anybody explain this warning message regarding Posix Performance Pack

    Hi,
    I am getting following message on my console :
    <Sep 10, 2002 7:12:38 PM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception
    for fd: '123' with no corresponding table entry>
    <Sep 11, 2002 12:40:48 AM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception
    for fd: '151' with no corresponding table entry>
    I have deployed the WL server on HP-UX 11.0 and wlserver version is 6.1 sp2. Could
    anybody explain the warning message ?
    TIA
    Anirudh

    This is a known issue.
    Contact [email protected] and ask for "Combined muxer" patch.
    Kumar
    Anirudh wrote:
    Hi,
    I am getting following message on my console :
    <Sep 10, 2002 7:12:38 PM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception
    for fd: '123' with no corresponding table entry>
    <Sep 11, 2002 12:40:48 AM GMT+08:00> <Warning> <Posix Performance Pack> <Got exception
    for fd: '151' with no corresponding table entry>
    I have deployed the WL server on HP-UX 11.0 and wlserver version is 6.1 sp2. Could
    anybody explain the warning message ?
    TIA
    Anirudh

  • Can anybody explain about MM data extraction with steps.

    Hai everybody!
        Right now i got an opportunity to work with MM datasource extraction by using LO cockpit in BI7.0. But I never worked in this
    module.Pls can anybody explain how can i deal this datasource
    and how can i migrate data into SAP BI. Pls give steps and explanation.
    Warm Regards
    Ravi.

    Hi,
    Pls search SDN BI forum, you will get a lot of info about this.
    http://www.sap-img.com/business/lo-cockpit-step-by-step.htm
    /community [original link is broken]
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    LOGISTIC COCKPIT DELTA MECHANISM - Episode two: V3 Update, when some problems can occur...
    LOGISTIC COCKPIT DELTA MECHANISM - Episode three: the new update methods
    LOGISTIC COCKPIT - WHEN YOU NEED MORE - First option: enhance it !
    LOGISTIC COCKPIT: a new deal overshadowed by the old-fashioned LIS ?
    Regards
    CSM Reddy

  • Can Anybody explain me the role of xi in IS-Retail integration and POS cons

    Can Anybody explain me the role of xi in IS-Retail integration and POS cons

    Hi AnilKumar,
    Find the list is below:
    Q: Role of xi in IS-Retail integration
    Ans: **Business Content Scenario – Retail
    Why using XI in this scenario
    &#56256;&#56452; A push of ‘message type’ data to BW is required
    &#56256;&#56452; XI supports quality of service ‘Exactly once in order’ in push scenarios
    &#56256;&#56452; Stores deliver the data according to ARTS/IX-Retail
    &#56256;&#56452; XI supports ARTS/IX-Retail
    &#56256;&#56452; In case the stores deliver the data as flat files they can be easily transfered to XML format via XI
    Business Content Scenario – Retail
    Store Connectivity Scenario
    &#56256;&#56452; Increase profitability by utilizing POS1 data for
    controlling of retail processes and by understanding
    customer behavior in a better way.
    &#56256;&#56452; SAP XI as single point to collect POS sales information
    as mass data from (3thd party) store systems via an open
    industry specific interface (ARTS/IX-Retail2 compliant).
    &#56256;&#56452; Using SAP XI as additional source for SAP BW
    &#56256;&#56459; improved by Retail POS Data Management to
    ensure better data quality
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0ccae190-0201-0010-1593-c90ef3c1d159
    Pls rewrds if found helpful.
    BR,
    Alok Sharma

  • Can anybody explain all the details about idoc like configuration settings etc..

    Hi all can anybody explain the idoc configuration settings, communication channels sender and receiver settings

    Hi,
    Common steps in both Sender and Receiver:
    Create logical system and assign to client
    Create RFC Destinations in SM59
    Create RFC Ports in WE21
    Steps in Sender
    Create table in SE11 and insert data
    Create Segments in Tcode WE31.Define the table fields in segment
    Create basic IDOC type in WE30.Specify the above created segment name,save and release the IDOC
    Create message type in WE81
    Assign message type to IDOC type in WE82 and release
    Create partner profile in BD64,add the message type ,specify sender,receiver,message type and  generate partner profile and execute.Distribute the model view
    Check the partner profile in WE20
    Develop a report in SE38 with code that transfers the data from source to destination
    Execute the report and specify the fields to be transferred
    Check the control records in WE02
    Steps in Receiver:
    Create an update function module in SE37
    Assign the function module to logical message
    Define input method in Tcode BD51
    Create process code in WE42
    Generate partner profile in BD64
    After executing the report in sender system check in the destination system table wheather the fields are transferred
    In this case a custom table has been created in sender and receiver with same structure.We can even transfer the standard table fields by using idocs
    Thanks & Regards,
    Sravanthi Polu

  • Can anybody explain in more detail about NO-DISPLAY in selection screens..

    an anybody explain in more detail about NO-DISPLAY in selection screens.. in that it is saying
    "If you want to display a parameter only in certain cases, for example, depending on the values entered by the user in other input fields of the selection screen, you cannot use the NO- DISPLAY addition. If you use NO-DISPLAY, the parameter actually is an element of the interface for program calls, but not an element of the selection screen. As a result, you cannot make it visible using the MODIFY SCREEN statement. To hide a parameter that is an element of the selection screen, you must declare it without the NO-DISPLAY addition and suppress its display using the MODIFY SCREEN statement."
    what is the meaning of this?

    This is use a lot in programs which are submitted using the SUBMIT statement.  Say that you have a program which runs as usally with a selection screen and nornal output, but you also have some logic built in there that needs to be execute when this program is not ran by the user with the selection screen, but submitted.  You can use a PARMETER statement the selection screen and NO-DISPLAY to hide it when normal processing by the user.  You could pass a value to the parameter when it is called via the SUBMIT statement.  Does this make sense?
    Regards,
    Rich Heilman

Maybe you are looking for

  • I am looking for a good program to edit existing websites for about $99.00

    I am looking for a good program to edit existing websites for about $99.00 or less, any suggestions? Thanks, New MacBook owner. Martin

  • Indesign CC – work with CS6 .indd documents?

    A few days ago I've installed a new Indesing CC. Everything works fine, however I've found out I'm not able to work with CS6 .indd files in a proper way in out network. Other designers, working on CS6, also have to work with files created with my CC,

  • Caching XSLT results?

    Hi, I am a newbie to XML/XSLT, and we have just written our first XSL stylesheet. I am using the WebLogic JSP Tag Library to do the transformation from XML to HTML and all seems to work well. My question is this: Does WebLogic cache the HTML somewher

  • Bridge CS5 "Floating point support not loaded" Error R6002

    Hi, I have been getting this error ever since I got a virus and cleaned it off my computer. Obviously the virus attached itself to the bridge executable file and when it was "fixed" by the antivirus it has corrupted the bridge file. I have searched a

  • Installing a Java Application under  Win2000

    Hi, I would like to automate the installation of a Java Application under Windows 2000, so that the user is prompted for a destination folder and the application appears in his Start->Games folder. Shoud I use install Shield or can I use something ja