To assign text data source

Hi
I have a scenario where I have to extract the text for a customised infoobject like zrsk_cat which is similar to the standard info-object 0risk_categ. How can i use the data source which is used to extract the text of 0risk_categ to extract the text of Zrsk_cat.
Also the infoobject 0risk_categ is compunded to 0c_ctr_area(credit control area). does that mean we need to make our (zrsk_cat) compounded to 0c_ctr_area for us to extract the text even though we do need this in any other way.
Please advise.
Thanks in advance.
kate.

Hi BWer
Thanks for the answer.
Thats what I have done but when I do assign data source that data source(0risk_categ) is not found as I think its already been assigned to the std infoobject 0risk_categ and I think we cannot use the same data source to assign to two data targets.
What can I do to make use of this text data source to upload the text to the my new info-object.DO i need to do flexible update....and is it possible for text ?
Thanks in advance.
Kate
Message was edited by: Kate Smith

Similar Messages

  • Text data source and Info object?

    Hi I have created Texts data source in R/3 and our onsite folks have asked me to create relavant info objects in BW as well.I need to validate against the data source created in R/ 3for use short med or long text all should support mulilang.Can any body please explain how can I proceed with this ?
    Points will be definitley assigned.
    Thanks,
    Hari.

    It is the other way. Once u tick in the master data tab -what kind of text u want-short,long,medium-then that will appear in your transformation.And u can map any char field from ur data source for these based on the length.
    So u can check the datasource definition in rsa2 and determine the length of text field in which ur text data will data.
    Based on that select in teh info object, then u will get that to map in transformation.
    Hope it helps
    Regards,
    Rathy

  • Assigning a Data Source to a Chart via JavaScript

    Dear all,
    Is it possible to assign a Data Source to a Chart via coding ?
    something like :
    CHART_1.setDataSource ...
    Many thanks
    Hans

    I ran into the same problem.  You can't dynamically switch DataSources for a chart, however, you can re-assign a DataSource to a different query.
    I have a chart assigned to DS_1:
    On startup, I need to check a flag, and use a different query based on the value of the flag.
    Since I can't dynamically switch the DataSource for the chart, I simply switch the query that feeds the DataSource like this:
    I hope this helps.

  • Creating the text data source for 0OI_LIFNR(TD: Carrier (Number of vendor a

    Hi
    Have to create the text data source for this characteristic. Basically it is the same as 0Vendor here.
    I want to make it delta enabled.
    Am creating it on the view BIW_LFA1T(same as 0vendor)
    Can anyone advise what can I use to make it delta enabled without any code.
    Can I use numeric pointer like the 0Vendor_text.
    Many Thanks and regards,
    Kate.

    when defining a data source through the admin web page, don't add '!' in front of the password.
    ! is needed only when configuring a data source in the mapViewerConfig.xml file.

  • Crystal ActiveX Runtime Lib: Change text data source path at run time.

    We have some PCs running Crystal Reports 10 and some running CR 9 and 8.5. For each PC, we set up a System DSN ODBC data source (in Control Panel - Administrative Tools) for pulling data from text files to
    generate reports.
    Recently we wrote some routines (see the Visual Basic example at the
    end of this message) to change the path of the data files at runtime.
    According to the Crystal Reports Technical Reference Guide, we may use
    the method LogOnServer() of an Application object or an DatabaseTable
    object. However, we find that this does not work: the PrintOut()
    method only pulls data from the default path as configured for the
    System DSN, not from the path passed as the third parameter of
    LogOnServer(). It does not return any error message.
    We have also tried to use SetTableLocation() method, and it still does
    not work.
    Would any experts examine our code below and advise what we are missing? Thanks.
    For the following VB example, we have:
    System DSN Name: AP_WORKSHEET
    Driver: Microsoft Text Driver
    Database Directory: D:\0ood2 (i.e. the default path)
    Crystal Report Document: D:\3g\run\Vision\apcyto\Reports\crBlockWS.rpt
    (Which specifies that the data source text file name is BlockWS.txt)
    Purpose : We would like to read the data source text file from
    D:\0ood1 instead of the default path.
    Following is the code of the VB macro:
    Sub test()
    Rem In this version of the subroutine, we call
    Rem DatabaseTable.LogOnServer() and "Rem"ed out
    Rem Application.LogOnServer() and SetTableLocation().
    Rem We have un"Rem"ed each of them and "Rem"ed others and try to run.
    Rem In all runs, data are pulled from the default file
    Rem D:\0ood2\BlockWS.txt instead of D:\0ood1\BlockWE.txt.
    Dim crxapp As CRAXDRT.Application
    Dim crxRep As CRAXDRT.Report
    Dim crxDB As CRAXDRT.Database
    Dim crxTab As CRAXDRT.DatabaseTable
    Dim crxConnPs As CRAXDRT.ConnectionProperties
    Dim crxConnP As CRAXDRT.ConnectionProperty
    Dim apropSubLoc As String
    Dim apropConnBufStr As String
    Set crxapp = CreateObject("CrystalRuntime.Application")
    Rem
    crxapp.LogOnServer "p2sodbc.dll", "AP_WORKSHEET", "<CRWDC>DBQ=D:\0ood1",
    Set crxRep = crxapp.OpenReport
    ("D:\3g\run\Vision\apcyto\Reports\crBlockWS.rpt")
    Set crxDB = crxRep.Database
    Set crxTab = crxRep.Database.Tables(1)
    apropConnBufStr = crxTab.ConnectBufferString
    apropSubLoc = crxTab.SubLocation
    crxDB.LogOnServer "p2sodbc.dll", "AP_WORKSHEET", "<CRWDC>DBQ=D:\0ood1",
    Rem crxTab.SetTableLocation "D:\0ood1\BlockWS.txt", apropSubLoc, "DSN="
    Rem Set crxConnPs = crxTab.ConnectionProperties
    Rem Set crxConnP = crxConnPs.Item("DSN")
    Rem crxConnP.Value = "AP_WORKSHEET"
    Rem Set crxConnP = crxConnPs.Item("Database")
    Rem crxConnP.Value = "D:\0ood1\BlockWS.txt"
    Rem crxTab.Location = "BlockWS.txt"
    crxRep.DiscardSavedData
    crxRep.PrinterSetup (0)
    crxRep.PrintOut
    End Sub
    For VB macros, the problem exists in all of CR 8.5, 9 and 10. However,
    for another platform we are using, Unify Vision 4GL, it works for CR
    8.5 while not working for CR 9 and 10.
    Following is the source code in Unify Vision 4GL. This language may
    not be popular, but I thin you are about to see how it calls the
    Runtime Library methods LogOnServer(), OpenReport(), PrinterSetup() and
    PrintOut().
    %gfPrintCrystalReport
    BOOL FUNCTION gfPrintCrystalReport($reportName)
    BEGIN
    if NOTMKNOWN(GF:$oSeagateId) then
    create service of activex
    class 'CrystalRuntime.Application'
    object_ref into GF:$oSeagateId;
    if MKNOWN(GF:$oSeagateId) then
    begin
    /* TD23013: Database directories are dynamic to
    accommodate multiple user requirement of Citrix */
    send message LogOnServer to GF:$oSeagateId
    using
    ( 'PDSODBC.DLL', 'AP_WORKSHEET', '<CRWDC>DBQ='+GF:$WinTempDir,'','')
    identified by $msgHandle;
    if $msgHandle:MSG_STATE 'RESPONSE_PROCESSED'
    then
    begin
    display 'Crystal Reports cannot connect
    to the datasource ' for fyi_message wait;
    return (FALSE)
    end
    send message OpenReport to GF:$oSeagateId using
    ($reportName, 1)
    identified by $msgHandle returning
    $oCrystalReport
    if MKNOWN($oCrystalReport) then
    begin
    if (NOTMKNOWN(GF:$printerName)) then
    set GF:$printerName to
    $oCrystalReport->PrinterName;
    if GF:$printerName $oCrystalReport-
    PrinterName then
    send message SelectPrinter to
    $oCrystalReport
    using
    (GF:$driverName,GF:$printerName,GF:$portName)
    identified by $msgHandle;
    set $oCrystalReport-
    DisplayProgressDialog to FALSE;
    while TRUE
    begin
    DISPLAY NOTICE 'Print to : ' +
    GF:$printerName
    LABELS 'Ok'
    DEFAULT, 'Cancel', 'Printer Setup'
    RESULT INTO $userOption
    switch ($userOption)
    begin
    case 0 :
    send
    message PrintOut to $oCrystalReport
    using
    (PROMPT_USER, NUMBER_OF_COPIES, COLLATED, START_PAGE, STOP_PAGE)
    identified by $msgHandle;
    set
    $oCrystalReport to UNDEFINED
    return
    (TRUE);
    case 1:
    set
    $oCrystalReport to UNDEFINED
    return
    (FALSE);
    case 2:
    send
    message PrinterSetup to $oCrystalReport
    using
    (0)
    identified by $msgHandle;
    if
    GF:$printerName $oCrystalReport->PrinterName then
    begin
    set GF:$printerName to $oCrystalReport->PrinterName;
    set GF:$driverName to $oCrystalReport->DriverName;
    set GF:$portName to $oCrystalReport->PortName;
    end
    break;
    end
    end
    end
    end
    return
    (FALSE);
    END

    Hi Sydney,
    If you search the Developers help file you'll find info on using the method:
    How to change the data source
    This example demonstrates how to change the data source from native Access to an OLEDB (ADO) data source by using the ConnectionProperty Object, as well as how to change the table name by using the Location property of the DatabaseTable Object. CrystalReport1 is connected to the xtreme.mdb database found in the \Program Files\Crystal Decisions\Crystal Reports 10\Samples\En\Databases folder. The report is using the Customer table. A copy of the Customer table is added to the pubs database on Microsoft SQL Server.
    ' Create a new instance of the report.
    Dim Report As New CrystalReport1
    Private Sub Form_Load()
    ' Declare a ConnectionProperties collection.
    Dim CPProperties As CRAXDRT.ConnectionProperties
    ' Declare a DatabaseTable object.
    Dim DBTable As CRAXDRT.DatabaseTable
    ' Get the first table in the report.
    Set DBTable = Report.Database.Tables(1)
    ' Get the collection of connection properties.
    Set CPProperties = DBTable.ConnectionProperties
    ' Change the database DLL used by the report from
    ' native Access (crdb_dao.dll) to ADO/OLEDB (crdb_ado.dll).
    DBTable.DllName = "crdb_ado.dll"
    '  The connection property bags contain the name and value
    ' pairs for the native Access DLL (crdb_dao.dll). So we need
    ' to clear them, and then add the name and value pairs that
    ' are required to connect to the OLEDB data source.
    ' Clear all the ConnectioProperty objects from the collection.
    CPProperties.DeleteAll
    ' Add the name value pair for the provider.
    CPProperties.Add "Provider", "SQLOLEDB"
    ' Add the name value pair for the data source (server).
    CPProperties.Add "Data Source", "ServerA"
    ' Add the name value pair for the database.
    CPProperties.Add "Initial Catalog", "pubs"
    ' Add the name value pair for the user name.
    CPProperties.Add "User ID", "UserName"
    ' Add the name value pair for the password.
    CPProperties.Add "Password", "password"
    ' Set the table name. ' for SQL types it would be "database.dbo.table"
    DBTable.Location = "Customer"
    Screen.MousePointer = vbHourglass
    ' Set the report source of the viewer and view the report.
    CRViewer1.ReportSource = Report
    CRViewer1.ViewReport
    Screen.MousePointer = vbDefault
    End Sub

  • Text Data source for Classification Data

    Hi BW Gurus, Ajay Das and Kishore helped me very well on this, just last step doubt. In r/3 system I have added the char tYPE AND kyf TYPE CHARACTERISTICS to classification data now it has generated the Classification customer attribute data source 1CL_0CUSBMW01 and I see the text datasources generated afor char type characteristics in /NCTBW such as 1CL_AABMW01,1CL_AABMW03,  etc.. now when i go back to BW
    i see the customer attribute data source 1CL_0CUSBMW01 and also text datasources generated in datasource overview, but when i go infosource tab in rsa1 I WAS INTstructed to create the infopackage on 0customer for customer attribute data source 1CL_0CUSBMW01 AND load the data now I " Have a doubt I think I also have to create 4 more infopackages and specify the text datasources generated for the characteristic added in CTBW ex 1CL_AABMW01,1CL_AABMW03. to load the text for the characteristics. please clarify asap if it is required to create all these text infopacks to load the text datasource to respective infoobject or just customer attribute data source 1CL_0CUSBMW01 infopack will take careof every thing, beacuse my manager did not told me to create the text infopack so how will the text get loaded for the infoobject
    soniya

    1CL_0CUSBMW01 is the DS containing 0CUSTOMER and the two (or more) characteristics I assume. This has to be used to update 0CUSTOMER. You can either use the existing infosource, or, create a new one to do this. You will then need a new infopackage to run this.
    Let us say one of the characteristics also has text, and you want to bring that to BW using generated DS 1CL_AABMW01. You will replicate it, and use it to update texts to infoobject XXXX (whatever this characteristic is, in BW). This will not be used to update 0CUSTOMER.
    Let us say your class char was COLOR. Its values were 1,2,3,4,... and the associated text was Red, Green, Blue...
    Now, based on the above, 0CUSTOMER will have an attribute COLOR which will have values in Attr table as 1,2,3,4...
    The text table for characteristics COLOR will have values as
    1--Red
    2--Green
    3--Blue.....
    The text will NOT go to 0CUSTOMER if that is what you are asking.

  • Text data source for the field Position(PLANS)

    Hi Experts,
    I have an infoobject ZPOSITION which i am using in a cube for this i can able to display key values but i want to display text for this ZPOSITION. The source for this field is Position(PLANS) which i have tacken from pa0001 table.
    I have an another infoobject 0HRPOSITION for this i have already loaded data using data source 0HRPOSITION_TEXT.
    Is there any other text datasources for this field Position(PLANS)?
    And
    Is it possible to load data from one info object to another info object?
    Regards,
    Sridhar.K

    Hi Sridhar,
    Check out in the infotype PA0001 for the check table for this field. In this table you will have the description for the field PLANS (Position).
    I request you to catch hold of functional HR team member to know where the text value for the Position (PLANS) is stored. You can get the info from them immeadiatly.
    After knowing the table where the text values for Position (PLANS) are stored, you have to create a text datasource using RSO2 transaction and replicate in BW and load data from the R/3 table.
    Hope this helps you.
    Regards,
    Saravanan.

  • Generic text data source problem

    Hello Gurus,
    I am trying to create a generic data source for an iobject needed in my analysis (shipment conditions, 0SHIP_COND - I haven't been able to find appropriate txt DS in RSA5 for it).
    I located its texts in a table TVSB. It contains 3 fields: Client, Shipping Cond. and Description.
    I tried to create a DS based on this table in RSO2, but when I check it afterwards, it does not have the Description field. That means only the Shipping Cond. code field is in created data source.
    What can be the cause that when I create a data source based on a table, the system skippes some fields from this table?
    Could anyone provide a solution to this problem?
    Regards,
    Alek

    Ah, thank you
    BTW: For a future reference:
    How can I check that a table is "really" a table, valid for - for example - making a DS based on it?
    I have opened TVSB in SE16 and it looked "OK", just like a regular table (for example, I compared it with TKUKT, for customer class, which is valid for making a data source on it, and they both looked the same (in structure).
    Is there a way to distinguish a "valid for DS" table? Or it's just the know-how you need to get through your experience?
    Edited by: Aleksander Dyl on Dec 10, 2008 11:27 AM

  • XRPM unapproved items text data source

    Hi Gurus,
    I am trying to extract the text for xRPM unapproved items. i.e. Projects text. IS there any std Bi content data source for this. If yes, Please can you let me know the name. Basically when i run the reprot for projects forecast plans i am not getting the text for unapproved items. The unapproved items are only exisitng in xRPM system.
    Regards,
    Suresh.

    Hi folks, i know this thread is a little old but i have the same insue and i want to share the solution, it could help others.
    Like Mayank said, get line and set line works the last row of the matrix, but is not true at all, GetLineData and SetLineData works for the row of the matrix that is set on the offset of DBDatasource lines, so to works fine you need to set the offset first.
    oForm.DataSources.DBDataSources.Item("@MY_DS_LINES").Offset = x-1;
    Mat.GetLineData(x);
    oForm.DataSources.UserDataSources.Item("IDS").ValueEx = val;
    // Update any other UserDataSources for the same row here...
    Mat.SetLineData(x);
    where x is the row number of the matrix you want to update.

  • Assigning data source below info-object

    HI,
    I have to use one text data source below one info-object. But this data source is already used by another Master info-object.
    So that when we create transfer rule for this data -source and in "select direct info-object" when we give info-object name.
    After this when we activate transfer rule. It gives error like "it is assign to another info-object".
    So that how can we use this data-source to another info-object? is it possible or not?
    Thanks
    Devesh Varshney

    You can do either of the two -
    1. Migrate the existing transfer rule (from datasource to master data object) to transformation & datasource to 7.x datasource. Then you can load it to any number of targets.
    2. No change to the existing flow. Create export datasoruce on the infoobject (right click --> additional options) and create transformation/transfer rule to the new infoobject (from the export datasource) and load texts.

  • Create a new dimension in business layer from Data source: text file on the web

    Hi,
    I have a text data source which is published every few hours that is accessible from a certain URL. I follow the instruction given in this http://scn.sap.com/docs/DOC-43144 - where it shows in great detail how to create the connection, data foundation as well as business layer to create a universe for this type of data.
    All is well - I can use this universe in my WEBI doc and display the data.
    However, in order for me to merge the data from this universe with another universe, I need to create  new dimension based on the data from the text file. The new dimension value is simply the first 4 characters of the Subject found in the text file. The "Subject" dimension is of variant type: varchar.
    Following the guide mentioned earlier, the connection is using SAP BO OpenConnectivity driver. And this driver limits severely the SQL statement that I can use to extract a substring of another string. Here's the screenshot of the SQl expression that I can use with this driver
    After hours of searching, I cannot find any other connection driver for a text file that's published on a certain URL. The BO OpenConnection driver is the best that I could find.
    So here are my problems
    1. one of my data source is a text file published on a web
    2. the only connection I can create does not allow me to create  new dimension in the universe to create an important column "subject ID"
    3. I can create the column in webi as a variable. But when I do so, I cannot merge it with existing dimension (webi not allowing to merge these 2 types). And without the merge, the flat file universe with my database universe can't be combined.
    I'm using WEBI Rich client version 4.1 SP3 Patch 1. Build 14.1.3.1300
    Is there any other idea that you can suggest without requiring to change the extracted data?
    Thanks.
    With warm regards

    Hi Bala,
    Were you able to find out a solution for the problem with uploading values for a variable from a text file on the web?  I am confronted with the same request from users.
    Thanks,
    BQ

  • One data source and assign multiple data target in BI?

    Hi all,
    Is it  possible is to assign one data source to multiple data targets in BI? Not like  in BW 3.X ; one data source can assign only one Info source. I am bit confused about it, let me know about this ?
    Regards.
    hari

    Okay, I must have misunderstood your message, I was thinking BI 7 and data targets .. like cubes and DSO's.
    In 3.x, assign your datasource to a single infosource.  Then assign that infosource to multiple data targets by creating update rules and assigning your infosource to each/all of them.
    In this way, you shouldn't need multiple infosources per datasource unless you have a special situation that calls for it.
    Brian

  • What is the data source for cProjects hierarchy texts 0CPR_GUID?

    The cProjects hierarchy will not display texts, only the technical name. I believe I must extract the texts for BW InfoObject 0CPR_GUID. I can not identify the text counterpart to 0DPR_HIERARCHY_ATTR data source for BW InfoObject 0CPR_GUID.
    Questions:
    1) What is the technical name for the text data source of BW InfoObject 0CPR_GUID?
    2) Is this data source included in NetWeaver 04?
    Thanks you for your help,
    John Hawk
    [email protected]
    (209) 324-0436

    The Answer:
    The project element data sources must be mapped to both the project element infosoure AND 0CPR_GUI_TEXT.
    For each data source
    0DPR_APPROVAL_TEXT to 0CPR_APPROVAL_TEXT and 0CPR_GUID_TEXT
    0DPR_CHECKLIST_ITEM_TEXT to 0CPR_CHECKLIST_ITEM_TEXT and 0CPR_GUID_TEXT
    0DPR_CHECKLIST_TEXT to     0CPR_CHECKLIST_TEXT and0CPR_GUID_TEXT
    0DPR_PART_TEXT to 0CPR_PART_TEXT and 0CPR_GUID_TEXT
    0DPR_PHASE_TEXT to 0CPR_PHASE_TEXT and     0CPR_GUID_TEXT
    0DPR_PROJECT_TEXT to 0CPR_PROJECT_TEXT     and 0CPR_GUID_TEXT
    0DPR_TASK_TEXT to 0CPR_TASK_TEXT and 0CPR_GUID_TEXT

  • How to replicate Generic data source from R/3 to BI

    Hi,
    I have created generic datasource in r/3 using view. I replicated to BI.
    I selected  for DataSource (RSDS) instead of selecting  3.x DataSouce.
    Now what r the steps to load data into cube.
      Please help me in this regard. Please give me detail steps to proceed further.
    Thanks,
    Jaswantha

    Hi,
    About Generic Extraction:
    In Sometimes the Standard Extraction Does not Satisfy the Customers Needs that time We have to use Generic Extraction.
    generic extraction is also classified in to three types
    using
    1. View
    2.Infoset query
    3.Function module.
    Procedure:
    -->Go to Tcode : RSo2,
    -->There give the name of data source which you want to create like
    transaction data source or master data attribue or Text data source.
    -->enter
    -->again in the next screen you need to give application like SD or MM
    etc
    -->in the same screen need to select table/view or infosetquery or
    function module. these are different ways of creating data sources.
    -->Give the name for the same like if u r creating data source on table
    give the name of table.
    -->click on Generic delta which will there in application tool bar and
    fil the required columns in that screen like type of delta and all
    -->continue and save
    -->it will give all the fieds
    -->enable the check boxes based on your requirement like selection or
    hide or field only..
    -->save
    please see the below links:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    Re: Generic Extractor - Delta
    Re: Generic Extractor - Delta
    Please do check the link for step by step for generic xtraction
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    check the following
    http://help.sap.com/bp_biv235/BI_EN/html/bw.htm
    business content
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/g-i/how%20to%20co-pa%20extraction%203.0x
    https://websmp203.sap-ag.de/co
    http://help.sap.com/saphelp_nw04/helpdata/en/37/5fb13cd0500255e10000000a114084/frameset.htm
    (navigate with expand left nodes)
    also co-pa
    http://help.sap.com/saphelp_nw04/helpdata/en/53/c1143c26b8bc00e10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/fb07ab90-0201-0010-c489-d527d39cc0c6
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1910ab90-0201-0010-eea3-c4ac84080806
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ff61152b-0301-0010-849f-839fec3771f3
    LO Extraction
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Check these links:
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    /people/sap.user72/blog/2004/12/23/logistic-cockpit-delta-mechanism--episode-two-v3-update-when-some-problems-can-occur
    /people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    /people/sap.user72/blog/2005/04/19/logistic-cockpit-a-new-deal-overshadowed-by-the-old-fashioned-lis
    Re: LO-Cockpit  V1 and V2 update
    Also Refer this link:
    http://www.sap-img.com/business/lo-cockpit-step-by-step.htm
    FI-CO 'Data Extraction -Line Item Level-FI-CO
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a7f2f294-0501-0010-11bb-80e0d67c3e4a
    FI-GL
    http://help.sap.com/saphelp_nw04/helpdata/en/c9/fe943b2bcbd11ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_470/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm
    http://www.sapgenie.com/sapfunc/fi.htm
    FI-SL
    http://help.sap.com/saphelp_nw2004s/helpdata/en/28/5ccfbb45b01140a3b59298c267604f/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/41/65be27836d300ae10000000a114b54/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ee/cd143c5db89b00e10000000a114084/frameset.htm
    How to do basic LO extraction for SAP-R3-BW
    1. Go to transaction code RSA3 and see if any data is available related to your DataSource. If data is there in RSA3 then go to transaction code LBWG (Delete Setup data) and delete the data by entering the application name.
    2. Go to transaction SBIW --> Settings for Application Specific Datasource --> Logistics --> Managing extract structures --> Initialization --> Filling the Setup table --> Application specific setup of statistical data --> perform setup (relevant application)
    3. In OLI*** (for example OLI7BW for Statistical setup for old documents : Orders) give the name of the run and execute. Now all the available records from R/3 will be loaded to setup tables.
    4. Go to transaction RSA3 and check the data.
    5. Go to transaction LBWE and make sure the update mode for the corresponding DataSource is serialized V3 update.
    6. Go to BW system and create infopackage and under the update tab select the initialize delta process. And schedule the package. Now all the data available in the setup tables are now loaded into the data target.
    7.Now for the delta records go to LBWE in R/3 and change the update mode for the corresponding DataSource to Direct/Queue delta. By doing this record will bypass SM13 and directly go to RSA7. Go to transaction code RSA7 there you can see green light # Once the new records are added immediately you can see the record in RSA7.
    8.Go to BW system and create a new infopackage for delta loads. Double click on new infopackage. Under update tab you can see the delta update radio button.
    9.Now you can go to your data target and see the delta record.
    find your scenario and find what data sources do you need on R3 side and ensure they are active as well:
    http://help.sap.com/saphelp_nw04/helpdata/en/37/5fb13cd0500255e10000000a114084/frameset.htm
    find your scenario -> data sources -> go to R3 -> sbiw and activate required data source
    replicate data sources in BW:
    RSA1 -> source systems -> right click on your source system -> replicate
    then activate your BC:
    service.sap.com/bi -> BI Business Content -> General Information -> SAP BW Business Content - Activation
    and execute infopackage (it should be delivered with BC)
    Useful links:
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    service.sap.com/bi -> BI InfoIndex
    sdn.sap.com -> Business Information Warehouse -> How-To guides (under Quick Links)
    Assign points if useful.

  • Error when extracting the text data

    Hi all
    I am getting an error when transfering the text data thru flat files .
    It is asking " No transfer structure available for the source system ," and saying that 0langu is not assigned to source syatem.I am working on 3.5.
    pls suggest me.
    thanks in advance
    karna

    hi,
         you have to decline 0LANGU, STTXT(short text), MDTXT(medium text),
    LGTXT(long text), and respective key field(primary key) of attribute for
    text data source.  give the above five info object's in transfer structure for
    text data source and activate it.
    if helpful provide points
    regards
    harikrishna.N

Maybe you are looking for

  • OutOfMemoryError when connecting to BC4J deployed as EJB in Oracle 8i

    I have deployed a simple Application Module as an EJB in the Oracle 8i. I tried to connect to it with the following code: Hashtable env = new Hashtable(2); env.put(Context.INITIAL_CONTEXT_FACTORY, JboContext.JBO_CONTEXT_FACTORY); env.put(JboContext.D

  • Problem in report 10g(CA utility)

    Hi I am using forms 10g developer version Forms and reports [32 Bit] Version 10.1.2.0.2 (Production) on Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production In one of my report, when pages of report create more than 70 pages then it

  • Video Editing: Speed up selection of a video, how?

    Hello All,So I need to take a long video file, speed up the boring bits in the middle and slow it back down when the interesting bit happens, I know that sounded dodgy. So how do I do this? I have never done anything like this before so software reco

  • DPS Web method returns success even though printer does not exist

    Hi, I am using the Document Print Services Web Services to print documents in AutoVue. If I pass the VueBeanWS.print a printer on my network, it prints just fine as one would expect. But if I pass an invalid printer the return string from the .print

  • How to 'reset' Mac Book Air?

    My Mac Book Air is instable, permanently< asking to restart. Its in a loop. What I need is a kind of Secure Mode start up. Repeatedly pressing power off for several seconds brings the same error message, that Mac OS wants a restart. Urgently need adv