Multiple Target / Multiple Default.png

I have a project with 2 targets : My software, and its lite version. This project has a splash screen stored in Default.png file. I can localized this file, but I did not found how to set the same file name for 2 sources file (one default.png file per target) for each target.
How can I do that using XCode ?
David

I found a solution for this issue. I just created a new group within my resources group called "lite_assets" and included a new Default.png in this directory. Then I just unchecked the original Default.png for the lite version and made sure the lite version of the Default.png was checked for the lite target.

Similar Messages

  • ISCSI Multiple Targets - Multiple

    I would like to know if this configuration will cause me to experience file corruption.  I have a server which is configured as raid 6. I have windows 2012 installed and configured 3 iscsi targets. If I connect a separate server to each target will
    I run into any issues with file corruption? I have seen that multiple connections to a single target will cause corruption but cannot confirm if multiple targets on a single server will cause the same corruption.
    GY

    You can only connect one initiator to a target unless you have multipath enabled. 
    This is incorrect. MPIO enabled or disabled has nothing to do multi-initiator connect. It's a question to file system, is it cluster-aware or not (NTFS w/o a CSV filter is not BTW). More info here (common SAN concept), see:
    iSCSI instead of SMB
    http://www.starwindsoftware.com/forums/starwind-f5/trying-clear-this-use-iscsi-instead-smb-t1392.html
    Good luck :)
    StarWind VSAN [Virtual SAN] clusters Hyper-V without SAS, Fibre Channel, SMB 3.0 or iSCSI, uses Ethernet to mirror internally mounted SATA disks between hosts.

  • Loading Data to Multiple Targets in BI

    Hi Experts,
    I have one doubt regarding data load to multiple targets in BI. I explain clearly- the scenario is to load the data coming from one source system to multiple Data Targets in BI. Like in BW, we will just create multiple update rules from InfoSource to different targets. In InfoPackage maintenance screen, under  Data Targets Tab, we will select the respective targets which we want to load and we run the InfoPackage, it will updates the data to all the selected targets in the infopacakge.
    But in BI, how we will implement this scenario, bcoz here we need to create the individual DTPs, and there is no options to load the data simultenaously to multiple targets.
    So, is there any solution to implement this scenario in BI, plz expalin.
    Thnaks in Advance
    Ragards
    Ramakrishna Kamurthy

    Hi Dennis,
    No worries at all. I've been trying different approaches and strangely it does seem to load data packages faster when going via an InfoSource. (I don't understand why). However, it doesn't want to do it parallel.
    Whereas when I went loaded direct from the DataSource to DataSource, it processed data packages twice as slow but three at a time. The result being without the InfoSource was faster. This can be seen in the DTP Process Monitor and in SM50.
    Both DTPs had the default setting in Settings for Batch Manager of 3 parallel processes.
    Our batch queues in SM50 have not been blocked with other processes.
    Has anyone else had problems with parallel processes when loading via an InfoSource?
    Thanks
    Adrian
    P.S.
    I think I've discovered two cases where InfoSource may bring performance improvements:
    Filtering Records
    Transformation A includes the common and more simplistic transformations. e.g Sets a flag "Relevant" for certain conditions being met.
    Transformation B includes the complex transformations. At the beginning of B, you include a Start Routine that filters out records not marked "Relevant". That way it only does the complex work on relevant records.
    Time Conversion
    If your Data Source has Fiscal Period, but you wish your DataTarget to have Calendar Month, you need to write a routine to covert if you extract direct from DataSource to DataTarget.
    Whereas, if the Fiscal Period is passed to an InfoSource, you can use Time conversions or formulas to convert Fiscal Period to Calendar Month in a transformation between InfoSource and DataSource
    Edited by: Adrian Bell on Jul 31, 2008 9:33 AM

  • Multiple target datalines to multiple sound cards

    Is there any way to accomplish the following:
    I have 4 distinct sound cards. I am using 4 distinct target datalines (1 dataline per 1 microphone input), each in a separate thread, to sample sound.
    Let me start with this question, is this scenario even possible with the current implementation of Java Sound?
    If the microphones are in a linear array, spaced evenly apart, I would expect to see the the sound at the last microphone arrive after the sound of the first microphone. However, this does not always occur. This leads me to believe that one or more of the threads reading the target datalines is being starved.
    I've checked for buffer overflows as follows:
              int internalBufferSize = tdl.getBufferSize();
                        if (internalBufferSize == tdl.available()) {
                         System.err.println("Buffer overflow detected!");
                         }I'm not getting any buffer overflow errors.
    As an experiment, I've attempted to attach multiple target datalines to a single sound device. While that will work fine (i.e., Java doesn't complain), I notice that when I read the data from the target datalines, I'm only getting the data from one or the other lines, but NOT both at the same time. Even though this isn't the same scenario I proposed, is there something in the Java Sound implementation that will prevent one target dataline per sound device in a JVM?
    I'm fairly new to Java Sound, and I'm at a complete loss. I've gotten the same solution to work in other languages, however, I need Java for this particular application.

    Markus00000 wrote:
    In
    /etc/modprobe.d/alsa.conf
    I put
    options snd-hda-intel index=0
    options snd-usb-audio index=1
    If you give your default sound card index 0 and your USB camera a higher index, it might work.
    Thanks a lot. This indeed solved the problem.
    jmak

  • Batch Automap to Multiple Target Applications

    Hello,
    I've Googled and read through the admin guide but I'm still confused with this function.  I have multiple target applications in one FDM application and I need to setup an automap function for all the target applications.
    I would be very grateful if someone could answer the following questions and describe the process.
    How do you set  “AutoMapCorrect” location for multiple target applications since there are different dimensions in each application? 
    Do I have to add a suspense member for each dimension in every target application?
    I’m not sure how to produce a report that will tell a user: Here are the automapped members of the outline that kicked-out during this run?
    Any help is greatly appreciated.
    Thanks!

    As far as your first 2 questions, I can not provide a lot of help, as I'm pretty sure the out of the box automapping works only for the default adapter but I'm not entirely sure on that.  To the 3rd problem, I've implemented a little script and put a taskflow associated to it in menumaker.  I've toned this down a bit so I may have missed something in the syntax, in my implementation, I also removed the records of the suspense mapping to help push the user to fix them on a timely basis and added some error trapping.  This was done by changing select * to delete * from tDatamap.
        strSQL = "Select * from tDatamap "
        strSQL = strSQL & "Where SrcDesc = 'Auto Map Suspense'"
        Set rs = DW.DataAccess.farsKeySet(strSQL)
        If Not rs.bof And Not rs.eof Then
            Do Until rs.eof
                lngCounter = lngCounter + 1
                strProblem = strProblem & rs.fields("srcKey") & vbcrlf
                rs.movenext
            Loop
        rs.close
        Set rs = Nothing
            RES.PlngActionType = 2                '(See Enumeration: ScriptActionTypes)
            RES.PstrActionValue = "The Following were the suspense Maps" & vbcrlf & strProblem
    End Sub
    Regards
    JTF

  • Multiple flat file in and multiple target tables

    Hi,
    How can we have multiple flat file into multiple targets.
    I am trying to load data from multiple flat files into respective tables. But it gives error like
    VLD-2411: Cannot handle two file structures
    Make sure that only one file structure is used in a SQL*Loader map
    Can anyone help.
    Regards
    Rakesh Kumar

    I donot thing in one mapping you can take multiple sqlloader file.
    If want to load data form multiple file use External table.

  • Multiple Target from an XML file problem

    I've an XLM file from which I import (using a pluggable mapping generated from xml_etl_ulils) data into a table.
    I need to execute some controls and log errors on these data.
    I created a splitter to split correct data (and put them into the table) and bad data (to log).
    However the generated mapping goes into an error because it tries to read 2 times the same XML data.
    The only way I found is to put all data (good and bad) into a temporary table and then apply the splitter to move data from that table to the targets.
    However that is not a clean solution because I need to have and manage 2 tables for each real table.
    Any clever suggestion ?
    Tks
    Tullio

    What is the exact error you get (what db version also), could you post a simplified version of the SQL which fails also? I have splitter based maps that successfully read from file via the XMLType(bfilename....) style code and insert into multiple targets, I did this on 11g though.
    Cheers
    David

  • Multiple target messages

    Hello,
    for our business process, we need to map a single source message to multiple target messages (of different message types).
    The (ABAP)mapping takes care of this mapping, so I put a transformation step after my receiver step, that invokes this mapping.
    What do I have to define after the transformation step: do I use a fork or a send-for-each-block or ... ? Since we're on SP15, can we use the "extended" option in the interface determination to facilitate our process ?
    Thanks for your answers !
    Kind regards,
    Frederik

    Hi,
    What is the SP that you are using. If it is XI 3.0 and SP less than 14 then it is not possible. You need to use Abstract interface.
    And why do you need Multimapping in the first place. You can do a simple mapping and in the receiver determination you can add more Business Server/System. Each Service/System you will have seprate IB interface and a separate Interface mapping.
    Hope this solves your problem.
    Thanks,
    Prakash

  • Multiple Target Files as the number of times Item in source node

    Hi all
    I am new XI ,my scenario is File to File and my data type structures for source and target are as follows 
    Data type for source
    Source     
         Header      1:unbound
             Org       1:unbound
    In declaration of target data type occurrence of all child nodes are 1:unbounded. And I have used it in Message type and in message mapping for my target message type occurrence is showing as 1:1.
    My objective is to replicate this entire Target as the no of times the Item is occurring in source  ie for multiple items in source I want multiple target files. For this I have mapped item node of source to Target(parent node). But in mapping test it is only displaying one Target structure for multiple nodes in source. Please Help me in solving this issue

    Hi Satish,
    Use Multi Mappings :
    When you create message mapping change the occurence of target from 1 to unbounded. This will allow you to create multiple target structures.
    Then map them accordingly as per your need and you can see multiple output in test.
    Just you have to be more focused on the context and for that you have to go thro' the mapping documents.
    Search related documents on SDN and go thro' them.
    Regards,
    Shri

  • Multiple Target files as the item in source file

    Hi all ,
    I am new XI ,my scenario is File to File and my data type structures for source and target are as follows 
    _Data type for source:     _               
    Source
          Header     1:unbound                     
              org       1:unbound
              order     1:unbound
          Item             1:unbound    
               itemno   1:unbound
               matno   1:unbound
    Data type for Target
    Target
         org          1:unbound
         order        1:unbound
        itemno      1:unbound
       matno         1:unbound
    In declaration of target data type occurrence of all child nodes are 1:unbounded. And I have used it in Message type and in message mapping for my target message type occurrence is showing as 1:1.
    My objective is to replicate this entire Target as the no of times the Item is occurring in source  ie for multiple items in source I want multiple target files. For this I have mapped item node of source to Target(parent node). But in mapping test it is only displaying one Target structure for multiple nodes in source. Please Help me in solving this issue .
    Full Points will be awarded
    Thanks & Regards
    Satish.

    Hi,
    If you want multiple Targerts you need to use UseOneAsMany.
    check below link
    http://help.sap.com/saphelp_nw70/helpdata/en/38/85b142fa26c811e10000000a1550b0/content.htm
    Thanks,
    RamuV

  • 1 Success Caption for Multiple Targets in a Drag and Drop Interaction

    I see how I can add success captions to each target in a drag and drop interaction, but can you apply only 1 success caption multiple targets?

    The boundaries of smartshapes were overlapping with each other. For example, the smartshape on 1st line was overlapping with the one on 2nd line. Due to this, every time you place the text caption "Investment" on the smartshape on 2nd line, it automatically moved to the smartshape on 1st line. As a result, you could never get the answer right, and hence you never saw the Success Caption.
    Solution: Move the smartshapes away from each other (or resize them), and ensure that there are no overlaps.
    2,  The number of attempts for this interaction was set to Infinite. So, you have to play this until you get it right, but you could not get it right because of the reasons mention above. That is why you never saw the Failure Caption.
    Solution: Clear the Infinite check box in the Action accordion and specify the required number of attempts. You will get the Failure Caption if you don't get it right in those attempts.
    I just tested these solutions and they worked fine. Let me know if you still face any issues.

  • Multiple target dn's in one ACI?

    Is it possible to put multiple targets in one aci? This is for an anonymous access ACI that I want to only allow certain ou's to be seen anonymously, but want to keep some others hidden. I tried just doing || 's in between dn's just like you would do targetattr's but that didn't work. I could do this with separate ACI's but it would be much simpler if I could do it with one.
    BTW this is running on DSEE 6.3, if that matters.
    Thanks in advance!!!
    Matt
    Edited by: keesor on Jun 26, 2008 7:57 AM

    I've been thinking about this issue since your original post.. I was wondering if it'd be possible to use macro ACIs to implement this...
    For example, you could create an objectClass called "publicOU" and assign it to your OUs you want to be public. Then, you could use an ACI like this (heavily borrowed from the DS 6.2 documentation):
    aci: (targetattr="*")
    (targetfilter=(objectClass=publicOU))(version 3.0;
    acl "Allow Public OUs to be visible"; allow (read,search) userdn=
    "ldap:///anyone";)
    There may be more elegant ways to do this, but I think it would work...

  • OEM12c Job - Run a SQL Script from a central location against multiple targets

    Hi All:
    I need to execute a SQL script that can be run as OEM Job against multiple targets from a single location so that the output csv files are all in that central location. My problem is that the sql script job documentation says "Make sure that the script file is installed in the appropriate location on all targets". Is anyone aware of a way I can do this so that the SQl script is executed from a location on my OMS console?
    Cheers

    Hi
    Create SQL job to run against on the server. Save those results (csv) file in local target. And crete one OS job, to collect all csv files into your OMS Console.
    Regards
    Krishnan

  • In xcode i deleted my default.png file and know my app says 0 target and missing base sdk how can i fix this please

    please help mw fix my app i deleted my default .png file the one that displays an image when u first run the the and after i deleted my app wont run and says at the very top 0 target , missing base sdk. how can i fix this please help.

    hello , i did exactly the same thing , and my app store icon look like this :
    http://i.imgur.com/FIrph.png
    so can you tell me how did your friend send the app store for you? please

  • Server 2012 R2 iSCSI Target - Multiple targets per iSCSI Virtual Disk with CHAP

    Scenario I am trying to achieve is this:
    Windows Server 2012 R2 serves as iSCSI Target configured to have 1 iSCSI Virtual Disk
    2 Hyper-V servers connecting to this target with iSCSI Inistator and have multiple targets for that iSCSI Virtual Disk using CHAP
    **These 2 are nodes in fail over cluster, this iSCSI is added as a CSV.
    Issue that I have, is that you can only have 1 target per iSCSI Virtual Disk
    Both Hyper-V servers can connect to this LUN without issue when I add both initiator IDs to the target, but once I enable CHAP, you can only put one initiator ID in the "Name" field, so I can only connect from 1 Hyper-V server.
    Do you know of a way around this?

    From my understanding, "chaptest" is a single target, my goal was to make 2 targets to the same iSCSI virtual disk.
    So if you were to right click the iSCSI virtual disk that "chaptest" is assigned to and click "Assign iSCSI Veritual Disk...", then select "New iSCSI Target, and proceed with the wizard it removes the "chaptest" target
    and adds the new one just created.
    My goal was to have 2 targets to 1 iSCSI VD, but seeing your screenshot, with 2 initiators connected, that goal doesn't seem needed anymore.
    I was under the impression that the "User name" = the iscsi initiator IQN name, which had to be unique. That is why I thought I would need 2 targets.
    Thanks

