Definition of IMPORTING  IS_KEYINFO in reuse_alv_hierseq_list_display

function reuse_alv_hierseq_list_display.
*"  IMPORTING
*"     VALUE(IS_KEYINFO) TYPE  SLIS_KEYINFO_ALV
hi could anyone explain the purpose if this importing parameter in the FM and a definition of its usage.  PLZZ

Main purpose of IS_KEYINFO is to store the relationship between header and line item tables. i.e. key field name(s) that is common to both of these tables.
For reference see this sample code:
REPORT z_alv_hierseq_list.
TYPE-POOLS: slis.                      " ALV Global types
SELECTION-SCREEN :
  SKIP, BEGIN OF LINE,COMMENT 5(27) v_1 FOR FIELD p_max.    "#EC NEEDED
PARAMETERS p_max(02) TYPE n DEFAULT '10' OBLIGATORY.
SELECTION-SCREEN END OF LINE.
DATA :
1st Table
  BEGIN OF gt_vbak OCCURS 0,
    vbeln LIKE vbak-vbeln,             " Sales document
    kunnr LIKE vbak-kunnr,             " Sold-to party
    netwr LIKE vbak-netwr,             " Net Value of the Sales Order
START-OF-SELECTION.
Read data
  SELECT * FROM vbak
             UP TO p_max ROWS
           INTO CORRESPONDING FIELDS OF TABLE gt_vbak.
  IF NOT gt_vbak[] IS INITIAL.
    SELECT * FROM vbap
             INTO CORRESPONDING FIELDS OF TABLE gt_vbap
              FOR ALL ENTRIES IN gt_vbak
            WHERE vbeln = gt_vbak-vbeln.
  ENDIF.
  PERFORM f_display.
      Form  F_DISPLAY
FORM f_display.
Macro definition
  DEFINE m_fieldcat.
    ls_fieldcat-tabname = &1.
    ls_fieldcat-fieldname = &2.
    ls_fieldcat-ref_tabname = &3.
    append ls_fieldcat to lt_fieldcat.
  END-OF-DEFINITION.
  DEFINE m_sort.
    ls_sort-tabname = &1.
    ls_sort-fieldname = &2.
    ls_sort-up        = 'X'.
    append ls_sort to lt_sort.
  END-OF-DEFINITION.
  DATA:
    ls_fieldcat TYPE slis_fieldcat_alv,
    lt_fieldcat TYPE slis_t_fieldcat_alv," Field catalog
    ls_sort     TYPE slis_sortinfo_alv,
    lt_sort     TYPE slis_t_sortinfo_alv," Sort table
    ls_keyinfo  TYPE slis_keyinfo_alv,
    ls_layout   TYPE slis_layout_alv.
  ls_layout-group_change_edit = 'X'.
  ls_layout-colwidth_optimize = 'X'.
  ls_layout-zebra             = 'X'.
  ls_layout-detail_popup      = 'X'.
  ls_layout-get_selinfos      = 'X'.
Build field catalog and sort table
  m_fieldcat 'GT_VBAK' 'VBELN' 'VBAK'.
  m_fieldcat 'GT_VBAK' 'KUNNR' 'VBAK'.
  m_fieldcat 'GT_VBAK' 'NETWR' 'VBAK'.
  m_fieldcat 'GT_VBAK' 'ERDAT' 'VBAK'.
  m_fieldcat 'GT_VBAK' 'WAERK' 'VBAK'.
  m_fieldcat 'GT_VBAP' 'POSNR' 'VBAP'.
  m_fieldcat 'GT_VBAP' 'MATNR' 'VBAP'.
  m_fieldcat 'GT_VBAP' 'NETWR' 'VBAP'.
  m_fieldcat 'GT_VBAP' 'WAERK' 'VBAP'.
  m_sort 'GT_VBAK' 'KUNNR'.
  m_sort 'GT_VBAP' 'NETWR'.
  ls_keyinfo-header01 = 'VBELN'.
  ls_keyinfo-item01 = 'VBELN'.
  CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
       EXPORTING
            i_callback_program      = sy-cprog
            i_callback_user_command = 'USER_COMMAND'
            is_layout               = ls_layout
            it_fieldcat             = lt_fieldcat
            it_sort                 = lt_sort
            i_tabname_header        = 'GT_VBAK'
            i_tabname_item          = 'GT_VBAP'
            is_keyinfo              = ls_keyinfo
       TABLES
            t_outtab_header         = gt_vbak
            t_outtab_item           = gt_vbap
       EXCEPTIONS
            program_error           = 1
            OTHERS                  = 2.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
