Trying to import a weird table format into a tree like structure.

Hi All,
I am using NWDS 7.0.18
I am trying to use the Tree in a table element to organize some data I'm receiving from an rfc. The table im receiving looks a little like this:
leaf1  |  leaf2 |  root  |  child1 |  child2  |
00     |  ab    |   r      |  c1a    |  c1a_1  |
00     |  cd    |   r      |  c1a    |  c1a_2  |
01     |  ab    |   r      | c1b     |  c1b_1  |
01     |  cd    |   r      | c1b     |  c1b_2  |
This table can grow and shrink in terms of children but the lowest child with data will always have leaves.
Now heres what I'm finding difficult. When I loop thru this table in Web Dynpro, when i get the first element with getElementAt(i), it returns the entire first row.
The wdInit method calls a custom method like this
addLevelEntries(wdContext.nodeLEVEL(), "ROOT");
And then later in onActionLoadChildren
public void onActionLoadChildLevelEntries(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, com.sjm.wdp.wdp.IPrivateTreeAppCompView.ILEVELElement element )
    //@@begin onActionLoadChildLevelEntries(ServerEvent)
    addLevelEntries(element.nodeCHILD_LEVEL(), element.getID());
    element.setChildrenLoaded(true);
    //@@end
but the problem is the child element Id's are in the same row as root element id!!!!
How can I, if possible, loop thru this table and add the relevant nodes in the correct places and then eventually add its leaves?
Any help greatly appreciated.
Thanks
P

//why not making use of the Search feature of this forum //
DVDs are in a socalled delivery format (mpeg2), which isn't meant and made for any processing as editing...
for using the iLife apps, you have to convert'em first, in recommended order, choose one of the following tools/workarounds:
DVDxDV (free trial, 25$, Pro: 90$)
Apple mpeg2 plugin (19$) + Streamclip (free)
VisualHub (23.32$)
Drop2DV (free, requires installation of ffmpeg parts, google for it...)
Cinematize >60$
Mpeg2Works >25$ + Apple plug-in
Toast 6/7/8 allows converting to dv/insert dvd, hit apple-k
connect a miniDV Camcorder with analogue input to a DVD-player and transfer disk to tape/use as converter
http://danslagle.com/mac/iMovie/tips_tricks/6010.shtml
http://danslagle.com/mac/iMovie/tips_tricks/6018.shtml
http://karsten.schluter.googlepages.com/convertdvdstodvs
none of these methods or tools override copy protection/DRM mechanisms.. advice on 'ripping' is a violation of the ToU of this board ..
+be nice to copy rights ...+

