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

Similar Messages

  • 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.

  • Reg: Generating Proxy for a Schema exposed as a WCF sevice

    Hello All,
    I have worked on number of project and I never come across such problem. Lemme explain the situation:
    1) Exposed Schema as a WCF service (https:// endpoint)
    2) I am able to browse the service and also view the metadata.
    3) When I try to do add service reference in my .Net project, am getting the following error:
    The document at the url "" was
    not recognized as a known document type.
    The error message from each known type may help you fix the problem:
    - Report from 'XML Schema' is 'The document format is not recognized (the
    content type is 'text/html; charset=UTF-8').'.
    - Report from ''My EndPoint''
    is 'The document format is not recognized (the content type is 'text/html;
    charset=UTF-8').'.
    - Report from 'DISCO Document' is 'There was an error downloading ''My EndPoint''.'.
      - The underlying connection was closed: An unexpected error
    occurred on a send.
      - Unable to read data from the transport connection: An existing
    connection was forcibly closed by the remote host.
      - An existing connection was forcibly closed by the remote host
    - Report from 'WSDL Document' is 'The document format is not recognized (the
    content type is 'text/html; charset=UTF-8').'.
    Metadata contains a reference that cannot be resolved: 'My EndPoint'.
    The HTTP request was forbidden with client authentication scheme 'Anonymous'.
    The remote server returned an error: (403) Forbidden.
    If the service is defined in the current solution, try building the solution
    and adding the service reference again.
    In the receive location, I am using transport and client certificate as windows.
    At the IIS level, I have the certificate assigned for the site SSL and in the web.config I have authentication mode as Windows.
    Am not sure what am I missing.
    Thanks, SKGuru

    It didn't work for me. Actually I am using the host name. There is no problem with the service as I can browse and see the WSDL. The only problem is I am not able to generate proxy out of it using svcutil.exe.
    Thanks, SKGuru

  • The BEx Analyzer cannot generate VBA code due to the security settings

    Hello experts,
    when I try to open a query in BEx Analyser I get this error message for each Item of the Query:
    Diagnosis
    The BEx Analyzer cannot generate VBA code due to the security settings.
    System Response
    VBA code is not generated.
    Procedure
    Choose Tools -> Macro -> Security.
    On the Trusted Publishers tab page, select Trust access to Visual Basic project.
    Choose OK.
    Close the BEx Analyzer and continue working as before.
    Access to Visual Basic project is only needed when generating VBA code.
    This only takes place in design mode or when 3.x workbooks are upgraded.
    Of course I did exactly what was recommanded in the "procedure-section" of this error message. But BEx ist still not working!
    I use SAP NetWeaver 7.0 together with MS Excel 2007
    Thanks
    Axel

    Hello experts,
    I am an additional person interested in the way this issue was solved.
    I confirm that the issue is coming from the SP2 of Microsoft Office (I have another environnement without the SP2 and everything works well), and I am in a situation where I can't remove the update.
    Regards
    Guillaume P.
    EDIT :
    Solution found : I applied the bi710sp10p_1001-10004472.exe patch
    (downloaded via the download maanger : Support Packages and Patches - Entry by Application Group" SAP Frontend Components" BI ADDON FOR SAP GUI" BI 7.0 ADDON FOR SAP GUI 7.10)
    Edited by: GUILLAUME PETIAUX on Apr 13, 2010 10:29 AM

  • How to find out the number of fields in generated proxy structure?

    Hi All,
    Can anybody help me to find out the number of fields in generated proxy structure in back end system along with controller fields.
    i know how to get number of fields in XI system but i want the number of fields in back end system when we generate proxy including automatically generated controller fields.
    Thanks in advance.
    Regards,
    Ujwalkumar

    U mean u want to know at runtime?
    Get the output from ur proxy as a string, count the number of "<" characters and divide it by 2. :-P
    Of course, you'll have to treat the header fields separately.
    Regards,
    Henrique.

  • Best Practice for WSDL Generate Proxy Class for Web Service with Two Versions

    Dear All
    Thank you in advance for you help.
    I would like to generate proxy classes for same function but with two versions.
    Old version web service (v23.2) is used for stable modules in a project which is not going to modify.
    However, enhancement is added in new version web service (v24) and is going to use in any future modules.
    For example,
    wsdl.exe -o="TestProxy.cs" -l:CS -n:Test -sharetypes https://community.workday.com/custom/developer/API/Notification/v23.2/Notification.wsdl https://community.workday.com/custom/developer/API/Notification/v24.0/Notification.wsdl
    It generates similar classes with an '1' added at the end of the class name.
    ublic partial class Event_TargetObjectType {
    private Event_TargetObjectIDType[] idField;
    public partial class Event_TargetObjectType1 {
    private Event_TargetObjectIDType1[] idField; ...}
    Since the function inside some class is the same, is it possible for WSDL.exe to generate proxy classes automatically that if the class is the same, then generate one class only (sameFunction())  but if it detects the class is different, then add '1'
    to the end of class name (differentFunction() and differentFunction1())
    i.e.
    public class sameFunction()
    public class differentFunction()
    private int a;}
    public class differentFunction1()
    { private int b;
    Best Regards
    mintssoul

    Hi  mintssoul,
      As per this case, I have shared corresponding details below :
    1.As far as I know, WCF doesn’t support method overloading directly
    2.Because WSDL doesn’t support method overloading (not OOPs).
    3.WCF generates WSDL which specifies the location of the service and the operation or methods the service exposes.
    4.WCF use Document/Literal WSDL Style : Microsoft proposed this standard where the soap body element will contain the web method name.
    5.By default all the WCF services conform to the document literal standard where the soap body should include the method name.
    6.but you can differ the method in the same manually by using Name attribute like below 
    For example:
        [OperationContract(Name="Integers")]
        int Display(int a,int b)
        [OperationContract(Name="Doubles")]
    double Display(double a,double b)
    7. Or I suggest you that can use svcutil to map multiple namespaces for generating wcf service proxies .
        for more information about this, refer here :
    http://stackoverflow.com/questions/1103686/use-svcutil-to-map-multiple-namespaces-for-generating-wcf-service-proxies

  • Compilation Error for import classes not found in generated Proxy Class

    Hi,
    We are generating java classes for the COM dll using JCOM com2java compiler.
    We are getting a compilation error for import class not found when compiling the
    generated Proxy java source code. It can't find the com.bea.jcom.Dispatch class that
    the generated Proxy java source code extends. It also can't find com.bea.jcom.Variant
    or com.bea.jcom.Param. These are interfaces or data types or classes used by COM
    library.
    I added weblogic.jar to my class path and the only Dispatch class i found inside
    the weblogic.jar is com.linar.jintegra.Dispatch;
    We have com objects for which we want to develop an EJB client to interface with
    the COM object using JCOM with Native Mode disabled.
    Any help on the compilation error..I tried changing the extends for Dispatch to com.linar.jintegra.Dispatch
    but the other errors are still there.
    To begin with, I think the generated code should not refer to any of the COM data
    types.
    Any help please.
    Thank you in advance,
    Regards,
    Rahul Srivastava
    [email protected]

    Hi,
    I resolved the other errors by changing all references from com.bea.jcom.Variant
    etc to com.linar.jintegra.class name..all were present under the com.linar.jintegra
    package.
    Thank you all anyways,
    Regards,
    rahul
    "Rahul Srivastava" <[email protected]> wrote:
    >
    Hi,
    We are generating java classes for the COM dll using JCOM com2java compiler.
    We are getting a compilation error for import class not found when compiling
    the
    generated Proxy java source code. It can't find the com.bea.jcom.Dispatch
    class that
    the generated Proxy java source code extends. It also can't find com.bea.jcom.Variant
    or com.bea.jcom.Param. These are interfaces or data types or classes used
    by COM
    library.
    I added weblogic.jar to my class path and the only Dispatch class i found
    inside
    the weblogic.jar is com.linar.jintegra.Dispatch;
    We have com objects for which we want to develop an EJB client to interface
    with
    the COM object using JCOM with Native Mode disabled.
    Any help on the compilation error..I tried changing the extends for Dispatch
    to com.linar.jintegra.Dispatch
    but the other errors are still there.
    To begin with, I think the generated code should not refer to any of the
    COM data
    types.
    Any help please.
    Thank you in advance,
    Regards,
    Rahul Srivastava
    [email protected]

  • PI Generates Proxy - CX_INVALID_TRANSFORMATION

    HI PI Experts...
    This error relates to PI7.1
    We have generated a new proxy to invoke a Service Interface on PI7.1. So we have an ECC6 system calling PI7.1 via proxy.
    Our scenario is working...but we sporadically get a short dump with an execption: CX_INVALID_TRANSFORMATION
    Pls note that the Simple Transformation XSLT is being executed in the 'background' within the generated proxy code and has been generated via the sproxy transaction. It was not custom developed.
    And as I have previously stated, it does work and this error seems to occur on a random basis. For for example, i would inokve the proxy and everyhting works and then 10mins later, executing the proxy with the same data results in a short dump.
    I have checked out the following OSS notes:
    701467
    773330
    But these seem 'out-dated' and I dont believe they are applicable to PI7.1.
    Has anyone experienced this issue before?
    Any help would be greatly appreciated.
    In the meantime, I will be looging an OSS issue as well...and will keep you guys informed.
    Cheers
    Yackeen

    Hi All,
    I believe this is an OSS issue to be resolved. What I have found thus far is as follows:
    The exact error is:
    <SAP:Stack>
          Error during proxy processing An exception with the type CX_AI_SYSTEM_FAULT occurred, but
           was neither handled locally, nor declared in a RAISING clause PARSE_APPLICATION_DATA
           Error during XML => ABAP conversion (Response Message; error ID:
               CX_INVALID_TRANSFORMATION;
                ( Error Text: The transformation /1SAI/TXSA452BFBF0DF199E50745 could not be executed))
                 Error during XML => ABAP conversion (Response Message; error ID:
                  CX_INVALID_TRANSFORMATION;
                ( Error Text: The transformation /1SAI/TXSA452BFBF0DF199E50745 could not be executed))
                 The transformation /1SAI/TXSA452BFBF0DF199E50745 could not be executed
    </SAP:Stack>
    I then checked out & reactivated the specific generated XSLT program (_/1SAI/TXSA452BFBF0DF199E50745_) transaction xslt_tool. This still had no affect.
    I then deleted the generated xsl program. Reran my interface and it worked!!!
    But then we I ran the interface again, it then failed again. So I am in the process of raising an OSS issue.
    Cheers
    Yackeen

  • Cannot create Proxy service with JCA transport

    Hello everyone.
    I have some issues while trying to create ftp service with jca transport. I follow the instruction in this tutorial:
    http://blogs.oracle.com/MarkSmith/entry/osb_and_ftp_adapter_in_11g
    I stuck in Step 4, cannot create proxy service to use JCA file that I created by JDeveloper 11g (11.1.1.5). When I specify jca file for proxy service, a error message returned:
    <ALSB Console> <BEA-494002> <Internal error occured in OSBConsole : Transport exception occurred with the following message:
    Invalid JCA file for JCA proxy service. If you are creating a Proxy from a Business Service, please select a different transport type (for example, http). If not, JCA file must contain JCA activation spec properties.And these are my jca file content that created by JDeveloper:
    <adapter-config name="myJCA_FTP_service" adapter="FTP Adapter" wsdlLocation="myJCA_FTP_service.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
      <connection-factory location="eis/ftp/MyFtpAdapter"/>
      <endpoint-interaction portType="Put_ptt" operation="Put">
        <interaction-spec className="oracle.tip.adapter.ftp.outbound.FTPInteractionSpec">
          <property name="PhysicalDirectory" value="/home/FTP-shared/upload"/>
          <property name="FileType" value="ascii"/>
          <property name="Append" value="false"/>
          <property name="FileNamingConvention" value="osb_%SEQ%"/>
          <property name="NumberMessages" value="1"/>
        </interaction-spec>
      </endpoint-interaction>
    </adapter-config>Is there anyone who had tried to use JCA transport with Ftp adapter already? Please give me a suggestion.
    Any response is appreciated
    Regards, Cuong Pham

    To get to the basics.
    You use GET to read files from an FTP location - This can be done by an OSB proxy service only.
    You use PUT to write files to an FTP location - This can be done by an OSB business service only.
    So forget that you need a proxy service for PUT.

  • Cannot generate .chm; no images are compiling.

    Thank you in advance for any help.  Here is the situation:  I am using RoboHelp HTML, ver. 8 and have a project that I cannot generate a .chm file for.  Each time I try it runs through the compiler, the output shows .htm files but no image files are included in the compiling process and I end up with a "Fatal Error:  Unexpected error from Microsoft HTML compiler" message.
    To generate the file I am going to:  File, Generate, Primary Layout (Microsoft HTML Help).  When I try to open the .chm file I get a message that says "Cannot open the file:  mk:@MSITStore:C|(the directory I saved it to).
    There are broken links which haven't been fixed yet but we would like to be able to still generate a .chm file so content can be reviewed.  Is it possible to have a successful .chm file compiled if you have broken links? 
    Thank you again for any help!

    Hi,
    I can't say I have a solution to your problem but I have run into similar situations. Unfortunately, I don't seem to have documented them anywhere...thus I will have to rely on my sketchy memory.
    First though, I will respond with two points I am quite certain about:
    - Having broken links in your project should not cause any generation problems other than the obvious missing links in the output CHM.
    - You do not see any images in the compiling process because there is a problem earlier on in the html compilation part.
    In my case, I had a project with a multi-level folder hierarchy. With longer filenames totalling a very large number of total characters in the full path, the project would take a very long time to build and, ultimately, I would end up with a "Fatal Error". IF you have a project with even a single instance of a very long full path, this could be the source of the problem. Keep in mind that during the compilation process the full file path is lengthened by the addition of the temporary folder in which the product is built, by default, in the !SSL! folder. My solution was to simply generate to an output folder at the top level e.g. C:\Output. It may, however, be the case that you would have to shorten some of your file/folder names.
    In other cases, I could not find a culprit per se, but ended up deleting the .cpd, which is known to sometimes become corrupt. Upon opening the project again, a fresh .cpd was built and the project ran without issue.
    Obviously, if you try either of these suggestions, I highly recommend ensuring you have a backup if one does not already exist on a version control system.

  • Client Proxy : How to Call Outbound Generated Proxy in ABAP report ?

    Dear SDNrs.
    I have already created a  Scenario for Client/ Outbound Proxy in XI .
    I have already Generated Client/ Outbound Proxy in ECC .
    Now Question is How to call this generated Proxy in report ?
    Please Guide ..... I dont have any idea ...
    1. before calling any proxy in report what information needs to collect from generated Proxy ?
    2. How to call this generated Proxy in report ?
    Regards
    Prabhat Sharma.

    Hi Prabhat
    You have to use your knowledge about ABAP OO for this.
    It's simple. You created your Proxy Object throught SPROXY transaction, right? Now, you have to instance your class (information avaliable in  SPROXY-> Proxy Objetc -> Class Name) and to use the method displayed there.
    Follow an example:
    DATA: wa_backfeed      TYPE zibrsapglbackfeed_sapgl, 
               wa_output            TYPE zibrsapglrequest,        
               lo_clientproxy       TYPE REF TO zibrco_sapgl_out,   
               lo_sys_exception TYPE REF TO cx_ai_system_fault.
      TRY.
          CREATE OBJECT lo_clientproxy.
          CALL METHOD lo_clientproxy->sapgl_out
            EXPORTING
              output = wa_output.
        CATCH cx_ai_system_fault INTO lo_sys_exception.
                   lo_sys_exception->if_message~get_text( ).
      ENDTRY.

  • CUA: Cannot generate partner profile

    Hi,
    I´am implementing CUA in ower landscape. I have the RFC´s and users with their specific roles in Central and child systems, but also I´ve registered the logical systems in BD54 both parts. I had no problems with this SAP process .
    Recently I began to add a new child system(CRM 7.0) when I save this in tx:SCUA all the steps are ok but  the message: "Cannot generate partner profile" appears in the last step. I have reviwed users, roles, RFC´s and logical systems, all is OK.
    I was looking FOR some information about partner profiles:
    http://help.sap.com/saphelp_nw70/helpdata/en/ea/9abf3b4f995f1ce10000000a114084/frameset.htm
    and I found that partner profiles type LS are managed by tx:we20.
    I found in child system that partner profile CRDCLNT100 alredy exist, this is what the SCUA wants to go to create.
    I found also in child system that in transaction BD64 there is not any CUA entry.
    Do you know how to solve this problem.
    Thanks in advance
    Enrique.

    Hi Enrique.,
    you have not generated partener profile.
    Go to BD64 in your parent system then click on change ->Add BAPI then enter the required details.
    there is one field obj.name/reference enter details for both object one by one.
    first for user and click on ok  and then for usercompany then click on save.
    Go to environment menu then click on generate partener profile then click on execute and all must be in green.
    After that go to EDIT menu->Model view->distribute select the child system which you want to add and then click ok.
    If you have multiple client then do same steps for all client.
    After that add system to SCUA.
    Regards
    Arti

  • Error in planning sequence- 'Cannot generate combinations of multiprovider'

    Hi Gurus,
                       I am facing a problem while executing my planning sequence in modeller. Aggregation level contains all characteristics in multiprovider. Multiprovider contains actual and planned cubes. Filter is based on product name in modeller. Planning function is copy. Characteristics to be changed in calyear. But the error generated while executing planning sequence is
    'To value - 1 for subprocess 1 produces following errors.
    'Cannot generate combinations for multiprovider'
    'Cannot generate combinations in step 00'.
    I would really appreciate the time and effort which will be taken by gurus.
    Thanks in advance.
    Jerry.

    Hi,
    1  Before                 Unchanged   2007                 300,00                  2,000                 600,00  IC_MODEL
    1   After                   Unchanged   2007                  300,00                  2,000                 600,00  IC_MODEL
    2  Reference Data                         2007                  300,00                  2,000                 600,00  IC_MODEL
    2007 is the calyear in the actual cube ic_model.
    in copy function i have specified that 2007 should be changed to 2011 and ic_model(actual cube) to planned cube.

  • Cannot generate a Key. Manage Account menu doesn't show up even after following Help articles. Correct username, e-mail and password. I already have a Firefox Sync Account but cannot Add a Device. No way to Sync due to no Key.

    I cannot generate a Key to Sync between two computers. Manage Account menu doesn't show under Options > Sync > Firefox Sync Setup > I already have a Firefox Sync Account > I don't have the Device with me. No Sync Key no matter how hard I tried.

    Yes I did. '''''I solved this issue last night.''''' First I had to Clear My Sync Data, then Yes I Already Have a Sync Account [enter User, Password] and only then the Key appeared in its proper field. Went to the 2nd computer and wrote down the Key after I Already Have a Sync Account. The bottleneck was to enter into Mozilla server after resetting pass and user, and then, clear data.

  • Transform generated proxy tables into 'z' tables

    Hello to everyone,
    My doubt is really persistent and it's an important one...
    Imagine we have an wsdl and we create a enterprise service proxy client. The R3 will generate 'Z' tables for the structure which the webservice needs for the request and the response.
    How can I transform those generated proxy tables into normal 'Z' tables from the R3 Dictionary database?
    Is it possible? Or do I have to create similar tables to the proxy tables?
    The problem is that the response structure is really huge, and the work needed to create all the tables necessary to acomodate and all the mapping between the generated proxy tables and the ones that I'll have to create is HUGE!!!... Can I transform in any way those proxy tables?
    Any help will be appreciated....

    Hello Gonçalo
    The generated proxy tables are indeed structures (and table types). In your case you have plenty of these structures that have to be "converted" into normal Z-tables.
    One approach would be to use an
    eCATT for this task. The steps could be as following:(1) Create a new z-table
    (2) Include the corresponding proxy structure
    (2.a) Transfer fields from include and remove .INCLUDE reference
    (3) Remove obsolete fields
    (4) Add additional fields
    (5) Generate the z-table
    Regards
       Uwe

Maybe you are looking for

  • Data Not Updating Properly in CUBE

    Hello Experts, There is one critical issue which i am facing in FI - CO scenario. please provide your inputs. we have a requirement to generate PNL statement  report from FI - CO. means the values for Revenue, COGS must be come from FI and Operating

  • PXI-5122 External Sample Clock

    PXI-1031 Chassis PXI-8106 PC PXI-5122 14bit 100MS/s Digitizer Labview 8.5 I am driving X-Y mirrors steering a laser. I am measuring the reflected light to develop a raster image of a sample. I have a pixel clock running at 60MHz that I want to clock

  • ORA-20011: Approximate NDV failed: ORA-31000: Resource Error in Oracle 11g

    Hi Friends, I am using Oracle 11.2.0.1 on linux (x64) and i am getting the following messages in Alert Log / Trace Log. Please let me know the fix. Alert Log: GATHER_STATS_JOB encountered errors. Check the trace file. Errors in file /u01/app/oracle/d

  • Show mask action/script

    I am trying to create an action or a script that will allow me to reveal a layer mask with a keyboard shortcut. Normally, in PS CC 2014 I select the layer mask in the layers palette, then hold option and click on the mask icon. This sequence reveals

  • Copying Over Mail Settings

    I used the MIGRATION UTILITY but of course, since I named my account  in the new machine, it did copy over all my files but it placed them in a temp "user" but now I can't figure out which folders I need to get all my mail settimgs all up & running -