Source paths with same folder name ?

Hello Forum
I am using Flex Builder 3 to build an actionscript application.  I have added a few external packages that I use on a regular basis on a separate location on the harddrive so that in the future multiple apps ideally could reference to them.  Now the problem is that my current project sits in a 'com.projectname' folder and one of the external packages also has a 'com' folder.  FB seems to get confused and doesn't recognize the latter after I've added the source path in the project properties menu (under Actionscript Build Path).
Any insight appreciated.
Thank you.
sk

If you could replicate the issue with a "minimal" application and share the code, an answer should be fairly easy to provide.

Similar Messages

  • Confusion of aliases made for two SMB shares with same folder name

    I have a SMB file server here which provides me with a Departmental personal home filestore and also a Departmental personal web filestore. The name of the folder is the same in each case - my Departmental user name. If I check the Finder Preference 'Show these items on the desktop' for 'Connected servers', I can use the Finder's 'Connect to Server' for each - smb://webhome/john and smb://home/john - to make each of them appear on my desktop as 'john'.
    It's rather confusing to have to remember that (say) the upper 'john' is my home filestore and the lower one is my web filestore, so I use Finder 'Make Alias' (e.g. via right click on each when selected') to create two aliases I can name 'web john' and 'home john'.
    Alas, each alias always points to the same (apparently randomly selected) share!
    This looks like a bug to me. I've tried unchecking the Finder 'Connected servers' preference, and then the shares appear under folder 'SHARE' - where I cannot create any aliases at all; I get the error message 'Operation could not be completed (Error -8058)'.
    Reader, do you know of a work-around which will let me distinguish on my desktop between my two identically-named folders from different shares? Alas, I have no power to change the names of the original folders.
    John A. Murdie

    +It's rather confusing to have to remember that (say) the upper 'john' is my home filestore and the lower one is my web filestore, so I use Finder 'Make Alias' (e.g. via right click on each when selected') to create two aliases I can name 'web john' and 'home john'.+
    I should have said that one cannot rename the share icons in the usual way. Not being able to do this is the real bug here. If I'd been able to do this I wouldn't have need to try to create aliases, of course.
    John A. Murdie

  • How to import my photos to Photos libray with the same folder name?

    how to import my photos to Photos libray with the same folder name?

    You can import  a folder of photos to the Photos.app by dragging the folder onto the Photos icon in the Dock. That will open an Import panel, and you can select to import all photos from the folder. But the folder name will be lost.
    The photos will appear in the "Last Import" album. Select them all in the Last Import and create a new album with the folder name (fFile > New Album).

  • Multiple Infoobject with same technical name

    Hi All,
    I have a very basic question which confuses me a lot.
    I have installed a BI content info cube 0SD_C03(Sales overview) and it is installed in Info Area -  ERP Analytics -->sales and distribution analyses. I checked the dimensions of it and 0customer( master data attr) is linked as a dimension. I created a copy of 0SD_C03 and the new Infocube name is ZSD_C03_T. It also has the same 0customer master data attr as a dimension(obviously!).
    Now both the infocubes have different technical name(0SD_C03 and ZSD_C03_T) since they will be storing different sets of data(lets say). but the technical name of the master data (0CUSTOMER) is the same for both cubes.
    ques 1: Is it since its a master data and contains the same set of master data for both the cubes, it has the same technical name?
    If I search the Info provider section for "0CUSTOMER", i get two entries: One within my info area and another within another info area. And also i can keep doing (Right click Info area--> Insert Characteristic as Infoprovider) on every other info area and insert 0CUSTOMER in every other info area.
    ques 2: does all the 0CUSTOMER in different info areas, actually contain the same set of data?
    ques 3: if i search for 0CUSTOMER in InfoObjects section, i get 5 entries in different infoareas. How can there  be diffferent Infoobject with same technical name be present in different info areas?
    Sorry if i am too elaborate, I hope i have made my questions clear.

    Hi,
    ques 1: Is it since its a master data and contains the same set of master data for both the cubes, it has the same technical name?
    A. same 0CUSTMER you can use the different places it holds same data.
        source is the 0CUST_ATTR -> target is 0CUSTOMER.
    ques 2: does all the 0CUSTOMER in different info areas, actually contain the same set of data?
    A. it will contain the same set of data.
        it has the overwrite function.
    ques 3: if i search for 0CUSTOMER in InfoObjects section, i get 5 entries in different infoareas. How can there  be diffferent Infoobject with same technical name be present in different info areas?
    A. you triggered the 5 times for specif DTP means you will 5 entries for different info areas.
    finally i will say you use the 0CUSTOMER no of places where you required and no need to create the ZCUSTOMER.
    Thanks,
    Phani.

  • How To Create Table View With Same Column name But Different Table?

    Hi All,
    I have the problem to create a tableview with same column name but in different table.
    The Table that i have:-
    Table - PAC051MPROFORMA
    Column - mrn,visitid
    Table - PAC051TPROFORMA
    Column - mrn,visitid
    Table - PAC052MTRANSBILL
    Column - mrn,visitid
    Then i want to create a table view to view that table. This is my SQL
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
    As Select PAC051MPROFORMA.mrn,PAC051MPROFORMA.visitid,PAC051TPROFORMA.mrn,PAC051TPROFORMA.visitid,PAC052MTRANSBILL.mrn,PAC052MTRANSBILL.visitid
    where
    *(a.PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)*
    and
    *(a.PAC051TPROFORMA.mrn=PAC052TRANSBILL.mrn)*
    That SQL Return this error = ORA-00957: duplicate column name
    Then I modify that SQL to
    CREATE VIEW pacviewproforma (mrn,visitid)
    As Select PAC051MPROFORMA.mrn,PAC051MPROFORMA.visitid,PAC051TPROFORMA.mrn,PAC051TPROFORMA.visitid,PAC052MTRANSBILL.mrn,PAC052MTRANSBILL.visitid
    where
    *(a.PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)*
    and
    *(a.PAC051TPROFORMA.mrn=PAC052TRANSBILL.mrn)*
    This time this error return = ORA-01730: invalid number of column names specified
    What should i do?
    Thanks...

    Hi,
    SQL> CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
    10  where
    11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
    12  and
    13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
    ERROR at line 1:
    ORA-00957: duplicate column namePlease give different names to each column.
    Something like this..
    SQL> CREATE OR REPLACE VIEW pacviewproforma (MPROFORMA_mrn,MPROFORMA_visitid,TPROFORMA_mrn,TPROFORMA
    _visitid,MTRANSBILL_mrn,MTRANSBILL_visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
    10  where
    11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
    12  and
    13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    View created.
    SQL> DESC  pacviewproforma;
    Name                                      Null?    Type
    MPROFORMA_MRN                                      NUMBER
    MPROFORMA_VISITID                                  NUMBER
    TPROFORMA_MRN                                      NUMBER
    TPROFORMA_VISITID                                  NUMBER
    MTRANSBILL_MRN                                     NUMBER
    MTRANSBILL_VISITID                                 NUMBER
    ORA-01730: invalid number of column names specifiedThe list of column nmae you specified during the CREATE VIEW should match with the SELECT list of the view.
    Twinkle

  • Two query with same technical name in Quality

    Hi experts,
    I have two queries in Quality with same technical name. I used the program RENAME_DUPLICATE_ELEMENTS to rename the query and its renaming the latest query instead of the old Query. I am in BI 7.0 system and cant find a note that applies to BI 7.0. There are quite a few notes on 3.x system. Has somebody faced the same problem. What did you do. If there is a note for bi 7.0, please let me know so i can resolve with the Basis team.

    We had similar issues - this happens when you create a query locally and then transport the same.
    The queries have an internal GUID which is generated locally and this causes duplicates.
    You can :
    1. Delete queries using the GUIDS ( you can find this in RZCOMPDIR or RSRREPDIR tables ) using RZDELETE to delete queries.
    identify your older version query and then delete the same and you should be good to go...
    also try identifying the same using program
    ANALYZE_RSZ_TABLES

  • How to get two fields with same tech name in LIS Extractors?

    Hi Experts,
    I need "ERDAT" field from two structures (QMSM & QMFE) in 2LIS_18_IOTASK extractor.
    In LBWE first I moved ERDAT from QMSM. When I moved ERDAT from QMFE it gives an error:
    "Field with same technical name is already available in the Extract Structure".
    I don't want to create Append Structure as we need to write User exit.
    Can any one tell me how to get this field added in the extractor from QMSM and QMFE?
    Thanks for your help.
    Regards,
    Sree

    this is not possible as the all those fields are put in one structure. per definition you can't put the same field name twice in a structure, table in the data dictionary...
    hence, you really need to use an append and fill via user exit
    M.

  • How can OIM provision users with same Display Name in AD?

    I can create users with same First Name, Middle Name and Last Name (same Display Name) in OIM if they have different UserId.
    But I can not provision two users with same Display Name to one Organization Unit in AD, the resource provisioning shows
    Status: Rejected
    Response: AD user already exists
    Can AD be configured to create users with same Display Name (different UserId) in one OU, or would I have to create logic in OIM to modify the display name so it gets accepted by AD?
    Thanks!

    Thanks Nitesh. Also, I can create the user with same DN in different OU's, not in same OU.
    I agree once we determine that same cn exists in one OU , I can modify the display name by appending a number at the end or something. I understand the logic but I need more details on how to specify this logic in the pre-pop adapter, can you please share more details.
    Thanks a lot!

  • Recreate skype user with same skype name ?

    I just deleted 21 skype users, by mistake, in Business Manager, is it possible to recreate them with same skype name ?
    /Claus

    Hi again,
    Hope this helps.
    alias_maps = hash:/etc/postfix/aliases,hash:/var/mailman/data/aliases
    always_bcc =
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-mailtransport:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    inet_interfaces = all
    luser_relay =
    mail_owner = postfix
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains =
    messagesizelimit = 10240000
    mydestination = $myhostname,localhost.$mydomain,localhost,apm.pt,onlearn.apm.pt,ml.apm.pt,xserv e.apm.pt
    mydomain = apm.pt
    mydomain_fallback = localhost
    myhostname = mail.apm.pt
    mynetworks = 127.0.0.1/32,195.23.139.104/29
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    ownerrequestspecial = no
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    recipient_delimiter = +
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = postdrop
    smtpdclientrestrictions = hash:/etc/postfix/smtpdreject
    smtpddelayreject = yes
    smtpdenforcetls = no
    smtpdhelorequired = yes
    smtpdhelorestrictions = permitsasl_authenticated,permitmynetworks, checkheloaccess hash:/etc/postfix/heloaccess,reject_non_fqdn_hostname,reject_invalidhostname,permit
    smtpdpw_server_securityoptions = login
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdsenderrestrictions = permitsasl_authenticated,permit_mynetworks,reject_non_fqdn_sender,reject_unknown_sende rdomain,permit
    smtpdtlsCAfile =
    smtpdtls_certfile =
    smtpdtls_keyfile = $smtpdtls_certfile
    smtpdtlsloglevel = 0
    smtpduse_pwserver = yes
    smtpdusetls = no
    unknownlocal_recipient_rejectcode = 550
    virtualaliasmaps = hash:/var/mailman/data/virtual-mailman
    João.

  • Copying contents between hard drives with the same folder names erases data

    I have Final Cut Pro assets stored in two hard drives. I was attempting to consolidate them into a single directory on one of the two hard drives. I did this by dragging and dropping the contents of one folder into the equivalent folder on the destination hard drive, meaning that several folder names were shared between the two directories.
    In Windows, the only contents that would be overwritten are files and folders who share the exact same relative name during the copy procedure. However, OS X appears to have erased the entire contents of the destination folder in favor of the contents of the source folder.
    Time Machine is not enabled: Not enough hard drive space to store everything twice.
    Is this by design? Am I missing something? Is my data recoverable by means that would not cost me several hundreds of dollars? On a scale of 1 to screwed, am I screwed?
    Message was edited by: NuclearBastard

    Seems like you did not select the content but the folder itself. Let's say you're copying from folder A to B. To only overwrite stuff in folder B with the same name while keeping other files & folders, you need to go inside folder A and select the content. If you do select folder A itself, it will completely replace folder B. This is normal behaviour and I'm sure it's the same with other operating systems like Windows.
    This behaviour, of course, applies also to any subfolders within A & B, so you can't just use the Finder for such a +merge operation+. I'm not 100% sure, but since you were overwriting a lot of stuff, I'd say you're screwed and your data is gone, sorry.
    To avoid things like that in the future, you might want to use software which has the ability to synchronize file structures. In Terminal you can use ditto for that, but there are several GUI apps out there, too. Just search http://www.versiontracker.com for merge or synchronize and you should find something.
    Björn

  • Files with same file name in IFS

    Hi,
    Does anyone know if, as IFS uses a "reference model files system", it is possible to store in the database 2 files with the same name (I'm talking to unfoldered files, but I suppose it will be the same for foldered files). If yes, how can I make the difference between the two files using the java api ?
    Thanks in advance,
    Roger.

    Of course Yes, it's not a problem to store two files with the same file name... but they can't be foldered in the same folder.

  • Positions mass move with same position name?

    Hi All,
    1) Is there any direct way to change Organization of a Position?
    We tried performing Mass move between the organizations with the same source and target position names. But we faced the issue - 'The target position already exists outside the target organization' since the same position cannot exist in 2 organizations.
    2) We tried a changing the position name to a temporary name and then performed mass move between the orgs from the temporary position to original position. This worked to some extent - The position and the assignments having this position got updated correctly, but the position hierarchy still shows up the Temporary position name.
    Is there any solution for our issue 1? or any approach for issue 2?
    Application version is 12.1.2.
    Many Thanks in advance!

    In Oracle HRMS Positions have very strict criteria.
    1. They have to be unique within a BG. Hence you cannot have two positions with same name inside one BG even if they are in different Organizations.
    2. You cannot change the job or Organization of a position once created.
    and so on..
    what you are trying to do here violates the basic definition of position in HRMS. You will not be able to change the organization of a position and treat it as the same old position. This is functionally not correct.
    In such cases, the best approach is to have a segment for the position KFF holding the short name for the organization it belongs to. Thus whenever you want to change the organization of the position, what you actually do is create a new position, since one of the segment values changes in the position definition.
    Coming to the approaches you have tried:
    1. Mass move cannot circumvent the basic tenet of HRMS position to allow you create new position with same name but different organization. Hence this approach will not help at all.
    2. I am not sure how this happens. But as discussed above changing organization of a position will definitely cause issues somewhere or the other.

  • Downloads with same file name override each other

    This happens with large files and/or slow connection.
    - The default limit is loading 2 files at a time.
    - Suppose the user is currently loading A.txt and B.txt
    - While loading, user also clicks http://url1/C.txt and http://url2/C.txt (different URL but same name), and they are added to the queue.
    - Firefox loads both of them into a single file, they should be separated instead (C.txt and C-1.txt)

    Celtic Mom
    Welcome to the Apple user to user discussion forums
    While I was organizing my photos, I realized there are about 30 or so photos that have the same exact file name as another photo. Example: There are two IMG_1243.jpg, but they are different pictures. They were taken at different times, even different years. I have used more than one camera to import photos. I have changed the name of one of the photos in the Title area in the information section of iPhoto. When I try to put the newly named photo into a folder that has the other IMG_1243, I get a message that says" An older item named "IMG_1243" already exists. Do you want to replace it with the newer one you are moving?"
    I want to have both IMG_1243.jpg photos in the same folder. How can I do this? Also, I have a few thousand pictures, so how can I tell exactly how many photos have the same file name as another photo?
    It sounds like you are using the finder inside the iPhoto library - do not do that - you will corrupt your library and lose the edits, keywords, etc that you have
    iPhoto does not care about duplicate file names - it handles it fine
    changing the title of a photo does not affect the file name - although when you export the photo you can use the title for the file name as an option
    What are you doing and what do you want to accomplish?
    Remember do not ever make any changes in the iPhoto library using the finder or any other program
    LN

  • Extremely annoying problem with user folder name in windows 8.1

    Here is the thing:
    Friend of mine bought the laptop (very strong and expensive asus - republic of gamers) with installed windows 8.1 on it, but after a few days only I bought that computer from him because he didn't need it and he didn't use it at all!
    But, his name stayed in the windows. I changed all user accounts names and everything which was possible to be changed, but when i go to C/users his name is still there on folder!
    I can say it is very annoying because that laptop cost almost 3.000  USD and I still need to look at someone else's  name in my user folder!
    I tried to change "ProfileImagePath" in: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\ .... but after that windows logged in as a temporary profile and I spend another hour to figure out
    how to reverse the thing!
    How is possible that some so basic and simple things can't be changed at all in newest windows??? Only because some name was entered first it's not possible to be changed ever again???? Seriously?
    Not only this problem, there is too many problems with this windows 8.1! Too many! You definitely made  the worst thing ever!
    I am extremely unhappy and upset with this operative system! I,m cursing the day when i gave so much money for computer with crap called windows 8.1!!!!
    Very very angry!!!
    (P.S English is not my native language)

    Hi,
    According to your description, it seems that you have resolve that issue.
    Not only this problem, there is too many problems with this windows 8.1! Too many! You definitely made  the worst thing ever!
    Please let us know what problem did you encounter? Please give us more detailed information in order to provide the further help.
    Here is a overall guide for you to know well the Windows 8.1
    Windows 8.1: frequently asked questions
    No Karen, I didn't resolve the issue.
    I asked very simple question how to change something so basic like user folder name in Windows 8.1
    You know:  "C:/Users/"user name"
    All the links you are giving to me doesn't provide any concrete answer to this question. I spent hours and hours googling and researching about this question and only solution which i found is that i need to create completely new user account and delete completely
    the old one, just to be able to remove an old name of user folder! Are you kidding me?
    How is possible that such a basic thing is so complicated?
    Is there any way to change folder user name in any other way because i don't want to create a new user account!
    Simple question, but, like always, no any concrete answers - just some empty talks, and totally useless links and SPINNING IN THE CIRCLE all the time without the CONCRETE solution.
    As for part of my post which you quoted, and your request for more informations in order to provide me further help, i just gave it to you again. I want to change user folder name. What you don't understand in that question?
    UPDATE:
    Ok, i came back to edit this post because i have a feeling that maybe you don't understand the question and giving me this link because maybe you simply don't know that when you go to:
    Control panel/user accounts/change your account name... and change the name, and after that, when you go to C:/users, the folder with the user name still have an old user name. Which means that any changes in control panel or anywhere else doesn't make any
    changes on C:/users/  folder itself!!!!!
    In previous windows versions was possible to change it by editing "ProfileImagePath" in:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\ ....
    But when I try to do that in Windows 8.1, when I reboot computer it logs in with some temporary account, so i need to reverse everything to be able to use computer with the real account!
    So basically it seems that is absolutely impossible to change user folder name in Windows 8.1, which is simply unbelievable!
    I really think i explained very good now.

  • Individual report path with defined file name from the report settings in Testsand 2012

    Hi,
    I have following task:
    I want to test stand 2012 in each sequence to change the path of the report file. But the naming of the file is to be maintained as these settings can be made from TestStand into the report (DisplayName + _Report_ [<FileDate>] [<FileTime>] <unique>. <File Extension). I can not find now, however, the / callback parameter on which the components are assembled path and file in TestStand.
    While I can read about the callback "GetReportFilePath" the path and file name, and with the expression: Parameters.ReportFilePath = "c: \ \ electro \ \ SHARE \ \ test protocols \ \ Test Logs \ \" change the path, but the file name will no longer be formed from the settings of TestStand.
    I have the suspicion that I'm just not accreting at the right place. Can someone please give me a hint?
    greeting Michael
    Greetings Michael

    See Oracle Metalink,
    ..Oracle Portal Technical Forum,
    ....Subject: PORTAL - uploading files (file attachments) with file names.
    This message thread outlines javascript code that automatically captures the filename during an upload.

Maybe you are looking for

  • No sound from Vision box when using HDMI

    I have my Vision box coupled to my Yamaha AV amp by HDMI cable. When switching the Yamaha inputs to the Vision box I get no sound . If I switch the box off and back on again then all is OK. Does anyone have any ideas. I have  a Humax freesat bos also

  • How do I replace a file that I have a link to?

    My site contains a link to a "printer-fiendly PDF", and it works fine, but now I need to update the file that it links to.  And I don't want the old version of the file to exist anymore.  Is there any way to delete that file from MobileMe? David

  • Like and ||

    I am writing query like select * from emp where dname = 'marketing' works fine  but besise  dname  marketing  I have marketing 2 and marketing3 so I thought  I can write  select * from emp where  dname like 'marketing%'  but it work in sql environmen

  • ALV problem with zeros

    Hi guys,    I have a problem in ALV. There is character field which is company code , whenever the value is '000'or 010' it is displaying as '0' or '10'. can you please help me on this. here is the field catelog for this... it is really urgent. CLEAR

  • IAd Producer download Access Denied

    I have a iOS developer account and i want to download the iAd Producer but it keeps telling me Access Denied. And i cant find any refrence how and why i cant download it. Any tips/links?