DW MX limit on name lenghth?

I'm trying again here. i'm on DW MX Mac 10.4.8
Everytime I go over about 15 characters or so, it says you
must rename as name is too long. Yet on the web I see pages of 50
characters. Can someone help me?

> is this correct
No. DW8 was released in Sept., 2005.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"KevinC." <[email protected]> wrote in
message
news:eqq4ge$1br$[email protected]..
> thanks JOhn may do that.
> question:
> on amazon says DW 8 has been available since 2001? is
this correct. Their
> newest version has been out 5 years? is so, what is the
expected date of
> 9?
> And then 8, and if you got 8 now, and later went to
Pentium machine you
> would
> have to buy again?
>

Similar Messages

  • Multiple Numeric Limit Test Names

    How do I get the names of the Measurements of Multiple Numeric Limit from inside the VI that is doing the test.
    I wish to edit them to reflect the measurement that I am making.
    I can find and change the name of the step, but can't see where the name of the measurements are.
    Thanks
    Omar

    Hello Omar.
    Your VI can do this by
    (1) Get the number of array elements contained in "Step.Result.Measurement".
    (2) Get each array elements property "Name".
    The attached VI was saved with LabVIEW 7.1.
    Regards, Guenter
    Attachments:
    HowTo get MeasurementNames (in LabVIEW) of a MultipleNumericLimitStep.zip ‏20 KB

  • How to log to a file using the log-configuration.xml?

    Hello *,
    I created following log-configuration.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE log-configuration SYSTEM "log-configuration.dtd">
    <log-configuration>
         <log-formatters>
              <log-formatter name="DefaultFormatter" pattern="%25d %-60l %s: %m" type="TraceFormatter"/>
         </log-formatters>
         <log-destinations>
              <log-destination count="10" effective-severity="ALL" limit="1000000" name="DefaultDestination" pattern="FDLB_GUI.%g.trc" type="FileLog">
                   <formatter-ref name="DefaultFormatter"/>
              </log-destination>
         </log-destinations>
         <log-controllers>
              <log-controller effective-severity="ALL" maximum-severity="FATAL" minimum-severity="DEBUG" name="DefaultController">
                   <associated-destinations>
                        <destination-ref association-type="LOG" name="DefaultDestination"/>
                   </associated-destinations>
              </log-controller>
         </log-controllers>
    </log-configuration>
    From a Web Dynpro view I want to use the log-controller. I'm using the default logger:
    Logging location.
      private static final com.sap.tc.logging.Location logger =
        com.sap.tc.logging.Location.getLocation(EinstiegView.class);
    In the wdInit method I want to log a simple message:
      public void wdDoInit()
        //@@begin wdDoInit()
        logger.setEffectiveSeverity(com.sap.tc.logging.Severity.ALL);
        logger.fatalT("test logging to new file logger");
        //@@end wdDoInit()
    I see the message in the defaultTrace.0.log, but my own log file doesn't appear.
    How to address the log-controller of my log-configuration.xml?
    Thanks in advance,
    Jürgen Dufner

    Hi,
    I guess the follwing part of your log-configuration is wrong:
    <log-controller
    effective-severity="ALL"
    maximum-severity="FATAL" m
    nimum-severity="DEBUG"
    name="DefaultController">
    Try to change in log-configuration the value for name in <log-controller> to the start sequence of the packages to be logged. E.g., all our packages should start with com.yourcompanyname.projectname
    To log all messages from classes in these packages make the name = com.yourcompanyname.projectname.
    Hope that helps,
    Regards, Astrid
    Therefore I list

  • How to get the values of the objects inside an object??

    Hi,
    I am trying to write code to display name and memory usage of all session attributes, in a recursive way.
    I suppose reflection is needed here, but I can’t figure out how to get the values of the objects inside an object...
    private void handleIt(String attributeName, Object attributeValue) {
         boolean isPrimitiveOrNull = ((null == attributeValue) ||
              (attributeValue.getClass().isPrimitive()));                                         
         if (isPrimitiveOrNull) {
              sb.append("{" + attributeName + ":" + sizeOf(attributeValue) + "}");
         } else {
              sb.append("{" + attributeName + ":" + sizeOf(attributeValue) + "{");               
              Field[] fields = attributeValue.getClass().getDeclaredFields();
              int lim = fields.length;
              String name;
              Object value = null;
              for (int i = 0; i < lim; i++) {
                   name = fields.getName();
                   //LOOK AT THIS LINE: !!!!!!!!!!!!!!!!!!!!!!!!!!!
                   value = fields[i].get(obj); //I don´t know what 'obj' should be??
                   handleIt(name, value);
              sb.append("}");               
    Any suggestions will be greatly appreciated...

    I realized that massive int objects called MAX_VALUE, MIN_VALUE and SIZE where causing the StackOverflow, so I removed them from the analysis.
    This is the resultant code. But I think it isn’t accurate in calculating the real size of objects being got using reflexion.
    Do you or somebody have any more suggestions?
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.ObjectOutputStream;
    import java.lang.reflect.Field;
    import java.util.Enumeration;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    public class SessionMeasurer extends HttpServlet {
         private static final long serialVersionUID = 1470488362727841992L;
         private StringBuilder sb = new StringBuilder();
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              performTask(request, response);
         public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              performTask(request, response);
         public void performTask(HttpServletRequest request, HttpServletResponse response) {
              HttpSession     session = request.getSession(false);     
              String attributeName = "";
              Object attributeValue = null;
              for (Enumeration<?> attributeNames = session.getAttributeNames(); attributeNames.hasMoreElements();) {
                   attributeName = (String)attributeNames.nextElement();
                   attributeValue = session.getAttribute(attributeName);
                   handleIt(attributeName, attributeValue);               
              System.out.println(sb.toString());
         private void handleIt(String attributeName, Object attributeValue) {           
              if (attributeValue != null) {          
                   boolean isPrimitive = attributeValue.getClass().isPrimitive();
                   if (isPrimitive) {
                        sb.append("{" + attributeName + ":" + sizeOf(attributeValue) + "}");
                   } else {
                        sb.append("{" + attributeName + ":" + sizeOf(attributeValue) + "{");               
                        Field[] fields = attributeValue.getClass().getDeclaredFields();
                        String name;
                        Object value = null;
                        int lim = fields.length;
                        for (int i = 0; i < lim; i++) {
                             name = fields.getName();                                                                                                         
                             if (!name.endsWith("_VALUE") && !name.equals("SIZE") && !name.equals("serialVersionUID")) {
                                  try {
                                       value = fields[i].get(attributeValue);
                                  } catch(Exception e) {
                                       //PENDIENTE: Tratamiento excepción
                                  handleIt(name, value);
                        sb.append("}");               
         private int sizeOf(Object obj) {
              //Valid only for Serializables
              ByteArrayOutputStream baos = new ByteArrayOutputStream();
              ObjectOutputStream oos = null;     
              byte[] bytes = null;               
              try {          
                   oos = new ObjectOutputStream(baos);
                   oos.writeObject(obj);
                   bytes = baos.toByteArray();
              } catch(Exception e) {               
                   //PENDIENTE: Tratamiento excepción
              } finally {
                   if (oos != null) {
                        try {
                             oos.close();
                        } catch(Exception e) {
                             //PENDIENTE: Tratamiento excepción                         
                   if (baos != null) {
                        try {
                             baos.close();
                        } catch(Exception e) {
                             //PENDIENTE: Tratamiento excepción                         
              int size = -1;
              if (bytes != null) {
                   size = bytes.length;
              return size;          

  • With DB02 tcode, DB file in red color & status gives No free space

    Hi Experts,
    With DB02 transaction --> in File tab it is showing all Database files with red color and in the status message gives "No free space in file".
    Below is details for your reference
    Logical file name used by SQL Server:  DEVDATA1
    File size in MB: 30.220
    SQL Server FILE ID      1
    Next file growth(MB)     3.022
    Physical file name of the database file     E:\DEV\SAPDATA\DEVDATA1\DEVDATA1.mdf
    Allocated MB     30.167
    Free on file system (MB)     86.284
    Growth Setting     10%
    File size limit in MB     no limit
    Filegroup name     PRIMARY
    Status Message     No free space in file
    FLPRIM     X
    FILE GROWTH PERCENT     X
    Kindly reply what action we have to perform to change the file status.
    Regards,
    JP

    Hello Jigar,
    I had the same problem, I found this help file:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/f2/31ad9b810c11d288ec0000e8200722/content.htm
    It helped me solve my issue, I increased the size of the files as recommended and their status in DB02 changed to green.
    Hope this helps you.
    Regards,
    Chris

  • End of file reached error

    Coherence 3.5
    We are getting following exception -
    Caused by: com.tangosol.io.lh.LHIOException: /local/home/beuser/cachestore/lh03861950282677193497~, Primary file, Reading, Group 25253, Frame 25253: End of file reached. at com.tangosol.io.lh.LHSubs.ReadFrame(LHSubs.java:2173) at com.tangosol.io.lh.LHSubs.GetPrimaryFrame(LHSubs.java:1583) at com.tangosol.io.lh.LHSubs.SetupKeyId(LHSubs.java:997) at com.tangosol.io.lh.LHSubs.FindKeyId(LHSubs.java:915) at com.tangosol.io.lh.JLHFile.updateRecord(JLHFile.java:433) at com.tangosol.io.lh.JLHFile.writeRecord(JLHFile.java:616) at com.tangosol.io.lh.LHBinaryStore.store(LHBinaryStore.java:128) at com.tangosol.net.cache.SerializationMap.putAll(SerializationMap.java:201) at com.tangosol.net.cache.OverflowMap.putOne(OverflowMap.java:3086) at com.tangosol.net.cache.OverflowMap.processFrontEvent(OverflowMap.java:2592) at com.tangosol.net.cache.OverflowMap.processEvent(OverflowMap.java:2448) at com.tangosol.net.cache.OverflowMap.prepareStatus(OverflowMap.java:2191) at com.tangosol.net.cache.OverflowMap.processDeferredEvents(OverflowMap.java:2763) at com.tangosol.net.cache.OverflowMap.evict(OverflowMap.java:3121) at com.tangosol.net.cache.OverflowMap.size(OverflowMap.java:390) at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onSizeRequest(DistributedCache.CDB:24) ... 6 more
    Any pointers resolving this will be appreciated.
    Thanks.

    Here is the cache config -
    <cache-config>
         <caching-scheme-mapping>
              <cache-mapping>
                   <cache-name>RECORD</cache-name>
                   <scheme-name>example-distributed</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>cache-size-limit</param-name>
                             <param-value system-property="record.cache.size.limit">98566144</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>COUNTERS</cache-name>
                   <scheme-name>example-no-expiry</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>cache-unit-type</param-name>
                             <param-value system-property="counters.cache.unit.type">FIXED</param-value>
                        </init-param>
                        <init-param>
                             <param-name>cache-size-limit</param-name>
                             <param-value system-property="counters.cache.size.limit">100</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>RECORDKEYLIST</cache-name>
                   <scheme-name>example-distributed-with-backup</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>cache-size-limit</param-name>
                             <param-value system-property="recordkeylist.cache.size.limit">25165824</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>RECORDITEM</cache-name>
                   <scheme-name>example-distributed-with-backup</scheme-name>
                   <init-params>
                        <init-param>
                             <param-name>cache-size-limit</param-name>
                             <param-value system-property="recorditem.cache.size.limit">25165824</param-value>
                        </init-param>
                   </init-params>
              </cache-mapping>
         </caching-scheme-mapping>
         <caching-schemes>
              <!--Distributed caching scheme.-->
              <distributed-scheme>
                   <scheme-name>example-distributed</scheme-name>
                   <service-name>DistributedCache</service-name>
                   <thread-count>12</thread-count>
                   <backup-count>0</backup-count>
                   <backing-map-scheme>
                        <overflow-scheme>
                             <scheme-ref>example-overflow</scheme-ref>
                        </overflow-scheme>
                   </backing-map-scheme>
                   <backup-storage>
                        <type>scheme</type>
                        <scheme-name>example-overflow</scheme-name>
                   </backup-storage>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <scheme-name>example-no-expiry</scheme-name>
                   <service-name>DistributedCache-no-expiry</service-name>
                   <thread-count>12</thread-count>
                   <backup-count>0</backup-count>
                   <backing-map-scheme>
                        <overflow-scheme>
                             <scheme-ref>example-overflow-no-expiry</scheme-ref>
                        </overflow-scheme>
                   </backing-map-scheme>
                   <backup-storage>
                        <type>scheme</type>
                        <scheme-name>example-overflow-no-expiry</scheme-name>
                   </backup-storage>
                   <autostart>true</autostart>
              </distributed-scheme>
              <distributed-scheme>
                   <scheme-name>example-distributed-with-backup</scheme-name>
                   <service-name>DistributedCache-with-backup</service-name>
                   <thread-count>12</thread-count>
                   <backup-count>1</backup-count>
                   <backing-map-scheme>
                        <overflow-scheme>
                             <scheme-ref>example-overflow-with-backup</scheme-ref>
                        </overflow-scheme>
                   </backing-map-scheme>
                   <backup-storage>
                        <type>scheme</type>
                        <scheme-name>example-overflow-with-backup</scheme-name>
                   </backup-storage>
                   <autostart>true</autostart>
              </distributed-scheme>
              <!--
                   Backing map scheme definition used by all the caches that require
                   size limitation and/or expiry eviction policies.
              -->
              <local-scheme>
                   <scheme-name>example-backing-map</scheme-name>
                   <eviction-policy>HYBRID</eviction-policy>
                   <unit-calculator>{cache-unit-type BINARY}</unit-calculator>
                   <high-units>{cache-size-limit 10}</high-units>
                   <expiry-delay>2h</expiry-delay>
                   <flush-delay>5m</flush-delay>
                   <cachestore-scheme></cachestore-scheme>
              </local-scheme>
              <local-scheme>
                   <scheme-name>example-backing-map-no-expiry</scheme-name>
                   <eviction-policy>HYBRID</eviction-policy>
                   <expiry-delay>0</expiry-delay> <!--A value of zero implies no expiry. -->
                   <cachestore-scheme></cachestore-scheme>
              </local-scheme>
              <local-scheme>
                   <scheme-name>example-backing-map-with-delay</scheme-name>
                   <eviction-policy>HYBRID</eviction-policy>
                   <unit-calculator>{cache-unit-type BINARY}</unit-calculator>
                   <high-units>{cache-size-limit 10}</high-units>
                   <expiry-delay>24h</expiry-delay>
                   <flush-delay>5m</flush-delay>
                   <cachestore-scheme></cachestore-scheme>
              </local-scheme>
              <!--
                   Overflow caching scheme with example eviction local cache in the
                   front-tier and the example LH-based cache in the back-tier.
              -->
              <overflow-scheme>
                   <scheme-name>example-overflow</scheme-name>
                   <front-scheme>
                        <local-scheme>
                             <scheme-ref>example-backing-map</scheme-ref>
                        </local-scheme>
                   </front-scheme>
                   <back-scheme>
                        <external-scheme>
                             <scheme-ref>example-lh</scheme-ref>
                        </external-scheme>
                   </back-scheme>
              </overflow-scheme>
              <overflow-scheme>
                   <scheme-name>example-overflow-no-expiry</scheme-name>
                   <front-scheme>
                        <local-scheme>
                             <scheme-ref>example-backing-map-no-expiry</scheme-ref>
                        </local-scheme>
                   </front-scheme>
                   <back-scheme>
                        <external-scheme>
                             <scheme-ref>example-lh</scheme-ref>
                        </external-scheme>
                   </back-scheme>
              </overflow-scheme>
              <overflow-scheme>
                   <scheme-name>example-overflow-with-backup</scheme-name>
                   <front-scheme>
                        <local-scheme>
                             <scheme-ref>example-backing-map-with-delay</scheme-ref>
                        </local-scheme>
                   </front-scheme>
                   <back-scheme>
                        <external-scheme>
                             <scheme-ref>example-lh</scheme-ref>
                        </external-scheme>
                   </back-scheme>
              </overflow-scheme>
              <!--External caching scheme using LH.-->
              <external-scheme>
                   <scheme-name>example-lh</scheme-name>
                   <lh-file-manager>
                        <directory>/local/home/beuser/cachestore</directory>
                   </lh-file-manager>
              </external-scheme>
         </caching-schemes>
    </cache-config>

  • ACE SSL terminate not working ... please help

    Hello, I configured cisco ace 4710 with ssl-proxy and it is not working, but http://10.1.40.2 and http://10.1.40.3 is OK.  When i put https://10.1.41.20 the output is: "There is a problem with this website's security certificate", so i click in "Continue to this website (not recommended)" and the ace dont balance the output show error "Internet Explorer cannot display the webpage".
    The configuration:
    ace-demo/Admin# sh run
    Generating configuration....
    boot system image:c4710ace-mz.A3_2_4.bin
    boot system image:c4710ace-mz.A3_2_1.bin
    login timeout 0
    hostname ace-demo
    interface gigabitEthernet 1/1
      channel-group 1
      no shutdown
    interface gigabitEthernet 1/2
      channel-group 1
      no shutdown
    interface gigabitEthernet 1/3
      channel-group 1
      no shutdown
    interface gigabitEthernet 1/4
      channel-group 1
      no shutdown
    interface port-channel 1
      switchport trunk allowed vlan 400-401,450
      no shutdown
    crypto csr-params testparams
      country PE
      state Lima
      locality Lima
      organization-name TI
      organization-unit TI
      common-name www.yyy.com
      serial-number 1000
    access-list anyone line 8 extended permit ip any any
    access-list anyone line 16 extended permit icmp any any
    parameter-map type ssl sslparams
      cipher RSA_WITH_RC4_128_MD5
      version SSL3
    rserver host rsrv1
      ip address 10.1.40.2
      inservice
    rserver host rsrv2
      ip address 10.1.40.3
      inservice
    serverfarm host farm-demo
      rserver rsrv1
        inservice
      rserver rsrv2
        inservice
    serverfarm host site-A
      rserver rsrv1
        inservice
    serverfarm host site-B
      rserver rsrv2
        inservice
    ssl-proxy service testssl
      key testkey.key
      cert testcert.pem
      ssl advanced-options sslparams
    class-map type management match-any MGMT
      2 match protocol icmp any
      3 match protocol http any
      4 match protocol https any
      5 match protocol snmp any
      6 match protocol telnet any
      7 match protocol ssh any
    class-map match-any VIP
      6 match virtual-address 10.1.41.10 any
    class-map type generic match-any WAN-site-A
      2 match source-address 192.168.10.106 255.255.255.255
      3 match source-address 192.168.10.125 255.255.255.255
    class-map type generic match-any WAN-site-B
      2 match source-address 192.168.10.96 255.255.255.255
      3 match source-address 192.168.10.93 255.255.255.255
    class-map type management match-any icmp
      2 match protocol icmp any
    class-map match-any vip-ssl-10.1.41.20
      2 match virtual-address 10.1.41.20 tcp eq https
    policy-map type management first-match ICMP
      class icmp
        permit
    policy-map type management first-match MGMT
      class MGMT
        permit
    policy-map type loadbalance first-match vip-ssl-10.1.41.20
      class class-default
        serverfarm farm-demo
    policy-map type loadbalance generic first-match lb-server
      class WAN-site-A
        serverfarm site-A
      class WAN-site-B
        serverfarm site-B
      class class-default
        serverfarm farm-demo
    policy-map multi-match client-side
      class VIP
        loadbalance vip inservice
        loadbalance policy lb-server
    policy-map multi-match lb-vip
      class vip-ssl-10.1.41.20
        loadbalance vip inservice
        loadbalance policy vip-ssl-10.1.41.20
        loadbalance vip icmp-reply
        ssl-proxy server testssl
    interface vlan 400
      description side-server
      ip address 10.1.40.1 255.255.255.0
      access-group input anyone
      service-policy input ICMP
      no shutdown
    interface vlan 401
      description side-client
      ip address 10.1.41.1 255.255.255.0
      access-group input anyone
      access-group output anyone
      service-policy input ICMP
      service-policy input client-side
      service-policy input lb-vip
      no shutdown
    interface vlan 450
      description mgmt
      ip address 10.1.45.1 255.255.255.0
      access-group input anyone
      service-policy input MGMT
      no shutdown
    ip route 192.168.10.0 255.255.255.0 10.1.45.10
    And the proof:
    ace-demo/Admin# sh serverfarm farm-demo
    serverfarm     : farm-demo, type: HOST
    total rservers : 2
                                                    ----------connections-----------
           real                  weight state        current    total      failures
       ---+---------------------+------+------------+----------+----------+---------
       rserver: rsrv1
           10.1.40.2:0           8      OPERATIONAL  0          25         19
       rserver: rsrv2
           10.1.40.3:0           8      OPERATIONAL  0          23         18
    ace-demo/Admin# sh crypto files
    Filename                                 File  File    Expor      Key/
                                             Size  Type    table      Cert
    admin                                    887   PEM     Yes         KEY
    testcert.pem                             709   PEM     Yes        CERT
    testkey.key                              497   PEM     Yes         KEY
    ace-demo/Admin#
    ace-demo/Admin# sh service-policy lb-vip class-map vip-ssl-10.1.41.20
    Status     : ACTIVE
    Interface: vlan 1 401
      service-policy: lb-vip
        class: vip-ssl-10.1.41.20
          ssl-proxy server: testssl
          loadbalance:
            L7 loadbalance policy: vip-ssl-10.1.41.20
            VIP ICMP Reply       : ENABLED
            VIP State: INSERVICE
            Persistence Rebalance: DISABLED
            curr conns       : 0         , hit count        : 38       
            dropped conns    : 18       
            client pkt count : 159       , client byte count: 12576              
            server pkt count : 16        , server byte count: 640                
            conn-rate-limit      : 0         , drop-count : 0        
            bandwidth-rate-limit : 0         , drop-count : 0        
          compression:
            bytes_in  : 0                  
            bytes_out : 0                  
            Compression ratio : 0.00%
    in other time:
    ace-demo/Admin# sh service-policy lb-vip class-map vip-ssl-10.1.41.20
    Status     : ACTIVE
    Interface: vlan 1 401
      service-policy: lb-vip
        class: vip-ssl-10.1.41.20
          ssl-proxy server: testssl
          loadbalance:
            L7 loadbalance policy: vip-ssl-10.1.41.20
            VIP ICMP Reply       : ENABLED
            VIP State: INSERVICE
            Persistence Rebalance: DISABLED
            curr conns       : 0         , hit count        : 170      
            dropped conns    : 89       
            client pkt count : 703       , client byte count: 60089              
            server pkt count : 85        , server byte count: 3400               
            conn-rate-limit      : 0         , drop-count : 0        
            bandwidth-rate-limit : 0         , drop-count : 0        
          compression:
            bytes_in  : 0                  
            bytes_out : 0                  
            Compression ratio : 0.00%
    ace-demo/Admin#
    ace-demo/Admin# sh stats crypto server
    +----------------------------------------------+
    +---- Crypto server termination statistics ----+
    +----------------------------------------------+
    SSLv3 negotiated protocol:                       43
    TLSv1 negotiated protocol:                        0
    SSLv3 full handshakes:                           37
    SSLv3 resumed handshakes:                         0
    SSLv3 rehandshakes:                               0
    TLSv1 full handshakes:                            0
    TLSv1 resumed handshakes:                         0
    TLSv1 rehandshakes:                               0
    SSLv3 handshake failures:                         6
    SSLv3 failures during data phase:                 0
    TLSv1 handshake failures:                         0
    TLSv1 failures during data phase:                 0
    Handshake Timeouts:                               0
    total transactions:                               0
    SSLv3 active connections:                         0
    SSLv3 connections in handshake phase:             0
    SSLv3 conns in renegotiation phase:               0
    SSLv3 connections in data phase:                  0
    TLSv1 active connections:                         0
    TLSv1 connections in handshake phase:             0
    TLSv1 conns in renegotiation phase:               0
    TLSv1 connections in data phase:                  0
    +----------------------------------------------+
    +------- Crypto server alert statistics -------+
    +----------------------------------------------+
    SSL alert CLOSE_NOTIFY rcvd:                      0
    SSL alert UNEXPECTED_MSG rcvd:                    0
    SSL alert BAD_RECORD_MAC rcvd:                    0
    SSL alert DECRYPTION_FAILED rcvd:                 0
    SSL alert RECORD_OVERFLOW rcvd:                   0
    SSL alert DECOMPRESSION_FAILED rcvd:              0
    SSL alert HANDSHAKE_FAILED rcvd:                  0
    SSL alert NO_CERTIFICATE rcvd:                    0
    SSL alert BAD_CERTIFICATE rcvd:                   0
    SSL alert UNSUPPORTED_CERTIFICATE rcvd:           0
    SSL alert CERTIFICATE_REVOKED rcvd:               0
    SSL alert CERTIFICATE_EXPIRED rcvd:               0
    SSL alert CERTIFICATE_UNKNOWN rcvd:               6
    SSL alert ILLEGAL_PARAMETER rcvd:                 0
    SSL alert UNKNOWN_CA rcvd:                        0
    SSL alert ACCESS_DENIED rcvd:                     0
    SSL alert DECODE_ERROR rcvd:                      0
    SSL alert DECRYPT_ERROR rcvd:                     0
    SSL alert EXPORT_RESTRICTION rcvd:                0
    SSL alert PROTOCOL_VERSION rcvd:                  0
    SSL alert INSUFFICIENT_SECURITY rcvd:             0
    SSL alert INTERNAL_ERROR rcvd:                    0
    SSL alert USER_CANCELED rcvd:                     0
    SSL alert NO_RENEGOTIATION rcvd:                  0
    SSL alert CLOSE_NOTIFY sent:                      0
    SSL alert UNEXPECTED_MSG sent:                    0
    SSL alert BAD_RECORD_MAC sent:                    0
    SSL alert DECRYPTION_FAILED sent:                 0
    SSL alert RECORD_OVERFLOW sent:                   0
    SSL alert DECOMPRESSION_FAILED sent:              0
    SSL alert HANDSHAKE_FAILED sent:                  0
    SSL alert NO_CERTIFICATE sent:                    0
    SSL alert BAD_CERTIFICATE sent:                   0
    SSL alert UNSUPPORTED_CERTIFICATE sent:           0
    SSL alert CERTIFICATE_REVOKED sent:               0
    SSL alert CERTIFICATE_EXPIRED sent:               0
    SSL alert CERTIFICATE_UNKNOWN sent:               0
    SSL alert ILLEGAL_PARAMETER sent:                 0
    SSL alert UNKNOWN_CA sent:                        0
    SSL alert ACCESS_DENIED sent:                     0
    SSL alert DECODE_ERROR sent:                      0
    SSL alert DECRYPT_ERROR sent:                     0
    SSL alert EXPORT_RESTRICTION sent:                0
    SSL alert PROTOCOL_VERSION sent:                 47
    SSL alert INSUFFICIENT_SECURITY sent:             0
    SSL alert INTERNAL_ERROR sent:                    0
    SSL alert USER_CANCELED sent:                     0
    SSL alert NO_RENEGOTIATION sent:                  0
    +-----------------------------------------------+
    +--- Crypto server authentication statistics ---+
    +-----------------------------------------------+
    Total SSL client authentications:                 0
    Failed SSL client authentications:                0
    SSL client authentication cache hits:             0
    SSL static CRL lookups:                           0
    SSL best effort CRL lookups:                      0
    SSL CRL lookup cache hits:                        0
    SSL revoked certificates:                         0
    Total SSL server authentications:                 0
    Failed SSL server authentications:                0
    +-----------------------------------------------+
    +------- Crypto server cipher statistics -------+
    +-----------------------------------------------+
    Cipher sslv3_rsa_rc4_128_md5:                    43
    Cipher sslv3_rsa_rc4_128_sha:                     0
    Cipher sslv3_rsa_des_cbc_sha:                     0
    Cipher sslv3_rsa_3des_ede_cbc_sha:                0
    Cipher sslv3_rsa_exp_rc4_40_md5:                  0
    Cipher sslv3_rsa_exp_des40_cbc_sha:               0
    Cipher sslv3_rsa_exp1024_rc4_56_md5:              0
    Cipher sslv3_rsa_exp1024_des_cbc_sha:             0
    Cipher sslv3_rsa_exp1024_rc4_56_sha:              0
    Cipher sslv3_rsa_aes_128_cbc_sha:                 0
    Cipher sslv3_rsa_aes_256_cbc_sha:                 0
    Cipher tlsv1_rsa_rc4_128_md5:                     0
    Cipher tlsv1_rsa_rc4_128_sha:                     0
    Cipher tlsv1_rsa_des_cbc_sha:                     0
    Cipher tlsv1_rsa_3des_ede_cbc_sha:                0
    Cipher tlsv1_rsa_exp_rc4_40_md5:                  0
    Cipher tlsv1_rsa_exp_des40_cbc_sha:               0
    Cipher tlsv1_rsa_exp1024_rc4_56_md5:              0
    Cipher tlsv1_rsa_exp1024_des_cbc_sha:             0
    Cipher tlsv1_rsa_exp1024_rc4_56_sha:              0
    Cipher tlsv1_rsa_aes_128_cbc_sha:                 0
    Cipher tlsv1_rsa_aes_256_cbc_sha:                 0
    ace-demo/Admin# crypto verify testkey.key testcert.pem
    Keypair in testkey.key matches certificate in testcert.pem.
    ace-demo/Admin#
    ace-demo/Admin#  sh conn
    total current connections : 0
    conn-id    np dir proto vlan source                destination           state
    ----------+--+---+-----+----+---------------------+---------------------+------+

    Hello Alvaro,
    The issue here is that your config is missing the clear text port the ACE should use to send the traffic to the backend servers; in this case port 80.
    Remove the rservers from the SF "farm-demo" and then configure them back like this:
    serverfarm host farm-demo
      rserver rsrv1 80
        inservice
      rserver rsrv2 80
        inservice
    That should do the trick =)
    HTH
    Pablo

  • About Log in Web Dynpro Java

    1. Following is my log-configuration:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE log-configuration SYSTEM "log-configuration.dtd">
    <log-configuration>
         <log-formatters>
              <log-formatter
                   name="MyFormatter"
                   pattern="%24d %-40l [%t] %s: %m"
                   type="TraceFormatter"/>
         </log-formatters>
         <log-destinations>
              <log-destination
                   count="10"
                   effective-severity="INFO"
                   limit="100000"
                   name="MyDestination"
                   pattern="%t/trace.log"
                   type="FileLog"/>
         </log-destinations>
         <log-controllers>
              <log-controller
                   name="MyController"/>
         </log-controllers>
    </log-configuration>
    2. Following is my code:
      private static final com.sap.tc.logging.Location logger =
        com.sap.tc.logging.Location.getLocation(StartView.class);
      public void wdDoInit()
        //@@begin wdDoInit()
         logger.entering("StartView - wdDoInit()");
         logger.exiting("StartView - wdDoInit()");
        //@@end
    Question:
    Why I can not find the outfile in path ("c:\temp")?

    were you able to resolve this issue ?? Im facing similar problem, any help from you is highly appreciated.
    Thanks,

  • Limitation of 60 characters for namespace?

    Hi,
    I try to upload an external message definition (XSD) with a message belonging to a namespace with a name longer than 60 characters. Doing this, the Message does not appear on the "Messages" tab. If I manually edit the namespace and shorten it to under 60 characters it seems to work. This leads to the questions:
    Is there a hard limit for name space names of 60 characters?
    Is there a workaround available other than edit the original XSD (not an option since the XSD is controlled by another party...)
    Kind regards Johan

    Hi Johan,
    This will help you
    http://help.sap.com/saphelp_nw04/helpdata/en/bd/ddbe08ac5c11d2850e0000e8a57770/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/53/ec2c37b995184890c6d8ba5b668a86/frameset.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/bd/ddbe08ac5c11d2850e0000e8a57770/content.htm
    Thanks & Regards
    Agasthuri Doss

  • Messages.problem sending.

    I am trying to send an email with photos,but it keeps reading not delivered . Why?

    Hi Rdazzena,
    Thanks for using Apple Support Communities.  This article has some troubleshooting steps you can try for general issues with Mail:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    If this does not help, please reply with any additional information you can such as exact error messages or information about your email provider (message size limit, provider name, etc).
    Cheers,
    - Ari

  • Can't make an account for ichat, can't make an account for ichat

    Hi
    I just bought me a new macbook pro and i wanted to use ichat.
    The problem is, I can't make an account to use it.
    I just have hotmail.com accounts, and it doesn't work on ichat.
    And i fail in making an account that is compatible for ichat.
    Can you help me ?

    Hi,
    In iChat 4 there was a Get an iChat Account Button that linked to the @mac.com registration page (when you selected @mac.com in the add account drop down)
    In iChat 5 this had an option for the AIM Option to link via the same button to the AIM registration page.
    Then AIM moved their Registration page.
    For iChat 5.x.x. Apple have since disabled the Button (or pointed it to s different page saying the service has sort of ended)
    The Button is not there in iChat 6
    The @mac.com registration Page is Here
    This allows you to link an external to Apple email ID to an @mac.com name (It is sort of Hard Linked so you can only use this Email once this way)
    You cannot use an Email already Linked to an Apple ID.
    The Password you create here must not exceed 16 characters (AIM Server limit)
    The Name is both Apple ID and AIM valid Screen Name.
    A name create here will work in any version of iChat.
    iCloud.
    You can create a iCloud ID and this will end @me.com
    Again the password should be kept to 16 characters max.
    You can link existing Apple IDs to this as the creation process but again this "Hard Links" the emails
    iCloud does allow you to create IDs from scratch (i.e with an email not already used with an Apple ID)
    These names will only work in iChat 6 or Messages beta or Above (there's bound to be an "Above" at some stage as they say Messages will be in Mountain Lion)
    AIM registration page is here
    This can create any ID you want (it says it will be @aim.com but your don't enter this Suffix)
    You can use a secondary email for Password recovery and confirmation as many times as you want.
    The password is limited to 16 automatically
    You an in fact list any existing email as the AIM name (I have seen both Google mail IDs and Hotmail IDs as AIM Screen Names and technically it is possible to use an Apple name/ ID and the Name at AIM - most times it will tell you it is already in use)
    9:53 PM      Friday; April 6, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Change output list   FBL5N

    Hi, i want to add a new fields to the output of transactions FBL5N.
    I want to show in the output list the fields Credit Limit, Sales Ditrict and description of sales district in transaction.
    I need know how can i change the layout and in the hidden fields appear this fields.  this is possible?
    You think that exist some SAP notes for this requirement? If yes, can you give me the number if this note?
    Sales district: field KNVV-BZIRK
    por el credit limit: field KNKK-KLIMK.
    Thanks in advance.

    Hello Stilianos, yes of course with pleasure.
    The code that i put in my MF en the event 1650 from the start is following:
    function zzsample_interface_00001650.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_POSTAB) LIKE  RFPOS STRUCTURE  RFPOS
    *"  EXPORTING
    *"     VALUE(E_POSTAB) LIKE  RFPOS STRUCTURE  RFPOS
    Descripción: Copy of the MF SAMPLE_INTERFACE_00001650, the MF for
    the event 1650: Line Item Display: Add to data per line.This specific
    MF was been created to fill new fields in the ALV list of the
    transaction FBL5N as part of the developmenet
    GB-DEV-FIN - Impact Assessment RFC FIN 1270).
    ........................................................u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026.
    MÓDULO AL QUE PERTENECE: FI
    AUTOR : Amal SALHI    EMPRESA: Accenture     FECHA: 03/06/08
    CONTROL DE MODIFICACIONES
    AUTOR           EMPRESA            FECHA          MOTIVO
    ...........     ...............    DD/MM/AA      ......................
    ...........     ...............    DD/MM/AA       ......................
    Initialize Output by using the following line -
    E_POSTAB = I_POSTAB.
      tables: bkpf,      "Accounting Document Header
              vbrk,      "Billing Document: Header Data
              knvv,      "Customer Master Sales Data
              knkk,      "Customer master credit management: Control area data
              t171t.     "Customers: Sales districts: Texts
    Variable and constants declaration
      data: l_awtyp type bkpf-awtyp,  " Reference Transaction
            l_awkey type bkpf-awkey,  " Reference Key
            l_vkorg type vbrk-vkorg,  " Sales Organization
            l_kunnr type vbrk-kunrg,  " Payer
            l_vtweg type vbrk-vtweg,  " Distribution Channel
            l_spart type vbrk-spart.  " Division
      constants:c_vbrk type bkpf-awtyp  value 'VBRK',
                c_d    type rfpos-koart value 'D',
                c_fbl5n like sy-tcode   value 'FBL5N'.
    Fill all fields except new fields: Sales district, Customer's credit limit
    and Name of the district (Copy of FDM_AR_INTERFACE_00001650 code)
      data:
           lt_attributes type fdm_t_line_item_attributes,
           ls_attributes type fdm_line_item_attributes.
      clear e_postab.
    *--- pass the account type, customer account to the service layer
      move-corresponding i_postab to ls_attributes.
      append ls_attributes to lt_attributes.
    *--- call the service layer to get the case attributes
      call function 'FDM_AR_DOC_ATTRIBUTES_GET'
        changing
          ct_attributes = lt_attributes.
    *--- pass the case attributes back to the exporting
      clear ls_attributes.
      move-corresponding i_postab to e_postab.
      read table lt_attributes into ls_attributes index 1.
      move-corresponding ls_attributes to e_postab.
    *--- fill line item fields overwritten by last move-corresponding
      e_postab-konto = i_postab-konto.
      e_postab-koart = i_postab-koart.
      e_postab-bukrs = i_postab-bukrs.
      e_postab-belnr = i_postab-belnr.
      e_postab-gjahr = i_postab-gjahr.
      e_postab-buzei = i_postab-buzei.
      check sy-tcode = c_fbl5n.
    Fill new fields: Sales district (RFPOS-BZIRK), Customer's credit limit (RFPOS-KLIMK)
    and Name of the district (RFPOS-BZTXT)
    Find the Customer Number
      if e_postab-koart = c_d.
        clear l_kunnr.
        l_kunnr = i_postab-konto.
      endif.
    Fill the column Customer's credit limit (KLIMK)
      clear e_postab-klimk.
      select single klimk
      into e_postab-klimk
      from knkk
      where kunnr = l_kunnr         "Customer Number 1
      and   kkber = i_postab-kkber. "Credit control area
    Find the original document from BKPF
      clear: l_awtyp, l_awkey.
      select single awtyp awkey
      from bkpf
      into (l_awtyp, l_awkey)
      where bukrs = i_postab-bukrs
      and   belnr = i_postab-belnr
      and   gjahr = i_postab-gjahr.
    Check if the original document is a sales document.
      if l_awtyp = c_vbrk.
        clear: l_vkorg, l_vtweg, l_kunnr, l_spart.
        select single vkorg vtweg spart kunrg
        from vbrk
        into (l_vkorg, l_vtweg, l_spart, l_kunnr)
        where vbeln = l_awkey(10).
        if sy-subrc = 0.
    Fill the column Sales district (BZIRK)
          clear e_postab-bzirk.
          select single bzirk
          from knvv
          into e_postab-bzirk
          where kunnr = l_kunnr     "Customer Number 1
          and   vkorg = l_vkorg     "Sales Organization
          and   vtweg = l_vtweg     "Distribution Channel
          and   spart = l_spart.    "Division
    Fill the column Name of the district (BZTXT)
          clear e_postab-bztxt.
          select single bztxt
          into e_postab-bztxt
          from t171t
          where spras = sy-langu        "Connection Language
          and   bzirk = e_postab-bzirk. "Sales district
        endif.
    CB
      else.
    Fill the column Sales district (BZIRK)
        clear e_postab-bzirk.
        select single bzirk
        from knvv
        into e_postab-bzirk
        where kunnr = l_kunnr         "Customer Number 1
        and   vkorg = i_postab-bukrs. "Sales Organization
        check sy-subrc = 0.
    Fill the column Name of the district (BZTXT)
        clear e_postab-bztxt.
        select single bztxt
        into e_postab-bztxt
        from t171t
        where spras = sy-langu        "Connection Language
        and   bzirk = e_postab-bzirk. "Sales district
    CB
      endif.
    endfunction.
    One remark that you know is it makes sense to show those fields only if the invoice was generated by a bill for that we search inf the origin document in BKPF is an invoice.
    I hope that helps you. For anything about that, you can tell me and i will see if i can help you.
    Tell if this resolves your problem.

  • Can't get logging to work

    I have a simple EJB that I'm trying to write log messages from.  I have these statements in my EJB:
    protected static final Location loc = Location.getLocation("com.company.ejb");
    protected static final Category cat = Category.getCategory(Category.APPLICATIONS,"Downstream");
    followed by this sort of log message call:
       cat.warningT( loc, "Here is a warning" );
    My log configuration for the EAR is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE log-configuration SYSTEM "log-configuration.dtd">
    <log-configuration>
         <log-destinations>
              <log-destination
                   count="5"
                   effective-severity="ALL"
                   limit="1000000"
                   name="DownstreamLog"
                   pattern="d:/src/ejb.log"
                   type="FileLog">
                   <anonymous-formatter
                        type="ListFormatter"/>
              </log-destination>
         </log-destinations>
         <log-controllers>
              <log-controller
                   effective-severity="ALL"
                   maximum-severity="FATAL"
                   minimum-severity="DEBUG"
                   name="/Applications/Downstream">
                   <associated-destinations>
                        <destination-ref
                             association-type="LOCAL_LOG"
                             name="DownstreamLog"/>
                   </associated-destinations>
              </log-controller>
         </log-controllers>
    </log-configuration>
    /Applications/Downstream is visible in the Visual Administrator, and appears to be configured correctly, but nothing is written to the log file.
    What am I missing?

    The gateway uses DSAME for its logging, so the log files should be on the server on which you've installed DSAME/Portal. Have you looked there?

  • Adapter trace

    Hi experts!
    I am developing an adapter on PI 7.0 that complains with JCA 1.0, based on sampleAdapter delivered by SAP.
    A lot of trace calls are made on my code: trace.entering(...), trace.exiting(...), trace.catching(...) but none of them appear at nwa logs.
    The file structure of MyAdapter.sda is the following:
    META-INF\application-j2ee-engine.xml
    META-INF\application.xml
    META-INF\log-configuration.xml
    META-INF\MANIFEST.MF
    META-INF\SAP_MANIFEST.MF
    META-INF\sda-dd.xml
    MyAdapter.rar
    And the structure of MyAdapter.rar is:
    META-INF\connector-j2ee-engine.xml
    META-INF\MANIFEST.MF
    META-INF\ra.xml
    MyAdapter.jar
    When I make the deploy at Visual Administrator, I can see the tab Log Configurator with the data of log-configuration.xml that is on sda:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE log-configuration SYSTEM "log-configuration.dtd">
    <log-configuration>
         <log-formatters>
              <log-formatter
                   name="trc"
                   pattern="%26d %150l [%t] %10s: %m"
                   type="TraceFormatter"/>
         </log-formatters>
         <log-destinations>
              <log-destination
                   count="5"
                   effective-severity="ALL"
                   limit="2000000"
                   name="MyAdapter.trc"
                   pattern="./log/applications/mycompany.MyAdapter/default.trc"
                   type="FileLog">
                   <formatter-ref name="trc"/>
              </log-destination>
         </log-destinations>
         <log-controllers>
              <log-controller
                   name="mycompany.MyAdapter"
                   effective-severity="ALL">
                   <associated-destinations>
                        <destination-ref
                             association-type="LOG"
                             name="MyAdapter.trc"/>
                   </associated-destinations>
              </log-controller>
         </log-controllers>
    </log-configuration>
    At Service > Log Configurator >Locations, I can also see those configured values. But nothing is logged on trace.
    Is there something missing?

    Hi, Soctt,
    Go to the J2ee Visual Admin tool. Check the service Log configurator. Go to the RFC adapter file and set the trace level to debig mode. Save it. Noe try to test your sceanrio and check the file system for the traces...You have more info from the trace now.
    Looks like you have a problem with the data you trying to send thorouch XI.
    Regards
    Prasad

  • EJB module Error Observed ::?

    Hi @,
    In my custom adaptor module I am getting the following error ::
    Attempt to process file failed with com.sap.engine.services.ejb.exceptions.BaseTransactionRolledbackLocalException: Exception thrown in method process. The transaction is marked for rollback.
    PLease suggest why this error is coming ?
    Regards

    Hi Beyong,
    Check your method "Process"...It indicates exception is raised in methid "Process"...
    Also you can changeyour exception part by..
    catch (Exception e) {
         ModuleException me = new ModuleException(e);
         throw me; :
    Otherwise you can debug the exact location by :
    For this you would need to carry out certain steps which are :
    1. In NWDS , create a new file in the META-INF folder of Enterprise Project. The name of the file should be log-configuration.xml.Paste the following content in this file
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE log-configuration SYSTEM "log-configuration.dtd">
    <log-configuration>
    <log-formatters>
    <!-- This formatter produces human readable messages. -->
    <log-formatter
    name="trc"
    pattern="%26d %150l [%t] %10s: %m"
    type="TraceFormatter"/>
    </log-formatters>
    <log-destinations>
    <!-- Destination for Trace Information of this sample -->
    <log-destination
    count="5"
    effective-severity="DEBUG"
    limit="2000000"
    name="sample.trc"
    pattern="./log/applications/sample/default.trc"
    type="FileLog">
    <formatter-ref
    name="trc"/>
    </log-destination>
    </log-destinations>
    <log-controllers>
    <!-- Trace Location sample -->
    <log-controller
    effective-severity="DEBUG"
    name="sample">
    <associated-destinations>
    <destination-ref
    association-type="LOG"
    name="sample.trc"/>
    </associated-destinations>
    </log-controller>
    <!-- Logging Category: none, use the default XILog -->
    </log-controllers>
    </log-configuration>
    2. In your process method, add following statement
    AuditMessageKey auditMKey =
                   new AuditMessageKey(message.getMessageId(), AuditDirection.INBOUND);
              Audit.addAuditLogEntry(
                   auditMKey,
                   AuditLogStatus.SUCCESS,
                   "CustomModule :: process method started");
    This would send the statement "CustomModule :: process method started" to the Audit Log of XI server and you would be in a position to see upto which step your code is executing sucessfully. Audit log can be viewed at
    http://<host>:<port>/MessagingSystem/monitor/monitor.jsp. you need to know the message ID for your transaction in this case.
    Hope this wull help you.
    Nilesh

Maybe you are looking for

  • How Can I Make Acrobat Not Resize Images?

    I am trying to turn around 80 images into the pages of a PDF file. The pictures are saved as JPEGs and have the exact dimensions I want them to have as pages of a PDF. When I turn them into a PDF in Acrobat Pro 9 they get resized so when viewed at 10

  • Can  not get any color swatches into Gradient Swatch panel.

    I've tried dragging, clicking dragging and only get the circle/line-thru-it.  And there is no New Gradient Swatch option anywhere that I can see. Listen:  I've now spent over 4 hours online -- today alone! -- reading instructions that simply do not w

  • Datetrans Bug?

    Hello Experts, we are using for a message mapping in the integration builder a user defined function called "datetrans". We want to transform an incoming date into sap date. The incoming date always looks like ddmmyy. This should be transformed in yy

  • Doubt in transporting the objects

    HI all,         I have a doubt in transporting the objects, I have made changes in Function module's include program only , Should i have to transport the include prog alone or the whole the FM itself, Please suggest Thanks in Advance, Kumaran.C

  • Going to Africa - will my software continue to work?

    I am a current Cloud subscriber. I have had no issues with installation, activation, etc. All works just fine. My issue is that I will be traveling in Africa on a photo safari for 3 weeks and that my monthly renewal falls 5 days before the end of my