A scenario to show VC functionality

Hi folks
Can you please help me with some sample scenarios to built an application on Visual Composer to show the nice look-and-feel of the technology
Thanks
Mandeep Virk

HI Govindu,
I am developing a custom scenario in which 3 RFC's are used as data provider.
Problem 1
First rfc on initialization show data in Pie chart. I have a table attached to pie chart which will populate data from same rfc. i want this table to fill data on click of pie chat.(means same rfc execution to populate data)
AND how can i set visibility of table that after click on pie chat table must populate data and should be visible.
Problem 2
How to give tool tip value same as text populated by rfc for a specific field.
Thanks
Mandeep Virk

Similar Messages

  • Show Frames Function on Video Track NOT Available on Premiere Pro CC

    I've been using Premiere since version 1.0 - almost 15 years.  One of the functions that I've always used was the "Show Frames" function on the video track timeline.  It's very visual and helps me to "see" my project a whole lot better.  And, now it's gone.  why?  Why take away a good thing?  Was it just forgotten?  Did some editor prefer the AVID look and feel?  is that what Adobe is doing?  Where is my Show Frames function in CC - I want it back!!!

    You know, I did spend some time reading about the new features.  And I do expect that some things get moved around a little bit.  And, most times I figure those changes out on the fly.  But this one was pretty well hidden.  By the way, in '96, Premiere was more like version zero and it was just Premiere - no Pro at the end.  I'm pretty sure I trained on Premiere 1.0 around '97-'98 at a training facility in Dallas.  I just went and dug up my Adobe Premiere Pro 1.5 installation CDs in its original case and in excellent condition - a collector's item!  It says Copyright 2004 on the back sleeve. I put the disc in the computer and read the date of the AutoPlay file - December 9, 2003.  and the installation files are May 10, 2004. They didn't pop out upgrades back then like they do now!

  • 1. Why doesn't the "Show Duplicates" function ever work?  It's always grayed out.

    1. Why doesn't the "Show Duplicates" function ever work?  It's always grayed out.

    do you have the current itunes? the option is under view "show duplicate items. Maybe you just dont have any duplicates.

  • HT4111 I just purchased my first iPad (the new one) and a wireless keyboard. Is there a keyboard usage manual available anywhere that shows the functions of the keys? The info that came with the keyboard was very basic and my searches have been unsuccessf

    I just purchased my first iPad (the new one) and a wireless keyboard. Is there a keyboard usage manual available anywhere that shows the functions of the keys? The info that came with the keyboard was very basic and my searches have been unsuccessful.

    If you are using a Bluetooth keyboard on your iPad device, you should take advantage of the keyboard shortcuts for quicker access to copy, cut, paste, undo, redo, and other commands.
    Command + C : Copy Selected Text
    Command + V : Paste
    Command + X: Cut Selected Text
    Command + Z: Undo
    Command + Shift + Z: Redo
    Command + Delete: Delete everything to the left of the cursor on the current line
    Option + Delete: Delete the word to the left of the cursor
    Command + Up Arrow: Go to top of document
    Command + Down Arrow: Go to bottom of document
    Command + Left Arrow: Go to beginning of current line
    Command + Right Arrow: Go to end of current line
    F1: Dim screen
    F2: Brighten screen
    F7: Back one song
    F8: Play/pause song
    F9: Skip song
    F10: Mute
    F11: Decrease volume
    F12: Increase volume
    Eject button: Show or hide onscreen keyboard
     Cheers, Tom

  • How showing all function/procedure

    - How showing all function/procedure headers parameter with type and
    return type in Pl/sql .
    - How to calculate the number of days to this year 1800 using sql-
    statment without using pl/sql

    DECLARE
    STR VARCHAR2(2000);
    STR1 VARCHAR2(100);
    BEGIN
    FOR I IN (select OBJECT_NAME,OBJECT_TYPE from user_objects where object_type in ('PROCEDURE','FUNCTION'))
    LOOP
    STR:=I.OBJECT_TYPE ||' '||I.OBJECT_NAME||'(';
    FOR J IN (SELECT T.OBJECT_TYPE OBJECT_TYPE,U.object_name object_name, U.sequence sequence,u.in_out in_out,
    U.argument_name argument_name, U.data_type data_type
    FROM user_arguments U,
    (select OBJECT_NAME,OBJECT_TYPE from user_objects where object_type in ('PROCEDURE','FUNCTION')) T
    WHERE U.OBJECT_NAME=T.OBJECT_NAME AND U.OBJECT_NAME=I.OBJECT_NAME
    ORDER BY U.object_name, U.sequence)
    LOOP
    IF J.ARGUMENT_NAME IS NULL THEN
    STR1:=' RETURN '||J.DATA_TYPE||' '||J.IN_OUT;
    ELSE
    STR:=STR||J.ARGUMENT_NAME||' '||J.DATA_TYPE||' '||J.IN_OUT||',';
    END IF;
    END LOOP;
    STR:=RTRIM(STR,',')||')'||STR1;
    DBMS_OUTPUT.PUT_LINE(STR);
    END LOOP;
    END;
    REGARDS
    SUNIL

  • Where is the "Show Duplicates" functions in iTunes 11?

    I recently upgraded to the new version of iTunes and can't find the "show duplicate" options. This is one of the main reasons I don't upgrade to the new iTunes, because of this kind of stuff - missing functionality that I use on a regular basis... Any help (outside of downloading your personal script) would be appreciated. Thanks!

    Two Windows scripts to make playlists of Duplicates and Exact Duplicates. Use shift-delete to remove selected tracks from the library as well as the playlist.
    There is also my DeDuper script if you don't want to do it by hand. Please take note of the warning to backup your library before deduping. See this thread for background.
    tt2

  • Flash builder 4.5 code completion doesn't show public function

    Hi,
    I am migrating from flex3 to flash builder 4.5 and it shows a question mark at one of my lines.
    No errors, and the code works fine when i run it.. only there is no code completion in flash builder.
    My code:
    //i use a custom component like this:
    <generalmenu:menu x="59" y="58" id="mymenu"/>
    //this component loads its functions from a separate as(no class just simple as code) file (so i don't have all code in the file with visual components)
    <fx:Script source="menusource.as"/>
    //inside menusource.as there is a function that takes care of closing my app.
    public function closeprogram():void
         //closing window goes here
    my problem..
    when i type inside my function at application level:
    mymenu.closeprogram();
    i get a question mark in front of it: Call to a possibly undefined method closeprogram
    code completion doesn't recognize my public functions inside the mymenu component, it does see mymenu but when i hit .(dot) it doesn't give me a list of functions.
    How can i get code completion to work? Are there changes in the way you call as files in flash builder 4.5? Please some help.. code completion makes life much better.

    I found why the nasty behavior above was happening ::- D.
    I usually design my classes in Enterprise Architect. Since this is a rather large project, started from of about 30 classes, I did the entire architecture in EA, then, generated the code.
    But, EA has poor AS3 support. And as a consequence, it has a few issues, such as the way it generates CONSTRUCTORS:
    public function G3Widget (name: String, parent: IG3Parent = null): void
    Spot the mistake ::- D.

  • Does MAC OS have a "show desktop" function?

    I want to be able minimize all windows instantly, to reveal the desktop, when desired. MS Windows has an icon in the task bar that performs that function. Very handy sometimes. Does the MAC OS have a similar function?
    Thanks, Vince.

    Use Exposé. One of the three commands pushes all the window off to the side of the closest screen edge and shows you the desktop. If mapped to the F keys, it is usually F11 that does the +Show Desktop+ trick. Push that button again to put your open windows back to where they were before.
    You can change the Exposé settings in System Preferences +Exposé & Spaces+ pane, Exposé tab.

  • Freetext with more than 300 char show with function or class

    Hi all
    I search a function or a Class how could show freetext with more than 300 char like a popup.
    Now somebody one ?
    Thanks in advance

    Hi
    Try to use HELP_DOCULINES_SHOW
    Max

  • Show desktop function!

    Hi all, before I even started this thread.  I have googled for a solution and did not find anything.  I am currently using a macbook pro 2007 with mountain lion.  I am getting frustrated because i cannot figure this one out.  So my problem is that when i use the function show desktop, i click on the folders on the dock and everything that was hidden reappeared back to the desktop.  I am trying to figure out where you use show desktop where everything disappears, it stays like that until you want it to reappear again.  In OS leopard, it works totally fine.  I am able to hide everything by show desktop, browse around witthout having it to come back until I use show desktop again. 
    Is there any solution to this?  Its frustrating because i use show desktop so that i can search for something on other folders or even to check files on the dock by clicking and showing stacks.
    thank you

    thanks for your post scotch.  Of course hitting that command wont work lets say if your safari is active.  You have to click away to make the desktop active while the windows are up then it will work.
    @ macgeniusofnc
    My show desktop commanc is set to F11 and bottom left hot corner.  Yes it undos the show desktop.
    This is something small yet has been buggin me lol. i tried it again with my old G5 running leopard and it seems to work fine.  It doesn't undo it.

  • Showing DPS functionality with HTML file?

    Hello,
    I am mocking up a website using InDesign, and I have indicated the interactivity using DPS (buttons, scrolls, MSOs, etc). I'm wondering if there's a way I can export an HTML file that will show all the functionality? If not HTML, is there another file format that I could save, that is not a .folio? I want to be able to email a file to people who do not have InDesign or the Adobe Content Viewer.

    No to both. If you want to preview this content with someone they need to install Adobe Content Viewer and then you can share the folio with them for review.
    Neil

  • Activity Monitor shows Compressor functions as (Not Responding)

    Hi Forum
    I have noticed in Activity Monitor that I repeatedly get these messages in red:
    CompressorJobController (Not Responding
    qmasterqd (Not Responding)
    CompressorTranscoderX (Not Responding)
    ContentController (Not Responding)
    Qmaster Task Service (Not Responding)
    I have been force quitting them and then they continue to show up even if I don't have compressor open.
    I compressed a 40min HD at 800kbs last night - I woke in the middle of the night thinking it would be done and it was only half way done. I opened Activity monitor to see what was going on. It said that the these functions were (Not Responding). But i noticed activity in the cpu column and in the threads and processes window. I decided to see if it was really hung. I let it go till morning. I finished in about 8 hours. Can this be true?
    I am on the top of the line 17inch Macbook Pro. It seems like there are some anomalies that I don't understand. Should I disregard these recurring functions that say they aren't responding?
    thanks
    david

    Here is some investigation I did, maybe someone can use this!?
    While everything is running and suddenly all **** breaks loose, or rather just freezes in time.
    Open Activity Monitor and select CompressorTranscoder and click the Inspect icon, you will get the process details and check the 'Open Files and Ports' tab.. There is where you will find all the files this process needs!! Here is the issue! you will notice some temporary and cache items,. open the terminal and using commands navigate to those file locations and Voila!! you see those files dont exist!! thats why this service has hanged.. The apple team needs to figure out how these files got closed without compressorTranscoder knowing about it!! BUG BUG BUG!!!

  • "Show Thumbnail Function" PHP

    Hi,
    Here's my problem, I'm trying to use the "Show Dynamic Thumbnail" function. The images that I want to create thumbnails from are under a different site.
    Both sites are using the same database and obviously only one set of images exists. I can't seem to be able change the relative path generated into an absolute path. Here's what the code looks like:
    $objDynamicThumb1 = new tNG_DynamicThumbnail("", "KT_thumbnail1");
    $objDynamicThumb1->setFolder("admin/gallery/");
    $objDynamicThumb1->setRenameRule("{rsFeatured.image1URL}");
    $objDynamicThumb1->setResize(156, 0, true);
    $objDynamicThumb1->setWatermark(false);
    notes:
    Both sites have the exact same directory structure
    The site that has the images is: http://www.dayweitzman.com/
    I can't add absolute path to the "setFolder" in line 2 or Can I?
    Any help would be appreciated
    thanks
    Kal

    In the meantime, here's my solution. When uploading an image, I create a nested directory with the year/month/day of the upload if it doesn't already exist. This is where the images and the thumbnail folder associated with those images reside. Through the website, an image is accessed via its unique ID in the database, and then the script determines whether the user may access the file. The file name is stored in the database, and it is a 16 character random alphanumeric string that is generated during upload.
    An outsider could still open the image directly, but to do that they would have to know the date of the upload, the file extension, and the 16 character generated file name.
    I'd still like to be able to use a more solid solution, so if you have any suggestions...

  • Show current function name during development.

    Is it possible to show the name of the function in which I am at the moment?
    In VB6 and Visual Studio the function name is shown on top (see attachment).
    Inside long functions this functionality avoid much scrolling.
    Attachments:
    current_function.jpg ‏5 KB

    This is a really useful feature that unfortunately is not available in CVI.
    Some months ago I posted a product suggestion asking for its implementation.
    You can give a kudo to the idea if you think is useful too.
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

  • IDoc to SOAP scenario is showing error

    Dear Experts,
    We were trying a scenario which is IDoc-XI 3.0->SOAP and where the WebService is situated outside our office network. Our network team have bypassed proxy for accessing that WebService URL and the same is accessible from our XI3.0 application server from browser. We have configured the scenario and when we have tested the scenario from RWB->Component M onitoring->Integration Engine->Test and this has worked fine. But when we have tested the scenario by triggering IDoc from the R/3 system, it is throwing the below mentioned error in both at the comm chanel and at the SXMB_MONI acknowledgement.
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 403 Service Error
    points to be noted here:
    1. Business Service has been configured correctly for triggering ALEAUD messages and ALEAUD messages are reaching R/3 successfully.
    2. We have chosen option Keep Headers and Do not use SOAP header options.
    3. We are passing some values to the SOAP Header from SOAP channel.
    Please could somebody help us on the root cause of the error message.
    We have run report IDX_NOALE for that particular IDoc so that it doesn't return any acknowledgement back to the R/3 system.
    Thanks and regards,
    Sugata
    Edited by: Sugata Basu on Nov 19, 2011 12:40 PM

    Dear,
    IDoc to Soap scenario we have to import wsdl at receiver end and map the field from the mapping document but some times receiver end some changes may happen. if it is correct only your mapping we have to conclude from the below points.
    1. Check the mapping in Message Mapping and Operation Mapping Test and conclude.
    2. you should check url from receiver that is correct or wrong.
    3. ask the wsdl from receiver end.
    the given ED and receiver side application is same this type of error will not come.
    Please check at receiver application or else what ever new fields are added in reciver may be miss mach of ED.
    Regards,
    Kiran Polani

Maybe you are looking for

  • Audio from iPad whilst connected with HDMI cable?

    I'm planning to connect my iPad (3rd Gen) to a computer monitor without speakers using an HDMI cable... I assume I can still take the audio out from the iPad to connect to some external speakers? (I'm going to be playing Keynote presentations with so

  • IMovie 09 deleting a project? Help please

    I am running iMovie 09 and am new to it. I created a movie using photos and videos. I first put it onto my flash drive when it was finished. I am planning on burning it to DVD's for my friends, so I have the file in a folder on my desktop. However, n

  • BEx Query for SAP BO WebI issue

    Hello Experts, I am facing a problem in BEx query which is feeding SAP BO WebI 4.0 (SP5) via BICS. BEx query designed on top of a Multiprovider consists of two standard InfoCubes namely ZBW1 and ZBW2. We need "ZPRCTR" from InfoCube ZBW1 and the Key F

  • How Do I Add A Pre-recorded Voice Over to an iMovie Project?

    I have an audio file with the voice over I want to add to my movie project (which has an insturmental music track I want to duck during the voice over). How can I add this pre-recorded voice over track to my project?

  • BIOS problem (settings) on MS-6380LE

    Hi I have the k7t266 pro LE motherboard..(ms-6380 LE) and pcalert4 indicates that the  Vcore fluctuates from 1.78v to 1.82v! (MBM5 too)  :( How can I change this values to 1.70v (for example) in the BIOS setup? ?( Since I updated my BIOS to version 1