Working Set definition location?

What file contains Working Set definitions in 10.1.3? I have a set of files that I want to define as a Working Set in the System Navigator, but there are enough of them spread out throughout my project that I don't want to have to add them to the Working Set one at a time - I was hoping to define them via a config file or such w/ JDev closed (I have the list of files in a text file). I cannot for the life of me find a file that contains the name of a Working Set that I've created, however - not in my .jws, not in my .jpr, not in my source tree and not anywhere in my JDev installation directory (I'm still using 10.1.3 EA at the moment). This info has to live somewhere...
Thanks!
Jim

What file contains Working Set definitions in 10.1.3? I have a set of files that I want to define as a Working Set in the System Navigator, but there are enough of them spread out throughout my project that I don't want to have to add them to the Working Set one at a time - I was hoping to define them via a config file or such w/ JDev closed (I have the list of files in a text file). I cannot for the life of me find a file that contains the name of a Working Set that I've created, however - not in my .jws, not in my .jpr, not in my source tree and not anywhere in my JDev installation directory (I'm still using 10.1.3 EA at the moment). This info has to live somewhere...
Thanks!
Jim

Similar Messages

  • SD Set top box not working in one location. Just displays 4 dashes in place of the time.

    At first this Motorola STB just had the lower third program info displayed and no video from the channel itself and in place of that was a screen that said "This channel not available" this on all channels; then screen went blank. I tried a working STB from another bedroom in place of this one and it did not work at this location either. So am not sure what is going on. Any help appreciated, thanks.
    Solved!
    Go to Solution.

    bozey45 wrote:
    At first this Motorola STB just had the lower third program info displayed and no video from the channel itself and in place of that was a screen that said "This channel not available" this on all channels; then screen went blank. I tried a working STB from another bedroom in place of this one and it did not work at this location either. So am not sure what is going on. Any help appreciated, thanks.
    Sounds like a bad cable.  If you have a splitter at the bad location, try removing it.  I would also try the suspect box in the working location to confirm both boxes are good. Then you have to decide if you want to try fixing the cable yourself or pay Verizon to do it.

  • How can i set the location of my pictures in photos app for mac osx?

    Not every photo I import into my MacBook have all the metadata in them. iPhoto allowed for setting the location, but in Photos I cannot manage to do so. Is there another way to do it or perhaps it's coming with an update?
    Thanks
    MacBook Mid-2010
    OSX Yosemite 10.10.3
    Photos 1.0

    Adding location data is not yet supported in Photos.
    And we do not know, if future updates will  support this feature. It might help, if you send back feedback to Apple with a feature request. You can use this form:  Apple - Photos - Feedback
    As a work-around, use third party apps to add location data before you import the photos to Photos.
    You could, for example, first import to iPhoto, add the locations, batch change the titles and captions, do all the things that are not yet supported in the new Photos, then export the photos from iPhoto and import them to Photos.
    Or use the free exiftool, if you like the Terminal.
    See:  http://www.sno.phy.queensu.ca/~phil/exiftool/exiftool_pod.html#geotagging_exampl es
    To install exiftool: http://www.sno.phy.queensu.ca/%7Ephil/exiftool/install.html
    Other convenient apps are Jetphoto Studio, Geotagalog, there are many more ..
    I use Jetphoto Studio, but it is not free.

  • Crystal 8.5! Set table locations at run time to queries

    Hopefully some people still remember version 8.5...
    I have a number of reports which all work from a single database, this can be either Access or SQL Server, I'm currently testing on Access. I would like to use the same reports but print them for multiple databases, all of which have the same schema. To do this I'm creating UNION queries in one of the databases and I now want to change the location of the tables in the report to use these union queries instead.
    For example, say the report uses table "Customer" in db1 but I have also have db2 and db3 with the same table, I'm enumerating all fields used in the report and creating a union in db1 something like:
    SELECT field1, field2 FROM Customer IN 'db1.mdb'
    UNION SELECT field1, field2 FROM Customer IN 'db2.mdb'
    UNION SELECT field1, field2 FROM Customer IN 'db3.mdb'
    Now I've tested this in Crystal Reports itself, i.e. setting the location to the new tables, and it works OK. I'm having to use an OLEDB connection otherwise the links get removed. When I try to set the location in code I just get no data on the report even though there is data available.
    In code I'm going through all tables (and all tables in all sub reports) and I've tried setting the Location property to the name of the union, I've tried SetTableLocation "<path to db>", "<union name>" and I've tried both using SetLogOnInfo "<path to db>" as well.
    I'm thinking perhaps converting the report to active data and plugging in an ADO recordset could be a solution but I'm not sure how feasible that is from code (i.e. converting the database driver from either pdsoledb.dll or pdbdao.dll to pdsmon.dll and creating a ttx on the fly...).
    Any help much appreciated.

    Hi,
    SetTableLocation should work but you need to make sure you call it for each of the tables in the report or in this case the Union. 
    Just like in the report designer when you set the location you need to point to the table you want to change.  Even though you get the prompt asking to set the same location for all the tables, it's doing the same thing for you. 
    Hope this helps,
    Brian

  • How to set database location for stored procedure

    Post Author: Pavel
    CA Forum: Data Connectivity and SQL
    I've already found out that setting location is not only my problem, but I can't understand the correct decision. We using CR to create reports, accessing the data in MSSQL by ODBC.
    Previously (up to version 8) I set location directly, editing the "Table" field in "Set Location" form. Command after report creation was:
    Proc(DBNAME.dbo.PROCEDURE_NAME;1)
    I erased "DBNAME.dbo.", so the correct command was
    Proc(PROCEDURE_NAME;1)
    After that, the report can run on any database name, any ODBC datasource with any owner name of procedure.
    Now we had to upgdate to CR 11 Developer Edition.
    Here I can't erase database location. But when I change database location to ODBC datasource for another database, the properties of stored procedure "Catalog" and "Owner" remain the same as they initiated when report was created! So, when report runs, it call
    exec OLD_DB_NAME.dbo.PROCEURE_NAME;1 ....
    So, the report doesn't work on customer database, because it has different name.
    How can I erase any database location in the report?We run reports using API from Gupta Team Developer applications, may be it is possible to set database location by API before running report?
    Plese help, any tips are usefull.

    Post Author: Pavel
    CA Forum: Data Connectivity and SQL
    When I set location to another database (i.e. another ODBC datasource) by clicking Update button, "Catalog" property is not changing! It remains unaltered. I had to remove procedure from report and then add procedure from another database, so there was a lot of formatting fileds after that.
    This is not a right decision. I didn't solved current problem, I only temporary patched it.
    The correct desision is to set location programmatically from application.But function PEGetNthTableLocation returns empty strings in CR11, or I incorectly declared this function (from CR8.5):
    BOOL CRPE_API PEGetNthTableLocation ( short printJob,  //handle to print job short tableN,  //number of table struct PETableLocation FAR *location     //structure pointer);typedef struct PETableLocation {    WORD StructSize;    char Location &#91;PE_TABLE_LOCATION_LEN&#93;; //256    char SubLocation&#91;PE_TABLE_LOCATION_LEN&#93;; //256    char ConnectBuffer&#91;PE_CONNECTION_BUFFER_LEN&#93;; //512} PETableLocation;

  • Set Table Location for Reports(Command Objects)

    Hi SAP Gems,
    I would like to thank TED,Merry,Jonathan, Shawn, and all the developers contributing to this community.
    I would really appreciate any help on following question:
    1. I have a report designed in CR 2008 against DB2(JDBC Connectivity).
    2. The report is working fine in the designer.
    3. There are five sub reports in the main report.
    4. The main report doesnt have any command object however every child/sub report has command object with paramaters.
    5. Every subreport is linked.
    6. I would like to change runtime datasource location for this report using CRJ 2.0 SDK'S.( from AIX to Windows BOX)
    7. Both BOX's have same database schema.
    8. I am able to view the report in the jsp page using SDK's, however "set table location doesnt works and prompts me the error:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Unexpected database connector error---- Error code:-2147467259 Error code name:failed
    *There is no problem with the code because the sample code is taken from sdn.sap as it is and it works for other report without subreport and command objects.
    I tried using the following code piece but again same problem.
    if(table instanceof com.crystaldecisions.sdk.occa.report.data.CommandTable)
                        IProcedure command = (IProcedure)table;
                        ParameterField commandParam = (ParameterField) command.getParameters().get(0);
                        Values values = new Values();
                        ParameterFieldDiscreteValue pfdv = new ParameterFieldDiscreteValue();
                        pfdv.setValue("ANTON");
                        values.add(pfdv);
                        commandParam.setCurrentValues(values);
    I would like to know if I dont want to set the command level param using:
    ParameterField commandParam = (ParameterField) command.getParameters().get(0);
                        Values values = new Values();
                        ParameterFieldDiscreteValue pfdv = new ParameterFieldDiscreteValue();
                        pfdv.setValue("ANTON");
                        values.add(pfdv);
                        commandParam.setCurrentValues(values);
    would the parameter would be prompted automatically?
    how do I find what paramaeter to set and how ?
    Regards,
    Jonathan Roy

    Hi ,
    Can any one help please?
    Ted !! I would really appreciate an answer from you.
    Regards,
    Jon

  • Working in different locations

    My aim is to synch my work in two locations and I'm struggling! I have two set ups. The first is at my home in the UK where I have a 1TB Time Capsule in which I hold my referenced files and Aperture Library. I have another 1TB external hard drive which I hold a copy of the referenced files and a portable hard drive with a copy of the referenced files. I use an iMac and a Mac Book Pro. I have two Aperture vaults one on the external hard drive and one on the portable hard drive. The second set up is at my home in the USA where I have a 1TB external hard drive. The portable hard drive and Mac Book Pro travel with me. My theory was to copy the referenced file from my portable hard drive to my external hard drive in the USA. Create an Aperture library on my Mac Book Pro and then import the meta data and structure from my vault on the portable hard drive. When I have attempted to do this I have ended up with the correct structure but I'm unable to see the referenced files in Aperture. If I import the referenced files, leaving them in their current location, I end up with two thumbnails (one of them blank). Any help will be gratefully received.

    Although various user workarounds exist, the issue of synching your laptop Library with your desktop Library has not (yet) been addressed by Apple. IMO Apple's failure (still) to address this key issue is a travesty; Apple's single-user Filemaker has had that capability since the 1980's.
    I suggest going to "Provide Aperture Feedback" under the Aperture menu and requesting that Apple provide single-user synch capabilities for two Libraries (such as the laptop/desktop setups that you and I both have). Note that it is important to specify single-user, two-Libraries, because multi-user scenarios are entirely different solutions that - unlike single user solutions - are usually very complex and expensive.
    I ask that Aperture users with two Macs go to "Provide Aperture Feedback" under the Aperture menu and advise Apple of our need for single-user synch of two Libraries.
    Thanks!
    -Allen Wicks

  • Working set, virtual bytes and private bytes

    Hello everyone,
    I am using Windows Server 2003 Performance Counter tool to monitor the memory consumed by my process.
    The interested terms are working set, virtual bytes and private bytes. My questions are,
    1. If I want to watch the real physical memory consumed by current process, which one should I monitor?
    2. If I want to watch the physical memory + swap file consumed by current process, which one should I monitor?
    3. Any more clear description of what these terms mean? I read the help from Performance Counter tool, but still confused
    which one(s) identifies the real used physical memory, and which one(s) identifies the real used physical memory + page swap file, and which one(s) identifies the required memory (may not be really allocated either in physical memory or in swap page file).
    If there are any related learning resource about the concepts, it is appreciated if you could recommend some. :-)
    thanks in advance,
    George

    And for further benefit:
    "Virtual bytes" is the total size of the not-free virtual address space of the process. It includes private committed, mapped, physically mapped (AWE), and even reserved address spaces. 
    "Private committed" is the portion of "virtual bytes" that is private to the process (as opposed to "mapped", which may be shared between processes; this is used by default for code). This normally includes program globals,
    the stacks (hence locals), heaps, thread-local storage, etc. 
    Each process's "private committed" memory is that process's contribution to the system-wide counter called "commit charge". There are also contributions to commit charge that aren't part of any one process, such as the paged pool. 
    The backing store for "private committed" v.m. is the page file, if you have one; if you have (foolishly in my opinion) deleted your page file, then all private committed v.m., along with things like the paged pool that would normally be backed
    by the page file, has to stay in RAM at all times... no matter how long ago it's been referenced (which is why I think running without a page file is foolish). 
    The "commit limit" is the size of RAM that the OS can use (this will exclude RAM used for things like video buffers) plus the total of the current size(s) of your pagefile(s). Windows will not allow allocations of private committed address space
    (e.g. VirtualAlloc calls with the COMMIT option) that would take the commit charge above the limit. If a program tries it, Windows will try to expand the page file (hence increasing the commit limit). If this doesn't succeed (maybe because page file expansion
    is disabled, maybe because there's no free disk space to do it) then the attempt to allocate committed address space fails (e.g. the VirtualAlloc call returns with a NULL result, indicating no memory was allocated). 
    The "Working set" is not quite "the subset of virtual pages that are resident in physical memory", unless by "resident" you mean "the valid bit is set in the page table entry", meaning that no page fault will occur
    when they're referenced. But this ignores the pages on the modified and standby page lists. Pages lost from a working set go to one of these lists; if the modified list, they are written to the page file and then moved to the standby list. From there they
    may be used for other things, such as to satisfy another process's  need for pages, or (in  Vista and later) for SuperFetch. But until that happens, they still contains the data from the process they came from and are still associated with that process
    and with that processes' virtual pages. Referring to the virtual page for which the physical page is on the standby or modified list will result in a "soft" page fault that is resolved without disk I/O. Much slower than referring to a page that's
    in the working set - but much faster than having to go to disk for it. 
    So the most precise definition of "working set" is "the subset of virtual pages that can be referenced without incurring a page fault." 

  • Set Datasource Location does nothing???

    I dont get it...
    I have reports that are fed by SQL Server stored procedures.  Every now and then the developers will change some minor thing in one of the procedures (maybe a Group by or Order by change) and then rename the stored procedure.  So for example....
    USP_RPT_MYREPORT gets a minor update and gets renamed to USP_RPT_MYNEWREPORT...
    (I am over-simplifying, but you get the idea...)
    I go into Crystal Reports in Visual Studio and select the "Set Datasource Location" choice off the menu.  There, right on the darn screen that comes up it says "highlight the new datasource and click the Update button"...  I do that, and absolutely NOTHING happens, NOTHING changes, NOTHING gets updated.  I've done this about 20 times and now and every time, same thing - NOTHING happens.
    But if I go into the Database Expert, highlight my existing stored proc, and then hit "F2" to rename the alias, and set it to the new stored proc name - BING!!!  Everything works just fine.
    I looked in the Crystal documentation but of course, nothing there to illuminate whats going on with this seemingly useless "Set Datasource" selection...  So...
    What is this for?  What is it all about?  ...and why doesnt it work?
    Any help would be appreciated and sorry in advance for being frustrated - I work in Crystal...

    Thanks for the response and the attemp to help, but this cannot be quite correct - at least it does not seem so.  How do I know this?....
    Well, I have 2 stored procedures that are almost exactly alike - the only difference is the ORDER BY clause in the SQL itself (so this should have NO effect on Crystal)...
    I use the Set Datasource selection and yes, you are right, it DOES NOT change the name from my old Stored Procedure to the new one.  But if you are suggesting that it DID actually change where its pointing I dont believe you are correct because of this...
    The report itself has 3 Groups - these group headers are "tied" to the first stored procedure and even though I change the datasource (supposedly), these groups DO NOT change and thus when I run the report I get an error stating that the "Groupings do not exist"...
    In other words lets say the first stored procedure is called "SP1" and I am changing to a virtually identical stored procedure called "SP2".  Sure enough, when I use Set Datasource, the name DOES NOT change - it still says SP1...  But when I run the report the Grouping dies because nothing changed it to "SP2".  In fact, the Groups now say "???"
    What is particularly odd and frustrating about this (and also the sign of a very poorly QA'd product) is that if I go into the Database Expert and simply press "F2" and change the alias from SP1 to SP2, that seems to do the very thing that Set Datasource seems entirely unable, undesigned and unwilling to do.
    Bear in mind here that I have worked with Crystal for 3 very painful years and when any fields (columns) change in the backend SQL, I understand that it takes hours to rework the entire report - its stupid, it shouldnt take that long, but I have just accepted it with this klunky product - but when NO fields change it seems to me that should be very easy to manage and yet the only way I have found to do it is to try Set Datasource, watch it fail again and again and then use the Database Expert (and the F2 key in there) to rename the alias.
    In all the Crystal documentation I have (downloaded, and came with product) there is not one line I can find that talks about what Set Datasource is supposed to do, and should be doing.
    Anything that would make my life easier with this sometimes beastly product would be most appreciated.

  • Always have to "Set Network Location" after connec...

    I've got a Nokia 6650 phone and use Nokia Ovi Suite 2.2.1.23 to connect to the internet on my laptop running Vista.  In Ovi Suite, after I connect another dialog always pops up saying, "Set Network Location" and I'm supposed to choose "Home", "Public", or something else.
    Is there anyway to stop that "Set Network Location" dialog from popping up?  Like, can I just set a default so it uses the same "Network Location" every time or something? 
    That dialog is just annoying.
    As a 2nd, different thing, it seems like Vista "counts" how many times I've used a certain connection, and uses the count number in the name.  Like when I connect via my Nokia phone, the name of the connection will be something like, "Nokia Connection 25".  Where 25 is the count number.  Something similar happens with my wireless network at home.  The wireless network SSID at home is "Levander".  And, all my other computers (none of which are running Vista - there's some XP, Windows 7, and Linux stuff) just say they're connected to "Levander".  But, this Vista laptop right now says it's connected to "Levander 2".  It's possible that's just annoying because I don't know what that count number is there for.  Anybody know what it is?  Know how to get rid of it?
    Thanks.

    You should select Public as you have a direct connection to the internet - as offered, and check the box not to be asked again - I have the same set-up and it worked for me, after wrongly selecting home a number of times. See http://www.sevenforums.com/tutorials/43629-network-location-set-home-work-public-network.html for details.

  • How does Creative Cloud for teams work with staff who work in two locations ie in the office/home

    How does Creative Cloud from teams work with staff who work in two locations i.e. in the office and home?

    There is no difference please be aware that each login is provided with two activations however.  If you wish to have a computer at both work and home activated though that is perfectly fine as long as your employer is ok with using company software at home.

  • Working Sets not working

    Has anyone got Working Sets to work with Flash Builder 4.5 for PHP as described here:
    http://help.adobe.com/en_US/flashbuilder/using/WSc5cd04c102ae3e97bf51ac512e1410bae5-7ff6.h tml
    I created an entirely new workspace to see if that might be the issue, but it was not.
    I created a ticket.
    https://bugs.adobe.com/jira/browse/FB-31092
    Edited: Somehow the above bug either wasn't saved or got deleted.  Here is the new link: https://bugs.adobe.com/jira/browse/FB-31189

    I found a workaround.  After Flash Builder for PHP loads, close the Package Explorer that has the broken working sets.  Then open it back up by going to Window --> Show View --> Package Explorer. 

  • I have a new iPhone for work, set up on a new iTunes account (PC).  I was told i can associate it to my home iTunes account (iMac) but don't know how.  I want to save the work related apps as well.  Any advice?  Thanks

    I have a new iPhone for work, set up on a new iTunes account (PC).  I was told i can associate it to my home iTunes account (iMac) but don't know how.  I want to save the work related apps as well.  Any advice?  Thanks

    Thanks. I messed up with my husbands iphone because I was told the wrong thing. Now everytime I sync his phone it makes it look just like the other phone I had. Do you know how I can fix taht for his phone? Any settings I can turn off that will prevent all of my apps/contacts, etc from auto populating his phone?

  • VS2010 Crystal Report Crashes System when using 'Set DataSource Location..'

    Runtime ASP.NET 3.5
    VS 2010
    Under Database Fields (rt click) try Set DataSource Location... causes VS2010 to crash.
    This is on an imported report from VS2008.  VS2008 has no problem with the report.
    Since this is a ASP.NET 3.5 program the internal property field
    <ResGenToolArchitecture>Managed32Bit</ResGenToolArchitecture>
    has been set in the project in order to allow the code to compile w/out errors.
    What is solution for Crystal Report Set DataSource Location?

    Hi Ken,
    Here's one link on the issue: CRVS2010 RTM: Database Expert / External Component has thrown an exception
    The reason is Old OS's used c:\temp as the default, now you are require to use %user%\temp as your temp folder as well as using the AppData folder for your app. If CR finds c:\temp it uses it and depending on what is in there it can cause Cr to crash, XML files have been know to do this.
    Following MS's new rules on users temp folder should make your app Windows Compliant.
    Thanks again
    Don

  • How to set the location of a button  (in an applet)

    Hello
    How do i set the location of the button
    forexample if i want to create a button in the middle of the applet, how would i do that
    Thanks :)

    supahsain08 wrote:
    Well i did this
    Triangle.setLocation(50, 100);
    (where Triangle is a buton)
    it doesn't do anything, stays at the same placeIt's all about context here and there are still many unknowns here that can effect your result and that you have not told us or shown us. My suggestion to you is to consider posting an SSCCE (Short, Self Contained, Correct (Compilable), Example, a condensed program similar to your current program in that it demonstrates the problem at hand, but is the smallest bit of code that still compiles and has no extra code that's not relevant to your problem. For more info on SSCCEs please look here:
    [http://homepage1.nifty.com/algafield/sscce.html|http://homepage1.nifty.com/algafield/sscce.html]
    Also, when posting your code, please use code tags so that your code will retain its formatting and be readable. To do this, you can will need to paste already formatted code into the forum, highlight this code, and then press the "code" button at the top of the forum Message editor prior to posting the message. You may want to click on the Preview tab to make sure that your code is formatted correctly. Another way is to place the tag &#91;code] at the top of your block of code and the tag &#91;/code] at the bottom, like so:
    &#91;code]
      // your code block goes here.
      // note the differences between the tag at the top vs the bottom.
    &#91;/code]or
    {&#99;ode}
      // your code block goes here.
      // note here that the tags are the same.
    {&#99;ode}good luck, pete

Maybe you are looking for

  • ITunes does not show up on apple tv 1st gen.

    i have a 1st gen apple tv with the 160 gig HD. recently, it will not show the itunes site. Under teh movies tab there are my movies and trailers and that's it. Does anyone know how to get the itunes store back on apple tv?

  • How to pass and work with a PL/SQL or Temp table in a Procedure?

    My problem is that I have a query that involves about 10 tables or so, but everything starts from one base table. I am trying to split the base table so that the query actually finishes. Problem Query: with base_table as select * from table_a , t1 as

  • Photo Downloader doesn't retain previous settings (again)

    Please see previous post because this issue involves Photo Downloader and ACR.  I'm using 10.6.8, CS5.1 and Bridge 4.1.0.54 I have just reloaded Camera Raw 6.4.1 due to the bug in ACR 6.5 that prevents selecting a destination folder in Photo Download

  • I am having trouble with loops for my IT project

    I am not shour if this is the correct place to post my question.I am sorry if this is the wrong place. I have been given a school project to do in netbeans. Under the tab labeled "Timestable drill" I wrote code that is is supposted to output the time

  • JVM 1.4 and applet issue

    Hi, I'm new to Java so hopefully you'll be able to clear something up for me. I have had a look round, but am struggling due to my lack of Java knowledge. I have an application which passes an applet to IE. The connection is over https. With anything