CTS+ in PI 7.10 - problem starting cts browser from stms

Hi folks!
We have successfully configured and tested CTS+ for PI 7.1 ESR and ID objects as well as for 7.1 SLD objects. So far the world is "brave".
But we have one little issue and after scanning SMP and SDN it seems as if we are the only ones all over the world having this problem.
When we launch the CTS Browser (Transport Organizer WebUI) from ESR, ID and/or SLD and/or manually by entering the URL in the browser the CTS browser starts as desired. But when we try to start it from within ABAP transaction STMS (via Icon or via F7) only an empty browser window is launched, but not the CTS borwser in it.
Has anybody any ideas what's going on here?
Thanx in advance,
Regards,
Volker

Hi Volker,
This will work with SAP GUI SP09 or higher.
Regards,
Sunil Deopurkar

Similar Messages

  • Can we remove Start Private Browsing from Tool list, but use Ctlr + Shift + P instead?

    Is it possible to move the word "Start Private Browsing" from the Tool List because it can create suspect or accuse to use it, I prefer to have it dissect like using the keyboard (use Ctlr + Shift + P) to start private browsing.

    You can modify the appearance of Firefox via two customization files.
    The customization files userChrome.css for the user interface and userContent.css for websites are located in the chrome folder in the user profile folder, but aren't there by default.<br />
    You may need to create the <b>chrome</b> folder and the <b>userChrome.css</b> (the names are case sensitive).<br />
    Make sure to use a plain text editor like Notepad.exe and make sure to have all files selected when you save the file as userChrome.css to avoid that the editor appends a .txt file extension (userChrome.css.txt).
    *http://kb.mozillazine.org/Editing_configuration
    *http://kb.mozillazine.org/Editing_configuration/Troubleshooting
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder

  • How to start a browser from within a java program?

    I want to make a help file for my java program and want to run the browser from the menu of my program.
    How can I start my browser from my program?
    A small code will be helpful.
    Thanks.
    Niteen

    This should work on Windows without having to know where the browser is located. See http://www.javaworld.com/javaworld/javatips/jw-javatip66.html for more details
      public static void viewHtml(URL url, boolean fixHtmlExtension){
          String cmd = "rundll32 url.dll,FileProtocolHandler " + url.toExternalForm();
          if (fixHtmlExtension){
            //There is a bug in rundll32. For http requests, it doesn't like .html or .htm extensions,
            //but replacing the 'm' with '%6D' works. 
            //This fix is not needed for file requests.
            if (cmd.endsWith(".htm")){
              cmd = cmd.substring(0,cmd.length()-1) + "%6D";
            else if (cmd.endsWith(".html")){
              cmd = cmd.substring(0,cmd.length()-2) + "%6Dl";
          Process process = Runtime.getRuntime().exec(cmd);
          try{
            process.waitFor();
          catch(InterruptedException e){

  • Start Web Browser from ABAP in WINGUI with SSO

    Hi,
    I'm using WINGUI 6.20 patch 47. I need to start a separate web browser to display a BSP.
    The difficulty is that we want single sign on to work. We have the portal set up for authentication and our instance is set up to create and accept logon tickets.
    We've tried to use the html viewer control but I think this only works within the html gui ?
    We've tried the CALL_BROWSER function but it doesn't seem to pass along the logon ticket.
    Is there a way to do this ?
    Thanks for your help.
    Thierry Dagnino
    Systems Architect
    Hydro-Quebec

    Hi Thomas,
    the suggested solution works at 90 %.
    The BSP we display in the html control calls another bsp in a popup window.
    The popup requests the login again. I think this is because the popup starts a new Internet Explorer browser which has no session state.
    The strange thing is that if I first start a browser and authenticate to the server and then run the function which displays the bsp in the html viewer, it works great. I think it uses the logon ticket that the browser received.
    Everything else works but we can't use it if popups don't work since CRM 4.0 uses a lot of them.
    Also, if we use the show_url_in_browser function, it works. The problem is we have a useless window displayed. Is there a way to close this window immediately after the show_url_in_browser method is called ?
    Thanks.
    Message was edited by: Thierry Dagnino

  • Problem to launch browser from URL

    Hi All,
    I need to launch a web browser from a URL (to send the user from ESS to a benefits provider web site). I created the resource and the service for the URL  in the IMG on R/3 and set it to open the URL on a separate page. I created the links to the URL and they show fine on the iview, but when I click on them, nothing happens.  Does anybody know what I am missing? Do I need to create a URL iview for this? Or how do I do it?
    I will appreciate any help on this.

    Nagaraju,
    thanks for the help. The thred you sent me linked me to another thred which is the one that actually gave me the answer to my problem, but either way you helped me solve the issue. I tried to give you full points but I get an error message that the item is locked for rewarding points, sorry. Either way, this item has been solved.
    Thank you.

  • CTS Based Simple Bike Speedometer - Problem with CTS Pulse

    Everytime a magnet rotates, a sensor sends a CTS signal...I know the hardware works, as it works with another Speedometer writen with Delphi (Spinner on SourceForge). However, my program is getting the right speed, then numbers way too big for about three pulses, the right speed, garbage again, etc.... I'm assuming there is something about the CTS protocol and how the Java program needs to respond to a CTS event that I'm not getting. Or could it be my use of systemtime?
    Here's code snippets.....
    Oh, and I'm using DSR for cadence, and RI for heartrate, any similar issues that I need to be aware of using them?
    Thanks
         serialPort = (SerialPort)portID.open("IntervalTrack", 0);
            serialPort.setSerialPortParams(9600,
                    SerialPort.DATABITS_8,
                    SerialPort.STOPBITS_1,
                    SerialPort.PARITY_NONE);
            serialPort.addEventListener(this);
            serialPort.notifyOnDSR(true);
            serialPort.notifyOnCTS(true);
            serialPort.notifyOnCarrierDetect(true);
            serialPort.notifyOnRingIndicator(true);
            serialPort.notifyOnDataAvailable(true);
            serialPort.setDTR(false);
            serialPort.setRTS(true);--- snip ----
        public void serialEvent(SerialPortEvent e) {
                System.out.println(e.getEventType());
                switch (e.getEventType())
                    case SerialPortEvent.CTS:
                        doCTS();
                        break;
                    case SerialPortEvent.DSR:               
                        doDSR();
                        break;
                    case SerialPortEvent.RI:
                        doRI();
                        break;
        private void doCTS(){
            double dblSpeedT2 = System.currentTimeMillis();
            double dblDeltaSpeedTime = dblSpeedT2 - this.dblSpeedT1;
           //todo resolve divide by zero  if (dblDeltaSpeedTime == 0.0)
            //                  dblDeltaSpeedTime = 1;
            this.dblSpeedKmPerHour = 3.6 * this.getWheelSizeInMM() /
                          dblDeltaSpeedTime;
            this.dblSpeedT1 = dblSpeedT2;
        }

    Just for future reference if someone googles this unanswered question (so much for Java forums help.....).
    The problem was that I needed to distinguish between the evt. changing from true to false and only computing for one or the other. So if it was false I computed, if it was true I continued. (err....or was it the other way around?) either way, thats the fix.....not sure on the why of this though..

  • Problem starting Repository Browser Service on Windows Server 2008

    Using the default Warehouse Builder installation in the 11g (11.1.0.7.0) databaseinstallation on a clean Windows Server 2008 64-bit installation.
    Warehouse Builder installed and populated ok, OWB client works fine etc.
    When trying to start the Repository Browser listener by running the startOwbbInst.bat, the OC4J container crashes with the following error in the \owb\j2ee\log\oc4j\log.xml:
    +<MSG_TEXT>Could not create Secure http listener due to {0}</MSG_TEXT>+
    +<SUPPL_DETAIL><![CDATA[java.io.FileNotFoundException: C:\Oracle\product\11.1.0\db_1\owb\bin\admin\..\..\j2ee\config\%ORACLE_HOME%\owb\j2ee\config\keystore.jks (The system cannot find the path specified)+
    +     at java.io.FileInputStream.open(Native Method)+
    +     at java.io.FileInputStream.<init>(FileInputStream.java:106)+
    +     at java.io.FileInputStream.<init>(FileInputStream.java:66)+
    +     at oracle.oc4j.security.OC4JSSLSocketFactory.getStoreIn(OC4JSSLSocketFactory.java:253)+
    (The local_service_login.bat works fine).
    We're starting this as an administrator user in Win2008.
    All parameteres in the setowbenv.bat seems to be correct as far as I can tell. There is a strange reference to %ORACLE_HOME% in the above log, of which I've no idea where it is coming from....
    Identical installation worked fine on a 64-bit Windows Server 2003, - so can this be something related to a new security model in Windows Server 2008?
    (I found a posting regarding problems with the startOwbbInst.bat on Vista  [here |http://forums.oracle.com/forums/thread.jspa?messageID=2275781&#2275781] - so maybe.... however, the quickfix mentioned there did'nt help us here...)
    Anyone experienced similar problems (and preferably solved them) on Windows Server 2008 and/or Vista?
    Regards,
    -Haakon-

    Solved this after some trawling through xml configuration files on the server.
    The file C:\Oracle\product\11.1.0\db_1\owb\j2ee\config\http-web-site.xml contains the reference to keystore.jks:
              <ssl-config keystore="*%ORACLE_HOME%*/owb/j2ee/config/keystore.jks" keystore-password="-&gt;keystoreadmin"/>
    changing this to:
              <ssl-config keystore="C:\Oracle\product\11.1.0\db_1/owb/j2ee/config/keystore.jks" keystore-password="-&gt;keystoreadmin"/>
    and the OC4J container starts successfully.
    Regards,
    -Haakon-

  • Problem starting a scenario from Unix command line

    Hello all, many apologies if this is the wrong section of the forum, if it is and you could direct me to the right section I'd be grateful.
    If you're still reading and I am in the right section, I have a problem when using the startscen.sh script to start a scenario.
    This is what appears to be the relevant part of the log, I've had to change some values in the output for our security people.
    lots of java
    FirstUser:SUNOPSIS_INSTALL
    IndChange:I
    IntJavaName:com.sunopsis.dwg.dbobj.SnpRemRep
    IObjects:4600
    LastDate:2010-07-20 11:08:31.0
    LastUser:SUNOPSIS_INSTALL
    ObjName:OBJ_SNPREMREP_4600
    SecuPos:110]
    java.lang.NullPointerException
    08/18/2010 01:53:04 PM(main): SnpsConnection : disconnect : DbUrl : jdbc:oracle:thin:<our host and port data> : User : <our user> : ConnectID : INTERNAL_MASTER0
    08/18/2010 01:53:04 PM(main): SnpsConnection : disconnect : After ConnectionLst :
    DwgJv.main: Exit. Return code:-1
    OracleDI: Starting scenario PKG_PROCESS_FILES 001 in context Global ...
    08/18/2010 01:53:05 PM(main): DwgCmd: getUniqueThreadIdentifier : :Before : mThreadIDIncrementCounter : 0
    08/18/2010 01:53:05 PM(main): DwgCmd: getUniqueThreadIdentifier : :After : mThreadIDIncrementCounter : 1 : Unique ID : 0
    08/18/2010 01:53:06 PM(main): DwgTaskSql.supportTransactions : test transactions capability for :
    Oracle JDBC driver
    10.1.0.5.0
    08/18/2010 01:53:06 PM(main): DwgTaskSql.supportTransactions : test transactions capability for :
    Oracle JDBC driver
    10.1.0.5.0
    08/18/2010 01:53:06 PM(main): SnpsQuery.updateExecStatement : prepare request :
    Select BATCH_UPDATE_SIZE, CONNECT_TYPE, CON_NAME, DSERV_NAME, FETCH_ARRAY_SERV, FIRST_DATE, FIRST_USER, IND_JNDI, I_CONNECT, I_HOST, I_TECHNO, I_TXT_JAVA_URL, I_TXT_JNDI_URL, I_TXT_WS_BASE_URL, JAVA_DRIVER, JNDI_AUTHENT, JNDI_FACTORY, JNDI_PROTO, JNDI_PWD, JNDI_RESSOURCE, JNDI_USER, LAST_DATE, LAST_USER, PASS, USER_NAME, WS_DEPLOY_MODE from SNP_CONNECT where SNP_CONNECT.I_CONNECT=?
    08/18/2010 01:53:06 PM(main): SnpsQuery.updateExecStatement : prepare request :
    Select FIRST_DATE, FIRST_USER, I_CONNECT, LAST_DATE, LAST_USER, REP_ID, REP_NAME, REP_TIMESTAMP, REP_TYPE from SNP_REM_REP where REP_NAME = ?
    08/18/2010 01:53:06 PM(main): SnpRemRep.getObjectLst : :
    08/18/2010 01:53:06 PM(main): SnpsQuery.updateExecStatement : prepare request :
    Select AGENT_NAME, AGENT_NAME2, EXT_VERSION, FIRST_DATE, FIRST_USER, HOST_NAME, HOST_PORT, IND_CHANGE, I_AGENT, LAST_DATE, LAST_USER, MAX_THREAD from SNP_AGENT where AGENT_NAME=?
    08/18/2010 01:53:06 PM(main): SnpAgent.getObjectLst : :
    [AgentName:@
    AgentName2:null
    ExtVersion:null
    FirstDate:2010-06-22 17:47:34.0
    FirstUser:SUPERVISOR
    HostName:<out host>
    HostPort:<our port>
    IndChange:U
    IAgent:1000
    LastDate:2010-06-23 12:40:32.0
    LastUser:SUPERVISOR
    MaxThread:1000]
    08/18/2010 01:53:06 PM(main): SnpsQuery.updateExecStatement : prepare request :
    Select AUT_SUPERVISOR, EXPIRACY_DATE, EXT_VERSION, FIRST_DATE, FIRST_USER, IND_CHANGE, I_TXT_DETAIL, I_WUSER, LAST_DATE, LAST_USER, PASS, USER_EXPIRACY_DATE, WUSER_INIT, WUSER_NAME from SNP_USER where WUSER_NAME=?
    08/18/2010 01:53:06 PM(main): SnpUser.getObjectLst : :
    [AutSupervisor:1
    ExpiracyDate:null
    ExtVersion:null
    FirstDate:2010-06-21 08:22:32.0
    FirstUser:SUNOPSIS_INSTALL
    IndChange:I
    ITxtDetail:null
    IWuser:1999
    LastDate:2010-06-21 08:24:44.0
    LastUser:SUNOPSIS_INSTALL
    Pass:hZyX6tylA1y5R.RcRlQdfp
    UserExpiracyDate:null
    WuserInit:SU
    WuserName:SUPERVISOR]
    08/18/2010 01:53:06 PM(main): SnpsQuery.updateExecStatement : prepare request :
    Select EXT_VERSION, FIRST_DATE, FIRST_USER, IND_CHANGE, INT_JAVA_NAME, I_OBJECTS, LAST_DATE, LAST_USER, OBJ_NAME, SECU_POS from SNP_OBJECT
    08/18/2010 01:53:06 PM(main): SnpObject.getObjectLst : :
    [ExtVersion:null
    FirstDate:2010-06-21 08:21:48.0
    FirstUser:SUNOPSIS_INSTALL
    IndChange:I
    lots of java
    If anyone could shed some light I would be very grateful.
    izz

    Fantastic! Thankyou for your help. I realise my problem was that I copied jdic.jar into the project folder to save effort, but forgot tray.dll. I had seen tray.dll in that error output, but simply hadn't made the connection - you know how it is after staring at the same problem for a whole evening!
    As it is, I only had to copy tray,dll into the project folder and it works fine. :D.
    Thanks a lot.

  • Problem starting AIR app from windows server 2003

    Hello,
    I have an AIR app that I am trying to run using a c#
    webservice under Win 2003.
    I am starting the application process (air .exe file) as the
    "Network Service" user which has full-rights on the app-folder and
    app-working folder. The problem is that once with the applications
    the "Adobe AIR Updater.exe" process is starting to (using the same
    user N.S.) and both of the processes stop responding.
    I have tried to start the process as "Local Service" with
    "Desktop Interaction" too but unfortunately with no result.
    I must tell you that under XP and Vista it runs perfect...
    Is there any security issue related to win 2003 or any way i
    can start an air app from command line.
    Also i am interested why "Adobe Air Updater.exe" is starting
    ?

    Not sure about  copying eulaAccepted file from one location to another - that would really depend on which user account your service is running under.
    A better approach (IMHO), is to open the services window (My Computer | <right-click> | Manage, then navigate to Services and expand the tree) so you can see your service on the RHS.
    Stop your service, then inspect it's properties, select the 'Log on' tab, then check the checkbox which says "Allow system to interact with desktop". Apply the change, then restart your service.
    next time the AIR runtime prompts you to accept the EULA, the window will appear on the screen, so you can click "I accept".
    After accepting, reverse the procedure which allowed the service to interact with the desktop, and make sure that you have modified the registry to prevent AIR from updating as mentioned in:
    http://help.adobe.com/en_US/AIR/1.5/air_admin/WS5b3ccc516d4fbf351e63e3 d11c0f59823a-7ff0.html
    You should be all set.

  • Problem Starting ORBacus ORB from Weblogic on HP-UX 11

    I'm trying to use Weblogic startup classes to startup an ORBacus ORB.
    During the Weblogic startup process I receive the following error:
    Fri Jul 07 15:24:49 GMT+00:00 2000:<E> <WebLogicServer> Failed to invoke
    startup
    class timeserver=utils.Server
    java.lang.ExceptionInInitializerError: org.omg.CORBA.INITIALIZE: can't
    instantia
    te default ORB implementation com.ooc.CORBA.ORBSingleton minor code: 0
    complet
    ed: No
    at org.omg.CORBA.ORB.create_impl(ORB.java:305)
    at org.omg.CORBA.ORB.<clinit>(ORB.java:202)
    at utils.Server.main(Server.java:23)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:148)
    at
    weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    We tried this on Windows NT 4.0 sp 5 and it worked fine. When we tried it
    on HP-UX 11 thats when we had problems. We were able to startup the ORB
    without using Weblogic on HP. Is there a problem with startup classes on
    Weblogic for HP?

    Eduardo;
    I was able to accomplish this by making the ORBacus jar files into an
    installed java extension with the HP-UX version of JDK 1.2.2.04.
    - Sam Hauer
    AT&T Wireless
    Eduardo Ceballos wrote:
    >
    This is somewhat off topic, and I can't even find a useful example, so perhaps others can offer more help...
    There are no known issues wrt to startup classes that are particular to the HP environment. The only advice I can offer is to make sure that if there are command line parameters that must be passed to the ORB.init call, that you are correctly passing these; to confirm with HP that they support (or
    require) the use of the orb.properties file to specify the names of the ORBSingleton; and, try to use the orb.properties file to configure the orb implementation.
    Jai Jones wrote:
    I'm trying to use Weblogic startup classes to startup an ORBacus ORB.
    During the Weblogic startup process I receive the following error:
    Fri Jul 07 15:24:49 GMT+00:00 2000:<E> <WebLogicServer> Failed to invoke
    startup
    class timeserver=utils.Server
    java.lang.ExceptionInInitializerError: org.omg.CORBA.INITIALIZE: can't
    instantia
    te default ORB implementation com.ooc.CORBA.ORBSingleton minor code: 0
    complet
    ed: No
    at org.omg.CORBA.ORB.create_impl(ORB.java:305)
    at org.omg.CORBA.ORB.<clinit>(ORB.java:202)
    at utils.Server.main(Server.java:23)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:148)
    at
    weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    We tried this on Windows NT 4.0 sp 5 and it worked fine. When we tried it
    on HP-UX 11 thats when we had problems. We were able to startup the ORB
    without using Weblogic on HP. Is there a problem with startup classes on
    Weblogic for HP?

  • Problems starting managed server from admin console WL70 portal

    I get the following exception when I try to start the managed server from admin server console. Both Admin server and managed server are on the same machine.
              

    I get the following exception when I try to start the managed server from admin server console. Both Admin server and managed server are on the same machine.
              

  • How to start a browser from an action within the WebUI?

    Hello experts,
    Within CRM 5.0 we have implemented an action (if_ex_exec_methodcall_ppf~execute) to start a web dynpro by directly calling its url. This is done by using the method call cl_gui_frontend_services=>execute and works fine. However, we've just upgraded to CRM 7.0 and within the WebUI environment this method raises an exception. Apparently it only works when started from the SAPgui. I have also tried calling function call_brower but with the same result.
    I have thought about how to "get back" to the WebUI environment from the coding but the problem is that I have no handle or entry point to any view or window. In other words the PPF-method is totally unaware of the WebUI.  A static get_current_window method e.g. would come in handy.
    Any ideas or suggestions?
    Kind regards,
    Olaf Pohlmann

    Thanks BJ but Siva already provided exactly the same link.
    In the meantime I've found the necessary classes to interact nicely with the WebUI and they all provide static methods to get an entry point. I am able to navigate based on a newly created generic outbound plug with the following coding:
    lr_nav_descr = cl_crm_ui_descriptor_obj_srv=>create_ui_object_based(
      iv_ui_object_type   = 'Z_GESPREKSVERSLAG_OP'
      iv_ui_object_action = if_crm_ui_descriptor_object=>gc_action_display ).
    The actual navigation can now be started with the navigation service:
    lr_nav_service = cl_crm_ui_navigation_service=>get_instance( ).
    lr_nav_service->navigate_dynamically( lr_nav_descr_col ).

  • How do I start my browser from opening a page I never authorized?

    I have a website that keeps overighting my home page settings. How can I block that?

    Which page is overriding your homepage? <br />
    Might be caused by Malware.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Problem with opening browser from Java app.

    Hi guys, I'm not sure if this is the right place to post this, so please excuse me if I'm wrong. I'm trying to open an html page (it's a help file) from a Java application. I'm currently using java.awt.Desktop.     browse(URI uri); which gets the job done, as long as I don't pass any parameters to the page. (e.g. http://www.site.com/site.html?param1=1). Doing that gives me an IOException. Is there a way to do this without using the JNLP API?

    This is the file path copied directly from the browser's address bar:
    file:///home/riaan/EMCHelp/Help.html?page=WorkFlowActivityCategory.html"{code}
    Which causes the app to throw an exception, but when I change it to:
    {code}file:///home/riaan/EMCHelp/Help.html{code}
    it opens Help.html in the browser.  That's why I thought that it might be the query that's a problem.  Perhaps it's a simple issue of not escaping a character or something that I failed to see.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I want to take away the option for Start Private Browsing from Tools

    I don't want my teenagers to have the option to use Private Browsing but want to be able to use it for banking etc. I really just don't want it to be available from Tools

    I don't think this addressed the problem or at least in language I can understand. Please don't assume we are all computer experts. Could you give more basic instructions for this solution. What and where is userChrome.css?

Maybe you are looking for

  • Ruby on Rails Concurrent program registration in EBS 11i

    hi everyone I'm trying to see if it is possible to register a Ruby on Rails concurrent program in Oracle E-business Suite 11i applications. We have Ruby on the Rail program we are using to create a GL Daily Rates file into one of our Custom top direc

  • Traffic Lights in ALV Tree

    Hi Experts , Could you suggest if we can use traffic lights in ALV tree Display and if possible  program(T-code ) you have gone thorugh. I already checked BCALV_TREE_06 , its totally different just showing icons . Regards, Karan Edited by: Karan_Chow

  • Photo stream is not updating all iPhone photos

    I just set up my photo stream to be able to download all of my photo's taken with my iPhone into Aperture. For some reason it's only going back but so far. I only have 30ish of the 230 photo's on my iPhone. I stopped photo stream and restarted, but i

  • Opacity Options for CSS

    I was looking to make some semi opaque div's and was wondering if this can be done using CSS.  An example of what I am looking for can be viewed on my you tube page http://www.youtube.com/helpvid  As you will see the area that house my content has a

  • PDF export : difference between JRC and Server

    Hello, We can see differences between the pdf export with Crystal Reports Server 2008 and the Java Reporting Component. The most important difference is the font size wich are bigger on the PDF exported via the JRC. We also saw a size difference with