ENDFORM.                               " F_LIST_DISPLAY
      FORM USER_COMMAND                                             *
FORM user_command USING i_ucomm     LIKE sy-ucomm
                        is_selfield TYPE slis_selfield.     "#EC CALLED
  CASE i_ucomm.
    WHEN '&IC1'.                       " Pick
      CASE is_selfield-tabname.
        WHEN 'GT_VBAP'.
        WHEN 'GT_VBAK'.
          READ TABLE gt_vbak INDEX is_selfield-tabindex.
          IF sy-subrc EQ 0.
          Sales order number
            SET PARAMETER ID 'AUN' FIELD gt_vbak-vbeln.
          Display Sales Order
            CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
          ENDIF.
      ENDCASE.
  ENDCASE.
ENDFORM.                               " USER_COMMAND
Regards,
Joy.

Similar Messages

  • Messages not adviced in extern definition after import wsdl-file from WAS

    Hi friends,
    after importing the three wsld-files in repository (extern definitions) the messages are not adviced. The referendes to the files are fine, because the name is shown at the tab externe...
    But i´m not shure wheather i tool the right link ant Web Service Navigator. It is right to download the default SAP WSDL Files or the default one? Because in the SAP WSDL-files there will be an exception during import in XI repository (tag sap:useFeatur). What is the problem that the messages are not shown on the tab messages in externe definitions?
    Thanks in advance,
    Frank

    I've the same problem. Here is my WSDL:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="http://blablabla.de:8080/jboss-net/services/MyServices" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://blablabla.de:8080/jboss-net/services/MyServices" xmlns:intf="http://blablabla.de:8080/jboss-net/services/MyServices" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="blablabla.de" xmlns:tns2="http://net.jboss.org/jmx" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <wsdl:types>
              <schema targetNamespace="blablabla.de" xmlns="http://www.w3.org/2001/XMLSchema">
                   <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
                   <complexType name="MSOBean">
                        <sequence>
                             <element name="installationName" nillable="true" type="xsd:string"/>
                             <element name="requestId" nillable="true" type="xsd:string"/>
                             <element name="returnCode" type="xsd:int"/>
                             <element name="returnMessage" nillable="true" type="xsd:string"/>
                        </sequence>
                   </complexType>
                   <complexType name="MSIBean">
                        <sequence>
                             <element name="password" nillable="true" type="xsd:string"/>
                             <element name="project" nillable="true" type="xsd:string"/>
                             <element name="requestId" nillable="true" type="xsd:string"/>
                             <element name="userId" nillable="true" type="xsd:string"/>
                        </sequence>
                   </complexType>
              </schema>
         </wsdl:types>
         <wsdl:message name="actualizeRequest">
              <wsdl:part name="inData" type="tns1:MSIBean"/>
         </wsdl:message>
         <wsdl:message name="actualizeResponse">
              <wsdl:part name="actualizeReturn" type="tns1:MSOBean"/>
         </wsdl:message>
         <wsdl:portType name="MSService">
              <wsdl:operation name="actualize" parameterOrder="inData">
                   <wsdl:input message="impl:actualizeRequest" name="actualizeRequest"/>
                   <wsdl:output message="impl:actualizeResponse" name="actualizeResponse"/>
              </wsdl:operation>
         </wsdl:portType>
         <wsdl:binding name="MyServicesSoapBinding" type="impl:MSService">
              <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
              <wsdl:operation name="actualize">
                   <wsdlsoap:operation soapAction=""/>
                   <wsdl:input name="actualizeRequest">
                        <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://blablabla.de" use="encoded"/>
                   </wsdl:input>
                   <wsdl:output name="actualizeResponse">
                        <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://blablabla.de:8080/jboss-net/services/MyServices" use="encoded"/>
                   </wsdl:output>
              </wsdl:operation>
         </wsdl:binding>
         <wsdl:service name="MSServiceService">
              <wsdl:port binding="impl:MyServicesSoapBinding" name="MyServices">
                   <wsdlsoap:address location="http://blablabla.de:8080/jboss-net/services/MyServices"/>
              </wsdl:port>
         </wsdl:service>
    </wsdl:definitions>
    No Idea.

  • Camera Raw problem; images appearing soft and without definition on import

    Can anyone help? I am having problems with ACR version 4.6 ( I cannot upgrade ACR without upgrading to CS5). When I open a RAW image in ACR, the image appears soft, and with poor definition. As a result, they have failed quality control for upload to the Alamy picture library, despite having been shot with a Nikon D3. I am simply opening them with ACR defualts, then opening to photoshop.
    The files open fine in Lightroom and Nikon Capture NX, however I prefer to use ACR for my workflow. Any suggestions? I don't what to shekll out for CS% if the problem is still there.
    Thanks, Robin

    Have you tried resetting defaults? It sounds like either your Camera Raw default settings have been changed, or sharpening has been set to Previews only.
    1. Open an image in Camera Raw, select the Details tab, and check that setting are like defaults: Amount 25, Radius 1.0, Details 25, Masking 0. You can always reset defaults from the little menu icon on the right of the panel title.
    2. Check Camera Raw preferences, looking for the item: 'Apply Sharpening to:' and make sure it says 'All images'.
    You might want to check other preferences too, especially the 'make defaults specific' settings, which, when used, create multiple default settings depending on camera and ISO.

  • Please, a DEFINITIVE ANSWER: import logos from Photoshop w/ no background

    Hi,
    I've scoured these forums for a solution to this question and as of yet have found nothing fully answered or easily interpretable. For the benefit of myself and those others who have asked the question to little or no avail, PLEASE offer your insights on how to import a logo from Photoshop into FCP so that it has no white, black, or any kind, of background (i.e. that it exists on a transparent canvas in both Photoshop and FCP, so that when you place it on your timeline, superimposed over footage, you will not see that it appears set against a white rectangle or square, in the shape of the canvas on which the image appeared in Photoshop.)
    Now, let's presuppose I'm an idiot -- which is, in truth, pretty accurate. I'm gonna need basic terminology. Tell me what buttons to push. What file type to export from Photoshop (I'm hoping you will say TARGA). And please, above all, try to avoid cryptic tech language such as "you must first decapulate the vector-field" and whatever...that stuff reads like hieroglyphics to me.
    I am running FCP 4 and some recent version of Photoshop (I'm not at my computer at the moment but I'm not sure what tremendous difference the version number might make).
    And of course, thanks in advance for an help and insight you might be able to offer.
    Cheers
    Powerbook 15" Titanium   Mac OS X (10.4.6)   1 GHz

    First, you really need to make sure your logo file actually AHS a transparent background. If is doesn't start a new Photoshop document WITH a transparent background and drag the contents from the original logo file to the new PS document. If a background os present, select it with one of the select tools (I use Color Range quite often for this) and delete it. Save the new PS document in a format that supports transparency such as TIF or PSD.
    import the new PS document into FCP.
    -DH

  • How to remove namespaces in mapping when using External Definition

    Hi,
    I read in the blog (/people/sameer.shadab/blog/2005/12/05/how-to-remove-namespaces-in-mapping--xi) that you are able to remove namespaces in mapping by deleting the value from XML Namespace under the Message Type. However, is it possible to do this when you are using External Definition (xsd) ? The blog only describe how to do this if you define a Data Type.

    Hi ,
    No ..it is not possible to remove the namespace once you imported into IR of external defintion.You can remove your namesapce from external definition before importing into IR.
    Sekhar

  • Error while importing BDC models to SharePoint from SAP

    Hi Team,
    I am facing error while importing the BDC models to SharePoint from SAP Duet environment. Please find the attached screen shot and text document for reference.
    Below are the tasks performed before importing the BDC models.
    1) SSL & STS certificated created in the SharePoint environment.
    2) Certificates are uploaded to the SAP duet environment.
    3) SSL certificate created in SAP duet environment is uploaded to Trust location in SharePoint central admin.
    Error while importing the BDC models manually through Central Admin.
    Application definition while import failed. The following error occurred: The BDC model file is not well-formed. Data at root level is invalid at. Line 1,position 1.
    C:\Program Files\Duet Enterprise\1.0>duetconfig/importbdc C:\Users\adm-in.itsupp
    ort\Desktop\Rahul\BDC\models.xml
    Starting import of models from C:\Users\adm-in.itsupport\Desktop\Rahul\BDC ...
    Attempting to import model: Account
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '48' and Position: '20'.
    Failed to import model: Account
    Attempting to import model: AccountDocumentStorageCategory
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: AccountDocumentStorageCategory
    Attempting to import model: AccountDocumentTypeStatus
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: AccountDocumentTypeStatus
    Attempting to import model: AccountDocuments
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: AccountDocuments
    Attempting to import model: AccountTitle
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: AccountTitle
    Attempting to import model: BOM
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: BOM
    Attempting to import model: Contact
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: Contact
    Attempting to import model: ContactTitle
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: ContactTitle
    Attempting to import model: CountryCode
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '48' and Position: '20'.
    Failed to import model: CountryCode
    Attempting to import model: CustomerInquiry
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: CustomerInquiry
    Attempting to import model: CustomerInquiryItem
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '44' and Position: '20'.
    Failed to import model: CustomerInquiryItem
    Attempting to import model: CustomerInquiryPartner
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '44' and Position: '20'.
    Failed to import model: CustomerInquiryPartner
    Attempting to import model: CustomerQuotation
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '49' and Position: '20'.
    Failed to import model: CustomerQuotation
    Attempting to import model: CustomerQuotationItem
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: CustomerQuotationItem
    Attempting to import model: CustomerQuotationPartner
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: CustomerQuotationPartner
    Attempting to import model: Employee
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: Employee
    Attempting to import model: InquiryItemDocument
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '49' and Position: '20'.
    Failed to import model: InquiryItemDocument
    Attempting to import model: InquiryItemDocumentStorageCategory
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: InquiryItemDocumentStorageCategory
    Attempting to import model: InquiryItemDocumentTypeStatus
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: InquiryItemDocumentTypeStatus
    Attempting to import model: JobFunction
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: JobFunction
    Attempting to import model: Product
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: Product
    Attempting to import model: ProductDocument
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '42' and Position: '20'.
    Failed to import model: ProductDocument
    Attempting to import model: ProductDocumentStorageCategory
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: ProductDocumentStorageCategory
    Attempting to import model: ProductDocumentTypeStatus
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: ProductDocumentTypeStatus
    Attempting to import model: QuotationItemDocument
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: QuotationItemDocument
    Attempting to import model: QuotationItemDocumentStorageCategory
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: QuotationItemDocumentStorageCategory
    Attempting to import model: QuotationItemDocumentTypeStatus
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: QuotationItemDocumentTypeStatus
    Attempting to import model: ReportTemplate
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '49' and Position: '20'.
    Failed to import model: ReportTemplate
    Attempting to import model: Role
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '65' and Position: '20'.
    Failed to import model: Role
    Attempting to import model: UserRoles
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '42' and Position: '20'.
    Failed to import model: UserRoles
    Attempting to import model: SAP.Office.DuetEnterprise.Workflow.UserSubscription
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '42' and Position: '20'.
    Failed to import model: SAP.Office.DuetEnterprise.Workflow.UserSubscription
    Attempting to import model: SAP.Office.DuetEnterprise.Workflow
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '11'.
    Failed to import model: SAP.Office.DuetEnterprise.Workflow
    [WARNING] Duet Enterprise configuration utility has completed importing the BDC
    models but some models could not be imported. Review the logs for detailed infor
    mation on the errors which occurred during the import operation.
    Failed to import the following models -
    Account
    AccountDocumentStorageCategory
    AccountDocumentTypeStatus
    AccountDocuments
    AccountTitle
    BOM
    Contact
    ContactTitle
    CountryCode
    CustomerInquiry
    CustomerInquiryItem
    CustomerInquiryPartner
    CustomerQuotation
    CustomerQuotationItem
    CustomerQuotationPartner
    Employee
    InquiryItemDocument
    InquiryItemDocumentStorageCategory
    InquiryItemDocumentTypeStatus
    JobFunction
    Product
    ProductDocument
    ProductDocumentStorageCategory
    ProductDocumentTypeStatus
    QuotationItemDocument
    QuotationItemDocumentStorageCategory
    QuotationItemDocumentTypeStatus
    ReportTemplate
    Role
    UserRoles
    SAP.Office.DuetEnterprise.Workflow.UserSubscription
    SAP.Office.DuetEnterprise.Workflow
    C:\Program Files\Duet Enterprise\1.0>
    C:\Program Files\Duet Enterprise\1.0>
    Qucik response is much appreciated.
    Regards,
    Rahul Reddy.

    Take a look at this blog post,
    http://brainof-dave.blogspot.com/2008/08/remote-certificate-is-invalid-according.html
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Unable to import customized RO in OIM

    Hi,
    We have created a custom resource object (with defined process tasks and process task fields) and exported the related objects into an XML.
    Later, we tried to restore the OIM DB and import the XML back.
    It throws the following errors while importing:
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], Adding ObjectAdministrator(XMLCREATED)
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], Resolving dependency to {UserGroup=SYSTEM ADMINISTRATORS}
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], dependency resolved with SYSTEM ADMINISTRATORS [UserGroup] (exportable)
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], Adding ObjectAuthorizer(XMLCREATED)
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], Resolving dependency to {UserGroup=SYSTEM ADMINISTRATORS}
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], dependency resolved with SYSTEM ADMINISTRATORS [UserGroup] (exportable)
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], Adding ObjectDependency(XMLCREATED)
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], Resolving dependency to {Resource=AD User}
    DEBUG,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.IMPORT], dependency resolved with AD User [Resource] (exportable)
    INFO,11 Jan 2012 00:36:57,404,[XELLERATE.DDM.STATS],Purging 0 prepared statements
    INFO,11 Jan 2012 00:36:57,415,[XELLERATE.DDM.STATS],Collected (0) missing dependencies of com.thortech.xl.dataobj.tcUD_HOSTEDEX [DataObjectDef] (importable) in 0 milliseconds.
    INFO,11 Jan 2012 00:36:57,418,[XELLERATE.DDM.STATS],Collected (0) missing dependencies of Hosted Exchange [Process] (importable) in 3 milliseconds.
    INFO,11 Jan 2012 00:36:57,418,[XELLERATE.DDM.STATS],Collected (0) missing dependencies of adpGETHOSTEDEXCHATTRIBUTESFROMADPROCESS [TaskAdapter] (importable) in 0 milliseconds.
    INFO,11 Jan 2012 00:36:57,418,[XELLERATE.DDM.STATS],Collected (0) missing dependencies of adpENABLEEXCHANGE [TaskAdapter] (importable) in 0 milliseconds.
    INFO,11 Jan 2012 00:36:57,418,[XELLERATE.DDM.STATS],Collected (0) missing dependencies of UD_HOSTEDEX [Process Form] (importable) in 0 milliseconds.
    INFO,11 Jan 2012 00:36:57,418,[XELLERATE.DDM.STATS],Collected (0) missing dependencies of Hosted Exchange [Resource] (importable) in 0 milliseconds.
    DEBUG,11 Jan 2012 00:37:39,453,[XELLERATE.DDM.IMPORT],Importing DataObjectDef(name=com.thortech.xl.dataobj.tcUD_HOSTEDEX)(key=-1)(XMLCREATED)
    DEBUG,11 Jan 2012 00:37:39,453,[XELLERATE.DDM.IMPORT], Object is being created
    DEBUG,11 Jan 2012 00:37:39,453,[XELLERATE.DDM.IMPORT], Creating data object
    DEBUG,11 Jan 2012 00:37:39,453,[XELLERATE.DDM.IMPORT],Creating data object with params: com.thortech.xl.dataobj.tcDataBase@abd14e,null,[B@3a93b9
    DEBUG,11 Jan 2012 00:37:39,454,[XELLERATE.DDM.IMPORT], Registered as waiter on Form(name=UD_HOSTEDEX)(key=-1)(XMLCREATED)
    DEBUG,11 Jan 2012 00:37:39,454,[XELLERATE.DDM.IMPORT], Waiting for creation of other objects
    DEBUG,11 Jan 2012 00:37:39,475,[XELLERATE.DDM.IMPORT],Importing Form(name=UD_HOSTEDEX)(key=-1)(XMLCREATED)
    DEBUG,11 Jan 2012 00:37:39,475,[XELLERATE.DDM.IMPORT], Object is being created
    DEBUG,11 Jan 2012 00:37:39,476,[XELLERATE.DDM.IMPORT], Creating data object
    DEBUG,11 Jan 2012 00:37:39,476,[XELLERATE.DDM.IMPORT],Creating data object with params: com.thortech.xl.dataobj.tcDataBase@abd14e,null,[B@12f1b4b
    DEBUG,11 Jan 2012 00:37:39,476,[XELLERATE.DDM.IMPORT], Saving data object
    ERROR,11 Jan 2012 00:37:39,528,[XELLERATE.ADAPTERS],Event: Validating for Unique SDK Name. has encountered an error.
    ERROR,11 Jan 2012 00:37:39,532,[XELLERATE.SERVER],Class/Method: tcDataObj/runEvent Error :EVT Fatal Rejection Occured
    ERROR,11 Jan 2012 00:37:39,535,[XELLERATE.DDM.IMPORT],There is already an existing database object with the given name
    ERROR,11 Jan 2012 00:37:39,535,[XELLERATE.DDM.IMPORT],Data validation failed. The Event Handler could not be run.
    ERROR,11 Jan 2012 00:37:39,535,[XELLERATE.DDM.IMPORT],Data will not be saved.
    ERROR,11 Jan 2012 00:37:39,535,[XELLERATE.DDM.IMPORT],Exception during import
    com.thortech.xl.ddm.exception.DDMException: Unable to save dataobject for SDK
    at com.thortech.xl.ddm.instance.TableInstance.finishDataObject(Unknown Source)
    at com.thortech.xl.ddm.instance.visitor.ImportVisitor.dataDependencyVisitComplete(Unknown Source)
    at com.thortech.xl.ddm.instance.TableInstance.traverse(Unknown Source)
    at com.thortech.xl.ddm.instance.SchemaInstanceFacade.performImport(Unknown Source)
    at com.thortech.xl.ejb.beansimpl.tcImportOperationsBean.performImport(Unknown Source)
    at com.thortech.xl.ejb.beans.tcImportOperationsSession.performImport(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    Please help.. Any suggestions will be highly appreciated.

    I have the following objects in the XML:
    1. UD_HOSTEDEX - form
    2. Hosted Exchange process definition
    3. Hosted Exchange resource object
    4. adapters - 1) get hosted exch attributes 2) enable exchange
    5. data object definition for the UD_HOSTEDEX
    I have 2 questions:
    1) Should I include the data object definition while importing the XML?
    2) My Process definition and resource object get imported(they cant be accessed via Design Console), however - the form and the adapters are not imported.
    Please help. Its urgent.
    Thanks!

  • Default Queue Change during Import

    Hi All,
    We tried different option in IMPORT Rule Set to change Default Queue value of Job chain or job definition during import.
    eg: SAPTEST_Queue to SAPPRD_Queue
    But it is not working with any of the option. Please help us in setting Import Rule Set.
    Version: SAP CPS 7.00 Patch 17.2
    Build:     M26.10-29140
    Thanks,
    Preethish

    Hi Anton,
    I refered CPS administration documnet. But we are not able to change the Queue.We are able to change the SID and Queue by selecting Object type as "JobChainCall". Documnet mentioned to select object type "Job Definition"
    SID and Client is Changed with below setup
    Object type as "JobChainCall
    Matching:
    Job Definition Name: SAP_AbapRun
    Parameter
         Name : SAP_SYSTEMS / CLIENT
        Mapping Expression : SID1/ 100
    Replaces:-
      Parameter
         Name : SAP_SYSTEMS / CLIENT
         Mapping Expression : SID2/ 200
    Could you plesae help me changing Queue.
    Thanks,
    Preethish

  • Backing up Site Definitions in Ultradev 1.0

    I'm finally going to upgrade, but I have a lot of Site
    Definitions in Dreamweaver Ultradev 1.0.
    Is there a way to backup and transfer Site Definitions from
    Ultradev 1.0 to the latest Dreamweaver on a new PC?
    I did find a few utilities but none that support backing up
    from the old Ultradev 1.0 version.

    Good idea....
    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
    ==================
    "Tom Muck" <[email protected]> wrote in
    message
    news:[email protected]...
    > Or export them one by one if it doesn't work and
    reimport them. You can
    > multiple-select site definitions when importing.
    >
    > --
    > --
    > Tom Muck, Adobe Community Expert
    > Dreamweaver Extensions/Articles --
    http://www.tom-muck.com/
    > Cartweaver Development Team -
    http://www.cartweaver.com/
    > Extending Knowledge Daily -
    http://www.communitymx.com/
    >
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> You're hosed, I believe, unfortunately. Even the
    best of the utilities
    >> available doesn't dig that deep -
    >>
    >> MM-Exporter recognizes installed versions of
    Dreamweaver® 3, 4, UD4, MX,
    >> MX 2004 and DW8 under Windows and saves selectively:
    >>
    >> (taken from
    http://mm-exporter.joexx.de)
    >>
    >> But, since it's free, you could get it and try it.
    >>
    >> --
    >> 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
    >> ==================
    >>
    >>
    >> "Soporose" <[email protected]>
    wrote in message
    >> news:[email protected]...
    >>> I'm finally going to upgrade, but I have a lot
    of Site Definitions in
    >>> Dreamweaver Ultradev 1.0.
    >>>
    >>> Is there a way to backup and transfer Site
    Definitions from Ultradev 1.0
    >>> to
    >>> the latest Dreamweaver on a new PC?
    >>>
    >>> I did find a few utilities but none that support
    backing up from the old
    >>> Ultradev 1.0 version.
    >>>
    >>
    >>
    >
    >

  • RFC as External Definition

    We have an RFC in 4.6C system imported on the SWC of 4.6 system. I am trying to export this RFC definition and import in as external definition in another swc - of ECC 6.0
    There is a Z.transaction on ECC 6.0 where the user submits a request and depending on some rules the transaction is posted either on to ECC or in 4.6C system.
    We are using a client proxy on ECC with a sync outbound interface.
    In the interface mapping - Test tab, when the request is selected in the drop down above, response is being shown on the left (souce message) side.
    is this normal?
    reg

    igone this question

  • Import subtitles for slide show

    I have two slide shows, each with 50 slides. I would like to generate a text file with the subtitle definitions and import it, but apparently subtitles can only be imported for timelines. Why is that?
    I have the names of the slides (the texts that should be displayed as subtitles) in an excel file and generated a text file out of it that has exactly the format needed for importing subtitles.
    It would be rather time consuming to manually copy the names of the 100 slides out of the Excel sheet and insert them as a description for each slide.
    Are there any technical reasons why importing subtitles for slide shows is not allowed?
    Regards,
    Christian Kirchhoff

    Hallo,
    thanks again for the reply. In one case I really could do it, you are right there.
    But there are slide shows, too, which do not proceed automatically but wait for the user to press the previous/next chapter buttons on the remote control. To realize the same behaviour in a timeline one had to set the end action for a chapter to "return to beginning of chapter". That works, kind of, but I found out that both with software DVD players on a computer and with regular DVD players the navigation (forward/backward) is very...irregular. Sometimes when you press the next chapter button it works, and sometimes not.
    That's why I wanted to stick with the slide show instead of a timeline.
    Regards,
    Christian

  • Importing DITA 1.2 EDDs into templates

    I have been modifying the DITA 1.2 EDDs for my custom features and switching in my template customizations for tags and page layout. I understand the text insets, the need to modify the inset eddmod files and update the text insets in the referencing files. However, I can't figure out the order of precedence among the EDDs and which templates to import them into to get the full set. If I import one EDD into the basetopic.template, I get errors about elements that are referenced but not defined. I try to import EDDs that define those elements to whittle down the list, but then a subsequent EDD import takes me back to more elements that are not defined. This result makes me think that importing definitions is not an accumulative process as with importing formats but a wipeout process, as in losing all memory of element definitions previously imported. Can somebody explain how this is supposed to work? It's a lot more complicated than previous versions of DITA.
    Susan

    Susan,
       You've asked two questions: one about EDDs in general and one about FM
    10's DITA 1.2 EDDs.
       On the first point, you are correct. Importing element definitions is
    not cumulative and this differs from importing various formats. The reason
    for this behavior is that, unlike paragraph formats or variable
    definitions, for example, element definitions are intertwined. It doesn't
    do any good to import the definition of a single element unless you also
    have element definitions for all the other elements that are mentioned
    within that definition. Furthermore, a cumulative approach could leave you
    with "orphan" element definitions in the element catalog for elements that
    are no longer reachable in a valid structure. Therefore each EDD must be
    complete in itself, containing definitions for all the needed elements.
       If you want to be able to change some but not all element definitions,
    you need to modify the definitions of those elements in your EDD, deleting
    those that are no longer needed and adding new ones as necessary. Since an
    EDD is a FrameMaker document, you can anticipate some possible changes by
    using variables and text insets in the EDD so that changing the variable
    definitions or inset material makes it simpler to make some kinds of changes.
       And since the DITA 1.2 EDDs use exactly these techniques--variables and
    text insets--that takes us to your second question. Before considering the
    DITA 1.2 EDDs, look at the DITA 1.2 DTDs. DITA 1.2 is not so much a set of
    DTDs as a set of building blocks for creating DTDs. DITA 1.2 provides a set
    of modules that can be assembled to create complete DTDs. Furthermore, the
    modules themselves are customizable, since the parameter entities
    referenced within them can be redefined. Notice in the default
    structapps.fm that there are several DITA 1.2 applications; they correspond
    to various DTDs included in the DITA 1.2 distribution. Look at the
    subdirectories of the structure\xml\DITA1.2\app directory; except for the
    FrameMaker subdirectory, they correspond to directories in the DITA 1.2
    distribution. In fact, each of these FM 10 directories has a DTD
    subdirectory which has the modules and complete DTDs that the DITA 1.2
    distribution has in the identically named directory. The FM 10 directories
    also have subdirectories called edd, rules, and template. These contain
    respectively the EDD modules corresponding to the DTD modules and complete
    EDDs corresponding to te complete DTDs, the associated r/w rules, and the
    templates for the complete EDDs.
       So, if you want to change the template for one of these existing DTDs,
    change the EDD modules it uses and possibly the variable definitions within
    the complete EDD. If you want to create a template that uses combinations
    of the EDD modules that are not provided, create a new EDD with all the
    needed modules included as text insets.
       I hope this helps. There's more information in the comments at the
    beginning of the complete EDDs (that internal documentation is in the
    FrameMaker subdirectory of DITA1.2\app.
             --Lynne
    Lynne A. Price
    Text Structure Consulting, Inc.
    Specializing in structured FrameMaker consulting, application development,
    and training
    [email protected]            http://www.txstruct.com
    voice/fax: (510) 583-1505      cell phone: (510) 421-2284

  • External Definitions

    Hi Friends,
         There is a requirement for external definition to import.  I got one file from client text file having xml data. So i have save as to .XSD format and tested in XI while uploading into external definitions.
         As per my knowledge, .XSD/wsdl/dtd file can be used for external definitions. And, it acts as Message type so create MI .
    So , if we request from client , is there specific format is there for .XSD??? Is it only message type else data type possible ???
    How to guide the client to get the .XSD files?
    Thank you
    Deva

    Hi Deva,
    first convert XML file in to XSD,for that you can use XML Editors ALTOVA XML Spy or Styalus studio to conver XML to XSD.
    you can get free trail versions available.
    The XML to XSD conversion process very easy , just google it.
    if you have XSD then you no need to create Data type and Message Type.
    Regards,
    Raj

  • Import Enterprise Service into Repository and Enhance Service

    Hi experts.
    We've activated with transaction SOAMANAGER a enterprise service discovered in ENTERPRISE SERVICE WORKPLACE in SAP BACKEND.
    In SAP PI we created a external definition from WSDL definition and we've developed a SOAP to SOAP scenario where SOAP receiver is pointing  to this service. Everytring is working fine but I have some doubts.
    1. Is that the best way to proceed? Should I have to import metadata in someway from enterprise service workplace into repository and not create a external definition from import wsdl retrive in ENTERPRISE SERVICE WORKPLACE?
    2. Now we have a new requriment and we have to add to a new field into response message. So we need to enhance the enterprise service. How we can get that?
    Thanks a lot.
    Regards.

    Hi.
    We're using 7.11.
    First question resolved. In this guide is explained how to enhance a standard enterprise service:
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0bb5687-00b2-2a10-ed8f-c9af69942e5d?QuickLink=index&overridelayout=true]
    One of the steps is create a enhanced data type from original data type and then import this enhanced data type to backend with SPROXY transaction. Then you can enhance the standard code with BADIs. But my question is, how I import to SAP PI repository the metadata of a standard enterprise service (data types, message types, service interface). I'm using the enterprise service SupplierERPBasicDataByElementsQueryResponse_In.
    [http://esworkplace.sap.com/socoview%28bD1lbiZjPTAwMSZkPW1pbg==%29/render.asp?id=E84CA2C09A8411DD2B8D000F20FCB6A9&fragID=&packageid=DE0426DD9B0249F19515001A64D3F462&iv=]
    Regards.
    Thank u so much.
    Edited by: Christian  Abad Chico on Feb 21, 2012 9:03 AM

  • SQLParseException occurred while composing Offline Database View definition

    While importing view definitions from CASE120 to offline database for some views I am getting following error.
    ERROR: An SQLParseException occurred while composing Offline Database View definitions: Error(s) parsing SQL:
    Unexpected token near *!* in the following:
    , MSI.LO T_CONTROL_CODE *!*LOT_CONTROL_CODE
    Unexpected token near *!* in the following:
    , DECODE*!*(MSI.REVISION_QTY_CONTROL_CODE,1,'N',2,'Y','N') ITEM_REVISION_CONTROL_FLAG
    Observation:
    Some views with less total length of query definitions got imported, but big views were erroring out above said exception. Is there any restriction on the length of view? i.e. no of characters in the view definition? Is there any work around for this issue?
    Thanks in Advance,
    Salil Gumaste

    Hi Velázquez
    Have you tried to modify your application and select "Process Application", this will rebuild your OLAP cube.
    From past experience,and as per Santosh post, the errors appear your dimensions have not been processed.
    You can try to do the following:
    Process all of the dimensions
    Modify the applications in your appset with selection the available options ( Rebuild SQL Index and Process Application )
    Perform a full optimize of the application
    Backup the Appset
    Restore the Appset
    This should hopefully resolve your errors
    Hope this helps
    Kind Regards
    Daniel

Maybe you are looking for