Similar Messages

  • I am trying to import BPM Project.zip file into Oracle enterpriserepository

    I am trying to import BPM Project.zip file into Oracle enterpriserepository from admin tab.
    I am getting the following exception. please help if any one know the solution.
    Performing import...
    Import Failed: Error [100]: An unknown server-side error occurred. Please record stack trace (if available) and contact technical support.
    com.flashline.exception.LoggableException: trouble parsing file in import bundle: SampleWScall/activityGuide.agdl
         at com.flashline.cmee.openapi.service.subsystem.impexp.XMLTranslator.decode(XMLTranslator.java:157)
         at com.flashline.cmee.openapi.service.subsystem.impexp.ImportJob.doJob(ImportJob.java:74)
         at com.flashline.cmee.openapi.service.subsystem.impexp.AbstractJob.perform(AbstractJob.java:75)
         at com.flashline.cmee.openapi.service.subsystem.impexp.JobThread.run(JobThread.java:41)
    Audit results stored in:
    C:\Users\AVINAS~1.YEL\AppData\Local\Temp\import-4705112223687937017.log
    Audit for [Import job.] created on [2012-09-24 11:53:59 IST].
    2012-09-24 11:53:59 IST - Adding Import job with ID=[50403] to job queue.
    Thanks in Advance.

    Hi
    Why are you trying to import BPM zip file are you trying to configure the out of the box workflows?
    They are something that need to be deployed from the process admin on BPM.
    There would be the .exp file you would need as its BPM 10g that you would need to use.

  • I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem-.thanks

    I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem….thanks

    If you are having the same problem, i.e. a disk permission problem, open your favorite search engine and search on, "change disk permissions", and I think you'll find plenty of information on how to fix the problem. This is a Lightroom forum. Your problem is with your operating system. There is no sense in rewriting instructions that are already available if you do a simple search.

  • My original computer that has my itunes account on it no longer works.  I am trying to import my phones itunes settings into my new computer and it is not letting me and I don't want to loose all my photos and music, what do I do?

    My original computer that has my itunes account on it no longer works.  I am trying to import my phones itunes settings into my new computer and it is not letting me and I don't want to loose all my photos and music, what do I do?

    It does not magically appear in a new place.  It will only be where you put it.
    Copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • Writing a stored procedure to import SQL Server table data into a Oracle table

    Hello,
    As a new DBA I have been tasked with writing a stored procedure to import SQL Server table data into an Oracle table. I have been given many suggestions on how to do it from SQL Server but I I just need to write a stored procedure to run it from the Oracle side. Suggestions/guidance on where to start would be greatly appreciated! Thank you!
    I started to write it based on what I have but I know this is not correct :/
    # Here is the select statement for the data source in SQL Server...
    SELECT COMPANY
    ,CUSTOMER
    ,TRANS_TYPE
    ,INVOICE
    ,TRANS_DATE
    ,STATUS
    ,TRAN_AMT
    ,CREDIT_AMT
    ,APPLD_AMT
    ,ADJ_AMT
    ,TRANS_USER1
    ,PROCESS_LEVEL
    ,DESCRIPTION
    ,DUE_DATE
    ,OUR_DATE
    ,OUR_TIME
    ,PROCESS_FLAG
    ,ERROR_DESCRIPTION
      FROM data_source_table_name
    #It loads data into the table in Oracle....   
    Insert into oracle_destination_table_name (
    COMPANY,
    CUSTOMER,
    TRANS_TYPE,
    INVOICE,
    TRANS_DATE,
    STATUS,
    TRANS_AMT,
    CREDIT_AMT,
    APPLD_AMT,
    ADJ_AMT,
    TRANS_USER1,
    PROCESS_LEVEL,
    DESCRIPTION,
    DUE_DATE,
    OUR_DATE,
    OUR_TIME,
    PROCESS_FLAG,
    ERROR_DESCRIPTION)
    END;

    CREATE TABLE statements would have been better as MS-SQL and Oracle don't have the same data types.
    OUR_DATE, OUR_TIME will (most likely) be ONE column in Oracle.
    DATABASE LINK
    Personally, I'd just load the data over a database link:
    insert into oracle_destination_table_name ( <column list> )
    select ... <transform data here>
    from data_source_table@mssql_db_link
    As far as creating the database link from Oracle to MS-SQL ... that is for somebody else to answer.
    (most likely you'll need to use an ODBC driver)
    EXTERNAL TABLE
    If the data from MS-SQL is in a CSV file, just use and external table.
    same concept:
    insert into oracle_destination_table_name ( <column list> )
    select ... <transform data here>
    from data_source_external_table
    MK

  • I am trying to import an mp3 audio file into garage band for editing.  drag and drop doesn't work. What now?

    I am trying to import an mp3 audio file into garage band for editing.  Drag and drop does not work. any ideas?

    Try reposting in the Garageband forums. You can find it at:
    https://discussions.apple.com/community/ilife/garageband

  • How do you import final cut pro projects into imovie? (like you create a pr

    How do you import final cut pro projects into imovie?
    (like you create a project in final cut but i want to save it, and import it into imovie..

    Hi -
    Mr. Ross is right, there is no direct way to export your project with all it's elements into iMovie.
    If, on the other hand, you have a completed sequence in FCP that you want to export as a finished element, then import into iMovie for you to re-edit or apply titles, music, etc. you would:
    In FCP:
    Click on the Sequence Icon you want to export in your browser.
    Go to the menu File > Export > Quicktime Movie. Give your movie a name a navigate to where you want it stored. Make sure you choose Settings: Current Settings and have the Make Movie Self Contained checked. Click Save.
    Close FCP and open iMovie.
    In iMovie:
    Go to the menu File > Import > Movies and navigate to the movie you just exported from FCP. Choose if you want your movie imported in it's original size, etc.
    Click Import. Your movie will be imported into iMovie.
    Note that using this method only gives you only the elements that made up your FCP sequence, so this may not give you the flexibility you need.
    Hope this helps.
    MtD

  • Importing XML destroys tables formatting

    Hi!
    I have an xml file containing my document translated into another language. When I import this into my Indesign CS4 document, the info in the tables, although it is imported correctly, removes my alternating row fills.
    I have checked the origin xml file, it contains no info about alternating row fills, neither does the new xml document. So Indesign decides to scrap it by itself.
    Question is, is there anything I can do to stop it from doing this, or otherwise simply restore the tables design so I don't have to manually go in and fix all tables from scratch?
    (The tables part were tagged using the autotag feature)
    Best regards
    Kristian

    Did you use a table style?
    I don't know much about XML, but I suspect if you want table formatting to be preserved it would need to be defined as a style.
    Peter

  • Trying to import files with transparent backgrounds into Premier Elements 10

    I am struggling to import files from Photoshop CS3 into Premier Elements 10 and preserve their transparent background. I have tried .png (8 and 24 bit), .gif and .psd files. I have tried rasterizing the type layer before "Saving for web and devices" but can't get anything to work. The imported files end up as either text on a white background (.gif) or the file imports as a black background with no type visible (.png and .psd). I have read a few forums but can't find any suggestions beyond what I have already tried. I also get the same problem if I "Save for web and devices" out of Illustrator.
    Any suggestions much appreciated.
    Mick

    kaare
    You have brought up one very interesting maintaining transparency question which I feel goes more to the trigger on the
    Premiere Elements Videomerge pop up than to the Photoshop CS2 Save As with or without a check mark for Maximum Compatibility
    And, I find that Photoshop CS5.1 as well as CS2 involvement in this matter is the same.
    I created three 720 x 480 pixels documents, each with a blue colored circle on a transparent background in
    Photoshop CS2 and saved each
    psd with check mark next to Maximize Compatibility
    psd with no check mark next to Maximize Compatibility
    png
    Each of them was imported into a NTSC DV Standard Premiere Elements 11 Windows 7 64 bit project.
    Each triggered the Premiere Elements 11 Videomerge pop up.
    If I checked No for the program request to apply Videomerge, then all 3 results were the same, that is,
    the area around the circle was transparent and the circle was not...just the way it was created in Photoshop CS2.
    So, why was the Videomerge message telling me "Clip being dropped contains solid background color" when
    it had transparency represented by black and did not have a solid background color?
    Even more interesting was what happened if I selected Yes to the program's request to
    apply Videomerge to create transparency for what it claimed to be seeing as "solid background color".
    The result was the same for all three cases, that is, the inside content of the circle became transparent
    and the "black background" became a "solid color".
    Videomerge is not one of my preferred Premiere Elements options.
    To avoid the Videomerge pop up, I would suggest placing a check mark next to the "Do not show again.",
    followed by No in the Videomerge pop up. When you do, you should not be confused by the activities of the
    Videomerge pop up activities and you should have no problems with the maintenance of the Photoshop
    created transparency in the Premiere Elements project.
    ATR

  • Trying to import 200+ email addresses (only) into AB for distribution

    I'm having trouble importing a list of email addresses into AB so that I can assign them to several groups for a newsletter distribution.
    The addresses were sent to me in an email and for the first month i simply copied them all into the BCC field and shot off the newsletter. However, I'd like to introduce some organization into this by putting them all into AB (some people need to be added, others have emails changed).
    I've tried several things:
    1. Tried simply dragging them from the BCC field to AB - failed
    2. Copied them all into a text file, made sure they were all separated by commas, saved as a .csv file, tried to import but that failed.
    3. Tried importing them into Numbers and exporting as CSV but that failed as well.
    4. Tried using http://homepage.mac.com/phrogz/CSV2vCard_v2.html, as has been suggested many times in this forum. Nothing ever appeared on the third tab.
    5. Tried using the WhoPaste but that failed to import a batch of emails.
    Of course selecting each address individually brings up the context menu and I certainly can import that way. But what the heck, this is a Mac and things ought to be easier, especially with so many addresses. Also, I am not an Applescripter but if anyone has already created a script that would help, I'd use that.

    Answering my own question: got it resolved. I found a neat little utility called Abee (or Address Book Importer - http://www.sillybit.com/abee/) that did the trick. In working with this I learned that importing just a bunch of well-formed addresses with a comma separating them isn't enough. I decided to find and replace all comma-space combos and replace them with a paragraph character, making each entry on its own line. Naming it a .txt worked fine.
    I hope my experience helps someone else in the future.

  • TS1347 My Outlook is set up and I'm trying to import contacts from my iphone into Outlook with no sucess.  What am I doing wrong?

    I am trying to import my contacts into Outlook from my iphone.  I can not get it to work.  My Outlook is all set up and running...

    IIf you previously had items backing up to the iCloud, changing to the new phone will take a while depending on how much data and apps your restoring to the new phone. If your like me with 1,000's of pics and videos, it's gonna take a while. Make sure your phone I plugged in, your on wifi and let it do its things. If you see all your apps updating, then it's doing something. If this is not your issue, then it could be the phone froze up. I have the 6 plus and recently switched from the 5, and it took a long time to restore from the cloud. Restoring from iTunes is quicker I guess, but I didn't have that option at the time and was dying to use the new phone I eaitrd 2 weeks for. Anyways, good luck and I hope I answered something for you.

  • Trying to import data , to later integrate into SSAS, but get stuck at modeling level, dimtables and facttable

    I have a task at school that i cant get my head around. The task is to create some dimetables and create a facttable from those. The data i have chosen is from Export and Import cost for each year for a specific Product.
    So The dimtables are : dim.Product, dim.Export, dim.Import and dim.Date ExportCost(column), ImportCost(column)
    For example, the importtable looks like this:
    00 bike 1998 10030
    00 bike 1999 43400
    00 bike 2000 88470
    00 bike 2001 48631
    01 meat 1998 176638
    01 meat 1999 213696
    01 meat 2000 225571
    01 meat 2001 305054
    and i have exporttable as well..after several hours, i have come to the conclusion that import and export tables are two different Fact.Tables, but, then the question, how do i normalize all this mess so i can later get some cubes and mesaures out of it??
    Please help,

    Hi Vargo1,
    In OLTP System Import and Export are from different tables and those tables will be normalized to avoid redundency. But, here in OLAP System data should be de-Normalized. the given sample data is correct but not a fact table.
    Typical fact table should contain Keys(surrogate Keys that link the with the dimension table) and Measures(Quantifiable Values).
    so the fact will contain only numeric columns. and Dimension table will have Key and its corresponding Name, description and Attributes that has Analytics value.
    Go through this site to get more information:
    http://www.codeproject.com/Articles/652108/Create-First-Data-WareHouse
    Thanks,
    Anand
    if you feel that this answer solved your problem MArk this as answer.
    Please vote as helpful or mark as answer, if it helps Regards, Anand

  • Trying to import VMDK and VMX files into Oracle VM

    I was given a copy of a VM built in VMWare with the files in VMDK and VMX formats. I've tried various methods of importing these into OVM x86 with no luck.
    According to this 2009 blog post from Oracle it should be possible (at least with that older release):
    https://blogs.oracle.com/virtualization/entry/converting_linux_and_windows_p
    "Oracle VM Manager allows you to import virtual machines in the VMDK format. When you import VMware virtual machines, Oracle VM Manager converts them to Oracle VM virtual machines automatically."
    I'm runninng OVM server/manager 3.1.1. Is this no longer possible with the new version?

    That is correct, that blog post pre-dates OVM 3.1.1 which is a completely different management interface than OVM 2.x used. To my knowledge VMDKs are not supported automatically, and OVM is now expecting OVF/As.

  • Importing ansi date time format into diadem

    Hi,
    I have an ANSI data log txt file with the time channel format  30/03/2006 15:51:08.846 and i am trying import into DIADEM  using the date/time format dd/mm/yyyy hh:nn:ss.fff , but when the file is imported, the time channel cells appear as NO VALUE. Can anybody help please ?
    AdeK

    Hi Adek,
    Here is a DataPlugin which loads your data file into DIAdem 10.2.  There are a number of advantages to using a DataPlugin over the ASCII Import Wizard, so long as your data files follow a similar data file structure.  To register the DataPlugin, just detach the ZIP file, unzip the URI file within, then double-click on the URI file in Windows Explorer.  After that, you will be able to load your TXT data files by dragging&dropping them directly from the NAVIGATOR tree view or Search Results into the Data Portal on the right hand side of DIAdem.  DataPlugins also support selective loading, register loading, reduced loading, and DataFinder indexing, so all of these immediately become available to you with your TXT files.  Note also that header lines 2-4 are now declared as both File and Group properties.
    Ask if you have questions using the DataPlugin,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Attachments:
    Adek_TXT.zip ‏2 KB

  • Trying to import boujou .ma tracking data into after effects, seems like it doesn't support the file.

    I have tried everything to try and get this to work; i have tried multiple settings in boujou, i have imported the .ma file into maya and exported with baked keyframes and only the camera selected etc. I don't know what i'm doing wrong. I am wondering whether Adobe has cut support for .ma files altogether, which is a real pain in my *** as the built in 3d track just isn't good enough. I have tried dragging the file into after effects, i have tried importing it neither of which do anything. The .ma files don't even show up, i have to select 'all files' under the file type when i choose import to even see the files, and when i click them it doesn't recognize it as tracking data, it'll try and import it as a .PNG file or something. I can't seem to find any plugins that would enable me to import .ma files. I just need that tracking data as a Camera in my scene and i don't care how it is done. Additionally, i have tried exporting as a .txt file and copying and pasting that data into a camera, which doesn't work (unless im doing it completely wrong).
    Thankyou for reading

    I also experience this problem. My mp4 clips has been taken with a Samsung NV24HD camera and are HD (720p). I haven't tried to convert these clips but I think it should not be necessary since I can play them in quick time. However I have perian installed, perhaps that's why they play in quick time? The next question is then: Is there a similar plugin to iMovie?

Maybe you are looking for

  • Posted this query several times but no reply. Please help me out

    Hi all, How to know whether a servlet had completely sent its response to the request. The problem what i am facing is, I send response to a client's request as a file. The byte by byte transfer happens, now if the client interrupts or cancels the op

  • OS X Lion and Logic Pro 8.0.2, not compatible??

    I just installed Lion and now when i try to open Logic Pro 8, it tells me it's not compatible with the OS... any help????

  • SQL Server Max Memory Settings

    Hi, I'd like to check if SQL Server will consume memory more than the configured MAX Memory settings? And if so when does SQL consume that and how much would it consume. Regards, Jay

  • Airport Extreme Gigabit Base Station problem

    Today when I tried to get on the internet, my MacBook Pro would not recognize my AEBS. It cannot find it in the AirPort Utility or when I type the name of my network and password into Airport from the Menu Bar. My PowerBook is running fine on the sam

  • Is it possible to spread the commitment on a value limited blanket order?

    Hi - I want to create a value limited blanket order, e.g. over the next 12 months I expect to spend about £12,000 with a service provider. I will be billed at monthly intervals and the amount will vary from month to month but it will never be more th