You cannot edit proxy object

hi
  while i am creating proxy. in se24 i try to edit the method Execute_asynchronus but it showing you cannot edit proxy object.
what i am to do to edit the method.

HI Limat,
u can't edit that.
If it's client proxy then u can send it through some report prog. in which u can call this method and pass the data.
check this link
Concepts and examples for Proxy, Abap Client Proxy and Abap server Proxy
Sachin

Similar Messages

  • Cannot Edit Imported Objects in Preview Window

    Greetings,
    I am having a strange problem with Premiere CS5. In the picture below I have a video on the video1 layer and a static .png picture of a badge on the "Badge" layer. I want to move the badge from the right side of the screen to the left side of the screen.
    No matter what I try, I cannot click or edit that badge in the preview window above the sequence window. I have double clicked, single clicked, right clicked. Two experienced video editors have also looked at it and they cannot seem to figure it out either.
    This is a new installation of CS5, so we are thinking it is some kind of strange setting we are not aware of. Also it's not exclusive to this project or file type. We have tried .gif files, .avi files, etc. We have opened new projects and tried importing a video or static object there and you cannot edit the placement of it. Any help or suggestions is greatly appreciated.

    Select the PNG in the time line by clicking on it, go to the effects control panel and use motion/position to place it in the location you want..

  • Cannot generate proxy (object missing in WSDL)

    Hi folks,
    Once again, my apology for this thread isn’t 100% XI forum related. But, continuing with this issue…
    As you can see on my earlier post
    Consuming an external web service with WAS 6.40
    I’m trying to consume an external web service. Following Michal’s suggestion I have checked the WSDL in debug mode and I found some irregularities on it. It seams this WSDL doesn’t describe the whole interface correctly. Looking to Diagnosis, I see an object <b>"<message name="listaCodSig0Request"> <part name..."</b> that is linked to an empty object, or either, doesn’t exist in the WSDL document!!!
    <i>“ABAP proxy generation expects that all directly and indirectly referenced objects are in the WSDL document. Therefore, no proxy can be generated for this WSDL and the system displays an error message.”</i>
    It seams that this web service was developed through messages with several parts. Searching in http://service.sap.com I found a document <u>XSDandWSDL_XI30SP11.xls</u> with supported XML schema and WSDL. In this doc I can see that messages with several parts are not supported!!!
    I would like to know how can I workaround this issue. Is it possible replace these elements<b> “part name= “</b> with other supported elements in the WSDL document and without changes on the web service? I’m asking this because this external web service are working well with other third party client applications and is not supposed perform any changes on that.
    I tried to replace <b>“part name= “</b> to <b>“part element= “</b>, but it doesn’t work! “Proxy generation terminated: WSDL error (object part without name)…
    Anyone knows which elements I should use in replace of these unsupported elements and which procedures I need to taking into account?
    Thanks in advance,
    Ricardo.

    Hey Ricardo,
    First of all, when I tried to save your wsdl in XMLSpy, it complained about the empty soapaction declaration in the <operation> tag. I had to remove the line
    <soap:operation soapAction="" style="rpc" />
    in order to make it work in XMLSpy. It would be a good idea to check that out with the developers of the wsdl.
    Anyway, after I removed that tag, I start comparing your wsdl to a common Message Interface wsdl generated by XI. By doing that, I have found out that the <part> element in XI has a name and also refers to an existing element, which was previously defined in the <schema> group.
    I've made some modifications, you could try it, but I have found an issue about this approach. With your wsdl, the soap request message has a <listaCodSig> tag with namespace "http://db_cml_alcor_mgb/Moradas_Edificios.xsd", and inside it, you have a <pDesignLocal> tag with no namespace defined.
    If you use the modificated wsdl below, both <listaCodSig> and <pDesignLocal> tags have namespace as "http://db_cml_alcor_mgb/Moradas_Edificios.xsd", and I think that'll cause issues in your server application. But you can try it out, playing with the wsdls, if you can remove the definition there.
    The modificated wsdl is below (changed parts in bold).
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Generated by the Oracle JDeveloper 10g Web Services WSDL Generator -->
    <!-- Date Created: Wed Nov 08 12:01:03 GMT 2006 -->
    <definitions
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://alcor.cm-lisboa.net:7777/CML-SRUs-context-root/Moradas_Edificios.wsdl"
    xmlns:ns1="http://db_cml_alcor_mgb/Moradas_Edificios.xsd"
    name="Moradas_Edificios"
    targetNamespace="http://alcor.cm-lisboa.net:7777/CML-SRUs-context-root/Moradas_Edificios.wsdl">
    <types>
    <schema
    xmlns="http://www.w3.org/2001/XMLSchema"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    targetNamespace="http://db_cml_alcor_mgb/Moradas_Edificios.xsd">
    <b><element name="pDesignLocal" type="xsd:string"/>
    <element name="return" type="ns1:db_cml_alcor_mgb_TabMoradaEdif"/></b>
    <complexType name="db_cml_alcor_mgb_TabMoradaEdif"
    jdev:packageName="db_cml_alcor_mgb"
    xmlns:jdev="http://xmlns.oracle.com/jdeveloper/webservices">
    <all>
    <element name="array"
    type="ns1:ArrayOfdb_cml_alcor_mgb_MoradaEdifUser"/>
    </all>
    </complexType>
    <complexType name="db_cml_alcor_mgb_MoradaEdifUser"
    jdev:packageName="db_cml_alcor_mgb"
    xmlns:jdev="http://xmlns.oracle.com/jdeveloper/webservices">
    <all>
    <element name="codSig" type="string"/>
    <element name="desigLocal" type="string"/>
    <element name="codLocal" type="string"/>
    <element name="nrPol" type="string"/>
    <element name="nome" type="string"/>
    <element name="nrObraConstrucao" type="string"/>
    <element name="freguesia" type="string"/>
    <element name="areaGestao" type="string"/>
    </all>
    </complexType>
    <complexType name="ArrayOfdb_cml_alcor_mgb_MoradaEdifUser"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    <complexContent>
    <restriction base="SOAP-ENC:Array">
    <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns1:db_cml_alcor_mgb_MoradaEdifUser[]"/>
    </restriction>
    </complexContent>
    </complexType>
    </schema>
    </types>
    <message name="listaCodSig0Request">
    <b><part name="pDesigLocal" element="ns1:pDesignLocal"/></b>
    </message>
    <message name="listaCodSig0Response">
    <b><part name="return" element="ns1:return"/></b>
    </message>
    <portType name="Moradas_EdificiosPortType">
    <operation name="listaCodSig">
    <input name="listaCodSig0Request" message="tns:listaCodSig0Request"/>
    <output name="listaCodSig0Response" message="tns:listaCodSig0Response"/>
    </operation>
    </portType>
    <binding name="Moradas_EdificiosBinding" type="tns:Moradas_EdificiosPortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="listaCodSig">
    <input name="listaCodSig0Request">
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="Moradas_Edificios"/>
    </input>
    <output name="listaCodSig0Response">
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="Moradas_Edificios"/>
    </output>
    </operation>
    </binding>
    <service name="Moradas_Edificios">
    <port name="Moradas_EdificiosPort" binding="tns:Moradas_EdificiosBinding">
    <soap:address location="http://alcor.cm-lisboa.net:7777/CML-SRUs-context-root/Moradas_Edificios"/>
    </port>
    </service>
    </definitions>
    Regards,
    Henrique.

  • Cannot Edit in Object Browser using Firefox 1.5.04

    Hello Everyone,
    I've run into a problem on my installation of XE (Windows 2000, latest patches, 1.5GB RAM). In Firefox (1.5.04), when I go into Object Browser and bring up a stored procedure or function, the code doesn't show in the editor window. I get a single dark green line at the top of the edit area, but no code displays. The edit button greys out when I click it, and all of the other buttons are unresponsive.
    I've cleared my cache, exited and restarted Firefox, and rebooted the machine, all to no effect.
    It does work okay in IE6, however. I did a forum search and found some threads about other Firefox quirks, but they all appear to be from pre-production versions of XE, and I'm running the latest version I know of: Home, Administration, About Database reports the following:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Any ideas or pointers would be much appreciated!
    John MacLerran, Idaho State University

    Jer,
    The only extensions it shows are DOM Inspector (1.8.0.4), and Talkback (1.5.0.4). They must be defaults because I don't remember installing them.
    I removed both of those, restarted FireFox, and cleared the cache again -- that didn't change anything.
    Thanks

  • Acrobat XI error "you cannot edit this file as a form"

    Hi
    I have some form fields in an editable PDF file I created earlier and want to copy these over to a new PDF file. However even after saving a copy I get the error message below with no further information. This was never a problem in Acrobat X. 
    I have not password protected it.
    thanks for any help

    if Acrobat/Reader is saying that the file is PDF/A then the file is claiming that it is.
    You can use Acrobat Professional to remove any trace of PDF/A complaince using its Preflight feature.

  • Cannot generate proxy

    Does anyone have an idea if the WSDL is wrong or if it's an XI problem?
    thanks
    Johann Marty
    TeamWork Management SA
    Geneva
    Cannot generate proxy (object  missing in WSDL, see long text)
    Message no. SPRX084
    Background
    During proxy generation, an interface description in WSDL format is fetched from the Integration Builder or another source and interpreted. This WSDL document must describe the whole interface correctly.
    ==> Display WSDL Document
    Diagnosis
    In the WSDL document, the object
       "<message name="existDocument"> <part name="invo..."
    from the namespace
      "http://tempuri.org/"
    links to the object
    from the namespace
    However, this last object does not exist in the WSDL document.
    System response
    ABAP proxy generation expects that all directly and indirectly referenced objects are in the WSDL document. Therefore, no proxy can be generated for this WSDL and the system displays an error message.
    Procedure
    This situation can have different causes:
    Object "" not been defined
    Object "" saved in the wrong namespace
    In the reference to object "", the wrong name was specified
    In the reference to object "", the wrong namespace "" was specified
    Internal error in the service that constructs the WSDL document
    Internal error in ABAP proxy generation

    Hi,
    Just cross check with your configuration details.
    Also try to recreate the proxy and activate it.-
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    Regards,
    Moorthy

  • Error generating Client Proxy - object  missing in WSDL

    Hello,
    I have error while generating Client Proxy.
    I have WSDL and XSD in files. I get error message:
    object <message name="requestUPOMessage"> missing in WSDL
    Diagnosis
    In the WSDL document, the object
       "<portType name="GateServicePortType"> <operatio..."
    from the namespace
      "https://bramka.edeklaracje. mf.gov.pl/"
    links to the object
       "<message name="requestUPOMessage">"
    from the namespace
       "https://bramka.e-deklaracje.mf.gov.pl/"
    However, this last object does not exist in the WSDL document.
    WSDL FILE and XSD FILE: http://www.sendspace.com/filegroup/N8kSxPp5bhY2nVfcNBbAXg
    WSDL:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:ns="https://bramka.edeklaracje.
    mf.gov.pl/xsd" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:gate="https://bramka.e-deklaracje.mf.gov.pl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="https://bramka.edeklaracje.
    mf.gov.pl/">
    <wsdl:types>
    <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified"
    targetNamespace="https://bramka.e-deklaracje.mf.gov.pl/xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:include schemaLocation="GateService.xsd"/>
    </xs:schema>
    </wsdl:types>
    <wsdl:message name="sendDocumentWithAttachmentResponseMessage">
    <wsdl:part name="part1" element="ns:sendDocumentWithAttachmentResponse">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="sendUnsignDocumentResponseMessage">
    <wsdl:part name="part1" element="ns:sendUnsignDocumentResponse">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="requestUPOResponseMessage">
    <wsdl:part name="part1" element="ns:requestUPOResponse">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="sendDocumentResponseMessage">
    <wsdl:part name="part1" element="ns:sendDocumentResponse">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="sendUnsignDocumentMessage">
    <wsdl:part name="part1" element="ns:sendUnsignDocument">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="sendDocumentMessage">
    <wsdl:part name="part1" element="ns:sendDocument">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="requestUPOMessage">
    <wsdl:part name="part1" element="ns:requestUPO">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="sendDocumentWithAttachmentMessage">
    <wsdl:part name="part1" element="ns:sendDocumentWithAttachment">
    </wsdl:part>
    </wsdl:message>
    <wsdl:portType name="GateServicePortType">
    <wsdl:operation name="sendDocument">
    <wsdl:input message="gate:sendDocumentMessage">
    </wsdl:input>
    <wsdl:output message="gate:sendDocumentResponseMessage">
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="sendUnsignDocument">
    <wsdl:input message="gate:sendUnsignDocumentMessage">
    </wsdl:input>
    <wsdl:output message="gate:sendUnsignDocumentResponseMessage">
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="sendDocumentWithAttachment">
    <wsdl:input message="gate:sendDocumentWithAttachmentMessage">
    </wsdl:input>
    <wsdl:output message="gate:sendDocumentWithAttachmentResponseMessage">
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="requestUPO">
    <wsdl:input message="gate:requestUPOMessage">
    </wsdl:input>
    <wsdl:output message="gate:requestUPOResponseMessage">
    </wsdl:output>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="GateServiceSOAP12Binding" type="gate:GateServicePortType">
    <soap12:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="sendDocument">
    <soap12:operation soapAction="urn:sendDocument" style="document"/>
    <wsdl:input>
    <soap12:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="sendUnsignDocument">
    <soap12:operation soapAction="urn:sendUnsignDocument" style="document"/>
    <wsdl:input>
    <soap12:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="sendDocumentWithAttachment">
    <soap12:operation soapAction="urn:sendDocumentWithAttachment" style="document"/>
    <wsdl:input>
    <soap12:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="requestUPO">
    <soap12:operation soapAction="urn:requestUPO" style="document"/>
    <wsdl:input>
    <soap12:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:binding name="GateServiceSOAP11Binding" type="gate:GateServicePortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="sendDocument">
    <soap:operation soapAction="urn:sendDocument" style="document"/>
    <wsdl:input>
    <soap:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="sendUnsignDocument">
    <soap:operation soapAction="urn:sendUnsignDocument" style="document"/>
    <wsdl:input>
    <soap:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="sendDocumentWithAttachment">
    <soap:operation soapAction="urn:sendDocumentWithAttachment" style="document"/>
    <wsdl:input>
    <soap:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="requestUPO">
    <soap:operation soapAction="urn:requestUPO" style="document"/>
    <wsdl:input>
    <soap:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal" namespace="https://bramka.e-deklaracje.mf.gov.pl/"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="GateService">
    <wsdl:port name="GateServiceSOAP12port" binding="gate:GateServiceSOAP12Binding">
    <soap12:address location="https://test-bramka.edeklaracje.gov.pl/uslugi/dokumenty/"/>
    </wsdl:port>
    <wsdl:port name="GateServiceSOAP11port" binding="gate:GateServiceSOAP11Binding">
    <soap:address location="https://test-bramka.edeklaracje.gov.pl/uslugi/dokumenty/"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    XSD
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="https://bramka.edeklaracje.
    mf.gov.pl/xsd" targetNamespace="https://bramka.e-deklaracje.mf.gov.pl/xsd"
    elementFormDefault="qualified" attributeFormDefault="qualified">
    <xs:element name="sendDocument">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="document" type="xs:base64Binary"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="sendDocumentResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="refId" type="xs:string" minOccurs="0"/>
    <xs:element name="status" type="xs:int"/>
    <xs:element name="statusOpis" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="sendUnsignDocument">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="document" type="xs:base64Binary"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="sendUnsignDocumentResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="refId" type="xs:string" minOccurs="0"/>
    <xs:element name="status" type="xs:int"/>
    <xs:element name="statusOpis" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="sendDocumentWithAttachment">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="attachment" type="xs:base64Binary" minOccurs="0"/>
    <xs:element name="document" type="xs:base64Binary"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="sendDocumentWithAttachmentResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="refId" type="xs:string" minOccurs="0"/>
    <xs:element name="status" type="xs:int"/>
    <xs:element name="statusOpis" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="requestUPO">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="refId" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="requestUPOResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="upo" type="xs:string" minOccurs="0"/>
    <xs:element name="status" type="xs:int"/>
    <xs:element name="statusOpis" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    Maybe someone know what is wrong in wsdl file and how to correct this?

    Hi Marcus,
    Did you fix the problem?
    I'm asking because I'm dealing with the same problem! I tried to generate a Proxy object from a WSDL document and I can't... I always receive the error "Cannot generate proxy (object  missing in WSDL, see long text)". I have checked on the service.sap.com and I found a xls document with all unsupported WSDL elements and one of them is the "part name=" and I have it in my WSDL! I don't know how to workaround this issue, can you help me please?
    Thanks in advance,
    Ricardo.

  • Cannot Edit Form

    Purchased XI Pro with the single purpose of creating forms.  Once created in Forms Central and 'Save a PDF Form' I cannot edit in Adobe XI Pro,  When I select Forms/Edit I get the message to 'Save As Copy...' I do that then get a screen that says 'You cannot edit this as a form.'   I can't do any of the neat features those nice video in the Adobe site says you can do.  Appreciate any advise.

    Hi;
    Please see this FAQ on how to edit a FormsCentral form in Acrobat: http://forums.adobe.com/docs/DOC-3661
    Thanks,
    Josh

  • Cannot edit properties

    We have been moving and adding documents to a document library which we have set up. We have included required fields. At first we were able to edit the properties in each document to add the relevant fields, but now this is now longer working. we're out
    of ideas. Can anyone advise please. Thanks

    when you say you cannot edit. what is happening
    is that option disabled(it can be due to permission) or database is locked from central admin quota and lock.
    Check if SQL server is giving any error message\disk space issue
    If you getting some error message. please share error details with us

  • Cannot edit email address in sync settings in android firefox. BUG

    If the email address is incorrect, I think I have a space in front, you cannot verify and firefox will not let you edit or delete until it is verified. I am left in no mans land.

    Hi glennh,
    You can delete the account from this link [about:accounts].
    However you will need to create a new account with the email with no space in front in order to receive a verification email.
    This is expected. At this time you cannot edit the account name after it has been created.

  • Cannot edit calendar category

    Not sure why this hasn't been corrected yet, but on both the iPhone and the iPad, once you create a calendar event, you cannot edit the category. You can only do this via the Mac app or MobileMe. Why???

    To clarify...
    When I create a calendar item on my iPhone or iPad, I choose which calendar (category/group/type, whatever). I said category to imply I had set up different calendars. So for instance, most of the time I will select the "Work (green)" calendar which happens to be the default.. The problem is that if I accidentally save the item in the wrong calendar, I cannot change it on the iPhone or iPad.
    Here's a scenario to make sure everyone is crystal clear on this...
    I create a new event, input the time, place, alarm, notes and then I save it. Oops, I meant to save it as a "Personal (blue)" calendar event, but it was saved as a "Work (green)" event. Now, I have to go to MobileMe and change it because I cannot do so on the iPhone or iPad.
    Okay now, hope that clears it up.

  • Usernames with underscore at the begining cannot edit pages

    Hello,
    I know that a username (short name) starting with an underscore “_” are reserved by the system accounts.
    Anyways I wanted a character to differentiate users by their name and didn’t wanted to use the hyphen.
    So with such users, the pen button is never available. You cannot edit their pages.
    The fix is to not name your users using a underscore at the begining.
    I wouldn’t consider this as a bug but worth to know.
    Message was edited by: Thyb
    Message was edited by: Thyb

    > Is DW as bad as FP?
    Without a comfort level in HTML and CSS, anything will be
    trouble for you.
    On the other hand, if you are not put off by looking at code,
    then DW's
    templates are quite simple to understand and adapt to.
    > The site is quite large and has a few sub webs.
    DW will not play well with sub webs. Each sub web must be
    treated as an
    independent site in DW with its own site definition and local
    site (although
    you could nest your local sites in DW).
    > Anyway, I guess I test on a local server and hope to get
    an understanding
    > of
    > DW.
    Does your site's usage require a testing server? By that, I
    mean to ask -
    are you using server scripting? If not, then you do not need
    a testing
    server.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jeff5100" <[email protected]> wrote in
    message
    news:gbari5$bhb$[email protected]..
    > Thanks ACE,
    >
    > There was indeed a Template folder with the template
    file in
    > it.
    > I have downloaded it and will attempt to discover how to
    use it. It
    > reminds me
    > of Front Page which is a nightmare to go behind. Is DW
    as bad as FP? I am
    > fairly comfortable with html and have a conceptual
    understanding of css. I
    > have
    > built a site or two from scatch with DW without any
    problems. My main
    > concern
    > is that this site has been built by many entities and
    using different code
    > applications. I have to fix a few cosmetic things but
    don't want to break
    > the
    > site with my minor changes. The site is quite large and
    has a few sub
    > webs.
    > Anyway, I guess I test on a local server and hope to get
    an understanding
    > of
    > DW.
    >
    > Thanks again for your help
    >

  • When creating a remote address in a pot or other objects you cannot use a / for a address??? my ladders addresses contain such ////// symbols for some addresses?​??

    when creating a remote address in a pot or other objects you cannot use a  /  for a address??? my ladders addresses contain such ////// symbols for some addresses???

    On the AB object, "f" is a float and cannot address individual bits.
    Otherwise, you would replace the "/" with an "_".
    Forshock - Consult.Develop.Solve.

  • I recently upgraded to Yosemite.  Now in my Pages documents I cannot select/edit any objects or images.  Help Please!

    I just recently updated my MacBook Pro to Yosemite 10.10.2
    I also updated my "Pages" when asked to.
    Now when a open any of my Pages documents, I cannot select/edit any of the objects/images in those documents.
    I have gone through the "Pages" help but still cannot solve the problem. 
    There used to be a "make background objects selectable" button, but I can no longer find it.
    I have tried the "arrange tab" > section masters > make master objects selectable, but nothing happened
    Any suggestions

    Hello Kappy,
    I checked out your link and I remember the import box popping up when I upgraded from iWork to Pages a few years ago.  My problem is with all files (even documents created with "pages" last week.  The documents open fine, I just cannot select/edit the objects/images in the background of my documents.  Yes, I have tried going through all of the tab menus and layout options and tried "pages" help.
    So my problem is that I cannot open documents and adapt them to my next lesson, etc.
    Anyone else have any suggestions?

  • Error in activating proxy object

    hi
    when i m trying to activate my proxy objects in CLIENT PROXY scenario in the ECC , the following error message is being prompted :
    Erro in object editing :
    "SAP object CLAS CO_PRXY_MI cannot be assigned to
    package ZXIPACKAGE:
    A package has been created in ECC by the name of zxipackage .
    Pl help to rectify the problem
    rgds
    shazia

    Hi,
    You should assign it to Z-package ie.e Customized one not SAP package
    Use a prefix of Z when doing the generation and you can use your own development class. you are trying to create objects in the SAP namespace.
    The Proxy object should have to be in non SAP package only, if its customized.
    As while activating the ABAP proxy internally Class and verious methods as well as some data typs get creaetd which are to be assigned it Z-package.
    refer below link
    Tips for Generating ABAP Proxies
    http://help.sap.com/saphelp_nw04s/helpdata/en/2b/f49b21674e8c44940bb3beafd83d5c/frameset.htm
    thanks
    Swarup

Maybe you are looking for

  • Trying to set a JLabel off of a JTable

    Hi! I am trying to let a user select a row from a Jtable and have those highlighted values displayed below in another panel. Problem is that the gui never seems to refresh. Any ideas? public class MainClass{   public static void main( String[] args )

  • Sender SOAP Adapter - how to avoid changes of URL for diferent environments

    Dear experts, we have a concern with transports of PI objects in our environment. Situation: When we transport SOAP Sender objetcs in PI from Dev to Test the URL (Endpoint) changes automatically the hostname and the business system (target system in

  • How to delete modified version datasource

    I have a datasource in M version and A version. I am getting datasource activation error in BI 7.0 Please let me know how to delete Modified version. Thanks Liza

  • How to run a File digitally signed by me on someone else computer i like?

    My pdf file that I signed by my digital id is not running on someone else computer & Its saying that no digital id present to decrypt it,contact document author.I want to know what measures should i addopt so that it runs on computers of my choice of

  • Imovie 09 crashes at start up

    i just purchased a box set of ilife09, SL 0S X. imovie09 will not open, it just crashes. i have tried to re-install SL, and ilife09 nothing works! I have 667 intel processor 4gb memory HELP!