Copy in sand-boxed app. in 1.6.0_24+

<ul>
<li>Problem Summary
<li>Question
<li>Typical Output
<li>See Also
<li>Accumulated Results
<ul>
<li>Not grabbing focus
<li>Grabbing focus
</ul>
<li>Source
<ul>
<li>PropertyProbe.java
<li>propertyprobe.jnlp
<li>js.html
<li>Java Scripts
</ul>
<li>Post Revisions
</ul>
<h2><a name="summary"></a>Problem Summary</h2>
A security bug was fixed recently in the JRE (1.6.0_24 in Sun's JRE). The result of the fix is that sand-boxed apps. no longer provide 'Ctrl-c' copy (or cut/paste) functionality by default on text output controls like JTextArea & JTable.
While Ctrl-c copy no longer works by default, it is possible to add the functionality back in for any applet run in a 'Next Generation' Java Plug-In. Since Java Web Start existed, JWS provided sand-boxed copy via. the JNLP API's javax.jnlp.ClipboardService, & since Sun 1.6.0_10, & the next gen. plug-in, embedded applets can be deployed using JWS & can access the JNLP API.
I have redesigned an applet that relied on the old functionality, to now use the JNLP API Services if available.
<h2><a name="question"></a>Question</h2>
Does it work for you?
To answer that question:
<ol>
<li>Surf on over to the applet at http://pscode.org/prop/js.html and attempt to copy the data. See the instructions in the page for details of how to copy using the old and new forms of the applet. If the button appears, you should be prompted as to whether to allow the copy.
<li>Paste the data here (assuming the copy is successful). Or report if it fails to copy or the applet fails to appear.
</ol>
<h2><a name="egoutput"></a>Typical Output</h2>
This is what you might see at the applet.
||Property||Value||
|java.version|1.6.0_24|
|java.vendor|Sun Microsystems Inc.|
|os.name|Windows 7|
|os.version|6.1|
<h2><a name="related"></a>See Also</h2>
This relates to the thread Copy & Paste Function in Java JDK 6 Update 24. That thread contains some interesting comments, including:
<ul>
<li>A link to Sami Koivu's blog entry that explains the security bug.
<li>My Re: Copy & Paste Function in Java JDK 6 Update 24 table.
</ul>
<h2><a name="results"></a>Accumulated Results</h2>
<p>The first form of the applet showed a variety of problems with 'post copy focus', if the security prompt appeared in the JWS form of the applet.
<h3><a name="nograbfocus"></a>Not grabbing focus</h3>
||Reporter||Browser||Version||OS name||OS version||Java Vendor||Java version||Focus post dialog||Comments||
|Andrew Thompson|IE|8.0.7600.16385|Windows 7|6.1|Sun Microsystems Inc.|1.6.0_24|applet|(1)|
|Andrew Thompson|Chrome|10.0.648.151|Windows 7|6.1|Sun Microsystems Inc.|1.6.0_24|page|(2)|
|Andrew Thompson|FF|3.6.16|Windows 7|6.1|Sun Microsystems Inc.|1.6.0_24|*nothing*|(3)|
|Walter Laan|FF|3.6.16|Windows 7|6.1|Sun Microsystems Inc.|1.6.0_20|*locked*|(4)|
|almightywiz|FF|3.6.16|Windows 7|6.1|Sun Microsystems Inc.|1.6.0_24|?|(5)|
|camickr|IE|8|Windows XP|5.1|Sun Microsystems Inc.|1.6.0_07|N/A|(6)|
|Christian|FF|3.6.15|Windows XP|5.1|Sun Microsystems Inc.|1.6.0_24|no problems|(7)|
|Walter Laan|?|?|Windows XP|5.1|Sun Microsystems Inc.|1.7.0-ea|page?|(8)|
|abillconsl|FF|3.6.13|Windows XP|5.1|Sun Microsystems Inc.|1.6.0_12|?|(9)|
<ol>
<li>Makes 'Ding' sound when copying the alert is dismissed (who said MS was not security conscious?).
<li>The only way to refocus the applet in Chrome is to click in it with the mouse.
<li>'Alt space' allowed me to minimize/restore FF, but no key combo. I could think of would restore focus to controls in the browser or applet.
<li>Reported serious problems with focus for FF on 1st start-up using 1.6.0_20 JRE. Unable to reproduce on the 1.6.0_24 JRE. Ref. {message:id=9470476}, {message:id=9470587}
<li>Reported no problems with focus. Ref. {message:id=9470371}
<li>1st report for a pre plug-in2 JRE. IE 8 produced no prompts (as expected), so the 'Focus post dialog' does not apply. No auditory warnings. Ref. {message:id=9470761}
<li>'No problems with focus.'. Ref. {message:id=9474121}
<li>Focus returned to page, presumably. Ref. {message:id=9474513}
<li>Ctrl-a seemed to do nothing. No mention of focus. Ref. {message:id=9477829}
</ol>
<h3><a name="grabfocus"></a>Grabbing focus</h3>
<p>The second form of the applet has a provision to grab the focus immediately after the copy (and presumably after the trust dialog).
||Reporter||Browser||Version||OS name||OS version||Java Vendor||Java version||Focus post dialog||Comments||
|camickr|IE|8|Windows XP|5.1|Sun Microsystems Inc.|1.6.0_07|N/A|(1)|
|Andrew Thompson|IE|8.0.7600.16385|Windows 7|6.1|Sun Microsystems Inc.|1.6.0_24|applet|-|
|Andrew Thompson|Chrome|10.0.648.151|Windows 7|6.1|Sun Microsystems Inc.|1.6.0_24|applet|-|
|Andrew Thompson|FF|3.6.16|Windows 7|6.1|Sun Microsystems Inc.|1.6.0_24|applet|-|
|Paŭlo Ebermann|FF?|?|Linux2.6.34.7-0.7-desktop|2.6.34.7-0.7-desktop|Sun Microsystems Inc.|1.6.0_20|?|(2)|
|bogdana|IE|9.0.8112.16421|Windows 7 |6.1|Sun Microsystems Inc.|1.6.0_22 |applet|(3)|
<ol>
<li>The first result for camickr can be inferred from the fact that a pre plug-in2 applet should behave the same in both forms of the applet. Ref. {message:id=9470761}
<li>There are further updates on that thread that have not yet been reflected here. See the thread for details. Ref. P.E. comments at SO
<li>Also reported the auditory warning in IE when dialog disappears. Ref. {message:id=9488352}
</ol>
<h3><a name="java"></a>PropertyProbe.java</h3>
package org.pscode.tool.property;
import java.awt.*;
import java.awt.event.*;
import java.awt.datatransfer.StringSelection;
import javax.swing.*;
import javax.swing.table.*;
import javax.swing.border.EmptyBorder;
import java.util.Locale;
import java.security.AccessControlException;
import javax.jnlp.*;
/** Adds a comma delimited list of property names defined in the
props param, to the constructor of a new PropertiesPanel and
displays it. */
public class PropertyProbe extends JApplet {
    static String[] defaultProps = {
        "os.name",
        "os.version",
        "os.arch",
        "java.vendor",
        "java.version",
        "java.vm.version",
        "default_locale",
        "display_mode",
        "win.highContrast.on",
        "win.text.fontSmoothingOn",
        "win.defaultGUI.font",
        "awt.font.desktophints",
        "awt.mouse.numButtons",
        "awt.multiClickInterval"
    public void init() {
        String propertyNames = getParameter("prop");
        String[] props;
        if (propertyNames==null) {
            //getContentPane().add( new JLabel("Must specify 'prop' to query!") );
            props = defaultProps;
        } else {
            props = propertyNames.split(",");
        boolean grabFocus = getParameter("jnlp.grab.focus")!=null;
        System.out.println("jnlp.grab.focus: " + grabFocus);
        boolean jnlpServicesAvailable = getParameter("jnlp.launched")!=null;
        PropertyPanel pp = new PropertyPanel(props, jnlpServicesAvailable, grabFocus);
        pp.setPreferredSize(new Dimension(200,140));
        getContentPane().add( pp );
        validate();
    public static void main(final String[] args) {
        Runnable r = new Runnable() {
            public void run() {
                String[] props = defaultProps;
                if (args.length>0) {
                    props = args;
                boolean jnlpServicesAvailable = false;
                try {
                    Class.forName("javax.jnlp.ServiceManager");
                    jnlpServicesAvailable = true;
                    System.out.println("JNLP services available!");
                } catch(Throwable t) {
                    t.printStackTrace();
                    System.out.println("JNLP services ***NOT*** available!");
                PropertyPanel pp = new PropertyPanel(props, jnlpServicesAvailable, false);
                pp.setPreferredSize(new Dimension(200,200));
                JPanel mainPanel = new JPanel(new BorderLayout());
                mainPanel.setPreferredSize(new Dimension(400,200));
                mainPanel.add( pp );
                JFrame f = new JFrame("Property Probe");
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.setContentPane(mainPanel);
                f.pack();
                try {
                    f.setLocation(50,50);
                    f.setLocationRelativeTo(null);
                    f.setLocationByPlatform(true);
                    f.setMinimumSize( f.getSize() );
                } catch(Exception e) {
                f.setVisible(true);
        EventQueue.invokeLater(r);
class PropertyPanel extends JPanel {
    /** The JNLP API service used for copy in apps. deployed using JWS. */
    private ClipboardService clipboardService;
    private boolean grabFocus = false;
    private JTable table;
    /** A widget (JTable) of values for properties specified in the
    array of property names.  The properties are sourced from the
    system, environment and AWT toolkit properties.If there is no
    value defined in one of those three, 'null' is displayed. */
    PropertyPanel(String[] props, boolean jnlpServicesAvailable, boolean grabFocus) {
        super(new BorderLayout());
        this.grabFocus = grabFocus;
        setBorder( new EmptyBorder(5,5,5,5) );
        String[][] propValuePairs = new String[props.length][2];
        for ( int ii=0; ii<props.length; ii++ ) {
            propValuePairs[ii][0] = props[ii];
            propValuePairs[ii][1] = getProperty( props[ii] );
        String[] header = {"Property","Value"};
        table = new JTable( propValuePairs, header );
        try {
            table.setAutoCreateRowSorter(true);
        } catch (Exception e) {
            // pre 1.6 JRE, go with an unsorted table
        this.add( new JScrollPane( table ) );
        if (jnlpServicesAvailable) {
            try {
                clipboardService =
                    (ClipboardService)ServiceManager.
                        lookup("javax.jnlp.ClipboardService");
                Action action = new CopyAction(
                    "Copy",
                    null,
                    "Copy data",
                    new Integer(KeyEvent.VK_CONTROL+KeyEvent.VK_C));
                table.getActionMap().put( "copy", action );;
                final JButton copy = new JButton("Copy to clipboard");
                copy.setMnemonic('c');
                copy.addActionListener( action );
                JPanel bottomPanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
                bottomPanel.add(copy);
                add(bottomPanel, BorderLayout.SOUTH);
            // Expecting only javax.jnlp.UnavailableServiceException.  But if we
            // try to catch it, we get a NoClassDefFoundError in non JWS apps.!
            } catch(Throwable use) {
                use.printStackTrace();
                System.err.println("Copy services not available.  Copy using 'Ctrl-c'.");
    /** Check for properties in the order of the toolkit, system
    then environment, on the basis that all the toolkit properties
    are    available to sandboxed apps., as well as some of the system
    properties, but none of the environment properties. */
    public String getProperty(String prop) {
        String value = null;
        if ( prop.equals("default_locale") ) {
            return Locale.getDefault().toString();
        if ( prop.equals("display_mode") ) {
            return getDisplayModeString();
        value = getDesktopProperty(prop);
        if (value!=null) {
            return value;
        value = getSystemProperty(prop);
        if (value!=null) {
            return value;
        value = getEnvironmentProperty(prop);
        if (value!=null) {
            return value;
        return "null";
    public String getSystemProperty( String prop ) {
        try {
            return System.getProperty( prop );
        } catch(AccessControlException ace) {
            // this property is either restricted, /or/ 'null'
            // the plug-in will not reveal which, for a sandboxed
            // app.
            return "unknown";
    public String getEnvironmentProperty(String prop) {
        try {
            Object value = System.getenv().get(prop);
            if (value==null) {
                return null;
            } else {
                return value.toString();
        } catch(AccessControlException ace) {
            return null;
    public String getDesktopProperty(String prop) {
        Object value = Toolkit.
            getDefaultToolkit().
            getDesktopProperty(prop);
        if (value==null) {
            return null;
        } else {
            return value.toString();
    public String getDisplayModeString() {
        DisplayMode dm = GraphicsEnvironment.
            getLocalGraphicsEnvironment().
            getDefaultScreenDevice().
            getDisplayMode();
        String value =
            dm.getWidth()
            +
            "x"
            +
            dm.getHeight()
            +
            +
            dm.getRefreshRate()
            +
            "Hz "
            +
            dm.getBitDepth()
            +
            "bit"
        return value;
    public void copyData(Component source) {
        TableModel model = table.getModel();
        StringBuilder sb = null;
        if (true) {
            sb = new StringBuilder();
            for (int ii=0; ii<model.getRowCount(); ii++) {
                for (int jj=0; jj<model.getColumnCount(); jj++) {
                    sb.append( model.getValueAt(ii,jj).toString() );
                    sb.append( "\t" );
                sb.append( "\n" );
        String s = sb.toString();
        if (s==null || s.trim().length()==0) {
            JOptionPane.showMessageDialog(this,
                "There is no data in the table!");
        } else {
            StringSelection selection =
                new StringSelection(s);
            clipboardService.setContents( selection );
        if (grabFocus) {
            source.requestFocus();
    class CopyAction extends AbstractAction {
        public CopyAction(String text, ImageIcon icon,
            String desc, Integer mnemonic) {
            super(text, icon);
            putValue(SHORT_DESCRIPTION, desc);
            putValue(MNEMONIC_KEY, mnemonic);
        public void actionPerformed(ActionEvent e) {
            copyData((Component)e.getSource());
}<h3><a name="jnlp"></a>propertyprobe.jnlp</h3>
<?xml version='1.0' encoding='UTF-8' ?>
<jnlp spec='1.0'
    href='propertyprobe.jnlp'>
    <information>
        <title>Property Probe</title>
        <vendor>PSCode.org - Andrew Thompson</vendor>
        <description kind='one-line'>
            Table for common Java properties.
        </description>
        <shortcut online='false'>
            <desktop/>
        </shortcut>
    </information>
    <resources>
        <j2se version='1.2+' />
        <jar href='propprobe.jar' main='true' />
    </resources>
    <applet-desc
        main-class='org.pscode.tool.property.PropertyProbe'
        name='applet'
        width='600'
        height='300' >
        <param name='jnlp.launched' value='true' />
    </applet-desc>
</jnlp><h3><a name="html"></a>js.html</h3>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<title>
Property Probe - applet
</title>
<script type='text/javascript' src="http://www.java.com/js/deployJava.js"></script>
<script type='text/javascript' src='http://pscode.org/file/urlcode.js'></script>
<script type='text/javascript' src='http://pscode.org/file/queryprm.js'></script>
<script type='text/javascript' src='http://pscode.org/file/urlquery.js'></script>
<script type='text/javascript' src='http://pscode.org/file/appletparams.js'></script>
<script type='text/javascript'>
archiveName = "";
if (true) {
    archiveName = 'propprobe.jar';
} else {
    archiveName = 'propprobe-trusted.jar';
var attributes = {
    code:'org.pscode.tool.property.PropertyProbe',
    codebase:'../lib',
    archive:archiveName,
    width:'600',
    height:'400'
var version = '1.2';
var params;
params.jnlp_href='../lib/propertyprobe.jnlp';
</script>
</HEAD>
<BODY>
<H1>Property Probe</H1>
<script type='text/javascript'>
deployJava.runApplet( attributes, params, version );
</script>
<P>.. (text & instructions)
</BODY>
</HTML><h3><a name="scripts"></a>JavaScripts linked in the HTML</h3>
'Sold separately' - pull them by direct fetch into your browser window, if you're that interested.
<h2><a name="revisions"></a>Post Revisions</h2>
Edited by: Andrew Thompson on Mar 26, 2011 5:32 AM
Changed subject.
Edited by: Andrew Thompson on Mar 26, 2011 5:19 PM
Added accumulated results and index, other tweaks.
Edited by: Andrew Thompson on Mar 31, 2011 11:08 AM
Removed 'how output appears in code tags'. Added latest results, 'grab focus' results. Changed URL to invoke 'grab focus'.
Edited by: Andrew Thompson on Apr 2, 2011 4:20 AM
Added 1st result from SO - on Linux system.
Edited by: Andrew Thompson on Apr 2, 2011 6:15 AM
Added latest result.

Walter Laan wrote:
almightywiz wrote:
Walter Laan wrote:
The security popup really messes with the focus in Firefox (3.6.16) though.Not saying you're wrong, but I'm using FireFox 3.6.16, as well, and I have none of the focus troubles you've described.Cannot reproduce it now either. Weird.I got the impression you were referring to keyboard focus, so I did some further tests on focus behavior. The test results are listed in the Accumulated Results table on the 1st post.
The only browser so far that works as I'd expect, or at least as I'd like, is IE.
Applets and keyboard navigation have always been a PITA. Some time ago I vaguely recall seeing an update involving a new parameter to regulate initial focus (applet or page, ..or another applet), but for the life of me I cannot locate it now. Given that it was a parameter for initial focus, I doubt it would help in this case.
Edited by: Andrew Thompson on Mar 26, 2011 6:18 PM
Removed table which has now been expanded & added to 1st post.

Similar Messages

  • Regarding copying a program from IDES to Sand box

    i have arequirement to copy a std program from IDES to sand box i do it by making arequest in ides and transporting it in tcode SCC1.is this the rite way plz help me out
    thanks ,
    Naren

    Hi Naren
    SCC1 is for the Client Copy by Transport Request  not for copying from One Box(development/quality) ot another.
    so its not best way..
    Transport Request holds the data, if we transport accros the development or quality Box's that should be confugured by the BASIS..from where to where tranport..
    fhe solution is you need to manually do the copy...
    Regards!

  • What exactly is Sand Box and what does it do?

    What exactly is Sand Box and what does it do? I think it works in the Security Mechanism of Java as a Byte Code Verifier (or atleast as a part of the Byte Code Verifier)..
    Your thoughts please..?

    What exactly is Sand Box and what does it do?It's a concept. It means that the executed code (of applets, Webstart apps) has restricted access rights to System resources. So if it tries anything evil, it won't be able to.

  • Copy-Paste From Other Apps (like PPT 2004) Into CS5 Broken ? -  OS 10.6.3

    Hi,
    New Mac, so to avoid problems went for the new post-Snow Leopard Photoshop CS5. Oops.
    Copy-Paste From Other Apps Into CS5
    Pasting images/photos from Powerpoint 2004 to CS5, I experienced the exact problem posted slightly off topic by james norrington in the thread "CS5 does not let me copy & paste file names."  It was not answered and is quoted here:
    ---"I am using CS5 Photoshop and Office 2004 on 10.6.3. I was using 10.4 until a few weeks ago and it worked and still works with other macs in the office using CS4. I can copy and paste from powerpoint but it cuts the pictures in half and does not know what the res. of the image is. Also when I go from photoshop to powerpoint the image res. is also not preserved."---
    Besides that, I also found copy-paste from a digital camera photo.jpg from Preview to CS5 doesn't respect the resolution either. Directly opening the photo into PS CS5, fine.
    From the earliest PS, always was able to copy any image to clipboard, have a new document dialog box come up pre-filled with correct original WxH pixels, original resolution, color mode, etc., and just paste into the new document - perfect fit (even the oddball PPT 576 ppi). Now a shift and cut-off.  Don't have PPT 2008 to test pasting from there.
    I have also found that a similar but less severe image cut off happens when copy-paste from PPT -> Preview, or -> TextEdit, or ->  drag and drop picture clipping.
    Opening Image File in CS5
    Even an original 300 dpi tiff file wrongly went to 72 ppi etc. when opened directly into CS5. Converted the file to a jpeg in Preview - that jpeg file could be opened into CS5 correctly, reconverted the jpeg to TIFF in Preview, still opened OK (not counting loss of image quality). Still couldn't copy paste from either document into CS5 correctly. One difference I noticed in the converted files was that more information was available in the Preview file info. Maybe that made the difference in opening the file correctly.
    I'd welcome any suggestions. Thanks.
    ---detail of tiff file ---
    original
         GENERAL
         Color Model: RGB
         Depth: 8
         DPI Height: 300
         DPI Width: 300
         Pixel Height: 1033
         Pixel Width: 1315
         TIFF
         Compression: LZW
         Photometric Interpretation: RGB
         Software: Image-Pro Plus
         Y Resolution: 300
    After conversion to jpeg in Preview"
    GENERAL
         Color Model: RGB
         Depth: 8
         DPI Height: 300
         DPI Width: 300
         Orientation: 1 (Normal)
         Pixel Height: 1033
         Pixel Width: 1315
    EXIF
         Pixel X Dimension: 1315
         Pixel Y Dimension: 1033
    TIFF
         Color Model: RGB
         Depth: 8
         DPI Height: 300
         DPI Width: 300
         Orientation: 1 (Normal)
         Pixel Height: 1033
         Pixel Width: 1315
    ----END---

    Thanks to Chris for the explanation of the dueling clipboards.
    It's still frustrating, but since I still have a CS2 license from the dead G4 the current Mac replaced, I can try that (wonder if they can coexist), or maybe I could use an older Mac for this particular situation.
    As for the .tif file, it was generated by a Mac OS 8.5 era image capture program that we are forced to use, and the analysis was that the app does not properly encode the TIFF tags to acceptable standards. Preview 5.0.2 just guessed right from the little information that was included - but it didn't work when tried with Preview 3.0.9 on an OS 10.4 Mac. So this was a unique situation.

  • Sand box Non-central adapter engine entry is shown under development rwb

    Hi All,
    Recently we had a sand box which is a sytem copy of our development server, and everything works fine now.
    I have observed a strange issue here is, in the developement rwb under the Non-Central Adapter engines I see a entry as "Adapter Engine T49 (sand box host name)" the SID seen here is a sand box SID, and till today we never installed any non-central adapter engine either on dev or sand box, I am suprised to see this entry, can some one
    please help me to understand why is this sand box entry is shown under development rwb and where can I set this or where how can I delete this entry.
    Surprisingly I do not see the same non central adapter engine entry on sand box rwb.
    All the servers are XI 3.0 (SP 19).
    Thanking you in advance..
    Regards
    Sonali
    Edited by: Sonali R on Sep 14, 2009 10:59 AM

    Hi Sonali,
    The adapter and integration server engines gets registered with the data in SLD. Please check SLD associations for all XI classes.
    Best Regards
    Raghu

  • Transfering data from sand box to development server

    Hi, we created some production orders using co01 t-code in sand box. we would like to copy / move those orders in development server. is it possible? if yes pls guide me. thanking you in advance.

    Yadav,
    Please tell us why do you want to move the production order from sandbox to development?? The number ranges and other stuff would be completely different in both the environments and hence it would be difficult to copy ONLY the production order. Also production order is a transactional data.
    The other option would be to apply the transport that you created in sand box to development box..this way the config will be there and now you can create all the required master data in development box and then create the production order.
    Try and revert back.
    Regards,
    Swapnil

  • I am working in sand box

    hi,
    sap gurus,
    good morning to all,
    i am working in sand box here i have created one sales cycle from order to cash process with out
    taking into consideration ware house management i.e. transfer order
    but
    while doing sales returns it is considering ware house mangement into picture.
    where went wrong i am not able to find out.
    regards,
    balaji.t

    Hi Balaji,
    The following are the steps for Return Process:-
    1. Create return Order (RE)
        (You can create Return Order wrt to Invoice or Sales order, but reference is not mandatory. If you have delivered 10 c/s of Material and 4c/s got damaged in transit so you will create Return Order for 4 c/s only. here you have to enter give Order  Reason also. So whatever change you want to make in Quantity you have to do it here itself. In delivery Document PICKING will be in greyed mode.)
    2. Create Return Delivery
        (Whatever quantity given in Return Order..same will be copied here so not need to go to Picking Tab. Just do PGR directly).
    Hope it helps you to understand the Process.
    Warm Regards
    MAYANK

  • New Sand Box server

    hi all
    We recently add a new server to our landscape, we allready have DEV, QAS, and PRD systems configured. but now we have the Sand Box (SNB), i am trying to do a copy from DEV to SNB but its not possible, can you please help me, y i am using the SCC9 to do the copy but alway do the same error.
    Client copy from 28.11.2008 12:34:30
    System ID............................ SNB
    Target client........................ 150
    R/3 Release.......................... 700
       Basis Support Package...............SAPKB70014
    Host................................. ctgt-sandbox
    Start in background............. .....X
    User................................. SAP*
    Parameter
    Source destination......................DEV_100
       Source system.........................DEV
       Client in source system..............100
       Users in source system..............CROLDAN
       Basis Support Package...............SAPKB70014
    Copier profile:.......................SAP_RMBC
    Table selection
    Customizing data .....................X
    With application data................
    Initialize and recreate......... X
    With cross-client Customizing.X
            42 Tables cannot be converted
    Critical differences: Missing tables:       148
    Best Regards,
    César

    Hi,
    Please read the below link.
    http://help.sap.com/saphelp_nw04/helpdata/en/69/c24c0f4ba111d189750000e8322d00/frameset.htm
    Anil

  • How can I get a new copy of the Voicemail app for my LG Spectrum?

    How can I get a new copy of the Voicemail app for my LG Spectrum?  It no longer works....the screen say Loading please wait....the
    !Visual Voice Mail - A Visual Voice Mail error has occurred.  Please try again. OK   I've tryed several times with the same message.  I've
    deleted the app from my screen and replaced it from the Apps Library....still the same message.
    I cannot find an answer on MyVerizon.  Any ideas?
    Thank you,
    Dee

    OK, at least 3 is working.
    I don't know how you have a Tape Recorder icon on your Home Screen. I cannot add one myself. But, I am running Holo Launcher in replacement of the default LG "Optimus" User Interface. It's much better in my opinion.
    Try long pressing the icon and select Edit and maybe you can change some attribute of the icon.
    Another thing you could do, is long-press an empty area of your desktop, to add an icon. Select Shortcut, then Select Contact, and scroll through your contact list and choose the contact that you added for *86.
    You realize if you have voice mail you haven't heard, there is a tape recorder icon in the notification bar, which you touch and pull down, then press it to dial voicemail.
    If that functionality doesn't work, you MIGHT want to consider doing a factory data reset on your device, but that is going to nuke all your personalizations and cause you work to set up again.

  • Copying empty text boxes so that when you fill in one the others

    I use Acrobat Professional 8.  I size a blank text box... it's automatically labelled "Text1".  I can copy the empty box by holding the Control key down and moving the box.  Now I have 2 boxes.  If I want to do 3 boxes, I repeat that action.  The only problem is this:  They all say "Text1" and if you fill in the first box, all the other boxes are filled in with the same information.  Here is my question:  How do I copy empty text boxes so that this doesn't happen; that is, how do I copy the boxes such that if I fill in the first box, all the other boxes remain empty until I go and fill them?  Please.  Thank you.

    Somethings to try:
    Give each of the replicated Text boxes a unique name (Text1, Text2, Text3, etc.)
    Or, place Text1 then from the context menu select "Place Multiple Fields".
    This replicates the first and provides a unique Name to each.
    Position each field as desired.
    Be well...

  • Copy and paste between apps not possible in iOS 5, suggestions?

    What happened to being able to copy and paste between apps (i.e. copy something I want in Safari and paste in an email or from an Excel attachment to an email)?

    i dont know i can no longer copy and paste from safari to evernote

  • How can you pull in pdf's from iBooks and bring them into the Box app?

    How can you pull in pdf's from iBooks and bring them into the Box app?

    That sounds great, but I'm lost.
    I followed these steps:
    1) Open your PDF (in Adobe Acrobat Pro)
    2) Chose print
    The print/printer options pop-up will show.
    3) In the printer section, do not use your normal printer, a printer named Adobe PDF should be an option. Chose it.
    4) Under the "Page handling" section, change the Page Scaling drop-down menu to "Multiple pages per sheet".
    It works fine, but it looses all of the font information and the search no longer works. How can you do it and save the font info, so the search tool continues to operate.
    Am I missing anything?

  • Email sent but no copy in "sent" box?

    I've replied a email through company email account on my iphone. I am sure it is sent and there is a replied arrow displayed on the original mail. However it is not shown in the "sent" mail box, not on the phone, not on the server. Can anybody adivce how to make my iphone send a copy to "sent box" onto the server?
    much appreciated

    I have a similar problem. Does the problem go away if you restart your Mail application ("Quit Mail", not close window)? It does for me.
    It would appear that the synchronization code between the imap client in Mail and the imap server get out of sorts and Mail no longer attempts to connect to the server. It does not put up the icon to denote that the server is unreachable, it simply stops connecting to the server.

  • Setting up my own SAND BOX for HANDS ON / practicing BW

    Dear friends,
        I am learning SAP BW, and I need to practice some test cases to make myself comfortable.
    I want to install SAP R/3 on a seperate external hard disk and configure to my system.
    <b>Can anybody from <b>"BANGALORE"</b> tell me <b>who / where i can get this done?</b> How much is it going to cost (Approx) Some address & contact numbers would be really helpful.</b>
    Thanks.<b></b>

    Even I am interested in setting up my own SAND BOX.
    Can any body help us.

  • HT201372 The copy of the installer app failed.

    I'm trying to create a USB bootable with Yosemite, but the process doesn't complete.
    I launched the command from terminal as explained here 
    /Applications/Install\ OS\ X\ Yosemite.app/Contents/Resources/createinstallmedia --volume /Volumes/YOSEMITE/ --applicationpath /Applications/Install\ OS\ X\ Yosemite.app
    and I got the following output:
    Ready to start.
    To continue we need to erase the disk at /Volumes/YOSEMITE/.
    If you wish to continue type (Y) then press return: Y
    Erasing Disk: 0%... 10%... 20%... 30%...100%...
    Copying installer files to disk...
    The copy of the installer app failed.
    Everything goes fine until almost the end. It seems the USB volume is unmounted abruptly because it disappears from the desktop and I got the message asking to eject it before removing it. After that, I get the error that the copy of the installer fails.
    I'm running OS X 10.10.1, I downloaded the Yosemite Image from App Store.
    Thanks in advance for any suggestion.

    You can make a bootable USB stick to install using this free program which will do all the work for you.
    Bootable USB Flash Drive – Diskmaker X

Maybe you are looking for

  • Error in depreciation run

    HI Gurus, After upgrading to ECC 6.0, I am not able to run the depreciation. I get the below mentioned error Create document number range 03 using internal number assignment     Message no. AA776 Diagnosis     Processing terminated because the docume

  • Rotation lock icon doesn't exist

    Hi folks , My q10 has the latest update(10.2.0.424) the screen doesn't rotate , I can't find the rotation lock icon, here is a picture of the panel https://skydrive.live.com/redir.aspx?cid=637c103ff2dbf413&resid=637C103FF2DBF413!121&parid=637C103FF..

  • Creating Sales Order with credit card using Process Order API

    Hi All, When trying to create sales order with payment type as Credit card using Order data storing into staging tables and then calling Order Import Concurrent Program. The order is being created in ENTERED state. While trying to passing the same de

  • Can i deploy the same proxy service with dofferent version in OSB

    Hi all, Can we deploy the same Proxy service with different version ??? . As in SOA suite we can deploy the same BPEL process with different version . How we can achieve this in OSB ?????? Thanks Phani

  • Error appending objects to file

    Here is the source code i'm using import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; public class SerialiseTest {      public static void