Change Table Names in Universe to a Fully Qualified Table Name

We have implement the HR Rapid Datamart. The table names just have the table. We need programmically to have the table use a fully qualified name. Example Company table needs to read the schema.table name DM.Company. Is there a way to set it in the Custom Parameters section of the Edit connection window to automatically add the schema name to the table name programmically without having to rename the table names in the universe?

You can add the schema name for all tables in one pass if you select all of them (press the CTRL key while selecting them) and them go to the properties window and type in the schema name in the owner field.
Regards,
Stratos

Similar Messages

  • How to change Port Information shown in sicf in fully qualified host name?

    Hi guys,
    I want to use the CS Documentation Tool for SAP BW.
    In DEV everything is OK, but in PROD I can´t execute.
    I know what´s wrong, but I don´t know where to correct the error.
    When I use transaction sicf -> execute -> GoTo -> Port Information I can only see the server name instead of the  fully qualified host name.
    Can anybody tell me, where to change the name?
    Thanks a lot,
    Barbara

    Those ports are defined in the instance profile of the system and can be defined/changed from RZ10. The parameter is icm/server_port_xx. If the parameter is not defined then it uses the default values.
    The profile values looks something like this:
    icm/server_port_0 PROT=HTTP,PORT=80$$,TIMEOUT=90,PROCTIMEOUT=3600
    icm/server_port_1 PROT=SMTP,PORT=25$$,TIMEOUT=90,PROCTIMEOUT=3600
    Hope this helps.
    Thanks,
    Naveed

  • How to change the fully qualified host name

    Hi,
    how can I change the fully qualiied host name?
    Regards
    Marc

    Hi Michal,
    I'm doing the FlightSeatAvailabilityCheck-Scenarion of the demo example and get an error. To get more details about the error I had a look in the XI Runtime Workbench. There I can see, that the wrong url is called (without the hostname) and  that the access is forbidden (403). Therefore I want to change the fully qualified host name. I knew that I have to change icm/host_name_full but I don't know where I can do it (which transaction)?
    Regards
    Marc

  • Fully qualify domain name in CMS_IdNumbers5

    Under CMS D/B, there is a table called u2018CMS_IdNumbers5u2019.
    One of the fields generated during the creation of CMS D/B is always equal to the server name where BOE is installed.
         E.g      If Server Name = Server01
              There will be a field called u2018Server01u2019 under table CMS_IdNumbers5
    In Unix (AIX) environment, it will retrieve the fully qualify domain name and port numbers
         E.g.      If Server Name = Server01.AU.SVR.COM
              Port = 6400
              There will be a field called Server01.AU.SVR.COM:6400 under table CMS_IdNumbers5.
    Questions:
    Where does the fully qualify domain name get pick up from in unix and how does it knows it should point to AU.SVR.COM in the above example?
    Never once have we stated the fully qualify domain name (.AU.SVR.COM) during the creation of CMS D/B (via cmsdbsetup.sh), we only specified u2018Server01u2019.
    When using u2018uname u2013nu2019 or u2018hostnameu2019 commands, it will only return back u2018Server01u2019.
    Client needs to point to a different domain name.
    E.g. Instead of Server01.AU.SVR.COM, they want Server01.AU2.SVR.COM
    Where can this be done?
    Thanks in advance.
    Regards,
    Ken

    Thanks for the quick respond. Yes I am aware changing domain is out of scope from Business Objects perspective.
    My question is more on how and where do the fully qualify domain name get picked up from in unix (AIX). As mentioned in previous note, never once have we stated the fully qualify domain name (.AU.SVR.COM) during the creation of CMS D/B (via cmsdbsetup.sh), we only specified u2018Server01u2019. Yet it was able to determine the fully qualify domain name.

  • Unable to read resource files without fully qualified file names

    Hi,
    I have installed 9iAS and trying to read a few resources in the OC4J container. A few points to
    note :
    1. The <library> element in server.xml (global and
    instance specific) as well as in orion-application.xml
    can seem to only scan for jars/zips.
    2. Also we are using the Thread specific classloaders as in doc :
    http://otn.oracle.com/tech/java/oc4j/pdf/ClassLoadingInOC4J_WP.pdf
    The issue is that so long I pass the fully qualified file name for the resource, I can read the resource. However, I am not able to find a way to include the "resource directory" in the classpath of 9iAS (global) or OC4J instance and read the resource file with just the file name. So, the following code works only when the filename has the fully qualified name for the resource file (Like F:\install\some_dir\file.txt).
    ClassLoader cl = Thread.currentThread().getContextClassLoader();
    inStream = cl.getSystemResourceAsStream(fileName);
    Can someone provide me with some pointers to how I can include resource directories in the classpath ? Any help will be appreciated.
    Thanks,
    Krishnendu

    Hi,
    Thanks for your response. Presently your solution is what we already have in place. Most of our properties are stored in a .properties file. However for all other application servers (sun one apps server, websphere, weblogic, tomcat), the classloader can read these properties without the fully qualified path but for oc4j; the code breaks.
    So, even if I change my installer to hardcode the specific property to have the fully qualified file name, I would have written some code specific to OC4J that is generic to all other containers.
    Krishnendu

  • Get-ChildItem : The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.

    Hi, Im trying to get the whole path in my server, so i tried that with this following code
    Get-ChildItem $sourceFolder  -Recurse | ?{$_.PsIsContainer} |Get-Acl
    But then, it showed me somtehing like this :
    Get-ChildItem : The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
     I tried to find the solver everywhere and mostly they propose to change the path name, which is impossible, since I am working with my company server, and those folder have already there before i start to work here, then the other ask me to use robocopy,
    but all of the trick just dont work
    is there any way to solve this problem? thanks

    There is no simple solution to this. And it is not a limitation of powershell itself, but of the underlying NTFS file system.
    If the problem is that a folder with a name longer than 248 exists anywhere within your directory structure, you are hooped.
    If the problem is that some fully qualified path names exceed 260 characters, then, in those cases, the solution already given is to create a psdrive partway up the path from the drive letter or server/share root of the path. Unfortunately, the output produced
    will be relative to that psdrive and not to what is specified as the $sourcefolder.
    unless you already know where those problematic paths are, you might consider trying to trap those errors and have your script figure out where it needs to create psdrives. You might then be able to calculate the equivalent path for each file or folder and
    output that. the programming effort would be simpler to just created a psdrive for each folder encountered, however I expect that would be very inefficient.
    Al Dunbar -- remember to 'mark or propose as answer' or 'vote as helpful' as appropriate.

  • Ejb-jar.xml not using fully qualified class names

    HI,
    I am trying yo upgrade my application from weblogic 8.1 to weblogic 9.2.3. My application has both session and enitybeans. I updated weblogic related jars with 9.x version. But while running ejbgen, i am getting the following exception.
    *[java] weblogic.ejb.container.deployer.DeploymentDescriptorException: Unable to set the transaction attribute for method 'updateService(abcTO)' on EJB 'AbcService'. No matching method could be found. Please verify the method signature specified in the ejb-jar.xml file matches that of your Local interface for this EJB.*
    In ejb-jar.xml file, it is not creating the fully qualified class name for abcTo in <method-param>. In component interface, the method signature is not contaning fully qualified class name for the parameters and return values.
    If i change the signature in the bean with the fully qualified class name of the parameter, the ejb-jar.xml file is creating fine. But there are 100's of signatures i need to change if this is the only solution.
    Can you please advice what i need to change when i upgrade from weblogic 8 to 9 series from session and entity bean's point of view?
    Thanks in Advance
    Naveen.
    Edited by: avn_venki on Mar 16, 2009 7:15 AM
    Edited by: avn_venki on Mar 16, 2009 7:15 AM

    ejb-jar.xml has always required fully-qualified class names. If some vendors have accepted unqualified class names unfortunately that
    behavior is non-portable. Your best bet is to fully-qualify the names. Perhaps you can find some tools to help you given the large
    number of components in your application.

  • Fully Qualified Host Name

    We Have installed Oracle 10g AS and Later Configure it by Changing the Canonical setting to "Off" from Status "On" in the httpd.conf file in apache Directory. so that we can access our application by ip address in place of host name.
    After that whenever i tried to to log on to the single sign on it gives error "SSO Failure ........." However it shows in the address bar that the sing on was successfull but the URL same as that fully qualified host name.
    now if i change the Host name to the IP everything goes on well
    Could anyone please help me to Resolve the issue
    Thanks in Advance

    Later Configure it by Changing the Canonical setting to "Off" from Status "On" in the httpd.conf file in apache Directory. so that we can access our application by ip address in place of host name.Oracle's AS and related software is heavily dependant on the FQDN (fully-qualified domain name, or how you seem to be referring to the "host name") and how the browser refers to the AS in many places: not just SSO, but Portal, the IAS-Console, and many pieces-parts that support them. I would seriously suggest considering alternatives to trying to refer to the AS by its IP address, especially because the IP address is allowed to change, but oftentimes the hostname is not! That can only become confusing if the IP-address of the machine ever changes. :( I am also very confident that you will have serious issues allowing users outside of your system to use the Oracle Reports that you are developing.
    If you are simply developing a J2EE application that refers users to the Oracle Reports servlet, I would highly recommend finding a solution which uses the FQDN of the system rather than its IP address.

  • Fully Qualified Domain Names (FQDN) error - How to get domain and extension

    I have created a Web Dynpro ABAP application. On executing it, I get Fully Qualified Domain Names (FQDN) error. I have host name of my server.
    I do not know domain name and extension name of my server. How can I detect it?
    I want to know in  Windows XP and Windows 7.
    Please help me asap.

    Hello,
    Right click on the my computer and click properties and then go to the tab computer name .
    there you will have full computer name and this should have your host name as well as the domain name.
    to check the domain name click on change a new popup will open ther domain will be metntioned.
    IF nothing is ther in the domain then add just .(dot) at the end of the computer name .
    and save it and then put the same name in the  ICM/host_name_full parameter in rz11 and try .
    thanks
    sarbjeet
    Edited by: sarbjeet  singh on Jan 23, 2011 10:26 AM

  • Modifying Portal URL to use Fully Qualified Domain Name

    Hi,
    We have a portal that I can access now by using the URL 'invsrvr001:50000/irj/portal'. We would need the URL to use the fully qualified domain name such as 'invsrvr001.company.com:50000/irj/portal'. Towards that end we added the profile paramter 'icm/host_name_full' with parameter value 'invsrvr001.company.com' and restarted the server. After the we tried to login to the portal using 'invsrvr001.company.com:50000/irj/portal' but the system displayed 'The page cannot be displayed' error.
    What else needs to be done so as to use the fully quailified domain name?
    Do I name to change the computer name from 'INVSRVR001' to 'INVSRVR001.COMPANY.COM'?
    Regards
    ND

    Ok, if you want to use FQDN including your domain extention (host.domain.com) you need to include your host into the domain.
    Also your PDC should be doing the time of DNS server so check that.    
    This should solve your issue, please close the thread.
    Regards
    Juan

  • How to set-up Fully Qualified Domain Name in WIN2k3?

    Dear Experts,
    Admin, please rederict if this is the wrong forum.
    I need to set up a FQDN for our one host demo system running on Windows Server 2k3. How do I set it up (without compromizing our system)? On this host we have ECC 6.0 and GRC running.
    We don't have a registred domain.
    Kind Regards,
    Vit Vesely

    Hi,
    Set your domain name as FQDN (fully qualified domain name.)
    1) start the transaction RZ10.
    2) select INSTANCE Profile name where your server name is given.
    3) Select Extended Maintenance.
    4) Click on change button.
    5) Change parameter icm/host_name_full to FQDN
    6) Copy your settings with new version number.
    7) Activate that version.
    8) Restart your WAS (Transaction code SMICM -> Administration Menu).
    Check that the following services are active in your ICF setting (transaction code SICF)
    /default_host/sap/bc/bsp/sap
    /default_host/sap/bc/bsp/sap/system
    /default_host/sap/bc/bsp/sap/public/bc
    /def ault_host/sap/public/bc
    /default_host/sap/public/bc/ur
    /default_host/sap/public/bsp/sap/public
    /default_host/sap/public/bsp/sap/public/bc
    /defaul t_host/sap/public/bsp/sap/system
    /default_host/sap/public/bsp/sap/htmlb
    Set Request Hanlder Class, add Standard Class provided by SAP to default\sap\bc\bsp\sap service. Right click on default\sap\bc\bsp\sap service service.
    Now select display service, go to Handler Tag, and add the class CL_HTTP_EXT_BSP, which is a default HTTP request handler class.
    Specifically for fully qualified domain names problems,
    see:
    434918 Configuration for fully qualified host names for BSP
    654326 Domain restrictions in a portal environment         
    654982 URL requirements due to Internet standards          
    677118 SP31  >: Fully Qualified Domain Names Check         
    763427 Error message for domain name with underscore  
    Regards
    Krishna

  • Fully Qualified Domain Name - required ??

    Hi,
    We are implementing SAP in a 3 system landscape with AIX. 
    All these systems are not in a domain at the moment, but they are networked.
    Is it completely necessary to have these systems in a Windows / Unix domain to run the systems?  What basic settings would be necessary to go-live?
    I have made changes in the /etc/hosts file to include domain (for example: xxx.xxx.xxx.xxx gilsaped gilsaped.xxxxxxxxxxxx.com).  What else is required to make our portal system URL to be called with the fully qualified domain name?
    Thanks in advance for your help,
    Abdul

    What else is required to make our portal system URL to be called with the fully qualified domain name?
    Besides the hosts file entry you will also require a DNS entry.
    Nelis

  • Fully qualified domain name

    Hi,
    I installed Sap MI 7.1 in Windows server 2003 and with Ms SQL server 2005.
    The installed system doesnt have a fully qualified domain name.
    Now i planned to rename the system with a fully qualified domain name.
    So, after renaming what are the steps should i follow in order to avoid conflicts in SAP?
    P.s: by steps i mean the parameters to be changed, configurations that should be modified, etc...
    Thanks in advance.

    Hi Anindya and Pandya,
    I tried pinging the host from my remote computer using the host name.
    this is the result i got:
    Ping request could not find host abcd.mobile.com. Please check the name
    and try again.
    i tried pinging like this too: ping -t abcd
    The result was:
    Ping request could not find host abcd. Please check the name
    and try again.
    But when i tried pinging with the ip address it  is successfull.
    And the dev_disp trace follows:
    Thu Oct 08 03:57:24 2009
    DpSigInt: caught signal 2
    DpHalt: shutdown server >abcd_MI2_00                     < (normal)
    DpModState: change server state from ACTIVE to SHUTDOWN
    DpHalt: stop work processes
    Thu Oct 08 03:57:25 2009
    DpHalt: stop gateway
    DpHalt: stop icman
    DpHalt: terminate gui connections
    DpHalt: wait for end of work processes
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:28 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:30 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:34 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:36 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:40 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:42 2009
    ERROR => [DpWpDied] W0 died  (PID:28248  HANDLE:1232 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W2 died  (PID:27828  HANDLE:1224 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W3 died  (PID:28332  HANDLE:1220 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W4 died  (PID:24852  HANDLE:1216 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W5 died  (PID:2108  HANDLE:1212 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W6 died  (PID:27740  HANDLE:1208 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W12 died  (PID:28640  HANDLE:1176 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W15 died  (PID:27752  HANDLE:1160 rc:0xFFFFFFFF) [dpntdisp.c   333]
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:43 2009
    ERROR => [DpWpDied] W7 died  (PID:2084  HANDLE:1204 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W8 died  (PID:26600  HANDLE:1200 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W9 died  (PID:27600  HANDLE:1192 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W10 died  (PID:28404  HANDLE:1188 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W13 died  (PID:27776  HANDLE:1168 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W14 died  (PID:2112  HANDLE:1164 rc:0xFFFFFFFF) [dpntdisp.c   333]
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:44 2009
    ERROR => [DpWpDied] W11 died  (PID:25924  HANDLE:1180 rc:0xFFFFFFFF) [dpntdisp.c   333]
    ERROR => [DpWpDied] W16 died  (PID:26792  HANDLE:1156 rc:0xFFFFFFFF) [dpntdisp.c   333]
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:45 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:46 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:47 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:48 2009
    DpHalt: waiting for termination of work processes ...
    Thu Oct 08 03:57:49 2009
    ERROR => [DpWpDied] W1 died  (PID:28160  HANDLE:1228 rc:0xFFFFFFFF) [dpntdisp.c   333]
    DpHalt: wait for end of gateway
    ERROR => [DpProcDied] Process died  (PID:25848  HANDLE:1236  rc:0x0) [dpnttool2.c  147]
    DpHalt: wait for end of icman
    ERROR => [DpProcDied] Process died  (PID:28168  HANDLE:1244  rc:0x0) [dpnttool2.c  147]
    DpStartStopMsg: send stop message (myname is >abcd_MI2_00                     <)
    DpStartStopMsg: stop msg sent
    Thu Oct 08 03:57:50 2009
    DpHalt: sync with message server o.k.
    DpHalt: detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12536]
    MBUF state OFF
    MBUF component DOWN
    DpHalt: cleanup EM
    Thu Oct 08 03:57:51 2009
    ***LOG Q05=> DpHalt, DPStop ( 27036) [dpxxdisp.c   10803]

  • Fully qualified domain name in EP 6.4 configuration

    Hi guys,
    I've got some problems with using fully qualified domain names (FQDN) while getting to Portal.
    Having EP installed and running properly, I've installed, on my MS Windows 2003 Server (on which my EP is running), DNS to provide FQDN.
    Until this my EP worked properly (I get to my portal main page using host name without FQDN - http://<host>:<port>/irj).
    After installing DNS and configuring new domain my EP runs properly when I get via simple hostname, but I've noticed, that it isn't working properly, when I try to get via url with FQDN.
    The FQDN is correctly recognized on sysop level (ping...) - the problem is surely in EP configuration.
    The most common symptom is an empty HTTP page or a portal page containing some interface elements, but without content.
    Who knows what I have to change in my EP configuration?
    I will be thanful for any help.
    Best regards,
    Marcin

    Hi Chung,
    Thanks for advice.
    Actually, in my case, problem was in IE internet settings.
    The solution was adding host name to the host list in in "local intranet" setting (tabpage Security).
    Regards,
    marcin

  • SharePoint 2010, Visual Studio 2010, Packaging a solution - The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.

    Hi,
    I have a solution that used to contain one SharePoint 2010 project. The project is named along the following lines:
    <Company>.<Product>.SharePoint - let's call it Project1 for future reference. It contains a number of features which have been named according
    to their purpose, some are reasonably long and the paths fairly deep. As far as I am concerned we are using sensible namespaces and these reflect our company policy of "doing things properly".
    I first encountered the following error message when packaging the aforementioned SharePoint project into a wsp:
    "The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters."
    I went through a great deal of pain in trying to rename the project, shorten feature names and namespaces etc... until I got it working. I then went about gradually
    renaming everything until eventually I had what I started with, and it all worked. So I was none the wiser...not ideal, but I needed to get on and had tight delivery timelines.
    Recently we wanted to add another SharePoint project so that we could move some of our core functinality out into a separate SharePoint solution - e.g. custom workflow
    error logging. So we created another project in Visual Studio called:
    <Company>.<Product>.SharePoint.<Subsystem> - let's call it Project2 for future reference
    And this is when the error has come back and bitten me! The scenario is now as follows:
    1. project1 packages and deploys successfully with long feature names and deep paths.
    2. project2 does not package and has no features in it at all. The project2 name is 13 characters longer than project1
    I am convinced this is a bug with Visual Studio and/or the Package MSBuild target. Why? Let me explain my findings so far:
    1. By doing the following I can get project2 to package
    In Visual Studio 2010 show all files of project2, delete the obj, bin, pkg, pkgobj folders.
    Clean the solution
    Shut down Visual Studio 2010
    Open Visual Studio 2010
    Rebuild the solution
    Package the project2
    et voila the package is generated!
    This demonstrates that the package error message is in fact inaccurate and that it can create the package, it just needs a little help, since Visual Studio seems to
    no longer be hanging onto something.
    Clearly this is fine for a small time project, but try doing this in an environment where we use Continuous Integration, Unit Testing and automatic deployment of SharePoint
    solutions on a Build Server using automated builds.
    2. I have created another project3 which has a ludicrously long name, this packages fine and also has no features contained within it.
    3. I have looked at the length of the path under the pkg folder for project1 and it is large in comparison to the one that is generated for project2, that is when it
    does successfully package using the method outlined in 1. above. This is strange since project1 packages and project2 does not.
    4. If I attempt to add project2 to my command line build using MSBuild then it fails to package and when I then open up Visual Studio and attempt to package project2
    from the Visual Studio UI then it fails with the path too long error message, until I go through the steps outlined in 1. above to get it to package.
    5. DebugView shows nothing useful during the build and packaging of the project.
    6. The error seems to occur in
    CreateSharePointProjectService target called at line 365 of
    Microsoft.VisualStudio.SharePoint.targetsCurrently I am at a loss to work out why this is happening? My next task is to delete
    project2 completely and recreate it and introduce it into my Visual Studio solution.
    Microsoft, can you confirm whether this is a known issue and whether others have encountered this issue? Is it resolved in a hotfix?
    Anybody else, can you confirm whether you have come up with a solution to this issue? When I mean a solution I mean one that does not mean that I have to rename my namespaces,
    project etc... and is actually workable in a meaningful Visual Studio solution.

    Hi
    Yes, I thought I had fixed this my moving my solution from the usual documents  to
    c:\v2010\projectsOverflow\DetailedProjectTimeline
    This builds ok, but when I come to package I get the lovely error:
    Error 2 The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters. C:\VS2010\ProjectsOverflow\DetailedProjectTimeline\VisualDetailedProjectTimelineWebPart\Features\Feature1\Feature1.feature VisualDetailedProjectTimeline
    Now, the error seems to be related to 
    Can anyone suggest what might be causing this. Probably some path in an XML file somewhere. Here is my prime suspect!
    <metaData>
    <type name="VisualDetailedProjectTimelineWebPart.VisualProjectTimelineWebPart.VisualProjectTimeline, $SharePoint.Project.AssemblyFullName$" />
    <importErrorMessage>$Resources:core,ImportErrorMessage;</importErrorMessage>
    </metaData>
    <data>
    <properties>
    <property name="Title" type="string">VisualProjectTimelineWebPart</property>
    <property name="Description" type="string">My Visual WebPart</property>
    </properties>
    </data>
    </webPart>
    </webParts>
    .... Unless I can solve this I will have to remove the project and recreate but with simple paths. Tho I will be none the wiser if I come across this again.
    Daniel

Maybe you are looking for

  • Applescript with iCal

    Hi All, I'm trying to write an applescript to dump those events from a calendar that lie between today and a future date I specify. For each event, on a single line I want two tab separated values - the date and the event summary. Here's what I came

  • Website does not load in my Mac

    Hi everyone, I have a problem loading a particular work-related webpage in Safari, or any other mac related browser. I have tried Firefox, Internet Explorer for Mac. After getting through password and the OTP, the page loads, however where the icons

  • Date Format Issue with Pre-Insert trigger

    I have created a form wherein creation_date and last_update_date are columns in a table that needs to be populated with sysdate (in format mm/dd/yyyy hh:mi:ss am) at time of saving. In pre-insert triiger, if I assign date as follows , it works: :crea

  • Transaction codes is not working in WEB GUI URL

    Hi All, We configured Integrated ITS in ECC 6.0 it is working fine but if i enter any Tcode in URL but it showing SAP Easy access screen only .i want run some tcode throug URL .Can you please let me know how solve this issue. Thanks in advance Regard

  • Custom Components (CFC's)

    So I'm working on an app that requires 2 CFC's in order for it to function correctly. The first one is sosXML (http://sosxml.riaforge.org/) and the other is cfcUnit. So I downloaded both zipped files and dropped them in the root path of the website's