DropBox Sample

Hello Dear WDA Developers,
I have to make a layout screen like below picture.
There is a picture element on list. When picture element is choosed, a dropbox component have to open. This requirement looks like a table popin, But i have to implement embeded component by myself.
How can i implement this layout? Is it possible to make a dropdownlist like picture?
Thanks in advance,
Volkan

Hi Volkan,
I suggest you to go ahead with TABLE popin
You can achieve your requirement as below
Create 2 nodes i.e. create a node "MAIN_NODE" and child node "SUB_NODE" inside "Main_Node"
Create a supply function "set_details" for child node to populate the details based on selected image data
In layout,
Create a table which has image and other data
For table popin, create a table which binds to the node SUB_NODE
Now, make first column link to action and set the image source to the IMAGE
On click of image, you get the current context element of selected line and pass the same to supply function to fill data
Please refer the below link ( for... table popin example )
Table Popin | Webdynpro ABAP
Hope this helps you.
Regards,
Rama

Similar Messages

  • Upgraded to CS5; TOC Links don't work in the created PDF from InDesign

    We recently upgraded to CS5. When we convert our InDesign User Guide to PDF, the main TOC links don't work. The TOC does function from each chapter page but not from the main TOC. We have done our normal steps in Acrobat to link them. Same issue with various user guides that we have. Any suggestions would be great. Thanks

    Thanks for your reply. The problem is the whole page is one image and there should be several clickable areas which point to different links.
    To solve this we have put a textbox over the clickable area, disabled the background and stroke and then right clicked on the textbox and used the hyperlink option to turn the whole box in to a hyperlink.
    We tried several free PDF convertors which couldn’t handle this combination. Then we trailed it with the full desktop version of Adobe Acrobat Pro and it worked a treat. Unfortunately the client didn’t have that software so we signed them up to the online PDF convertor from Adobe and that isn’t handling it.
    Here's the sample document: Dropbox - sample-link.docx we have been doing the tests with.

  • App.alert show over and over after each keystroke

    I am preparing a pdf form for my department in which doctors will need to quantify the amount of tracer found in 17 heart arteries. The amount of tracer in the patient will be compared when the patient is under stress and when he is at rest.
    Then it will calculate the sum of the 17 scores at stress (SSS) and the sum of the score at rest (SRS), and then will calculate the difference between the 2 scores (SDS).
    The rationale is that the score of each 17 segments at rest cannot (should not) be higher than the score at stress, however under a few circumstances this can happen. But to be sure that the user knows it's abnormal, it will tell that it should not be like that, and need to agree this is the case.
    The problem is that if this happen, each keystroke thereafter will re-trigger the question. How can I make sure that once it asks the question for that particular segment, it will not ask it again?
    The other issue is that in these rare cases, we still want to collect what should be the answer if this didn't happen. So I created another set of score at rest (these will be hidden on the final form, but left it there so I can see the results during the design of the form) that should copy the results of the raw data. But in the case of when the rest score is higher than the stress score, it will take the stress value. The problem is that it calculates the SRS one stroke late. How do I fix this?
    Here is a link to my form.
    Dropbox - Sample Perfusion form.pdf

    // The Fieldname shoud have the following hierarchy-Name-Format
    // It's important in my case that the naming of the fields for stress and rest perfussion have the follwing format: "Part1.Part2.99 " (Parent-Child-Format)
    // sample:
    // "Feld.sss.10", "Feld.sss.11"........"Feld.sss.27"
    // "Feld.srs.10", "Feld.srs.11"........"Feld.srs.27"
    // for this code its important that the last to char have two digits: 01 intead of 1, 02 instead of 2 etc..
    // Better you begin with 10 and 11,12,13..27
    // The other three result fields a named xsss, xsrs, xsds.
    // The two raw field, i didn't make. You must describe in more detail.
    // This is the main core. The rest is very little and easy.
    xFeldname = "Feld."        // Fieldname Part1 for Stress/Rest Perfusion (Parent or Groupname)
    xFeldExtSss = "sss."        // Fieldname Part2 for Stress Perfusion (Child 1)
    xFeldExtSrs = "srs."         // Fieldname Part2 for Rest Perfusion (Child 2)
    xFieldSSS = "xsss"          // Fieldname for calculated Field SSS (as I understand it: sum of the Stress Perfusion, less than 9)
    xFieldSRS = "xsrs"          // Fieldname for calculated Field SRS (as I understand it: sum of the Rest Perfusion, less than 9)
    xFieldSDS = "xsds"         // Fieldname for Field SDS (as I understand it: It's the difference from the Field SSS and SRS)
    sxsField = this.getField(xFeldname)
    sxsField.setAction("Validate", "xcompare(event.targetName, event.value)")
    if (typeof okFields == "undefined") {
        okFields = new Array()
    function xcompare(xField, xValue) {
        var xSuff = xField.substring(xField.length - 2)
        var srsName = xFeldname + xFeldExtSrs + xSuff
        var sssName = xFeldname + xFeldExtSss + xSuff
        if (xField == srsName) {
            var xSSS = this.getField(sssName).value
            var xSRS = xValue
            var srsorsss = xFeldExtSrs
        } else {
            var xSSS = xValue
            var xSRS = this.getField(srsName).value
            var srsorsss = xFeldExtSss       
        if (xSRS > xSSS) {
            if (okFields.indexOf(xSuff) == -1) {
                if (app.alert("..your alert: The SRS is bigger than SSS. Is this OK?......", 2, 2) == 4) {
                    okFields.push(xSuff)
                    this.getField(srsName).textColor = color.red
                    this.getField(sssName).textColor = color.red
                } else {
                    event.rc = false
                    return
        } else {
            var xFind = okFields.indexOf(xSuff)
            if (xFind != -1) {
                delete okFields[xFind]
                this.getField(srsName).textColor = color.black
                this.getField(sssName).textColor = color.black
        if (event.rc = true) xcalculate(xField, xValue, xSuff, srsorsss)
    function xcalculate(xField, xValue, xSuff, srsorsss) {
        var xTemp = xField.substring(0, xField.length - 2)
        var xSum = 0
        if (xValue >= 1 && xValue < 9) {
            var sxsField = this.getField(xTemp)
            var xTemp = sxsField.getArray()       
            xSum = parseInt(event.value)
            for (i = 0; i < xTemp.length; i++) {
                if (xValue < 1 || xValue > 8) continue
                if (xTemp[i].name == xField) continue
                if (xTemp[i].value == "") continue
                if (xTemp[i].value > 8) continue
                xSum += parseInt(xTemp[i].value)       
            if (srsorsss == xFeldExtSss) {
                this.getField(xFieldSSS).value = xSum
            } else {
                this.getField(xFieldSRS).value = xSum
            this.getField(xFieldSDS).value = this.getField(xFieldSSS).value - this.getField(xFieldSRS).value

  • Play Slideshow and Subscribe links don't work in IE

    Hi, I published a site with the newest version of iWeb and the Play Slideshow and Subscribe links don't work for my friends who use IE. Also, only some of the pictures will open when clicked. Many of them do nothing when clicked.
    Here's an example:
    http://web.mac.com/jconstant/Scotland/Golfing.html
    The site works with Safari and Firefox (both Mac and PC) but people with several different versions of IE experience the same problem.
    Any ideas on how this can be fixed?

    Thanks for your reply. The problem is the whole page is one image and there should be several clickable areas which point to different links.
    To solve this we have put a textbox over the clickable area, disabled the background and stroke and then right clicked on the textbox and used the hyperlink option to turn the whole box in to a hyperlink.
    We tried several free PDF convertors which couldn’t handle this combination. Then we trailed it with the full desktop version of Adobe Acrobat Pro and it worked a treat. Unfortunately the client didn’t have that software so we signed them up to the online PDF convertor from Adobe and that isn’t handling it.
    Here's the sample document: Dropbox - sample-link.docx we have been doing the tests with.

  • ITunes is adding my sample library to its library, how do I undo this?

    Hi, my 140Gb music library is stored on my iMac.
    I've finally got it all uploaded to iTunes Match and am now activating iTunes Match on my Macbook and Windows laptop, as I want them to be simple 'slaves' to my iMac's music library, so they can stream its music when I travel.
    When I opened iTunes on my Macbook, I needed to do a 'search for music' to get my artist tab working.
    As there is NO music in my 'automatically add to iTunes' folder, I was very surprised to see my Macbook's iTunes started adding all my samples for Ableton Live, which are stored in a Dropbox folder.
    My iMac has an identical folder structure and has never done this.
    My Macbook now has my entire iTunes library viewable on Match (great) but with hundreds of drum loops added too (not great) which I imagine it will now start trying to upload to the iTunes Match service (even worse).
    How do I remove these samples from my iTunes library on the Macbook without deleting the real ones; and stop it happening again?
    As far as I'm concerned, no music that is not put in the 'Automatically add to iTunes' folder should ever enter my collection.

    To erase your iPhone contents, you can restore it to it's factory settings. Instructions on how to restore your phone can be found here.

  • Upload a numbers file to dropbox then view it from another device

    cant view a file i uploaded from my mobile device (Iphone or Ipad) into dropbox then view it from my mobile device again.  i can from my computer but not any of my mobile devices.  it was working great until the update back in October 2013.  i have lost business because of this update and i wish i could go back and not do it.  i have 4 other devices that we did not do the update to and they continue to perform great.

    use jspsmat.com package
    www.jspsmart.com
    or orilley pakage
    that both have many sample of uploading all types or file from client machite to web server dir
    regards
    [email protected]

  • EXS samples missing

    In particular: Funk Horn Section, but some others too. The folders containing the relevant samples are all empty. Any clues? Its the same on my MBP and my Mac Pro.
    9.1.1, 2010 Mac Pro octocore, 8gig and i7 MBP 4gig.

    Yes, I have them - both samples are in both folders:-
    /Library/Application Support/Logic/EXS Factory Samples/05 Synthesizers/04 Sequence Elements/Spectrum Stack 01/UniSyncH.wav
    and
    /Library/Application Support/Logic/EXS Factory Samples/Analog Samples/Spectrum SQ/UniSyncH.wav
    These are on the LP8 content disks but not on the LP9 content disks, strangely enough.
    These will be only up for a short time as technically it's Apple content. I'm doing this to help you out as you're probably more than a little frustrated. Please post back when you have downloaded them.
    http://dl.dropbox.com/u/4211158/soundies/logic/UniSyncH.wav
    http://dl.dropbox.com/u/4211158/soundies/logic/UniSyncL.wav

  • Logic Collaboration Via Dropbox not working

    Hi
    I've started co-writing with a couple of other Logic9 Users and assumed that by sharing the .lso in dropbox that we could literally save updated versions of the song and add in parts as we see fit.
    We're all (for writing purposes) using the factory Logic Sample Libraries.
    Wrong.
    As soon as I try open an updated Project from dropbox its asking me to locate samples etc.
    Any thoughts? Only thing I can think of is that the one of the writers has HIS instruments/samples in the default installation location whereas I have mine on an external TB drive.
    Of course what we dont wann do is have logic "Include Assets" every time we save the latest song version to Dropbox cos thats 500MB+ of instrument samples evry time

    Unfortunately, Logic doesn't work that way... (Actually it's OS X that doesn't work that way to be more precise)
    Logic uses Spotlight to track everything initially but when you save a project out and load it back in it looks at Spotlight for the files and other 'pointers'.. such as the names of the Hard Drives where things are stored.
    Different Hard Drives (or even simply different names for your system Hard Drive) and you are proverbally screwed....
    The only way i have successfully managed this without needing to include all assets.. is identical systems right down to drive names and so on..
    Hence my use of Gobbler... which is a godsend for sharing Projects with others in a practical way. It is much better than Dropbox mainly because it  it 'understands' Logic Pro and the demands/needs of LP users..

  • On the fence for which sample rate to record at (44.1 vs 96)

    Been reading tons of posts on the sampe rate debate.  My friends (across the country) and I are about to start to collaborate on the great American rock album that we didn't quite get right back in the day in college.  I'll be running the show sending them scratch tracks with clicks so they can lay down individual tracks and I'll import them.
    I'm torn on which sample rate(s) to use -- and want the best quality possible, of course.  I've boiled it down to the following pros per sample rate.  Any advice/comments much appreciated.  thanks
    44.1 Pros
    - Friends across the country can use GarageBand (44.1kHz is max) to lay down a single track and send to me to import into Logic Pro and mix (and will match up)
    - GarageBand is free, Logic Pro is $199; Apogee JAM is $99, Jam96kHz is $129
    - GarageBand requires fewer resources (1GB RAM vs 4GB for Logic Pro) so they don’t have to have beefy Macs
    - Smaller file size to post/share (Dropbox cost per/storage size)
    - Picture mixing a bunch of 44.1 tracks vs a bunch of 96 tracks even if on my beefy Mac running Logic Pro; fan running, gasping for air etc?
    96 Pros
    - 96 sounds noticeably better than 44.1?
    - While 44.1 standard for CDs, that’s no longer how music is largely distributed
    - Should always record to max resolution you can be “future proofed”?
    - Current lossy formats support up to 48kHz so 96kHz good as will cut cleanly in half when bouncing
    88.2 Pros
    - Maybe choose this so friends using GarageBand can record at 44.1 so upscales more cleanly?  But then bouncing down to 48kHz not as clean? (I don’t recall Logic Pro allowing me to choose 44.1 for bounce rate.. always says 48 for MP3/M4A)
    thanks!

    rcook349 wrote:
    44.1 Pros
    - Friends across the country can use GarageBand (44.1kHz is max) to lay down a single track and send to me to import into Logic Pro and mix (and will match up)
    - GarageBand is free, Logic Pro is $199; Apogee JAM is $99, Jam96kHz is $129
    - GarageBand requires fewer resources (1GB RAM vs 4GB for Logic Pro) so they don’t have to have beefy Macs
    - Smaller file size to post/share (Dropbox cost per/storage size)
    - Picture mixing a bunch of 44.1 tracks vs a bunch of 96 tracks even if on my beefy Mac running Logic Pro; fan running, gasping for air etc?
    96 Pros
    - 96 sounds noticeably better than 44.1?
    - While 44.1 standard for CDs, that’s no longer how music is largely distributed
    - Should always record to max resolution you can be “future proofed”?
    - Current lossy formats support up to 48kHz so 96kHz good as will cut cleanly in half when bouncing
    88.2 Pros
    - Maybe choose this so friends using GarageBand can record at 44.1 so upscales more cleanly?  But then bouncing down to 48kHz not as clean? (I don’t recall Logic Pro allowing me to choose 44.1 for bounce rate.. always says 48 for MP3/M4A)
    thanks!
    44.1 kHz still is pretty much standard for MP3's.
    Your friends/collaborators can pretty much use any application that can record PCM (or even MP3) audio; even if they're not playing to a steady tempo, you can line everything up in Logic, with flex.
    Using Garageband and one set tempo should also work. Just remember that you cannot open Logic files in Garageband, only Garageband files in Logic. The Audio Files recorded by either, can be used (imported) by either.
    Higher sampling rates will not "future proof" anything. In fact, that whole concept is flawed. Your best bet for now is simply 44.1 kHz 24 bit uncompressed PCM files in their most widely used form: AIFF or WAV.
    96 does not noticeably sound better than 44.1, unless you have a top end interface and a very delicate and very complicated mix, and admirably acute hearing. In some interfaces 96 or 88.2 have been found to sound worse than 44.1, because of clocking inaccuracies getting progressively worse at higher sampling frequencies. I would stick to 44.1, it has lots of practical advantages (as you pointed out), and the sonic difference with 96 kHz is marginal at best, and certainly not worth the price: "double" rates need double the CPU power for any plugin processing. That's the biggest loss. Half a Mac.
    Bitdepth on the other hand does make a significant difference. There is no reason not to record everything at 24 bits. Shorter: always record at 24 bits.
    O, also just spotted your remark about Logic not "letting you" bounce MP3/M4a to 44.1 kHz. You must remember incorrectly, because I never bounce MP3 or AAC to any other frequency than 44.1 kHz. However, it may be that this rate is tied to the projects' sampling frequency as set in the project settings, and the last time I used 48 kHz was in LP 8. I'll check that now.

  • Why are my samples disappearing in the piano roll?

    Hey guys,
    I have been using a J Dilla and Lex Luger drum kit in the ESX24 sampler and I recorded a beat using them, some software instruments, and audio. Everything works fine for a while and then all of the sudden the notes from the green software instrument bar disappear and I can't hear any of the things I recorded with my downloaded drum kits. I checked in the piano roll, and nothing is there. All of my other software instruments that weren't from an imported sample worked fine.
    The first time this happened, I was able to just close the project and open it up again because I didn't add anything new. Everything was there when I reopened it. But it happened a second time, and I want to see if there is a way to get my samples back without having to lose all of my progress. Any Ideas?

    jamgarske wrote:
    ... but the "notes" in the software instrument tracks that contain instruments that I downloaded from the internet have disappeared and won't play back. The green region stays there but the notes have disappeared.
    The Track (containing the Regions) and the Channel Strip (containing the Software Instrument Track) are two different objects and you can assign (reassign) a Track to any Channel Strip. That's why it is strange that the choice of Instrument (Channel Strip) affects the Regions (Track).
    Just to make sure:
    You create a Software Instrument Track (A)
    You load the EXS24 on that Channel Strip (assigned to that Track A) and load one of those drum kits you got from the internet
    You can play that drum kit on the EXS24 with your external MIDI controller when you selected that Track A.
    When you record those MIDI notes, you see a new Green MIDI Region is created on the Track Lane of Track A
    When you select that MIDI Region and open the Piano Roll (or the Event List), you don't see any MIDI notes.
    That would mean, the MIDI Region was created but no MIDI Notes were created
    Is that what happened?
    It seems that you added a DropBox link with an image. I cannot see that, only a question mark. If this is a screenshot, you can post that directly on the post by clicking the area icon in the formatting bar.

  • EXS24 missing samples - path broken?!

    Hello,
    I´m a pro user on Logic X, and I have encountered a problem that I really cant find a way to solve. I´ve just upgraded my DAW with new HDD´s and everything. I use the EXS24 a lot for my own sample libraries, which is scattered throughout my discs on my DAW. I also use dropbox as a folder for all of my EXS24-instruments (as an alias in the logic structure of folders). This because i have a portable DAW as well which need to be updated.
    So, this is the thing:
    When i open up my EXS24 and try to load different libraries, it doesn´t find the samples, though they are on a harddrive on the computer. - actually i have some backups here and there, and my spotlight does not have any problems finding them files.
    I tried to find a solution on this on www, but with no luck. Are there anyone that has encountered the same problem, and have a solution for it?
    Thankful for feedback.

    Hello,
    I´m a pro user on Logic X, and I have encountered a problem that I really cant find a way to solve. I´ve just upgraded my DAW with new HDD´s and everything. I use the EXS24 a lot for my own sample libraries, which is scattered throughout my discs on my DAW. I also use dropbox as a folder for all of my EXS24-instruments (as an alias in the logic structure of folders). This because i have a portable DAW as well which need to be updated.
    So, this is the thing:
    When i open up my EXS24 and try to load different libraries, it doesn´t find the samples, though they are on a harddrive on the computer. - actually i have some backups here and there, and my spotlight does not have any problems finding them files.
    I tried to find a solution on this on www, but with no luck. Are there anyone that has encountered the same problem, and have a solution for it?
    Thankful for feedback.

  • How do I find, at-a-glance, the sample size used in several music files?

    How do I find, at-a-glance, the sample size used in several music files?
    Of all the fields available in a FInder Search, "Sample Size" is not available. Finder does offer a "Bits per Sample" field, but it only recognized graphic files and not music files.
    Running 10.8.5 on an iMac i5.
    I did search through a couple of communities but came up empty.
    Thank you,
    Craig

    C-squared,
    There is no View Option to allow display of a column of sample size. 
    For WAV or Apple Lossless files, it is available on the Summary tab (one song at a time, as you know).  For MP3 and AAC it is not available at all.
    You can roughly infer it from the files that are larger than expected for their time.
    99% of the music we use is at the CD standard of 16-bit, so I can guess that displaying it has never been a priority.  However, if you want to make a suggestion to Apple, use this link:
    http://www.apple.com/feedback/itunesapp.html

  • COGS update on other GL Account at the time of Free goods or Sample goods

    Hello,
    In sales process, Usually the at the time of Delivery, material document is created as
    DR COGS
    CR INVENTORY
    But in the case of free goods or bonus goods or samples: the account should not determines COGS instead it should determine another GL Account called as Free good -COGS expense A/c.
    How can we solve the issue.
    Regards,
    SK

    Hi Yasar,
    You need to create a new routine for calculate type.
    Do as below:
    1. Go to VOFM>Formulas>calc.rule Rebate InKd to create a new routine for calculate type.  for example 601.
    2. add the following code in this routine 601 and then save.
      USING L_FRM STRUCTURE KONDN_FRM.
    DATA: VORKOMMA  LIKE KONDN-KNRMM,
           NACHKOMMA LIKE KONDN-KNRMM.
      L_FRM-NRMENGE = 0.
      L_FRM-NRRUND  = 0.
      L_FRM-NRMENGE = ( L_FRM-MGLME / L_FRM-KNRNM * L_FRM-KNRZM ).
    business rounding
        VORKOMMA = FLOOR( L_FRM-NRMENGE ).
      L_FRM-NRRUND  = L_FRM-NRMENGE - VORKOMMA.
      L_FRM-NRMENGE = VORKOMMA.
    3. Select routine 601 in field "Calc.Rule" when you create free goods condition record.
    Hope it helps.

  • Error in compiling Photoshop CC 2014 sample project

    Hi,
    I am trying to compile SDK sample project "outbound". but it is showing errors, as "Parse Issue: Unknown type name 'DialogPtr' " in DialogUtilities.h .
    DialogUtilities.h file is in "Adobe Photoshop CC 2014:photoshopsdk:pluginsdk:samplecode:common:includes".
    even if I add this path in project  settings it still shows the errors.
    how can I make this work?
    I am using Photoshop CC 2014 and Xcode version is 4.6.3 (4H1503)
    If you have any idea regarding project settings then please let me know.
    Thanks and regards,
    Priyanka.

    Are you using the CC 2014 release of the SDK?
    The DialogUtilities.h for mac do not work. They are the old Carbon API's. See the Dissolve example for an Objective-C UI.
    I would comment out the DialogUtilities.h include and other associated headers for Carbon UI. Some Carbon calls still work that are unrelated to UI.

  • How to log in to Service Desk to create sample message to SAP?

    Dear all,
    How to log in to Service Desk under my Solution Manager server to create sample message to SAP under Component: SV-SMG-SUP?
    Regards
    GN

    Hi GN,
    You have different options to create messages in test component SV-SMG-SUP-TST:
    1. if you are on 7.1 you can create message using CRM_UI
    2. If you are using lower vrsion then either you can create message using Workcenter or using transaction NOTIF_CREATE or using menu --> Help --> Create support message.
    Thanks
    Regards,
    Vikram

Maybe you are looking for

  • Photo Quality on ATV

    Hi Just synced my itunes photos with the ATV but the photos are not as clear as they are on my Mac. Also in ATV when you preview the pictures before going into the folders the images are fine (i presume as they are smaller) but when you go into the f

  • Typical Lead Scenario_URGENT!!!!

    Hi to all. I have a scenario wrt "Lead"      I am running a email Campaign which asks for Customers interest towards a Product.    Now who ever shows Clicks on Yes Button in the email , they need to be collected separately(for which there is a standa

  • Study material on ALE and IDOCS

    Hi If anyone has some study material on ALE and IDOCS ,if you can please send it across to me , it would be very helpful to me . My mail id is : [email protected] Thanks in advance Ankit

  • Error wwhile intalling Oracle 10g Designer 9.0.4.5

    While installing this Oracle product i have two errors The first one http://www2.shrani.si/files/napakaor449149.jpg and after clickinh on "Stop installation for this component only" I get this error: http://www2.shrani.si/files/napakaor449150.jpg Can

  • How to adjust hostname info for Sendmail

    Hello folks, When sending mail from the command line in Solaris, the emails always say they are from [email protected] What I'd like instead would be [email protected] What file must I edit to make this happen? Many thanks in advance. Lurch