Can SLT replicate data directly to Hadoop

Hi,
Has anyone successfully connected SAP SLT directly to Hadoop or other big data services where the big data is the target? We have a scenario where our SAP OER will produce millions of records of which we wish to report against but see that the scale, ie number of records plus the data retention requirements will mean a typical SAP BW and or a SAP HANA will not be a viable architecture.
So is SLT a contender, excluding potential license discussions?
Thanks
Brian

Hi Justin,
with the gerneral replication to non-ABAP DBs as a target we made some good movements and got a lot of experience within the last year in customer projects. Despite that we do not plan to release it with the next SP version unrestrictedly because we did not test all available setups so far. So we cannot brand it as out-of-the-box working from a legal perspective. Anyhow when you have a scenario with the replication to non-ABAP just conctact us, ususally we did with the common databases already some customer projects and can enable it without any efforts.
For the general strategy it is planned to release it unrestricted with SP9 mid of 2015. Technically it is alreay working.
When I talked about non-ABAP DB it is only the DB's that are supported by NW (Oracle, MS SQL, IBM, ASE, MaxDB, Informix). All other DB's are only supported if the SAP basis team would deliver a library that allows SLT to connect to this DB. Hadoop is not include - unfortunately we are dependent on this team and their strategy.
Best,
Tobias

