[svn:fx-trunk] 14083: Removed svn:executable property from some . xml files in trunk.

Revision: 14083
Revision: 14083
Author:   [email protected]
Date:     2010-02-09 22:48:11 -0800 (Tue, 09 Feb 2010)
Log Message:
Removed svn:executable property from some .xml files in trunk.
QE notes: None
Doc notes: None
Bugs: None
Reviewer: None
Tests run: ant checkintests
Is noteworthy for integration: No
Property Changed:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralVectorNode.java
    flex/sdk/trunk/modules/asc/src/localized_strings/CS/ErrorConstants.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/CS/Lint_Warnings.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/NL/ErrorConstants.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/NL/Lint_Warnings.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/PL/ErrorConstants.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/PL/Lint_Warnings.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/PT/ErrorConstants.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/PT/Lint_Warnings.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/RU/ErrorConstants.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/RU/Lint_Warnings.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/SV/ErrorConstants.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/SV/Lint_Warnings.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/TR/ErrorConstants.xml
    flex/sdk/trunk/modules/asc/src/localized_strings/TR/Lint_Warnings.xml

Similar Messages

  • [svn:bz-trunk] 18061: Added svn:executable property to sh and bat files

    Revision: 18061
    Revision: 18061
    Author:   [email protected]
    Date:     2010-10-07 06:57:08 -0700 (Thu, 07 Oct 2010)
    Log Message:
    Added svn:executable property to sh and bat files
    Property Changed:
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/catalina.bat
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/catalina.sh
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/cpappend.bat
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/digest.bat
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/digest.sh
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/setclasspath.bat
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/setclasspath.sh
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/shutdown.bat
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/shutdown.sh
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/startup.bat
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/startup.sh
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/tool-wrapper.bat
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/tool-wrapper.sh
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/version.bat
        blazeds/trunk/servers/apache-tomcat-6.0.29/bin/version.sh

    Well, I've tried compiling a package and I have modified the PKGBUILD file to look like this now. (Keeping it as simple as possible)
    pkgname=dvbcut-svn
    pkgver=16
    pkgrel=1
    pkgdesc="DVBCUT-svn is an application that allows you to
    edit MPEG files. ie: Remove TV ads. (SVN version: Fri, 01 Dec 2006)."
    url="http://dvbcut.sourceforge.net"
    depends=('qt' 'libao')
    makedepends=('subversion' 'scons')
    conflicts=('dvbcut' 'ffmpeg')
    provides=('dvbcut')
    source=()
    md5sums=()
    _svntrunk=https://svn.sourceforge.net/svnroot/dvbcut/trunk
    _svnmod=dvbcut
    build() {
    cd $startdir/src
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
    cd $_svnmod
    msg "SVN checkout done or server timeout"
    msg "Starting make..."
    make || return 1
    # vim:syntax=sh
    I then run makepkg PKGBUILD and let it do its thing
    It ends with this...
    scons: done building targets.
    ==> Removing info/doc files...
    ==> Compressing man pages...
    ==> Stripping debugging symbols from libraries...
    ==> Stripping symbols from binaries...
    ==> Generating .PKGINFO file...
    ==> Generating .FILELIST file...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    ==> Compressing package...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    ==> Finished making: dvbcut-svn  (Sun Jan 21 19:08:28 UTC 2007)
    I'm not sure what's causing this error message.
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    I'll try installing it and see how it goes.

  • Help needed in removing the duplicate nodes in an xml file

    Hi Friends,
    I need some help in removing the duplicates from a xml file using the Excel Spreadsheet. The xml Im using does not have any schema.
    Can some one please let me know the steps.
    Thanks a lot.

    Hi,
    I got the answer.
    Go to the developers Tab and click on export.
    Select the column where we want to delete the duplicates and click on Remove Duplicates from Data Tab.
    OR go to Home Tab> Conditional Formatting> High light Cell Rules> Duplicate Values. It will highlight all the duplicate values and then remove them manually.
    Thanks.

  • Removing the Control Characters from a text file

    Hi,
    I am using the java.util.regex.* package to removing the control characters from a text file. I got below programming from the java.sun site.
    I am able to successfully compile the file and the when I try to run the file I got the error as
    ------------------------------------------------------------------------D:\Debi\datamigration>java Control
    Exception in thread "main" java.util.regex.PatternSyntaxException: Illegal repet
    ition
    {cntrl}
    at java.util.regex.Pattern.error(Pattern.java:1472)
    at java.util.regex.Pattern.closure(Pattern.java:2473)
    at java.util.regex.Pattern.sequence(Pattern.java:1597)
    at java.util.regex.Pattern.expr(Pattern.java:1489)
    at java.util.regex.Pattern.compile(Pattern.java:1257)
    at java.util.regex.Pattern.<init>(Pattern.java:1013)
    at java.util.regex.Pattern.compile(Pattern.java:760)
    at Control.main(Control.java:24)
    Please help me on this issue.
    Thanks&Regards
    Debi
    import java.util.regex.*;
    import java.io.*;
    public class Control {
    public static void main(String[] args)
    throws Exception {
    //Create a file object with the file name
    //in the argument:
    File fin = new File("fileName1");
    File fout = new File("fileName2");
    //Open and input and output stream
    FileInputStream fis =
    new FileInputStream(fin);
    FileOutputStream fos =
    new FileOutputStream(fout);
    BufferedReader in = new BufferedReader(
    new InputStreamReader(fis));
    BufferedWriter out = new BufferedWriter(
    new OutputStreamWriter(fos));
         // The pattern matches control characters
    Pattern p = Pattern.compile("{cntrl}");
    Matcher m = p.matcher("");
    String aLine = null;
    while((aLine = in.readLine()) != null) {
    m.reset(aLine);
    //Replaces control characters with an empty
    //string.
    String result = m.replaceAll("");
    out.write(result);
    out.newLine();
    in.close();
    out.close();

    Hi,
    I used the code below with the \p, but I didn't able to complie the file. It gave me an
    D:\Debi\datamigration>javac Control.java
    Control.java:24: illegal escape character
    Pattern p = Pattern.compile("\p{cntrl}");
    ^
    1 error
    Please help me on this issue.
    Thanks&Regards
    Debi
    // The pattern matches control characters
    Pattern p = Pattern.compile("\p{cntrl}");
    Matcher m = p.matcher("");
    String aLine = null;

  • Removing non printable characters from an excel file using powershell

    Hello,
    anyone know how to remove non printable characters from an excel file using powershell?
    thanks,
    jose.

    To add - Excel is a binary file.  It cannot be managed via external methods easily.  You can write a macro that can do this.  Post in the Excel forum and explain what you are seeing and get the MVPs there to show you how to use the macro facility
    to edit cells.  Outside of cell text "unprintable" characters are a normal part of Excel.
    ¯\_(ツ)_/¯

  • How do i remove the exif metadata from my jpg file produced with a digital camera photo?

    How do i remove the exif metadata from my jpg file produced with a digital camera photo?

    The excellent and free utility Irfanview has the option to remove the EXIF data.
    Simply open and the file and do a Save, or Save As with the original name.
    Surprisingly, the default is to not keep the original EXIF data.

  • Revision property in bpel.xml file in jar

    Hi!
    I've been trying to set revision property for my BPEL process in JDeveloper but had no success. Even if I set this property in bpel.xml file like this:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase revision="1.0">
    </BPELSuitcase>This property is not set in bpel.xml file in jar file after the build, but it is composed of date, time and build number.
    I can change this property by renaming jar file to zip, unpack, change the property in bpel.xml, pack back to zip and rename back to jar. This way the deployed version is 1.0 as I want it to be.
    Isn't there a way to set this in JDeveloper while developing the process?
    Thanks.
    BB

    Hi Dietrich!
    Thanks for your help. I did what you suggested but had to provide some more property values in build.properties:
    admin.user
    admin.password
    http.hostname and
    http.port
    Without this I couldn't make the build.
    But I don't like this solution, the admin.password is now in clear-text in this file plus I can't use the same jar file for our development server, test server and then production server.
    Is there another way just to set revision property and leave others default?
    BB

  • [svn] 3037: Update flex-config. xml files used by the team and qa webapps to use the {targetPlayerMajorVersion} token instead of a hardcoded player version in the library-path and external-library-path .

    Revision: 3037
    Author: [email protected]
    Date: 2008-08-29 06:54:15 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Update flex-config.xml files used by the team and qa webapps to use the {targetPlayerMajorVersion} token instead of a hardcoded player version in the library-path and external-library-path. This will allow the correct playerglobal.swc to be located when the target player version is set in the flex-config.xml or passed to mxmlc or compc.
    Modified Paths:
    blazeds/trunk/apps/team/WEB-INF/flex/flex-config.xml
    blazeds/trunk/qa/resources/config/flex-config.xml

    Unfortunately I don't have the
    "org.eclipse.swt.win32.win32.x86_3.1.2.jar" file. On my computer
    the folder is not set up the same way (C:\Program Files\Adobe\Flex
    Builder 2\plugins) instead it is set up as (C:\Program
    Files\Adobe\Flex Builder 2\metadata\plugins) but I've looked in
    everything and that file just isn't in there. I've re downloaded it
    twice. Still not there. Is there anything else i can do.

  • How can I remove the blue background from my PDFs files

    How can I remove the blue background from my PDFs files

    Which tutorial?
    Answers are in your HTML and CSS code.  What is the link to your online test page?
    Nancy O.

  • Try to do my first XML Schema in SQL Server 2012 Mangement Studio(SSMS2012)-How to execute the xsd and xml files in SSMS2012?

    Hi all,
    I learmed the basic stuff of XML, DTD, DOM, etc. long time ago. Now, I came back to resume my XML journey and try to learn the XML Schemas, XPath and XQuery. I have Microsoft SQL Server 2012 Management Studio (SSMS2012) in our computer network. From
    Page 221 of the old Book "Beginning XML 2nd Edition" written by David Hunter, et.al., (published by Wrox), I copied the name5.xsd and name5.xml :
    <?xml version="1.0"?>
    <schema xmlns=http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.wrox.com/name" xmlns:target="http://www.wrox.com/name"
    elementFormDefault="qualified">
    <element name="name">
    <complexType>
    <sequence>
    <element name="first" type="string"/>
    <element name="middle" type="string"/>
    <element name="last" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    <?xml version="1.0"?>
    <name
    xmlns=http://www.wrox.com/name"
    xmlns:xsi="http://www.wrox.org/2001XMLSchema-instance"
    xsi:schemaLocation="http://www.wrox.com/name name5.xsd"
    title="Mr.">
    <first>John</first>
    <middle>Frizgerald</middle>
    <last>Doe</last>
    </name>
    How can I execute these two files in my SSMS2012 for doing my first XML Schema trial?
    Please kindly help, advise and respond.
    Thanks in advance,
    Scott Chang

    Hi Eric Zhang, Thanks for your nice response.
    1) I saw the CREATE XML SCHEMA COLLECTION (Transact-SQL) and tried  its first example "Create XML schema collection in the database" in my SQL Server 2012 Management Studio (SSMS2012):
    -- Create a sample database in which to load the XML schema collection.
    -- Copied this set of code stsments from Microsoft Library (ms176009)
    -- ColesMS12_20a.sql (saved in C:/Documents/SQL Server Management Studio)
    -- 19 March 2015 1145 AM
    CREATE DATABASE SampleDB
    GO
    USE SampleDB
    GO
    CREATE XML SCHEMA COLLECTION ManuInstructionsSchemaCollection AS
    N'<?xml version="1.0" encoding="UTF-16"?>
    <xsd:schema targetNamespace="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions"
    xmlns ="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" >
    <xsd:complexType name="StepType" mixed="true" >
    <xsd:choice minOccurs="0" maxOccurs="unbounded" >
    <xsd:element name="tool" type="xsd:string" />
    <xsd:element name="material" type="xsd:string" />
    <xsd:element name="blueprint" type="xsd:string" />
    <xsd:element name="specs" type="xsd:string" />
    <xsd:element name="diag" type="xsd:string" />
    </xsd:choice>
    </xsd:complexType>
    <xsd:element name="root">
    <xsd:complexType mixed="true">
    <xsd:sequence>
    <xsd:element name="Location" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType mixed="true">
    <xsd:sequence>
    <xsd:element name="step" type="StepType" minOccurs="1" maxOccurs="unbounded" />
    </xsd:sequence>
    <xsd:attribute name="LocationID" type="xsd:integer" use="required"/>
    <xsd:attribute name="SetupHours" type="xsd:decimal" use="optional"/>
    <xsd:attribute name="MachineHours" type="xsd:decimal" use="optional"/>
    <xsd:attribute name="LaborHours" type="xsd:decimal" use="optional"/>
    <xsd:attribute name="LotSize" type="xsd:decimal" use="optional"/>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>' ;
    GO
    -- Verify - list of collections in the database.
    select *
    from sys.xml_schema_collections
    -- Verify - list of namespaces in the database.
    select name
    from sys.xml_schema_namespaces
    -- Use it. Create a typed xml variable. Note collection name specified.
    DECLARE @x xml (ManuInstructionsSchemaCollection)
    GO
    --Or create a typed xml column.
    CREATE TABLE T (
    i int primary key,
    x xml (ManuInstructionsSchemaCollection))
    GO
    -- ////The following code statements are not used in order to create SampleDB
    -- Clean up
    ---DROP TABLE T
    ---GO
    ---DROP XML SCHEMA COLLECTION ManuInstructionsSchemaCollection
    ---Go
    ---USE Master
    ---GO
    ---DROP DATABASE SampleDB
    It worked and I got the following results:
    1 4 NULL sys 2009-04-13 12:59:13.390 2012-02-10 20:16:02.097
    65536 1 NULL ManuInstructionsSchemaCollection 2015-03-19 11:47:17.660 2015-03-19 11:47:17.660
    http://www.w3.org/2001/XMLSchema
    http://schemas.microsoft.com/sqlserver/2004/sqltypes
    http://www.w3.org/XML/1998/namespace
    http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions
    But, I don't undertand (i) what SCHEMA COECTION is, (ii) what <xsd:schema targetNamespace=.....</xsd:complexType> are, (iii) How I can specify my "project specific" schema in the Microsoft SCHEMA COLLECTION to check my xml file.
    2) I dived in the XQuery programmimng in SSMS2012 in the last few weeks. I used the examles of Ad-Hoc XML File Query by Seth Delconte (in
    httpS://www.simple-talk.com/content/print.aspx?article=1756) in my SSMS2012. They worked. But I don't understand the (i) Importing XML data using a function, (ii) Using the XQuery contans()
    function to find substrings, (iii)Efficiency comparisons in the article.
    Please kindly help me in enlightening me to resolve the difficulties listed in 1) and 2).
    Thanks,
    Scott Chang

  • How to remove non-ASCII charcters from an XML generated using Simple Transf

    Hi,
    I am currently facing a problem where I invoke a ST like
    CALL TRANSFORMATION ZTEST
      source root = str
      result xml rawstr.
    to prepare an XML using the contents of the ABAP variable str.
    In my case sometime the variable str can contain non-ASCII characters. What I find is that ST do not remove these characters and the final XML that get generated thus contains non-parsable xml charcaters.
    Is there an efficient way to remove/replace such non-ascii characters within the ST such that my final XML is consumable by any xml parser. I do not want to do a second level of processing by running through the output xml and removing the charcaters individually, because in our system the number of xml messages generated is very high and any such lookup-replace algorithm terms out to be too coslty.
    Regards,
    Vikas Lamba

    Hi
    may be you know this syntax :)
    <?xdofx:substr(SHIP_TO_LOCATION_NAME,11,44)?>
    Rahul

  • Execute a xquery in XML file ith Size Limit.

    Hi there,
    I have the following XML file:
    &lt;Fuzzy&gt;
    &lt;Rule&gt;
    &lt;rule_ID&gt;1&lt;/rule_ID&gt;
    &lt;event&gt;insert&lt;/event&gt;
    &lt;happen&gt;after&lt;/happen&gt;
    &lt;condaction&gt;collection('test.dbxml')/Bookstore/Book&lt;/condaction&gt;
    &lt;/Rule&gt;
    &lt;/Fuzzy&gt;
    I use the following code to execute the xquery in the TAG &lt;condaction&gt;:
    String Query = "collection('test.dbxml')/Fuzzy/Rule/condaction/text()";
    XmlQueryExpression ue = myManager.prepare(Query, context);
    XmlResults results = ue.execute(context);
    while(results.hasNext()) {
    System.out.println("==================================");
    String test = results.next().asString();
    System.out.println(test);
    XmlQueryExpression e = myManager.prepare(test, context);
    XmlResults results1 = e.execute(context);
    while(results1.hasNext()) {
    System.out.println("==================================");
    System.out.println(results1.next().asString());
    The above execute the xquery and provides me the result. But the same code has problems when I use the below Xquery which has a longer Xquery length. Is there any limit on the size of xquery ?
    &lt;Fuzzy&gt;
    &lt;Rule&gt;
    &lt;rule_ID&gt;1&lt;/rule_ID&gt;
    &lt;event&gt;insert&lt;/event&gt;
    &lt;happen&gt;af ter&lt;/happen&gt;
    &lt;condaction&gt;if(collection('test.dbxml')/Bookstore/Book/book_ID gt 0 and collection('test.dbxml')/Bookstore/Book/price lt 20) then insert nodes &lt;b4&gt;inserted child&lt;/b4&gt; after
    collection('test.dbxml')/Bookstore/Book/title else insert nodes &lt;b4&gt;inserted child&lt;/b4&gt; after collection('test.dbxml')/Bookstore/Book&lt;/condaction&gt;
    &lt;/Rule&gt;
    &lt;/Fuzzy&gt;
    The problem I identify is that the 'test' variable only prints the part of the xquery present in the tag:
    ================================
    if(collection('test.dbxml')/Bookstore/Book/book_ID gt 0 and collection('test.dbxml')/Bookstore/Book/price lt 20) then insert nodes
    Please help me to identify if I am wrong or if there are any limitations that is causing this problem.
    Thanks.

    FYI..
    XML has a special set of characters that cannot be used in normal XML strings. These characters are:
    <ol><li>& - &amp; </li>
    <li>&lt; - &lt; </li>
    <li>&gt; - &gt; </li>
    <li>" - " </li>
    <li>' - ' </li>
    </ol>
    I replaced the above ones in my XML Tag that has xquery and it worked !!

  • How to execute code from a text file?

    Hello all!
    How to execute some code lines from a text file? For example my file is:
    String varname = "somecontents";
    JFrame frame = new JFrame();
    frame.setVisible(true);How can I get contents of this file and parse them if I want get new JFrame and access to the variable varname?

    I mean the PHP would generate a readable Java source,
    for example some variables with some data, and I just
    dont know what to do with file if I want generate the
    xls file from my saved data, could You help? :)Some variables, some data, PHP, Java, XLS file??? Al rather vague.
    You need to explain in more detail what it is you're trying to do if you want an answer to your question!

  • How to access component's control property from main .mxml file

    I have a main .mxml while in which i imported custom
    "popUpWindow" component using "import component.popUpWindow"
    statement. In main .mxml file I display later on that component as
    popUp window using popUp manager class. Once component is
    displayed, how can i access using actionscript component's
    TextInput control (specifically its .text property) from my main
    .mxml file?
    thanks

    I posted this answer elsewhere, maybe it will help:
    First, save the new component wherever you keep your
    components, let's say you call it "MyPopWindow.mxml"
    Assign public variables for the string in both the main app
    and the popup.
    In your case, in the main app:
    Code:
    public var myText:String = "whatever the text field should
    say.";
    and then in the pop up mxml:
    Code:
    [Bindable]
    public var myText;
    Then, in the main mxml file:
    Code:
    // define the window type
    private var popWin:MyPopWindow;
    private function popMeUp(event:MouseEvent):void{
    popWin =MyPopWindow(PopUpManager.createPopUp(this,
    MyPopWindow, true));
    popWin.myText = myText;
    The important things here to notice is the name of the
    component (i.e. the file) is used. A variable is created for the
    window, and TYPED to your file name. Then you use the constructor
    you already had, but again use your type. The "true" is optional
    and gives you a modal popup window.
    Lastly, assign the variable in the window (I called mine
    popWin) to the variable in the main file you want to pass.

  • Input to an executable jar from a batch file

    Hi, I have created an executable jar program to receive the input during runtime from a batch file. I have tried to run the program by passing arguments at runtime but the code doesn't seem to execute. Can anyone help me out to pass an argument to the java program using the batch file. The flow of my project is -> The batch file triggers the executable jar file (I am able to execute till this !) -> The input to the executable jar file should be fetched from the arguments given in the batch file which will be taken as the input for the java program.

    My java code prompts the user to enter the data but the batch file when executed executes the code but does not wait for the user input. This is the message my batch file displays when executed.
    C:\Users\Administrator\Downloads\BatchTool>java -Xms512M -Xmx512M -jar Program.jar -o true
    Enter custom directory :
    C:\Users\Administrator\Downloads\BatchTool>PAUSE
    Press any key to continue . . .
    If I press any key the program exits
    Is there an option to give the input via batch code ? My doubt is not in the java code. Its the batch file which triggers the code and i want the batch command which will trigger the input to the code being executed.
    Is there a way to give the input to this batch file ?
    C:\Users\Administrator\Downloads\BatchTool>java -Xms512M -Xmx512M -jar Program.jar -o true * Can i replace this code with an input for the java code ? *
    Edited by: Raja Pandian C on Dec 21, 2012 2:26 PM
    Edited by: Raja Pandian C on Dec 21, 2012 2:27 PM

Maybe you are looking for

  • 2 BW reports on a cube TIMESOUT intermittently; other reports on cube ok

    Hi, I have Report1 and Report2 against Cube1. Sometimes it takes about 5 mins for each report to execute after putting in the selection criteria. It did not use to be so last year. We thought it was an issue with partition so the we added new partiti

  • How to change headings and titles in standard performance mgmt screen ?

    Hi, I am new to webdynro ABAP. Kindly help with inputs for below requirement To change the process title  for Manager overview screen To change task descriptions (eg current description is- Schedule review meetings with employee and discuss goals. th

  • I give up trying to reinstall update

    I have tried everything suggested in the various threads.  Nothing is working.  To jump through hoops to update itunes is ridiculous.

  • JDBC Adaptor problem

    Hi I am doing JDBC-RFC-JDBC Scenario without BPM with quality of service  BE. In this, JDBC sender adaptor is updating the table1 with sent flag = 'X'. Now the prob is the receiver adaptor is also upadting  table1 with some data and  here it is hangi

  • Cannot update to lion 10.7.1

    I just recently decided that I wanted to switch over to iCloud until I realized the iCloud icon was missing from System Preferences. Under the Apple, About it states that my software is Lion 10.7. After researching I see that there have been two upda