While Importing Foundation Services Facing the Error in (EPM 11.1.2 )

I have created a new application on test server to make a replica of production environment. All other things are ok but user and groups are not imported while importing the foundation services bkp....
The error is as follows
Artifact Path = Native Directory
Artifact Name = Users
Error Message =
EPMCSS-106102: Failed to get user by
identity. Users with identities native:/
/nvid=a673a448b09a6d1e:-543b0ebb:
1306f92702a:-5539?USER not found.EPMCSS-
106102: Failed to get user by identity.
Users with identities native://nvid=
a673a448b09a6d1e:-543b0ebb:1306f92702a:-
553a?USER not found. EPMCSS-106102:
Failed to get user by identity. Users
with identities native://nvid=
a673a448b09a6d1e:-543b0ebb:1306f92702a:-
553b?USER not found.
The same error for Groups
Artifact Path = Native Directory
Artifact Name = Groups
Error Message =
EPMCSS-156160: Failed to get group for
identity. Group with identity native://
nvid=a673a448b09a6d1e:6ad7e2f1:
12e8613cdc4:-c9?GROUP not found.EPMCSS-
156160: Failed to get group for
identity. Group with identity native://
nvid=a673a448b09a6d1e:6ad7e2f1:
12e8613cdc4:-c2?GROUP not found. EPMCSS-
156160: Failed to get group for
identity. Group with identity native://
nvid=a673a448b09a6d1e:6ad7e2f1:
12e8613cdc4:-c3?GROUP not found. EPMCSS-
156160: Failed to get group for
identity. Group with identity native://
nvid=a673a448b09a6d1e:6ad7e2f1:
12e8613cdc4:-c8?GROUP not found. EPMCSS-
156160: Failed to get group for
identity. Group with identity native://
nvid=a673a448b09a6d1e:6ad7e2f1:
12e8613cdc4:-c6?GROUP not found.

Hi
I experienced this error as well today. I manually deleted the existing native users (not the admin user) in the target environment and a subsequent import was fine.
Cheers