Maybe you are looking for

  • I was given a 2010 17" MacBook Pro. I want to reset it to new and then migrate only SOME of my data from my older Mac Book Pro to the newer one. How?

    A friend gave me a 17" MacBook Pro used for only one project. (Lucky me) I want to reset/register the laptop as new and need to know how to do that. THEN... I need to migrate data from my older Macbook Pro to the newer one. I don't want to migrate al

  • Does creative care about it customers

    It would appear that Creative does not care that most customers do not have any idea about the firmware to player issue. No referance material or software is included with the Zen micro. The website has little if any instruction. I have spent, to dat

  • Macbook Pro to HDtv problems

    Hi, I have a macbook pro from 2009 (1st aluminum body). I recently got a samsung HDTV, and when I hook it up to my macbook, sometimes certain programs come up in a distored, unviewable form. It is hard to describe, it looks sort of like a photo negat

  • Change in system property

    Hi, I want to know if I set a system property "-Dweblogic.ThreadPoolSize", how will the WLS get to know that the pool size has been changed, at run time? E.g. I pass -Dweblogic.ThreadPoolSize=30 from the command-line. Then if I change the pool size t

  • Exception in thread "main" Unsupported major.minor version 50.0

    When i type javac <program name>.java it compiles. But when i type java <program name> i get this error: Exception in thread "main" java.lang.UnsupportedClassVersionError <Unsupportedmajor.minor version 50.0> I type javac -version. I get 1.6.0_07. I