Xcode project name

If I make changes in a project and want to save it under a different name, the only option in the file menu seems to be to close the project with the same name.
Is it possible to change the name of a project when it is open?

You can change the name by hightlighting the project in the Project Navigator, but I've found that you have better luck if the project isn't very complex, since there are many buried places where the original name hides.

Similar Messages

  • Soft links and xcode projects

    In other unix environments using soft links ("ln -s") is a handy way of "abstracting away" at the file system level what a file or directory actually contains, so that its contents can be easily changed without having to modify the original file or directory. In other words, if I have eg. three versions of the same file, and several projects share the usage of one of those files, I can easily change which version of the file those projects will use by simply making a softlink that points to the file I want, and make those projects depend on that softlink (they see it as a regular file). If I later want to change the file in question, I only need to change the softlink to point to another version of the file.
    This is especially useful when dealing with a third-party library that gets regular updates. I can install the third-party library somewhere, with the version number of the library in the directory name, and have a more generic directory name as a softlink (as a concrete example, I could have a softlink named "cocos2d" pointing to a directory named "cocos2d-iphone-0.99.5"). If I update the library, I can install it in a new directory (eg. "cocos2d-iphone-1.0.1") and simply change the softlink to point to the new directory, and then recompile the projects that depend on it.
    The problem is that Xcode doesn't like softlinks. I don't know if this is a feature of MacOS X in general, or a quirk in Xcode in particular. The problem is that Xcode doesn't want any softlinks in any of its paths, and instead always resolves where the softlink is really pointing to. Thus if I add, for example, the file "libraries/cocos2d/cocos2d-ios.xcodeproj" to the project, what ends up in the project is actually a reference to "libraries/cocos2d-iphone-0.99.5/cocos2d-ios.xcodeproj". Thus the whole softlink is circumvented, making it useless. If I update the library in question, I have to go through all the projects that use it and change the references to point to the new directory. This causes only needless extra work.
    This resolving of softlinks only happens when adding a new file to the xcode project. Xcode doesn't seem to change them afterwards, if they already exist in the project. In the past I could get around this problem by editing the project file directly with a text editor and forcing the path to refer to the softlink. However, all the paths in xcode 4 projects seem to be obfuscated, making this impossible. Another possibility is to rename the directory in question with the name of the softlink, then add it to the project, then restore its original name and then add the soft link.
    Is there any better way of doing this?

    Hello I have probably exact same problem with source files whereas a constant location (my softlink) points to different version of the sources in a repository. For example:
    ../MyProject/DependantProjetXyz could point to
    ../Repository/DependantProjectXyz/V1.0
    ../Repository/DependantProjectXyz/V1.1
    My xcode project is setup with ../MyProject/DependantProjetXyz which is pretty useful as I don't need to update all the include and lib path everytime I update the dependancies.
    The main problem I am facing is that if I have a compilation error in the dependancies, xcode isn't able to automatically bring me to the error. It simply open the file and position at the very first line in the file. No highlight.
    I am forced to use contextual menu on the error then reveal in the log to find the line number and manually navigate to that line. In other words, I am almost back to good old command line compilation with separate text editor...
    BTW, this was all working fine before upgrade to xcode 4.
    Was a bug filed on this issue?

  • How to add folder/project name to a File Naming preset

    Here's a tip to automatically add the name of the Project or its parent Folder to the filename during Import or Batch Change.
    I always used a custom field for adding my client's name to the filename upon Import or Batch Changing versions or masters. But often I would forget to change the custom name, and since it's auto-populated with the previous entry, I'd end up with a bunch of files with the wrong client's name on them. That looks kind of bad. So once I saw with Aperture 3 you can add the Project name or Folder name when relocating referenced files to the new folder structure, I was excited to be able to do the same for the filenames at import. Well, no such luck. They're not an option when you create a custom File Naming preset.
    However, I recently decided to poke around inside some plist files, and found a workaround. I discovered the format string for Folder Name is %F and Project Name is %P. The trick is getting the code into the Format Field where you create the preset.
    Create a new File Naming preset by choosing "edit" from the Version Name menu during Import or Batch Change. Drag everything you want in the name into the Format field, and enter %F or %P where you want the Folder or Project name. The tricky part is that you can't insert it between two existing criteria. It only works at the very end. After you have it in place, you can drag the criteria around to get it in the order you want.
    The alternative method is to insert the code directly into the plist. PLEASE, always make sure you're working with a copy and have a good backup when you're poking around in such things. If you have trouble getting the code to take from within Aperture, you can try this. Same as above, create a new preset, but this time, enter an F or P where you want the Folder or Project name. Give it a unique preset name and save it. Then Quit Aperture. Navigate to ~/Library/Application Support/Aperture/FileNamingPresets.plist, and make a copy of the file, then open with Property List Editor. Dropdown the plist and then dropdown the item you want to edit. You should recognize it by the preset name. Now the easy part. Click in the FormatString field and insert the % character before the F or P you entered in the Format field. Save and you're done.
    I discovered later that while the Folder and Project name works just fine during import, for some reason only the Project name works during Batch Change. The Folder name simply creates a "-" in the filename.
    In case this is seen as a hack and gets deleted, I'm also submitting it to http://www.macosxhints.com/ and I suspect if anyone from MacCreate sees it, they'll steal it too, as they're known to do.

    I do not think there is an out of the box way to do this.
    The immediate solution that comes to mind is using a workflow, that runs everytime  a document is uploaded/item created, which may be too much for your scenario.
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • How do I use a precompiled dylib in my xcode project?

    Hello all you brainiacs out there!
    I want to use mongoDB as my database for my iPhone projects.
    I have compiled their code, with instructions from http://api.mongodb.org/c/current/building.html... successfully.
    I ran all the tests, successfully.
    I have two files, libmongoc.dylib and libbson.dylib generated.
    I have imported them into a brand-new xcode project, (build phases, link binary with libraries, hit '+' sign, add other and browse to these two files)
    I copied the .h files (bson.h and mongo.h) to my project.
    Can I now use the functions in my project as defined to connect, insert, delete.... etc.
    I am a noob at iPhone development (2 months) but I do know what I am doing... (I passed the 2  IOS 5 tests at brainbench.com scoring just under 4/5)
    Can someone walk thru the steps after loading in the dylibs and including the C headers?
    Regards,
    Dan

    Danny Bertrand wrote:
    Is there a list of specific things that you CAN'T do/have to sell on the Apple store?
    The App Store Review guidelines have such a list.
    But rather than focusing on what you can't do, you should focus instead on what you MUST do. One of those "must do" items is comply with any licensing agreements for code or resources you include with your app. It can be quite enlightening to ignore what people say about "open source" and "free software" and actually read those licenses say and research their history. It isn't Apple that is restricting you here . As a wise person once told me - "Follow the money". That will lead you from the Free Software Foundation to academic think tanks and writers right back to .. .some interesting places.
    Welcome to the world of Apple - everybody's bullseye.

  • PWA 2010 error when i try to open the project name in Project Center

    Hi, this is my first post.
    Im having a trouble with our Project Server, when i try to open the project name in Project Center it gives me an error like this:
    ProjectServerError(s) LastError=GeneralUnhandledException Instructions: Pass this into PSClientError constructore to access all error information 
    Stack Trace: 
    [SoapException: ProjectServerError(s) LastError=GeneralUnhandledException Instructions: Pass this into PSClientError constructore to access all error information]
       Microsoft.Office.Project.Server.WebServiceProxy.PWA.WorkflowGetProjectDrilldownInformation(Guid projectUid, String userPropToClear, Boolean bCheckOutProject) +401
       Microsoft.Office.Project.PWA.ApplicationPages.ProjectDrillDownPage.OnLoad(EventArgs e) +822
       System.Web.UI.Control.LoadRecursive() +66
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2428
     And also when i try to open the document that associated with the project in project center it gives me an error like this :
    Exception Details: System.Web.Services.Protocols.SoapException: ProjectServerError(s) LastError=GeneralUnhandledException Instructions: Pass this into PSClientError constructore
    to access all error information
    Source Error:
    Line 12: bool LoadLinkItemsPage = (Request.QueryString["Task"] != null);
    Line 13:
    Line 14: ProjectWSSInfoDataSet ds = PJContext.Current.PSI.WssInteropWebService.ReadWssData(ProjectGuid);
    Line 15: if (ds != null && ds.ProjWssInfo.Rows.Count > 0)
    Line 16: {
    Source File: c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\PWA\COMMON\wssnav.aspx    Line: 14 
    Stack Trace:
    [SoapException: ProjectServerError(s) LastError=GeneralUnhandledException Instructions: Pass this into PSClientError constructore to access all error information]
    Microsoft.Office.Project.Server.WebServiceProxy.WssInterop.ReadWssData(Guid projectUID) +377
    ASP._layouts_pwa_common_wssnav_aspx.PJWebPage_OnLoad(EventArgs e) in c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\PWA\COMMON\wssnav.aspx:14
    Microsoft.Office.Project.PWA.PJWebPage.OnLoad(EventArgs e) +67
    System.Web.UI.Control.LoadRecursive() +66
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2428
    has anyone experienced this
    before and might be able to help? Thank you!

    For what it's worth, given the age of this question, I've found that stopping and starting the Project Application Service on each server via Central Admin is less disruptive to the rest of your farm when using Project Server in a larger SharePoint
    farm.
    IISRESET will cause active user sessions to be disconnected and could result in lost data.
    I also found that recycling the app pool associated with my Project Server web application in IIS and restarting the web site did not resolve this situation so the IISRESET is not a guaranteed fix.
    Targeting only the Project Application Service from Central Admin removes this minor risk and actually restored access to our Project Sites.
    N03L.

  • Adding Project Name in OTL Time Card

    Hello All,
    I have done the following Changes to display Project Name in OTL time Card in R12.1.3 with no luck, please let me know.
    1. Added Attribute28 as PROJECTNAME for Context - PROJECTS in OTL INformation Types - DFF
    2. Using AK Html Forms, Added HXC_CUI_PROJECT_NAME to HXC_CUI_TIMECARD
    3. Added Mapping PROJECTNAME
    4. Ran the Generate Flexfield and Mapping Information
    5. Modified and uploaded the ldt
    6. Made Changes to Preferences using OTL Application Developer to look at latest layout
    7. Bounced Apache Server
    BEGIN HXC_LAYOUTS "ZEN_PROJECTS-TIMECARD" "HXC"
    OWNER = "RSREENIV"
    DISPLAY_LAYOUT_NAME = "Z Projects Timecard Layout"
    LAYOUT_TYPE = "TIMECARD"
    TOP_LEVEL_REGION_CODE = "HXCCONFIGTESTCUI"
    LAST_UPDATE_DATE = "2012/01/06"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Timecard Layout - Project"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "LOV"
    QUALIFIER_ATTRIBUTE1 = "ProjectLOVVO"
    QUALIFIER_ATTRIBUTE2 = "N"
    QUALIFIER_ATTRIBUTE3 = "HXC_CUI_PROJECT_LOV"
    QUALIFIER_ATTRIBUTE4 = "809"
    QUALIFIER_ATTRIBUTE5 = "12"
    #QUALIFIER_ATTRIBUTE6 ="HxcCuiProjectNumber|PROJECT-DISPLAY|CRITERIA|N|HxcCuiProjectId|PROJECT|RESULT|N|HxcCuiProjectNumber|PROJECT-DISPLAY|RESULT|N"
    QUALIFIER_ATTRIBUTE6 ="HxcCuiProjectNumber|PROJECT-DISPLAY|CRITERIA|N|HxcCuiProjectId|PROJECT|RESULT|N|HxcCuiProjectNumber|PROJECT-DISPLAY|RESULT|N|HxcCuiProjectName|PROJECTNAME|RESULT|N"
    QUALIFIER_ATTRIBUTE8 = "ProjectNumber"
    QUALIFIER_ATTRIBUTE9 = "ProjectId#NUMBER"
    QUALIFIER_ATTRIBUTE10 = "oracle.apps.hxc.selfservice.timecard.server.ProjectLOVVO"
    QUALIFIER_ATTRIBUTE17 = "OraTableCellText"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute1"
    QUALIFIER_ATTRIBUTE28 = "PROJECT"
    LAST_UPDATE_DATE = "2004/05/24"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS
    ### Project Name Component start ###
    BEGIN HXC_LAYOUT_COMPONENTS "Projects Timecard Layout - Project Name"
    OWNER = "ORACLE"
    COMPONENT_VALUE = "PROJECTNAME"
    REGION_CODE = "HXC_CUI_TIMECARD"
    REGION_CODE_APP_SHORT_NAME = "HXC"
    ATTRIBUTE_CODE = "HXC_CUI_PROJECT_NAME"
    ATTRIBUTE_CODE_APP_SHORT_NAME = "HXC"
    SEQUENCE = "215"
    COMPONENT_DEFINITION = "TEXT_FIELD"
    RENDER_TYPE = "WEB"
    PARENT_COMPONENT = "Projects Timecard Layout - Day Scope Building blocks for worker timecard matrix"
    LAST_UPDATE_DATE = "2004/05/24"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Timecard Layout - Project Name"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "TEXT_FIELD"
    # Show Label (Component)
    QUALIFIER_ATTRIBUTE1 = "N"
    # Show Label (Parent Component)
    QUALIFIER_ATTRIBUTE2 = "N"
    # Field Width
    QUALIFIER_ATTRIBUTE3 = "20"
    # Field Height
    QUALIFIER_ATTRIBUTE4 = "1"
    # Style Class
    QUALIFIER_ATTRIBUTE17 = "OraInlineInfoText"
    # Display On New Line
    QUALIFIER_ATTRIBUTE20 = "N"
    # Show Outside Building Block
    QUALIFIER_ATTRIBUTE21 = "Y"
    # Outside Direction
    QUALIFIER_ATTRIBUTE22 = "L"
    # Access Method
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    # Context
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    # View Object Attribute
    QUALIFIER_ATTRIBUTE27 = "Attribute28"
    # Component Alias
    QUALIFIER_ATTRIBUTE28 = "PROJECTNAME"
    # Read Only
    QUALIFIER_ATTRIBUTE30 = "Y"
    LAST_UPDATE_DATE = "2004/05/24"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS
    ### Project Name Component end ###
    Edited by: 891594 on Jan 6, 2012 11:40 AM
    Edited by: 891594 on Jan 6, 2012 11:54 AM

    In extended controller processRequest method:
    Get the project ID, asssuming that you are passing project id through hash map.
    String prjId = pageContext.getParameter("ProectId_Parameter");
    Default the LOV item value using:
    OAMessageLovInputBean msglov = (OAMessageLovInputBean)webBean.findChildRecursive("ProjectId");
    if(msglov != null)
    msglov.setText(pageContext,"Hello");
    -Anand

  • Linked content using RH project name for topic title instead of FM file/heading name

    Anyone seen this before? (and, yes, for anyone who is interested, the epub of my book should be available once I get this solved)
    -Matt
    PS: the htm filename is fine, it's just the topic title that's odd.
    Message was edited by: mattrsullivan

    I'm pretty sure that was in reference to setting Topic Title markers...not something I want to do in a 700 page book!
    More info: The book processes and validates a clean EPUB if I omit the index, and throws 300+ errors when I include the index.
    Via Notepad++. the index shows <section name=(the project name)>, so I imagine it's taking offense at the eleventy-six files with the exact same topic identifier.
    Anyone seen this before??
    -Matt

  • How to make project name / no. visible in suppor message?

    Hello,
    When creating a support message (NOTIF_CREATE), I can provide a project name /project number with the message.
    This info is also available, when starting the transaction monitor (CRM_DNO_MONITOR).
    But when looking into the message itself, this information is not available anymore.
    Where can I make this info visible?
    I am assuming, that the project is somehow linked to the support message and that the project is available in principle.
    Can anyone provide me a way how to link / show the project within the support message?
    Thanks and Regards,
    Jan

    HI
    another helpful link i found, but nt sure that clear ur issue
    [Re: Field "Subject" in the web service desk (Incident Management)|Re: Field "Subject" in the web service desk (Incident Management)]
    [Re: User Status profile in Service Desk|Re: User Status profile in Service Desk]
    jansi

  • How to export images with Project Name to be visable by Photo Mechanic.

    Hello all,
    I am trying to create another complete set of my images, that can be edited by outside programs (Photo Mechanic and/or Lightroom). I am doing this by exporting the images out of a managed library. I want the Aperture "*Project name*" and Rating fields to be passed to Photo Mechanic. And then I want PM to be able to do queries on the Metadata fields containing the Aperture Project Name and Rating. My intention is to use Photo Mechanic to rename the images and relocate the images but still keep track of the Rating and Project Name.
    In Aperture, when I add a custom metadata item under IPTC and export the image, that custom metadata item does not show up in PM or Bridge for that matter.
    How can I export images and have the Rating and *Project Name* be exported and visible in PM or LR or Bridge?
    Thanks in advance,
    Dick B.

    There is not an easy way but Ian Wood's tool might help you out.
    Personally I would just use the "subfolder format" drop down options available in all of the export and relocate dialogs to sort them into directories that are based on Aperture project name - easy enough considering those other tools use file system based folders for there organization structure anyway.
    RB

  • How do you add files to a target of an Xcode project from the terminal?

    Hi friends.
    I am building a tool to build projects in an automated way. So far it is working great but I can't find a command to add files to a target from the command line.
    Basically what I want to do is the following:
    I have a directory with the XCode project, something like:
    - Classes
    - Images
    - Configuration
    - Etc
    I want to add some files to the folder Images that will be included in the build output.
    Is this possible?
    Thanks!!

    Is this helpful?
    http://www.askdavetaylor.com/fancymac_os_x_command_linetricks.html

  • Project Center - How to Update / Correct the URL/Link stored in the Project Name field.

    In the Project Center list, the link in the "Project Name" field for some projects take you the the project details page and some display the project schedule. How can I update/correct the links to display the project schedule?

    Reason for this behavior is your enterprise project template which your project manager used for creating project.
    We create Enterprise project template, associate PDP , Schedule, workflow according to our need then we use these Enterprise project template for project creation.
    In your case some of the project manager must have used basic template( default template) for some project, Custom Enterprise template for some project and f you are using workflow then workflow template for some project, that is why you are able to see
    PDP page first for some project and Schedule page for some project. 
    In order to change it you can change default PDP as schedule for Enterprise project template then open project save and publish them.
    kirtesh

  • How can i check the duplicate NPD project name?

    Dear all,
    I would like to know on how i can check the duplicate NPD's project name? I found that some NPD's project is initiate serveral time with the same or semilar name from user name. Supposing the project name was "Smart Pilot". I always found that project may type differently such as "Smart PILOT","smart pilot" or even "Smart Pilots". Supposing i would like to validate all of these name before save by using validation framework, or custom validation. Is it possible?
    Supposing it was possible, can you please guiding me on how?
    Thank you so much in advance for all of the answer.
    Phaithoon W.

    So here is some example code for a quick validator. Note that this uses a hard coded English error message, rather than a translation. If you want to use translations instead, look at some of the examples in the ReferenceImplementations\Validation\SourceCode\ReferenceValidation folder in the Extensibility Pack, and review the Validation Training as well (in the ReferenceImplementations\Validation\Documentation folder).
    Note that the provided code is for demonstration purposes only and is not supported by Oracle.
    The classes:
    using System;
    using System.Data;
    using System.Xml;
    using Xeno.Data.NPD;
    using Xeno.Prodika.Application;
    using Xeno.Prodika.Services;
    using Xeno.Prodika.Validation;
    using Xeno.Prodika.Validation.Validators;
    namespace Oracle.Agile.PlmProcess.Validation
        public class NPDUniqueProjectNameValidatorFactory : XmlConfigValidatorFactoryBase
            protected override IValidator Create_Internal(XmlNode configNode)
                return new NPDUniqueProjectNameValidator();
        public class NPDUniqueProjectNameValidator : BaseValidator
            private const string sql = @"select 1 as dup from NPDPROJECTML where UPPER(title) = UPPER ('{0}') and FKPROJECT <> '{1}' and LANGID = {2}";
            public override bool Validate(IValidationContext ctx)
                var project = ctx.ValidationTarget as INPDProjectDO;
                bool hasDuplicate = false;
                string sqlToExecute = String.Format(sql, project.ProjectML.Title, project.PKID, UserService.UserContext.User.PreferredLanguage);
                using (IDataReader reader = AppPlatformHelper.DataManager.newQuery().execute(sqlToExecute))
                    if (reader.Read())
                        hasDuplicate = true;
                if (hasDuplicate)
                    ctx.AddError(String.Format("A project already exists with the name '{0}'.", project.ProjectML.Title));
                return hasDuplicate;
            private IUserService UserService
                get { return AppPlatformHelper.ServiceManager.GetServiceByType<IUserService>(); }
    Next, add the following to the ValidationSettings.xml file in config\Extensions:
    1. add the validator factory, with a reference name in the config:
    <ValidatorFactories>
            <!-- Custom  Validator Factory declaration goes here -->       
            <add key="NPD_CheckProjectNameForDuplicate" value="Class:Oracle.Agile.PlmProcess.Validation.NPDUniqueProjectNameValidatorFactory,ReferenceValidation" />
    </ValidatorFactories>
    2. Add a rule for NPD project Save event:
    <rule type="3202">
                <condition event="save">
                    <if type="NPD_CheckProjectNameForDuplicate" require="true" report="true" />
                </condition>
    </rule>
    Compile the reference example into a dll, and add that dll into web\npd\bin
    When you try to save a project with a duplicate name, it should now give you the error message.

  • Add Project Name and description to the Projects Notification Layout in OTL

    Hi,
    I want to add the Project name and description to the OTL Projects Notification Layout. I have tried the following code to change the ldt file.
    BEGIN HXC_LAYOUT_COMPONENTS "Projects Notification Layout - Project Name"
    OWNER = "ORACLE"
    COMPONENT_VALUE = "PROJECTNAME"
    REGION_CODE = "CUS_PROJECT_PROMPT"
    REGION_CODE_APP_SHORT_NAME = "HXC"
    ATTRIBUTE_CODE = "HXC_CUI_PROJECT_NAME"
    ATTRIBUTE_CODE_APP_SHORT_NAME = "HXC"
    SEQUENCE = "181"
    COMPONENT_DEFINITION = "LOV"
    RENDER_TYPE = "WEB"
    PARENT_COMPONENT =
    "Projects Notification Layout - Day building blocks - matrix layout"
    LAST_UPDATE_DATE = "2004/05/24"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Notification Layout - Project Name"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "LOV"
    QUALIFIER_ATTRIBUTE1 = "ProjectBaseLOVVO"
    QUALIFIER_ATTRIBUTE2 = "N"
    QUALIFIER_ATTRIBUTE3 = "HXC_CUI_PROJECT_LOV"
    QUALIFIER_ATTRIBUTE4 = "809"
    QUALIFIER_ATTRIBUTE5 = "12"
    QUALIFIER_ATTRIBUTE6 =
    "HxcCuiProjectName|PROJECTNAME-DISPLAY|CRITERIA|N|HxcCuiProjectId|PROJECTNAME|RESULT|N|HxcCuiProjectName|PROJECTNAME-DISPLAY|RESULT|N"
    QUALIFIER_ATTRIBUTE8 = "ProjectName"
    QUALIFIER_ATTRIBUTE9 = "ProjectId#NUMBER"
    QUALIFIER_ATTRIBUTE10 =
    "oracle.apps.hxc.selfservice.timecard.server.ProjectBaseLOVVO"
    QUALIFIER_ATTRIBUTE17 = "OraTableCellText"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute8"
    QUALIFIER_ATTRIBUTE28 = "PROJECT_NAME"
    QUALIFIER_ATTRIBUTE30 = "Y"
    LAST_UPDATE_DATE = "2004/05/24"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS
    I have created a segment PROJECT_NAME (attribute8) to the "PROJECTS" context of "OTL Information Types" DFF. Bouce the apache server.
    I am able to get the prompt but unable to get the data in the column.
    Please help.
    Thanks & Regards,
    Munish

    Hi Also have tried with the following ldt code. In this code I have added the projectname field from the PROJECT LOV and tried to get the value of the projectname into the text field.
    BEGIN HXC_LAYOUT_COMPONENTS "Projects Notification Layout - Project"
    OWNER = "ORACLE"
    COMPONENT_VALUE = "PROJECT"
    REGION_CODE = "HXC_CUI_TIMECARD"
    REGION_CODE_APP_SHORT_NAME = "HXC"
    ATTRIBUTE_CODE = "HXC_TIMECARD_PROJECT"
    ATTRIBUTE_CODE_APP_SHORT_NAME = "HXC"
    SEQUENCE = "180"
    COMPONENT_DEFINITION = "LOV"
    RENDER_TYPE = "WEB"
    PARENT_COMPONENT =
    "Projects Notification Layout - Day building blocks - matrix layout"
    LAST_UPDATE_DATE = "2004/05/24"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Notification Layout - Project"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "LOV"
    QUALIFIER_ATTRIBUTE1 = "ProjectBaseLOVVO"
    QUALIFIER_ATTRIBUTE2 = "N"
    QUALIFIER_ATTRIBUTE3 = "HXC_CUI_PROJECT_LOV"
    QUALIFIER_ATTRIBUTE4 = "809"
    QUALIFIER_ATTRIBUTE5 = "12"
    QUALIFIER_ATTRIBUTE6 =
    "HxcCuiProjectNumber|PROJECT-DISPLAY|CRITERIA|N|HxcCuiProjectId|PROJECT|RESULT|N|HxcCuiProjectNumber|PROJECT-DISPLAY|RESULT|N|HxcCuiProjectName|PROJNAME|RESULT|N"
    QUALIFIER_ATTRIBUTE8 = "ProjectNumber"
    QUALIFIER_ATTRIBUTE9 = "ProjectId#NUMBER"
    QUALIFIER_ATTRIBUTE10 =
    "oracle.apps.hxc.selfservice.timecard.server.ProjectBaseLOVVO"
    QUALIFIER_ATTRIBUTE17 = "OraTableCellText"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute1"
    QUALIFIER_ATTRIBUTE28 = "PROJECT"
    QUALIFIER_ATTRIBUTE30 = "Y"
    LAST_UPDATE_DATE = "2004/05/24"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS
    BEGIN HXC_LAYOUT_COMPONENTS "Projects Notification Layout - Project Name"
    OWNER = "CUSTOM"
    COMPONENT_VALUE = "PROJECTNAME"
    SEQUENCE = "181"
    COMPONENT_DEFINITION = "TEXT_FIELD"
    RENDER_TYPE = "WEB"
    PARENT_COMPONENT = "Projects Notification Layout - Day building blocks - matrix layout"
    REGION_CODE = "CUS_PROJECT_PROMPT"
    REGION_CODE_APP_SHORT_NAME = "HXC"
    ATTRIBUTE_CODE = "HXC_CUI_PROJECT_NAME"
    ATTRIBUTE_CODE_APP_SHORT_NAME = "HXC"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS "Projects Notification Layout - Project Name"
    OWNER = "CUSTOM"
    QUALIFIER_ATTRIBUTE_CATEGORY = "TEXT_FIELD"
    QUALIFIER_ATTRIBUTE1 = "N"
    QUALIFIER_ATTRIBUTE2 = "NODISPLAYCACHE"
    QUALIFIER_ATTRIBUTE3 = "10"
    QUALIFIER_ATTRIBUTE4 = "1"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "L"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "PROJECTS"
    QUALIFIER_ATTRIBUTE27 = "Attribute20"
    QUALIFIER_ATTRIBUTE28 = "PROJNAME"
    QUALIFIER_ATTRIBUTE30 = "Y"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS
    But no data is displayed.
    I have also tried with the QUALIFIER_ATTRIBUTE27 = "Attribute8" as the attribute8 is being defined in the PROJECTS context of the "OTL Information Types" DFF.
    Thanks & regards,
    Munish

  • "Project "name of project" is in an inconsistent state. Please wait...

    I seem to be encountering a slight issue with Aperture, where it 'hangs' a dialog comes up (this has happened twice on 2 seperate occassions) where the dialog explains :
    "Project "name of project" is in an inconsistent state. Please wait while the inconsistencies are resolved."
    there is a cancel button, but it is greyed out. the progress bar is turning, but no progress is indicated. it stays like this and has done for a while. the only thing to do is force the app to quit and restart.
    has anyone else had this happen or does anyone know why it is doing this?
    I look forward to some replies.
    Paul.

    I had something similar happen and the easiset way for me to fix it was to go into the aperture library (right click, select show contents), locate the project in question and trash it.
    One thing you need to make sure is that Aperture isn't running. When it starts up it may notice an inconsistancy with the database and rebuild it. Once done (takes only a few seconds) you're all set.
    just in case, backup the file, either by copying it to another drive or folder.
    Mike

  • Include project name in search results? RH9 or 10

    Hi all,
    Our projects are organized with a master project for the various clients, that includes a number of application projects such as Word 2010, Adobe Acrobat, etc.
    When a user runs a search in the published project, they sometimes have difficulty knowing which result belongs to which application, e.g. does "Headers and Footers" belong to Word or Excel?
    They are asking if the Search result can show the name of the application, i.e., the name of the project.  Does anyone know a way to do this, other than renaming hundreds of files?
    We have RoboHelp 9 at the moment, and the client has RoboHelp 10.
    Thanks for any help...
    Marion

    Hi Marion.
    Sorry but I can't think of a way around this apart from renaming the topic titles to "xxxx Headers and Footers" where xxxx is the application. Depending on what your output type is the search picks up on various pieces of topic data but none of them can dynamically insert data like a project name.

Maybe you are looking for

  • Problem with BAPI_REQUISITION_CREATE

    Hello All, I want to create a Purchase Requisition with 3 items. But bapi requisition create gives error: " No account assignment exists for service line 0000000000" Can you please help to sort it out?

  • Data Recovery for Macbook Air when repair efforts failed

    My computer is unable to boot and stays on the gray screen. I've tried to repair my computer with every method up to disk utility but nothing will work, so I want to back up my computer if possible before reinstalling the software. I don't use time m

  • E-mailed photo's change format

    I use Safari w/ Comcast.net to do e-mail. I scanned a picture and "saved it as" in the .jpeg format to my desktop. I then went to e-mail and sent it to my brother in law who has a PC. When he tried to open the attachment in said it was a .DAT file an

  • Error when installing on macpro 1.1

    I'm running a mac pro 1.1 "Dual-Core intel Xeon" 2.66, when I try to install snow leopard server 10.6 I get an error.

  • Rapid Provisioning or SAN Copy question

    Hi VMM Community, I'm involved in cloud (WAP) project. The customer wants to avoid VM deployment over the network, he wants to use the VMM SAN to SAN copy. AFAIK, SAN to SAN copy is the same as Rapid Provisioning, so we can't use such technique with