Similar Messages

  • Facing the error in activate data in DSO

    Hi Experts,
    i am facing the error while activating the data in DSO. i am getting data in NEW DATA.
    please let me know if you have concerns..

    hi Sowjanya,
    Go to RSA1 -> 0MATERIAL (i think this is your characteristic, but please check, it is not very clear from screen shot).
    Right click on 0MATERIAL -> maintian master data -> you'l get a selection screen. Enter value "Coaching" for material. It will most probably give you a pop-up saying that the value does not exist.
    Now execute the selection screen without entering any value (the timer on the top). Create New record from the Create icon on top. Enter value Coaching for material. Rest fields should be left blank. Save and come back.
    Now right click on 0MATERIAL -> Activate Master Data.
    Once activation is done, you should go and activate your data.
    IF the above does not work, then the error is in data that you loaded to your DSO. For that you will have to delete the request from your DSO. Now go into RSA1-> PSA (2LIS_01_S262) -> right click -> manage. Edit data into PSA : turn the value Coaching to COACHING. Save and come back.
    Re-execute the DTP which loads to DSO, repeat the activation.
    Please share if this works / not.
    Thanks,
    Sheen

  • Facing the error in DSO.

    Hi Experts,
      I am getting error in standard DSO while activating the active data facing the error like below.
    please let me know if you have any one idea about this error.
    thanks,
    kavya.

    Hi ,
    Is 30,40  a valid  currency ? I don't think so !! Currency will be USD, INR, CAD something like that .
    If it is not a valid currency  then you can try correcting the data at  PSA and also inform the business to correct at the source transaction.
    If yes(valid) then try to transfer the currency from the source system as follows
    Go to the source system->right click->transfer global settings.... Select Currencies and then select Update and then execute it, and then load the Data.
    Also please be informed that the infoobject 0LOC_CURRC2 refers to 0CURRENCY infoobject .
    Hope this helps...
    Regards .

  • Facing the Error while opening the PDF Document generated by Adobe Forms

    Hi,
    I have created an Custom Adobe Form and calling this form through a Custom Program and generating the PDF and could able to download on to my desktop but when i am tyring to open it i m facing the below Error.
    "There was an error opening this document. The file is damaged and could not be repaired" .
    Please help me in this regard ASAP.
    Please do find the attached error screen shot.
    Thanks
    Sushil

    Hi Naveen ,
    Have done as per the link but still not opening
    same error.
    I have created a print program and from there want to generate pdf. But it is not working.
    please find the below code : In this i am passing some tables to function module and output is formoutput of type fpformoutput.
    Where do i need to do any changes if required.
    data: lst_opparam     type sfpoutputparams.
       data: lst_docparam    type sfpdocparams.
       data: lfd_fname type funcname.
       data: lrf_cx_root     type ref to cx_root.
       clear: lst_opparam, lst_docparam.
       lst_opparam-getpdf   = 'X'.
       lst_opparam-preview = 'X'.
    *  lst_opparam-nodialog   = 'X'.
       call function 'FP_JOB_OPEN'
         changing
           ie_outputparams       = lst_opparam
      exceptions
        cancel                = 1
        usage_error           = 2
        system_error          = 3
        internal_error        = 4
        others                = 5
       if sy-subrc <> 0.
    * Implement suitable error handling here
       endif.
       try.
           call function 'FP_FUNCTION_MODULE_NAME'
             exporting
               i_name     = 'ZAFGLERC001'
             importing
               e_funcname = lfd_fname.
    *   E_INTERFACE_TYPE           =
    *   EV_FUNCNAME_INBOUND        =
         catch cx_root into lrf_cx_root.
       endtry.
       lst_docparam-langu = 'EN'.
       lst_docparam-country = 'IN'.
    call function lfd_fname      "   '/1BCDWB/SM00000213'
      exporting
        /1bcdwb/docparams        = lst_docparam
        appl                     = 'EREC_ONBRD'
        wa_ztbglerc049           = wa_ztbglerc049
        wa_ztbglerc050           = wa_ztbglerc050
        it_51                    = it_51
        wa_41                    = wa_41
        it_42                    = it_42
        wa_43                    = wa_43
        it_44                    = it_44
        it_45                    = it_45
        it_46                    = it_46
        it_47                    = it_47
        it_48                    = it_48
      importing
        /1bcdwb/formoutput       = formoutput
      exceptions
        usage_error              = 1
        system_error             = 2
        internal_error           = 3
        others                   = 4
    if sy-subrc <> 0.
    * Implement suitable error handling here
    endif.
       call function 'FP_JOB_CLOSE'
    * IMPORTING
    *   E_RESULT             =
    exceptions
      usage_error          = 1
      system_error         = 2
      internal_error       = 3
      others               = 4
       if sy-subrc <> 0.
    * Implement suitable error handling here
       endif.

  • Error while publishing a service with WSPUBLISH: Error publishing Endpoint

    Hallo,
    I've a problem while publishing a service which a had created via proxy. I configured the service and one endpoint (binding) in SOAMANAGER. When I publish the service in WSPUBLISH I get the error:
    'Error publishing Endpoint for SD : <Proxy>, Service : <Service>, EP : <Endpoint>.
    with details:
    '10160A save request exceeded the quantity limits for a given structure type .#Number of BusinessEntities exceeds your limit of 1 (2)'
    In the Service Registry I can find the service but without endpoints.
    Does anybody know what happend ?
    We use a SAP NetWeaver 7.10 with SP05 (SAPKB71005) but the same error happens if I publish a service from a CRM 5.0 with SP15 (SAPKB70015) to the Service Registry of the 7.10
    Christoph

    This is my steps to publish ES to SR:
    1. Create RFC destination in SM59
    2. Create ES Parameter in WSPARAM
    3. Create logical port for SR in LPCONFIG
    4. Release Web Service for SOA Runtime in WSCONFIG
    5. Publish ES in WSPUBLISH.
    When i was using SOAMANAGER to manually create the endpoint, the endpoint in the SR doesnt works though.
    eg,  Business Administration -> WS Administration -> Search for CRM_BPBASICDATABYIDQR -> Apply selection -> Configuration -> Create Service -> enter new service name and new binding name -> user id/password  for HTTP Authentication -> save.
    It works after i released it in WSCONFIG (ya, i know it's old way) and re-publish.
    -julius

  • HT201263 After following the steps above I get an error while restoring my Iphone. The error code is 1 or -1. Please suggest what should I do to resolve this problem

    After following the restore steps. I get an error while restoring Iphone. error code is 1 or -1. Please suggest what should I do to resolve this problem.

    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    http://support.apple.com/kb/TS3694

  • WHile opening CCP Launcher Getting the error

    while opening CCP Launcher Getting the above error after downloading or after few minutes

    Hi Vijay,
    A latest version of CCP has been released. Please download the latest version from LWS again and install usin setup.exe as CCPlauncher no longer exists.
    Thanks,
    Ashish

  • Help Needed: Facing the error ORA-01406: fetched column value was truncated

    Hi Everyone,
    When I run a particular PL/SQL query using Oracle 9i ODBC driver, it is working fine and fetching me the desired results.
    However, when I run the same query using the Oracle 10g ODBC driver, I am getting the error: ORA-01406: fetched column value was truncated.
    I have checked all the fields of the table and they are well within the allowable limit.
    Can you please let us know what needs to be done to resolve this issue?
    Thanks and Regards,
    Sudhindra

    Well it's obviously a problem with the client software. Doesn't Datastage have some way of configuring these things?
    rgds, APC

  • Error while importing Web Service from Services Registry

    I am trying to import a WebService in NWDS for CE 7.1 EHP1. This webservice is from an ABAP system and is published on the local service registry.
    However, during import, I get the following error, what might be the problem:
    java.lang.reflect.InvocationTargetException
         at com.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:453)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
    Caused by: com.sap.caf.foundation.caf_import.CAFDTImportException: Cannot find imported schema for referred type {n0,char10}
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformReferedTypeDefinition(XSD2CAFTypesTransformer.java:233)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformElementDecaration2Attribute(XSD2CAFTypesTransformer.java:571)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.iterateThroughModelGruop(XSD2CAFTypesTransformer.java:539)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformComplexTypeDefinition(XSD2CAFTypesTransformer.java:490)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformReferedTypeDefinition(XSD2CAFTypesTransformer.java:256)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformGlobalElementDeclaration(XSD2CAFTypesTransformer.java:181)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformGlobalElementDeclarations(XSD2CAFTypesTransformer.java:114)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transform(XSD2CAFTypesTransformer.java:101)
         at com.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.tranformImportedWSDLs(CAFDTWSDLImporter.java:350)
         at com.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.doImport(CAFDTWSDLImporter.java:195)
         at com.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:441)
         ... 1 more

    I am trying to import a WebService in NWDS for CE 7.1 EHP1. This webservice is from an ABAP system and is published on the local service registry.
    However, during import, I get the following error, what might be the problem:
    java.lang.reflect.InvocationTargetException
         at com.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:453)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
    Caused by: com.sap.caf.foundation.caf_import.CAFDTImportException: Cannot find imported schema for referred type {n0,char10}
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformReferedTypeDefinition(XSD2CAFTypesTransformer.java:233)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformElementDecaration2Attribute(XSD2CAFTypesTransformer.java:571)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.iterateThroughModelGruop(XSD2CAFTypesTransformer.java:539)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformComplexTypeDefinition(XSD2CAFTypesTransformer.java:490)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformReferedTypeDefinition(XSD2CAFTypesTransformer.java:256)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformGlobalElementDeclaration(XSD2CAFTypesTransformer.java:181)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transformGlobalElementDeclarations(XSD2CAFTypesTransformer.java:114)
         at com.sap.caf.foundation.caf_import.xsd.XSD2CAFTypesTransformer.transform(XSD2CAFTypesTransformer.java:101)
         at com.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.tranformImportedWSDLs(CAFDTWSDLImporter.java:350)
         at com.sap.caf.foundation.caf_import.wsdl.CAFDTWSDLImporter.doImport(CAFDTWSDLImporter.java:195)
         at com.sap.caf.designer.ui.actions.es.WSDownloadAction$1.run(WSDownloadAction.java:441)
         ... 1 more

  • Facing the error while applying time series function against measure fields in BI reports in Fusion .Could you please assist me out of this

    Formula syntax is invalid.
    [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27037] Unresolved level: "Time"."Quarter". Please have your System Administrator look at the log for more details on this error. (HY000)
    SQL Issued: SELECT AGO("Win Loss Facts"."# of Won Opportunity Revenue Lines", "Time"."Quarter", 2) FROM "Sales - CRM Pipeline"
    OK (Ignore Error)

    I this this is a bug..
    and also, try to use the syntax:
    set variable ENABLE_ANSI_ORACLE_CALENDAR_EXTRACT =1;     by pasting it in BI Answers (Business Intelligence)
    / Edit analysis / Advance tab/ "Prefix" section
    and then click on "Apply SQL".
    Thanks

  • Facing the error : Status and active flag in one item do not match

    Hi Experts,
    I am getting error : Status and active flag in one item do not match in GOA distribution and while adding item in the item data , following are the relative information :
    I am using SRM 4.0 and Item is free text.
    Please help if you have faced such an error.
    Thanks,
    Atul

    question not clear. you have activate one line item and the same not in ECC contract.
    for ex
    4600001000 - GOA
    item 1 - active
    ecc
    4600001000 - contract
    item - inactivate
    -locked
    muthu

  • Trying to import video but have the error 'error video playback aborted'

    Hello
    can someone tell me what this error message means, I'm trying to import a video into my project but i reckon this is stopping it from loading. My code looks like this:
    I've uploaded the films up to my adobe server and have made sure the film directory is the exact same but still not having much luck. does anyone know how to get around it?
    thanks

    Hey
    i just had the file directory wrong, didn't need to reference the page it was on.
    but thanks for your response
    Emily

  • REG:User facing the error message ...

    Hi ,
          The below given error message is faced by the user
    <b>Program/Func=Invalid Instance:DE1 path and Filename Error opening file</b>
    Can any one let me know what may the reason .....
    Regards,
    veera

    then the file u have created must be on ur local presentation server.
    when u r connecting thru Citrix, then it will refer to Remote Desktop which will be only one.
    so try to maitain the file on the Remote (citrix) desktop and try to execute ur program.
    It will work,.
    revert back if any issues,
    Reward if helpful.
    regards,
    Naveen

  • Garageband won't let me import a voice memo-The error message says the rights are protected.

    I record voice memos on my iphone and then import the memos on my MacBook to edit in Garage Band.  Today I got a warning message that my voice memo can't be imported because it is rights protected.  Any ideas?

    http://www.bulletsandbones.com/GB/GBFAQ.html#filewontimport

  • Error while importing par file

    dear Experts,
    i am facing a problem while importing par.bak file. the error message comes
    "indexed store transactions did not commit properly"
    Reason
    sorry an error occurred creating new project
    then once i click ok
    i get the error
    com.sap.portal.plugins.config-archiver caused exception during the "unpack" operation
    any one has the solution for this

    Hi ,
    Are u trying to import with .bak extension ? If so please rename the file and remove .bak extension and try.
    x.par is enough to import not x.par.bak.
    Thanks,

Maybe you are looking for

  • Dump in SAPLSTXD

    Here is the short dump that I am getting while generating Z report transaction. Can anyone please help me out to resolve the issue? The current ABAP program "SAPLSTXD" had to be terminated because it has come across a statement that unfortunately can

  • External screen rotation broken?

    Hi all, I've got a unibody macbook (first generation) with the Nvidia Geforce 9400M GPU. When I installed Snow Leopard in the place of Leopard, screen rotation stopped working for me. I have a mini-displayport to dual-link dvi adapter connected to ma

  • By product, coprodut

    Hi Seniors, can naybody explain the use of coproduct and by product in sap sd.how we customise with example. Reagards, cpdatt

  • Won't boot shows circle with line through it

    Hi, I just started my Mac Mini and the apple logo turns to a circle with a line through it.  Any ideas?

  • How to setup Oracle OCI Driver with Kerberos Authentication in Eclipse

    Hello I am trying to setup a connection to Oracle Server with kerberos authentication. I am able to connect using SQL Developer but it seems impossible to do the same through the eclipse plugin any pointers?