Similar Messages

  • Can we insert data directly in standard table

    hi
    how can we insert data in standard table directly.
    pls reply urgently.

    Hi sapna yes u can insert data to the SAP tables, as shown below...
    use the table mara in the place of m
    REPORT  ZTEST_INSERT.
    TABLES: <m>.
    DATA: wa_m TYPE <m>.
    wa_m-ernam = 'ZTEST'.
    insert into <m> VALUES wa_m.
    if sy-subrc = 0.
      WRITE / 'Records inserted Successfully'.
    ENDIF.
    reward if usefull,
    Vishnu. R
    Edited by: vishnu ramanathan on Sep 18, 2008 2:17 PM

  • Can i load data directly into DSO without PSA?

    hi friends,
    can i load data into DSO directly without PSA(without infopackage), if possible ple let me know where can i do that in dtp?
    regards
    ss

    Suneel,
    Why don't you try it to see if error DTP is possible with a flat file ds or not?
    Or, extrapolate logically -
    - An error DTP is based on a regular DTP.
    - In any situation where you can have a DTP, why can you not have an error DTP? I would think there would be no reason for this.
    At this point of my reasoning I will give it a try to validate if my assumption (DTP possible==>Error DTP possible) is correct or not.
    regards,

  • How can I change dates / direct debit days on recurring orders?

    Hi All,
    I have the requirement to change 2 aspects of a recurring order/product.  
    The first is to change the point in time which a credit card is charged.  I have read posts/documentation that references the Direct Debit Days parameter as the way to change when the credit card transaction takes place.   These talk only about have the card charged after the invoice date.   My question is does that field accept and operate on a negative value.    I want to have the credit card charge occur a few days prior to the invoice date.  
    The second requirement has to do with date manipulation of the recurring time frame.   I know the cycle controls the creation of the next invoice, however, I need the cycle to be a specific number of days.  So rather than monthly, I need to create an invoice every 20 days.  Is there a way to do this within the system or will the date need to be manipulated through the API?  If so, is the next invoice date the correct and only date needing to change?  
    Thanks in advance,
    Bear

    Unfortunately, I received no replies to my post regarding how to accomplish both changing the day on which recurring starts and then also changing the period length for the recurring transaction.   Necessity being the mother of invention took me to working with the BC API directly to develop a solution.   After quite a bit of trial and error, we were able to create a service that can run on a given cycle (nightly or hourly) using API calls we are able to manipulate the dates so that the ADOBE cron jobs that create upcoming transactions react properly to the requirements needed.  
    An example is probably the best way to showcase what we wanted to do.   An initial order is made up several products some recurring some not.  The recurring elements create a new "next" invoice at the selected recurring cycle (monthly).  So if the initial order was on June 15, the next invoice is July15.  We needed  to back that next invoice date up by 5 days.  Additionally, we needed the then ensuing cycle to be 30 days always.   We accomplished this through a service and the BC API. 
    If you have need of this solution feel free to contact us.
    email [email protected]
    website www.advadvco.com

  • Can't replicate data inserted using DBMS_XMLSAVE.insertXML

    Enviroment:
    OS: SLES 10 SP2
    Database Version: 11.1.0.6
    I have configured an Oracle Streams environment compose by two database. The first is the source where a local capture process should captures dml changes from some tables. If I insert some data using a classic dml insert operation the changes are replicated without problems. The problem is when the tables are populated using the DBMS_XMLSAVE.insertXML procedure. With that implementation there isn't data replication. I think DBMS_XMLSAVE.insertXML must generate redolog so the capture process should capture the changes from them but it doesn't seems to be like that.
    I need some suggestion about this matter, thank you.

    Here you are
    CREATE TABLE TEST.HABI
    ID_DATA NUMBER,
    ID_HOCU INTEGER,
    ID_HABI INTEGER,
    DESCRIPTION VARCHAR2(1000 BYTE)
    TABLESPACE USERS
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 32M
    NEXT 80K
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    LOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;
    I'am not performe explicit commit here you are the procedure:
    FUNCTION import(p_id_data IN INTEGER,
    p_lote IN INTEGER,
    p_fecha_hotel DATE,
    p_error IN OUT NOCOPY CLOB,
    p_hab_habi IN OUT NOCOPY CLOB,
    p_hcl_clie IN OUT NOCOPY CLOB,
    p_hcl_habi IN OUT NOCOPY CLOB,
    p_hcl_hist IN OUT NOCOPY CLOB,
    p_tel_llpr IN OUT NOCOPY CLOB) Return integer
    AS
    ctx DBMS_XMLSAVE.ctxType;
    v_rows NUMBER;
    v_err_msg VARCHAR(4000);
    v_cant integer;
    BEGIN
    IF length(p_error) > (length('<?xml version = ''1.0''?><ENL_TRAN_ERROR/>') + 3) THEN
    ctx := DBMS_XMLSAVE.newContext('ENL_TRAN_ERROR');
    DBMS_XMLSAVE.setRowTag(ctx, 'ROW');
    --BEGIN
    v_rows := DBMS_XMLSAVE.insertXML(ctx, p_error);
    --EXCEPTION WHEN OTHERS THEN
    -- NULL;
    --END;
    DBMS_XMLSAVE.closeContext(ctx);
    END IF;
    IF length(p_hab_habi) > (length('<?xml version = ''1.0''?><ENL_TRAN_HAB_HABI/>') + 3) THEN
    ctx := DBMS_XMLSAVE.newContext('ENL_TRAN_HAB_HABI');
    DBMS_XMLSAVE.setRowTag(ctx, 'ROW');
    --BEGIN
    v_rows := DBMS_XMLSAVE.insertXML(ctx, p_hab_habi);
    --EXCEPTION WHEN OTHERS THEN
    -- NULL;
    --END;
    DBMS_XMLSAVE.closeContext(ctx);
    END IF;
    IF (INSTR(p_hcl_clie, '&')<>0) THEN
    p_hcl_clie := replace(p_hcl_clie, '&', '&amp;');
    END IF;
    IF length(p_hcl_clie) > (length('<?xml version = ''1.0''?><ENL_TRAN_HCL_CLIE/>') + 3) THEN
    ctx := DBMS_XMLSAVE.newContext('ENL_TRAN_HCL_CLIE');
    DBMS_XMLSAVE.setRowTag(ctx, 'ROW');
    --BEGIN
    v_rows := DBMS_XMLSAVE.insertXML(ctx, p_hcl_clie);
    --EXCEPTION WHEN OTHERS THEN
    -- NULL;
    --END;
    DBMS_XMLSAVE.closeContext(ctx);
    END IF;
    IF length(p_hcl_habi) > (length('<?xml version = ''1.0''?><ENL_TRAN_HCL_HABI/>') + 3) THEN
    ctx := DBMS_XMLSAVE.newContext('ENL_TRAN_HCL_HABI');
    DBMS_XMLSAVE.setRowTag(ctx, 'ROW');
    --BEGIN
    v_rows := DBMS_XMLSAVE.insertXML(ctx, p_hcl_habi);
    --EXCEPTION WHEN OTHERS THEN
    -- NULL;
    --END;
    DBMS_XMLSAVE.closeContext(ctx);
    END IF;
    IF length(p_hcl_hist) > (length('<?xml version = ''1.0''?><ENL_TRAN_HCL_HABI_HIST/>') + 3) THEN
    ctx := DBMS_XMLSAVE.newContext('ENL_TRAN_HCL_HABI_HIST');
    DBMS_XMLSAVE.setRowTag(ctx, 'ROW');
    --BEGIN
    v_rows := DBMS_XMLSAVE.insertXML(ctx, p_hcl_hist);
    --EXCEPTION WHEN OTHERS THEN
    -- NULL;
    --END;
    DBMS_XMLSAVE.closeContext(ctx);
    END IF;
    IF length(p_tel_llpr) > (length('<?xml version = ''1.0''?><ENL_TRAN_TEL_LLPR/>') + 3) THEN
    ctx := DBMS_XMLSAVE.newContext('ENL_TRAN_TEL_LLPR');
    DBMS_XMLSAVE.setRowTag(ctx, 'ROW');
    --BEGIN
    v_rows := DBMS_XMLSAVE.insertXML(ctx, p_tel_llpr);
    --EXCEPTION WHEN OTHERS THEN
    -- NULL;
    --END;
    DBMS_XMLSAVE.closeContext(ctx);
    END IF;
    END import;
    I hope you can help me.

  • Can we replicate table data from R/3 to BI

    Hi All
        I have a tablke called JEST which captures status(OBJNR) from VBAP table. We have same table available in BW also. My question is can we replicate data from R/3 to BW for this table. Since this table in BW is not being loaded.
    My requirement is to display the status OBJNR in BW
    Can anyone advice.

    Hello Vani,
    Replication of data in some tables from ECC to BW is possiable. Data in tables like T00* (Currency conversion, unit etc ) is replicated into BW from ECC. I think we could also replicate data in table JEST. Please consult your BASIS team, they could do it for you.
    If your requirement is to display the status OBJNR in BW, one good way is to create InfoObject Object Number, with attributes Object Status, Indicator & Change number. Data can then be loaded in BW using a Generic master datasource based on DataBase table JEST. Or enhance a Datasource to include OBJNR.
    Please let me know if you need any more information.
    Regards,
    Pankaj

  • How can i view data files and print them?

    I'm collecting very large data files with the DAQ. Afterwards I'd like to be able to view them (zooming in and out and scrolling) then print when I get a view I like. How can I do this? Is there code out there already? What are some ways of easily visualizing large data files without using tons of PC memory and waiting for every data point to load?

    There are some basic techniques that are useful in this sort of application. First, to get an overview of an entire dataset, a good place to start is to read in the file 20 or 30 samples at a time. As you read each block, perform an average and only plot the average. This on-the-fly decimation allows you to see very large blocks of data without bogging down you system.
    Second, for the zoom function use the cursors. When the user selects an area to zoom in on, read just the values between the indices the user selects. If the selection is small enough you can display the data directly, otherwise you can decimate it as before-though probibly using a smaller block size.
    For reading the position of the cursors, use property nodes.
    The basic thing to rem
    ember is that most PC screens are at most a couple thousand pixels wide. This video resolution places an absolute limit on the number of datapoints that you will be able to see without aliasing. In general it's better to decimate the data yourself than to let the video card do it.
    Let me know if you have any specific questions
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How can i modify SLT mapping data types ?

    I am modeling an Attribute view in HANA sp05 and i need to create a join betwwen two standard tables CRMD_ORDERADM_H and SRRELROLES using files GUID and OBJKEY.
    these two fields have two different types of data ( GUID = RAW and OBJKEY = CHAR).
    When SLT replicate these files in HANA the data types are (RAW = VARBINARY and CHAR = NVARCHAR). I can't create these join in HANA.
    So i have to change the transformation rule in in SLT for something like: In table SRRELROLES for field OBJKEY the tranformation rule will be (CHAR to VARBINARY).
    How can i do this in SLT?
    I have to use the transaction IUUC_REPL_CONTENT?
    OR
    Can I insert records in tables IUUC_REPL_TABSTG and IUUC_REPL_TAB_DV ?
    Thanks and best regards for all!

    HI,
    use IUUC_REPL_CONTENT. It will insert the relevant values to table IUUC_REPL_TABSTG and IUUC_REPL_TAB_DV .
    Best,
    Tobias

  • Can we enter data in any standard table directly through custom form??

    Dear All,
    Can we enter data in any standard table directly through custom form??
    I have create custom form in R.12. I want to insert data in quality standard table directly through custom form. Need experts guideline.
    Awaiting regards,

    Hi,
    Can we enter data in any standard table directly through custom form??
    I have create custom form in R.12. I want to insert data in quality standard table directly through custom form. Need experts guideline.
    Awaiting regards,
    I would not recommend touching the standard tables at all unless you are being guided by the SR. For a record to be in the standard table it should go through series of validations based on the what operation you are performing and some times datas are dependent upon the other tables, and also some times the same records are hit to so many other tables simultaneously.
    Therefore I would not recommend this brother.
    Thanks &
    Best Regards,

  • Can I write data into DSO directly ( by editing it)

    Hi Gurus,
    Here I have an issue where I was asked to create an object in BI7 where I can enter data directly into that object regularly i.e day to day basis.  Is it possible if yes please give me the navigations and links if available to fix my issue.
    Best Regards
    Mohan Kumar

    Hi Mohan,
    Writing data directly into DSO means, we had a scenario where in the user will be entering the data at the transaction sceen and the same moment it need to get into the DSO. For that we have used the transactional ODS which can be used to writing purpose. But one thing with that isit can have only the active data table.
    Regards
    Vijay

  • Can I use LabVIEW to load data directly into system memory? The serial card I'm using isn't supported by NI nor does VISA recognize it. I'm using a Win32 function to read the data from the card and now I want it to go directly to system memory.

    Can I use LabVIEW to load data directly into system memory from a VI? The serial card I'm using isn't supported by NI nor does VISA recognize it. I'm using a Call Library function to read the data from the card and now I want it to go directly to system memory.
    The data is being received at 1Mbps.
    Thanks

    Two questions:
    One, if it's a serial card, then presumably it gives you more serial ports, like COM3, COM4, etc. If so, VISA would see the COM ports, and not the card directly. The drivers for the card should make it so that you see the extra serial ports from the OS. If you don't see the extra COM ports from VISA, then it sounds like the drivers for the card are not installed properly. Do the extra COM ports show up in Device Manager?
    Two, you said that you're using a Call Library function to get the data and you want to put it into system memory. Errr.... you just read the data and you have it in memory by definition. Are you saying you need a way to parse the data so it shows up on a graph or something?

  • Can we use JDBC adapter at ECC side to extract the data directly

    Hi ,
    Is it possible in any way we can use JDBC adapter at SAP to extract data from sap tables.because as far as i know jdbc adapter used only when we having some database system at sender side.
    Regards

    Hi,
    SAP R3 is installed over a DB (Oracle, DB2 etc) this DB as a persistent storage for storing data and other information. R3 rovides a layer over the underlying database so that no one can directly access or modify the contents (due to security and data integrity issues). Hence it exposes its own RFC's for data access and modifications...
    But like I said before SAP recommends to make use of RFC's or BAPI's to access data stored in R3 tables; but we can also access them directly.You need to take the help of a DB admin for this
    Regards
    Suraj

  • I can view the data in front end form, but data is not avilable in backend

    Hi,
    i created a form with three blocks.In first block i entered the data.Based on the data it will fetch recodrs from A & B tables and insert into C table.This logic i have written in backend and put commit in front end and back end. In the 2nd block iam using C table. i can view the data in front end(C table) . But i unable to
    see the data in C table when i go and see in back end.
    Form is used for only querying purpose. for the C block insert allowed and update allowed is false.
    Plz do the need ful

    Please try and post sufficient information for someone to replicate your problem. We are not looking over your shoulder and do not have access to your database.
    We need a minimum table structure, example data, a walk-through of how the form works - you mention 3 blocks and only half-way describe 1. Is another for the C block? Or is that a different form?
    e.g. Enter search data in Block A. Execute Query. Blocks A and B populated with data from database tables based on FK relationship B to A. User presses Save button, procedure in form updates table C based on data in form and issues commit. Execute Query in Block C retrieves just inserted data in table C.
    Is that remotely what's happening? Or something completely different?

  • Is there any RIM rep. in here? Did they notice what's happening? I can't move data from Z10 to Q10

    Is there any of RIM representative here???
    I know this is a common issue, I see many members from forums, here, crackberry, and many others experiencing problems with BlackBerry Link.
    1. I can't switch device from Z10 to Q10, 1st it says my Q10 has old software, I have updated to the latest, now it says please make sure my device is connected and retry, I press retry and always failed to detect (for restore data from Z10 backup to Q10) other than that, it can detect my Q10.
    2. To restore data from backup you have to sign in to BlackBerry ID first and it makes your BBM contact transferred without the others, contact, SMS, calendar, notes, alarms, settings, etc. I'm thinking of moving back to Z10 and afterwards all my open chats in Z10 just disappear, I still have importants chat containing appointments, addresses, price negotiation, hotel reservations, argh this is frustrating because every time I wanted to restore to new device it will ask to sign in again, and how is it going to decide which is my valid PIN on the other side of my BBM's contact if I keep switching device like this back and forth..
    Why can't it be like the old days of OS 4, 5, 6, 7 and 7.1?
    Where we can make full or partial backups and restore it to any device and any OS?
    Didn't you make a proper test and research before releasing OS10 and BlackBerry Link on the market? (This question goes to RIM's rep. where ever you are)
    If you wanna make all of your customers run away because your and software have issues, you've made it
    This is my last bad experience with BlackBerry prior to OS10
    Laughable poor camera on 9900 I can't take photos of receipts and documents, and I have to charge 3 times a day (this is supposed to be a "mobile" phones? I always ended up with dead battery when I'm mobile, and I have to stuck on charger for hours waiting to charge)
    And now this .... Come on RIM do something please we really like your device...
    Devices I like the most are 9700 and 9780, except for desktop manager that is not backing up auto text. Great camera, great battery life.
    Btw I have use the latest release of Link but still can't restore data.
    Solved!
    Go to Solution.

    Hello,
    virtue wrote:
    Is there any of RIM representative here???
    Note the banner at the top of most all pages on this site:
    This site is not a channel for any formal communication with, escalations to, nor formal support from BlackBerry for any purpose whatsoever.
    virtue wrote:
    Why can't it be like the old days of OS 4, 5, 6, 7 and 7.1?
    Because BB10 was not an evolution from BBOS...it is completely new, and sadly they did not take all of the prior design considerations and use them when they created BB10 and it's associated toolsets.
    virtue wrote:
    Where we can make full or partial backups and restore it to any device and any OS?
    That functionality, while requested by many, has not been implemented. There is no way for anyone here to know if/when it will ever be so.
    It seems like the rest of your post was mostly commentary or directed at audiences not in this public user-to-user community, so I'll just leave those alone.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can I extract data from a sound file in carbon

    hello,
    I am a student and I start recently learning carbon. I have to do a application which can read and extract data from a sound file and use that data to do some kind of visual representation of the file. I would like to know if someone can give some directions, tutorial,some code sample etc.
    thank you for your help
    chenita7

    hello orangekay
    My idea is to create an application that can read a sound file( AIFF, MP3 or other) in order to extract some kind of data ( numbers or any values) and use that data to represent the sound file visually.
    I dont know which kind of data can be extract from a sound file, and in which way i can manipulate that data to became a visual representation of the sound file. this is what I want to do as my second assignment for a subject at school, introduction to programming. has to be done based in carbon.
    regards
    chenita7

Maybe you are looking for