Load external data to symbol (text + images)

Hi there!
I would like to make a symbol that contains one image and one textfield. I've got three buttons, and when I click on each button the symbol shows a different content (so an image and a text depending on what button was clicked, but always inside the same symbol).
I've read that it could be done using an external JSON file, though I really don't know how to do that.
Do you have something that could help me achieve this?
Thank you very much!

Mmmh not really,
Actually I would like to load these data into a symbol by clicking on another symbol, but these specific data are extern (like an image from another folder in my project files).
What I would like to achieve actually is an image gallery: when I click on a symbol (that is kind of a thumbnail), it show that other symbol which contain the image and a description. But these image and description changes regarding which thumbnail we clicked on.
Does that make sense? =/

Similar Messages

  • How to load external data without using external tables

    Hi,
    I'm asked to develop an ETL for loading external data into a database but, unfortunately, the vers. is 8i so I can't use external tables.
    I know that it's possible by using SQL-Loader. What I want to know is whether there's another way in 8i to load external data from a text file or a CSV file directly with a stored procedure without having to write CTL of SQL-Loader on the server. I mean, is there a way to write everything on the database the same manner I'd do whether I wrote data from a table to a file using for example UTL_FILE or the unique way is to write control files of SQL-Loader directly on the server?
    Thanks!

    Mark1970 wrote:
    Thank you very much Karthick
    I didn't know I could use UTL_FILE also for reading files. I've always use it only for writing data into external files.Yes you can use UTL_FILE to read. The version of oracle you are using i last used in 2004 :) Still remember giving the OS path of the file to open the file. That is long gone now. Its surprising that you are still in 8i.

  • Error 1 when loading external data

    Hi BW( Best and Wise) friends,
    I am not able to load data into my infocube. My source system is a PC file.
    Message <b>"Error 1 when loading external data is displayed."</b> when scheduled.
    When I checked the error details using Monitor button,
    During extraction, the data request was arranged(indicated by green mark),but there was error in <b>data request(red).</b>
    During extraction,data request was received (green),but there was some error in <b>data selection(red).</b>
    Anticipating good solution.

    HI all,
    1.The flatfile matches with the transfer structure
    2.The file is a “.csv” format file only.
    3.The path is correct
    I had chosen comma as my data separator.
    I had declared fields in the following way in the XL csv file
    Name of the candidate – text
    Name of the party- text
    Age-number
    Number of votes gained –number
    Calendar day –text.
    I had already tried the following.
    When I clicked the preview in the “external data” tab  of the infopackage, a window showing the preview parameters is opening. When I clicked the tickmark, message “error 1 when loading data is displayed.
    4. The details tab of the monitor showed the following:
    Overall status : Errors occurred: or: Missing messages-red
    4.1)Requests(messages):Errors occurred-red
           Data request arranged-green                       
           Error in datarequest-red
    4.2)Extraction(messages):Errors occurred-red
           Data request received-green
           Error occurred in data selection-red
    4.3)Transfer(IDocs and TRFC):Everything ok-green
           Info IDoc 1: Application document posted-green
           Info IDoc 2: Application document posted-green
    4.4)Processing(data packet): No data-yellow
    I had initiated the discussion in the forum with this  information only.
    Regards,
    Balaji
    Message was edited by: balaji vijayakumar

  • Loading the data from a text file to a table using pl/sql

    Hi Experts,
    I want to load the data from a text (sample1.txt) file to a table using pl/sql
    I have used the below pl/sql code
    declare
    f utl_file.file_type;
    s varchar2(200);
    c number := 0;
    begin
    f := utl_file.fopen('TRY','sample1.txt','R');
    loop
    utl_file.get_line(f,s);
    insert into sampletable (a,b,c) values (s,s,s);
    c := c + 1;
    end loop;
    exception
    when NO_DATA_FOUND then
    utl_file.fclose(f);
    dbms_output.put_line('No. of rows inserted : ' || c);
    end;
    and my sample1.txt file looks like
    1
    2
    3
    The data is getting inserted, with below manner
    select * from sampletable;
    A     B     C
    1     1     1
    2     2     2
    3     3     3
    I want the data to get inserted as
    A     B     C
    1     2     3
    The text file that I have is having three lines, and each line's first value should go to each column
    Please help...
    Thanks

    declare
    f utl_file.file_type;
    s1 varchar2(200);
    s2 varchar2(200);
    s3 varchar2(200);
    c number := 0;
    begin
    f := utl_file.fopen('TRY','sample1.txt','R');
    utl_file.get_line(f,s1);
    utl_file.get_line(f,s2);
    utl_file.get_line(f,s3);
    insert into sampletable (a,b,c) values (s1,s2,s3);
    c := c + 1;
    utl_file.fclose(f);
    exception
    when NO_DATA_FOUND then
    if utl_file.is_open(f) then utl_file.fclose(f); ens if;
    dbms_output.put_line('No. of rows inserted : ' || c);
    end;SY.

  • Load external data into se-main-menu

    hi,
    i've tried to load external data (vars,files)into a selfmade
    sony-ericsson-flash-menu for the w810i.
    it is possible to load the data for the current active menu
    via loadVariablesNum("application://focused", 0);
    so i thought i could load some other stuff into the mainmenu.
    i tried to load an swf with loadMovie/loadMovieNum.
    i tried to load vars from a txt-file with
    loadVariables/loadVariablesNum.
    and i tried to open a webadress with getURL.
    but nothing happens ... :(
    the files (swf,txt) are in the same folder like the
    mainMenu.(tpa\preset\system\desktop\flash)
    maybe the w810 does not execute the swf in the same folder
    where it is at the moment?!
    is it possible to figure out where the swf is executed?
    the _url command is not supported by flash-lite-1.x ...
    some ideas?

    Hi Joanne,
    LSMW - Legacy System Migration Workbench is very user friendly tool provided by SAP for legacy data load.
    use link below for documentation
    http://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    You can also, use SAP best practice PCC Excel Template and load programs (delivered by SAP) for each Infotype PA / PD.
    Hope this helps.
    - Bharat

  • Error 4 when loading external data

    hi all,
    I have unchecked uncheck currency conversion for external systems in my info package and then loaded the data from a flat file.
    and then i am getting the below errors.
    cost -> cannot be converted to currenecy (since cost contains currency item)
    netval_inv -> cannot be converted to currenecy (since cost contains currency item)
    /bic/zntwthpm -> cannot be converted to currenecy (since cost contains currency item).
    if i check the option
    currency conversion for external systems in my info package
    then i am getting error 4 when loading external data.
    Can anyone help me out!!!
    thanxs
    haritha

    Hi haritha,
    Please check whether your file whcih you are loading is open , when you are starting the Infopackage.
    Also please check this SAP Note 600246 - RSAR 234: Error 4 when you load external data.
    What is your BW System (Version/Patch)
    Thanks.
    CK

  • Error 3 when loading external data

    Hi Gurus!!
    I am trying to load data from a flat file into a Cube. The load is done by a process chain and have worked perfectly before. The file is located on the application server.
    Now I get the following error:
    Cannot Update Request REQU_DESUFKD2XA1LDREQ0KEJZ2TJC in Data Target
    Error 3 when loading external data
    The file looks ok when i compare it with the ones i received earlier.
    Any ideas what this error 3 is all about?
    Thanks in advance!
    Pontus

    Hi
    I Have had trouble raching the network for some time.
    Problem solved. My misstake, It was the cube that were set to transactional.....
    I will credit A.H.P.
    Thanks everyone!
    Regards
    Pontus

  • How to load Test data from a Text file in ECATT

    Hi,
    I have created a test configuration with a test script, system data container, and test data container.
    I have done the recording of a transaction and created the script. Parameterization is done for the script and have imported those parameters from script in to the data container.
    I am trying to load a the data from a text file on the local work-station. The data is not being read.
    Please explain this in detail (step by step) as I am very new to ECATT.
    I am trying this on SAP ECC 6.0 IDES server.
    Thanks in Advance
    Vikas Patil

    Please explain this in detail (step by step) as I am very new to ECATT.
    Thanks in Advance
    Vikas Patil

  • Trying to load external data

    ive read the tutorials and searched the forums but i still
    need some help. im trying to read data from a text file here (
    http://www.ndbc.noaa.gov/data/realtime2/41035.spec)
    what i cant figure out is how to call each value to its own dynamic
    text field.
    YYYY MM DD hh mm H0 SwH SwP WWH WWP SwD WWD STEEPNESS AVP MWD
    2006 12 10 00 00 0.3 0.3 6.2 0.1 3.2 ESE SE N/A 6.1 110
    2006 12 09 23 00 0.3 0.3 9.1 0.1 3.6 SE SE N/A 6.2 134
    2006 12 09 22 00 0.3 0.3 9.1 0.1 3.6 SE ESE N/A 6.2 125
    2006 12 09 21 00 0.3 0.3 7.1 0.1 3.4 ESE ESE N/A 5.9 119

    Perhaps the LoadVars.load method documentation may be easier:
    http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/js/html/wwhelp.htm?href=0000233 4.html
    Here is the example from that link modified slightly:
    var my_lv:LoadVars = new LoadVars();
    my_lv.onLoad = function(success:Boolean) {
    if (success) {
    trace(this.toString());
    textField1_txt.text = this.var1
    textField2_txt.text = this.var2
    textField3_txt.text = this.var3
    textField4_txt.text = this.var4
    } else {
    trace("Error loading/parsing LoadVars.");
    my_lv.load("
    http://domain/loadvarsfile.txt");
    As you can see in the example you set your dynamic TextFields
    equal to the vars in the loaded file.
    The other part of the equation is the loaded vars file which
    might be
    var1=1234&var2=Hello&var3=12/1/2006&var4=Blah
    blah blah

  • How to Load External Data to SAP BPC using SAP BO Data Services

    Hi,
    We want to load data from an external MS SQL Server DB to SAP Business Planning and Consolidation (BPC 7.5 Netweaver version) using SAP BO Data Services 4.0 as ETL. What is the best way to load data to SAP BPC using Data Services?
    Thanks

    Hello Devi,
    There are three ways you can load Master Data in BPC
    1) Copy and paste.
    Download master data in flat file .Copy the  master data and paste in members of dimension after that process the dimension.
    2) Using SISS Pakage - load Flat File into BPC-Cube
    3) Using SQL Command.
    Thanks.
    With regards,
    Anand Kumar

  • Hierarchy load -Master Data(No attributes,Text data loaded)

    I have been trying to load hierarchy data in the datasource 0BBP_BIGURE_HIER from SRM to my BI system but the monitor shows the req remaining in yellow for hours together.The data comes fine till PSA but doesnt get loaded to the Infoobject 0BBP_BIGURE.The text data has been succesfully loaded for 0BBP_BIGURE.No attributes for the infoobejct to be loaded.
       Can someone provide some information abt how to load 0BBP_BIGURE_HIER from SRM and what can be the possible errors.
    Regards,
    Joy
    [email protected]

    Hi,
    I have tried what it says in SAP url(http://help.sap.com/saphelp_nw2004s/helpdata/en/85/14853df3e60968e10000000a114084/frameset.htm). I have reset the timestamp in the table BBP BWTIMESTAMP in Enterprise Buyer but, then, when i tried to upload the hierarchy again as it says, the problem persist. The monitor keeps the yellow status and the hierarchy doesn´t upload.
    What have you done to solve it finally?
    Thanks a lot.

  • Language error while loading master data source for text

    Hi,
    We are getting the following error while loading the data in 0DISTR_CHAN_TEXT data source.
    "Error during multibyte alignment for language D (position 2)".
    Can we filter the data on the Language ( ='EN'). At the data source level LANGU field is marked for selection but still it is not available as filter at info package level.
    Thanks
    VV

    Hey Vishal,
    If the field is marked for Selection at data source level, then it must be available for selection in infopackage.
    Try checking in RSA3 and see if it is available for selection over there. Let us know what was the output in R/3.
    Regards,
    Anjum.

  • Fastest method to load external data?

    Hi,
    Currently we load external xml file and parse it for our
    internal use.
    However, parsing take time, is it possible to reduce this
    step?
    Such as serialize / de-serialize?
    thanks.

    Are you using Xpath API to parse your xml? This will help
    some doing just queries but some parsing will still need to be
    done.
    Another solution is to not load xml but use Flash remoting.
    Flash remoting is a binary format and much faster. WIth Flash
    remoting you can pass all your items in the native formats defined
    in PHP, ASP.Net, or ColdFusion.
    Sean

  • Error loading master data attr and text for 0material

    Hi gurus,
    I am new to BI, I am getting an error RSDMD- 194    when i am loading 0MATERIAL_ATTR and TEXT.
    It is showing for nearly 100 records in the error stack. 
    Can anyone explain some basics,
    1) why do we need to add 0MATERIAL to a particular Info area to start loading its ATTR and TEXT
    2) Are the info objects that appear in the attributes tab of 0MATERIAL the same as the fields of 0MATERIAL_ATTR datasource, basically what i don't understand is are we mapping the 0MATERIAL_ATTR datsource fields to the info objects appearing in the attributes tab of 0MATERIAL info object.
    3) Also when i added 0MATERIAL to my Info Area , there were some extra info objects that got in, are there any dependent objects that get added ?
    <removed by moderator>
    Edited by: Siegfried Szameitat on May 19, 2009 11:53 AM

    Hi,
    "Error RSDMD- 194 when i am loading 0MATERIAL_ATTR and TEXT.RSDMD- 194"
    Please check if there is any external characterstic in those 100 records, correct it and load again.
    1) why do we need to add 0MATERIAL to a particular Info area to start loading its ATTR and TEXT
    It does,t matter where the 0Material is. Info area in kind of Folder to easily locate and put the all the related objects at one place.
    2) Are the info objects that appear in the attributes tab of 0MATERIAL the same as the fields of 0MATERIAL_ATTR datasource, basically what i don't understand is are we mapping the 0MATERIAL_ATTR datsource fields to the info objects appearing in the attributes tab of 0MATERIAL info object.
    If it is a business content infosource, it will automatically map the attribute to data source field. If you are modifying or creating your own object, you should map it manually based on field name and description.
    3) Also when i added 0MATERIAL to my Info Area , there were some extra info objects that got in, are there any dependent objects that get added ?
    If you will move any objects all the compounded objects will also come to the info area.
    Regards,
    Kams

  • Error while loading external data using Business Content

    Hi,
    I am new to BW and I'm stuck up with this problem.
    I'm trying to load data from external file using business content cube(0PUR_C01)and infosources(2LIS_02_ITM/S012/SCL).
    I first installed the above mentioned cube and data sources.
    Then I activated the update rules and transfer rules, without any changes.(I don't know what changes might be required!)
    Monitor is showing successful load but the cube has 0 enteries.
    Even the simulation of update is showing data in the data target.
    Can someone please guide me through this ?
    Its really urgent....
    Thank you all in advance.

    Hi Sharmistha,
    Welcome to SDN !! Does your monitor shows any records extracted till PSA ? Go to the details tab -> processing and click on each node to check what monitor shows.
    Hope it helps.
    Thx,
    Soumya

Maybe you are looking for

  • Need help in Mapping Logic

    Hi all, In mapping i need to mapp like this Idoc--file scenario, sending delivery document to file system in header of file structure, i have a field called Total Units, the logic for this field shld be Sum up the field ZCONV_QUAN for each delivery.

  • Picture Orientation problem with Konica Minolta Dynax 7D in iPhoto'08

    Hello, as far as I know the Dynax 7D has a bug concerning saving the picture orientation correctly in the EXIF tags. OK, that is definitly no Apple issue. But if I want to import pictures from the camera, in +the preview+ of the iPhoto import the por

  • Not Upgrading to 10.5 until Stacks can be disabled

    It has been chronicled elsewhere...and having tried it at work... -Icons in dock are useless and changing -Can't quickly browse into subfolders -finding the right app/doc in grid or fan requires more mousing than from the old list view. Definitely Ap

  • FIXED     ORA-02180 when Creating a Temporary Tablespace

    I am using Oracle 9i on a Win 2003 machine. I have just performed a recovery of all my datafiles and have successfully opened the database using ALTER DATABASE OPEN; I have been using THIS as a guide and am now at the stage of creating a new temp tab

  • My desktop screen jerks to the right. It also goes to dashboard on its own.

    After upgrading to OS X 10.6, my desktop screen jerks to the right.  The screen also changes to Mission Control or Dashboard on its own.  I am wondering what I can do to stop this from happening?