Error for importing the sessiotypes package

Hello Friends I am trying to connect MDM server and create delete or update recordsets in MDM so I am using this program as below I am getting an error for
import com.sap.mdm.session.SessionTypes; cannot be resolved.
Created on Jun 6, 2007
package com.sap.nw.mdm.rig;
import com.sap.mdm.commands.CommandException;
import com.sap.mdm.data.RegionProperties;
import com.sap.mdm.extension.MetadataManager;
import com.sap.mdm.net.ConnectionException;
import com.sap.mdm.repository.commands.GetRepositoryRegionListCommand;
import com.sap.mdm.session.SessionException;
import com.sap.mdm.session.SessionManager;
import com.sap.mdm.session.SessionTypes;
import com.sap.mdm.session.UserSessionContext;
This class is the starting point to execute all sample programs.
To see a description of the various programs you can execute, please have a look at the
documentation for the following classes.  There are static variables in each of these
classes that point to the various programs that can be executed with a description of
what the program does.
<ul>
<li>{@link com.sap.nw.mdm.rig.programs.data.blobs.BLOBDataProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.checkout_checkin_rollback.CheckOutCheckInRecordsProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.crud.CRUDDataProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.crud.bulk.BulkCRUDDataProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.keymapping.KeyMappingProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.search.SearchProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.search.attribute.AttributeSearchProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.search.field.FieldSearchProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.syndication.SyndicationProgram}
<li>{@link com.sap.nw.mdm.rig.programs.data.workflow.WorkflowProgram}
</ul>
@author Richard LeBlanc
public class Application {
     private Application() {
Starts the application and executes a program
@param args - not required
     static public void main(String[] args) {
          Application app = new Application();
  System.out.println("5555");
          Program program = null;
Simply uncomment the line that contains the program you wish to execute and run this class.
Blob Programs
//          program = BLOBDataProgram.INSERT_IMAGE;
//          program = BLOBDataProgram.RETRIEVE_AND_WRITE_IMAGE_TO_FILE;
//          program = BLOBDataProgram.RETRIEVE_AND_WRITE_PDF_TO_FILE;
Checkout/Checkin Data Programs
//          program = CheckOutCheckInRecordsProgram.CHECK_OUT_NEW_CHECK_IN;
//          program = CheckOutCheckInRecordsProgram.CHECK_OUT_NEW_ROLLBACK;
//          program = CheckOutCheckInRecordsProgram.CHECK_OUT_EXISTING_CHECK_IN;
//          program = CheckOutCheckInRecordsProgram.CHECK_OUT_EXISTING_ROLLBACK;
Create Read Update Delete (CRUD) Data Programs
//          program = CRUDDataProgram.CRUD_HIERARCHY_TABLE;
//          program = CRUDDataProgram.CRUD_MAIN_TABLE;
//          program = CRUDDataProgram.CRUD_MAIN_TABLE_WITH_FLAT_AND_HIERARCHY_LOOKUP_FIELDS;
//          program = CRUDDataProgram.CRUD_MAIN_TABLE_WITH_QUALIFIED_LOOKUP_FIELD;
//          program = CRUDDataProgram.CRUD_MAIN_TABLE_WITH_TAXONOMY_LOOKUP_FIELD;
//          program = CRUDDataProgram.CRUD_TAXONOMY_TABLE_WITH_ATTRIBUTES;
Bulk Create Read Update Delete (CRUD) data programs
(many records at once)
          program = BulkCRUDDataProgram.BULK_CRUD_MAIN_TABLE;
KeyMapping Programs
//          program = KeyMappingProgram.RETRIEVE;
//          program = KeyMappingProgram.MODIFY;
Search Programs
//          program = SearchProgram.DRILL_DOWN_SEARCH;
//          program = SearchProgram.KEYWORD;
//          program = SearchProgram.MASK;
//          program = SearchProgram.NAMED_SEARCH;
//          program = SearchProgram.QUALIFIER;
Attribute Search Programs
//          program = AttributeSearchProgram.COUPLED_NUMERIC;
//          program = AttributeSearchProgram.NUMERIC;
//          program = AttributeSearchProgram.TEXT;
Field Search Programs
//          program = FieldSearchProgram.BOOLEAN;
//          program = FieldSearchProgram.CURRENCY;
//          program = FieldSearchProgram.LITERAL_DATE;
//          program = FieldSearchProgram.LOOKUP;
//          program = FieldSearchProgram.TEXT;
Syndication Programs
//          program = SyndicationProgram.SYNDICATE_PORT;
Workflow Programs
//          program = WorkflowProgram.EXECUTE;
          //TODO enter MDS name
          String mdsName = "172.18.139.200"; //the name of the Master Data Server
          String repositoryName = "GDS_1"; //make sure this is the name you use when unarchiving
                                                       //the repository otherwise change it to reflect the name
                                                       //of your repository
          String regionName = "English [US]";
          String userName = "Admin"; //there is an admin user with no password in the provided repository
          String password = ""; //there is an admin user with no password in the provided repository
          app.start(mdsName, repositoryName, regionName, userName, password, program);
Establishes a connection to the given server and logs in to the given repository
with the given logon information and executes the given program
     private void start(String serverName, String repositoryName, String regionName,
                              String user, String password, Program program) {
          //Create a user session context
          UserSessionContext context = new UserSessionContext(serverName, repositoryName, regionName, user);
          //Get an instance of the session manager
          SessionManager sessionManager = SessionManager.getInstance();
          //Create a user session
          sessionManager.createSession(context, SessionTypes.USER_SESSION_TYPE, password);
          program.setContext(context);
          program.setLoginRegion(getRegion(context));
          program.setRepositorySchema(MetadataManager.getInstance().getRepositorySchema(context));
          program.setAttributeSchema(MetadataManager.getInstance().getAttributeSchema(context));
          //execute the program from the list above
          program.execute();
          //destroy the session and close the connection to the MDS
          sessionManager.destroySession(context, SessionTypes.USER_SESSION_TYPE);
     private RegionProperties getRegion(UserSessionContext context) {
          RegionProperties[] regions = null;
          try {
               GetRepositoryRegionListCommand cmd = new GetRepositoryRegionListCommand(context);
               cmd.execute();
               regions = cmd.getRegions();
          } catch (SessionException e) {
               e.printStackTrace();
          } catch (ConnectionException e) {
               e.printStackTrace();
          } catch (CommandException e) {
               e.printStackTrace();
          for(int i=0, j=regions.length; i<j; i++) {
               if(regions<i>.getName().equals(context.getRegionName())) {
                    return regions<i>;
          return null;

Hi Richard,
IN the API you have provided, Do we have a feasibility to update a Table in MDM GDS (TMData which has many lookup and qualified tables) in one short.
As of now, we are able to insert record for 3 fields, which we are trying to insert feild by field.
but our requirement is we have to insert data for 185 fields and read the fields of 240 feilds.
Need your advice on this.
With Regards,
Jayanthi

Similar Messages

  • Error while importing the ODI Package from Development to Production Enviroment

    Hello Everybody,
    Currently I'm face the problem when import ODI models (from Development) to Production environment
    And the error show follwing error:
    ODI - 23040 Import file "C:/BIAPPS_Package/Models/XyZ.xml" error
    please help.

    Do the user performing the import have permissions to import models to the production environment? I'd also mention that you would have a better setup if your production environment only held executables such as scenarios, load plans etc. and not development objects. It leads to better change control management and simplifies the migration process from DEV --> PROD

  • 'Install App for SharePoint' There were errors when validating the App Package

    Hello,
    When testing with an app, I tried to add an
    app event receiver before learning that remote event receiver are not allowed with
    Sharepoint-hosted app. So I reseted the Handle app installed and
    Web Project properties of my project and tried to redeploy and this error occurred :
    'Install App for SharePoint' There were errors when validating the App Package
    Something other than the project's properties have been modified but I don't know what.

    I think the best way to figure real reason out is to look at ULS logs.
    This is example, what I had:
    Unexpected        App Packaging: CreatePackage: Unexpected exception: There were errors when validating the App package: There were errors when validating the App Package. Other warnings / errors associated with this
    exception:  The current version of SharePoint is less than the SharePointMinVersion specified in the app manifest. CurrentVersion='15.0.4693.1000', SharePointMinVersion='16.0.0.0'.

  • Error While importing the transaction data

    All SAP BPC Gurus,
      I need your help in resolving this error,  I have encountered this below error while uploading (importing) the transaction data of (Non-Reporting) application,  Would you please help me resolving this error.  I don't know if i'm doing anything wrong or is anything wrong with the setup.
    I used DataManager in EXCEL BPC and Ran the IMPORT Transaction Package.
    /CPMB/MODIFY completed in 0 seconds
    /CPMB/CONVERT completed in 0 seconds
    /CPMB/CLEAR completed in 0 seconds
    [Selection]
    FILE= DATAMANAGER\DATAFILES\IFP_BPCUSER121\rate data file.csv
    TRANSFORMATION= DATAMANAGER\TRANSFORMATIONFILES\SYSTEM FILES\IMPORT.XLS
    CLEARDATA= No
    RUNLOGIC= No
    CHECKLCK= No
    [Messages]
    Task name CONVERT:
    XML file (...ANAGER\TRANSFORMATIONFILES\SYSTEM FILES\IMPORT.TDM) is empty or is not found
    Cannot find document/directory
    Application: PLANNING Package status: ERROR

    are you using the standard "Import" data package?
    Check the code in the Advanced tab of the Import data package
    Check your Transformation file is in correct format.
    code in Advaced tab should be as  below:
    PROMPT(INFILES,,"Import file:",)
    PROMPT(TRANSFORMATION,%TRANSFORMATION%,"Transformation file:",,,Import.xls)
    PROMPT(RADIOBUTTON,%CLEARDATA%,"Select the method for importing the data from the source file to the destination database",0,{"Merge data values (Imports all records, leaving all remaining records in the destination intact)","Replace && clear datavalues (Clears the data values for any existing records that mirror each entity/category/time combination defined in the source, then imports the source records)"},{"0","1"})
    PROMPT(RADIOBUTTON,%RUNLOGIC%,"Select whether to run default logic for stored values after importing",1,{"Yes","No"},{"1","0"})
    PROMPT(RADIOBUTTON,%CHECKLCK%,"Select whether to check work status settings when importing data.",1,{"Yes, check for work status settings before importing","No, do not check work status settings"},{"1","0"})
    INFO(%TEMPNO1%,%INCREASENO%)
    INFO(%ACTNO%,%INCREASENO%)
    TASK(/CPMB/CONVERT,OUTPUTNO,%TEMPNO1%)
    TASK(/CPMB/CONVERT,ACT_FILE_NO,%ACTNO%)
    TASK(/CPMB/CONVERT,TRANSFORMATIONFILEPATH,%TRANSFORMATION%)
    TASK(/CPMB/CONVERT,SUSER,%USER%)
    TASK(/CPMB/CONVERT,SAPPSET,%APPSET%)
    TASK(/CPMB/CONVERT,SAPP,%APP%)
    TASK(/CPMB/CONVERT,FILE,%FILE%)
    TASK(/CPMB/CONVERT,CLEARDATA,%CLEARDATA%)
    TASK(/CPMB/LOAD,INPUTNO,%TEMPNO1%)
    TASK(/CPMB/LOAD,ACT_FILE_NO,%ACTNO%)
    TASK(/CPMB/LOAD,RUNLOGIC,%RUNLOGIC%)
    TASK(/CPMB/LOAD,CHECKLCK,%CHECKLCK%)
    TASK(/CPMB/LOAD,CLEARDATA,%CLEARDATA%)

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

  • How to use RZ10  after I have  imported the langugage package!

    Hi experts!
       I meet a problem with T-code RZ10 .  After I have imported the language package with T-code SMLT, then I want to modify the language setting of logon screen , so I go to the T-code RZ10, The proble is that  after I active the new profile, and stop then startup  my SAP ,my GUI  can not  log on to  SAP.   the profile I have actived is as follows:
    SAPSYSTEMNAME = TAL
    SAPGLOBALHOST = SAPECC6
    SAPSYSTEM = 00
    INSTANCE_NAME = DVEBMGS00
    DIR_CT_RUN = $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTI386
    DIR_EXECUTABLE = $(DIR_INSTANCE)\exe
    PHYS_MEMSIZE = 512
    rdisp/wp_no_dia = 6
    rdisp/wp_no_btc = 3
    icm/server_port_0 = PROT=HTTP,PORT=80$$
    **********add on parameters**************
    zcsa/system_language = 1
    zcsa/installed_languages = 1DE
    **********add on parameters**************
    SAP Messaging Service parameters are set in the DEFAULT.PFL
    ms/server_port_0 = PROT=HTTP,PORT=81$$
    rdisp/wp_no_enq = 1
    rdisp/wp_no_vb = 1
    rdisp/wp_no_vb2 = 1
    rdisp/wp_no_spo = 1
    DIR_CLIENT_ORAHOME = $(DIR_EXECUTABLE)
    New parameter creating by myself is including "add on parameters"  above, after I active the new profile,  the menu "Utilities -->Check all profile ---> of active server " , result is no error .
    I don't know how to log on the SAP with my new language imporing by SMLT.
    Best Regards
    Richard

    Hi!
    I have actived the three language in RSCPINST, but after I run the report , I find out that something is strange as follows:
    S e l e c t e d   S e t t i n g s :
    Language(s):
    ZH (1 ) Chinese
    EN (E ) English
    DE (D ) German
    Country code:
    RSCPINST will update TCP0D entries when activated.
           No country selected
    R e s u l t s :
    Code page configuration type:
    Unicode configuration
    Processed language entry:
    RSCPINST will update TCP0I entry when activated.
    1DE
    TCPDB for Unicode configuration (should be empty):
    RSCPINST will update TCPDB entries when activated.
    <Empty>
    T a s k s :
    Required OS locales and their current status:
    Off     Locale check not required for Unicode
    Required profile parameter modifications:
    RSCPINST does NOT change the value of profile parameter.
    Please check the value of below parameter(s) after activation.
    1)  Please update zcsa/installed_languages.
        e.g. Copy the new value and paste it into a field in transaction RZ10
    New:                  1DE
    Current (sorted):
    SAPECC6_TAL_00       1DE
    2)  Please proceed with Check result for below parameter(s):
    OK     Checked and no inconsistency found.
    then I go to the SE11 ,Input table name  TCP0D , I find out that there is only one entry: the "COUNTRY" field is blank and the "DBLANGU" is "E".
    I have no idea what it means :  Required OS locales and their current status:
                                                     Off     Locale check not required for Unicode

  • Error: An error occurred importing the file. Detail: File does not exist or

    Hi,
    I am getting the error the below error while importing the file in FDM. I have read and write access to the folder. I tried loading text and excel files, I am getting the same error.
    An error occurred importing the file.
    Detail: File does not exist or access denied.
    Thanks.

    Hi Tony,
    Thanks for the reply.
    I have Oracle Database and the version is 11.1.0.7; So even for this version do I need to have SQLLDR.exe on the server where FDM is installed.
    Thanks,
    Edited by: user10720012 on May 16, 2011 11:42 AM

  • Error while importing the user Records through SCC7

    Hi Basis Gurus,
    We are doing the post DB Refresh Activities for a Sandbox .
    Refresh is done from D21 to S21.
    We are stuckup with an error while importing the user Records(scc7).
    The exported user records request from D21 is dumped in the trans directory of S38 and imported in to S21 using TP commands at O/S level. The import is done successfully( RC 4 with warnings).
    But now when we run SCC7 (post import activities) in the background the process is getting cancelled right in the begining.
    Error Occured in SCC3 log
    Table logging disabled in program RSCLXCOP by user SAP*"
    R/3 Version is 4.6C OS:AIX5.3
    Your suggestions will be highly appreciated.
    Regards,
    Sitaram

    Hey Sitaram,
    I looks like you have incorrect parameters of client copy in the S21 system.
    You can change the parameters in S21 system,
    by executing report RSCLXCOP (via transaction SE38 or SA38) in S21.
    Search parameters that related to table logging/sap*
    good luck!

  • Error importing SharePoint site collection - "there is an error during importing the Roles tag"

    Hi, we are having trouble restoring a SharePoint 2010 site collection using our DPM 2012 installation. The recovery process goes fine (restore of the database, attach to the sql server, export into WFE's filesystem) and the last phase, the SharePoint import,
    seems to end with an exception. We see this in the WssCmdletsWrapperCurr.errlog file:
    Caught Exception while trying to import Url .....
    Exception message =
    There is an error during importing the Roles tag
    Exception Stack =
    at Microsoft.SharePoint.Deployment.ReadAttribute.String(....
    It looks like it is a SharePoint import issue, but I'm not sure. We have tried to restore the site into an empty one, and the exception appears again, although it *seems*  that the content has been recovered. We have imported using the security info
    on the recovery point.
    I've searched for that error message in the Net but I've been unable to find anything appropriate.
    Do you have any hints?
    Thanks.

    Hi, we are having trouble restoring a SharePoint 2010 site collection using our DPM 2012 installation. The recovery process goes fine (restore of the database, attach to the sql server, export into WFE's filesystem) and the last phase, the SharePoint import,
    seems to end with an exception. We see this in the WssCmdletsWrapperCurr.errlog file:
    Caught Exception while trying to import Url .....
    Exception message =
    There is an error during importing the Roles tag
    Exception Stack =
    at Microsoft.SharePoint.Deployment.ReadAttribute.String(....
    It looks like it is a SharePoint import issue, but I'm not sure. We have tried to restore the site into an empty one, and the exception appears again, although it *seems*  that the content has been recovered. We have imported using the security info
    on the recovery point.
    I've searched for that error message in the Net but I've been unable to find anything appropriate.
    Do you have any hints?
    Thanks.

  • Error while importing the data

    Hi All,
    In fdm i am trying to Import the data but i am getting the below error while importing text file.
    Error: An error occurred importing the file.
    Detail: Data access error.
    also the below is the log found ..
    2012-02-14-01:04:42
    User ID...........     admin
    Location..........     mine
    Source File.......     C:\Hyperion\products\FinancialDataQuality\Mineapp\Test2\Inbox\mine\load_demo2.txt
    Processing Codes:
    BLANK............. Line is blank or empty.
    ESD............... Excluded String Detected, SKIP Field value was found.
    NN................ Non-Numeric, Amount field contains non numeric characters.
    RFM............... Required Field Missing.
    TC................ Type Conversion, Amount field could be converted to a number.
    ZP................ Zero Suppress, Amount field contains a 0 value and zero suppress is ON.
    Create Output File Start: [2012-02-14-01:04:42]
    [TC] - [Amount=NN]     Accounts,Market,Year,Product,Scenario,Data
    [Blank] -      
    Excluded Record Count..............1
    Blank Record Count.................1
    Total Records Bypassed.............2
    Valid Records......................2
    Total Records Processed............4
    Begin SQL Server (BCP) Process (2): [2012-02-14-01:04:42]
    [RDMS Bulk Load Error Begin]
         Message:      (-2147217900) - Data access error.
         See Bulk Load File:      C:\Hyperion\products\FinancialDataQuality\Mineapp\Test2\Inbox\tWadmin56465844032.tmp
    [RDMS Bulk Load Error End]
    Please help me out i am really helpless and dont know how to solve this error.

    When you perform a bulk load, you basically tell SQL Server to execute a command local to the SQL server. What that means is that if you pass it a parameter that says load the file :
    C:\Hyperion\products\FinancialDataQuality\Mineapp\Test2\Inbox\mine\load_demo2.txt
    SQL Server is going to look on it's C drive for the file.
    Unless you have SQL Server running on the FDM server, this is going to fail obviously.
    The 'right' thing to do is setup your FDM app using a share name. (i.e. \\FDMSERVER\FDMAPPS\Mineapp instead of c:\Hyperion\products\FinancialDataQuality\Mineapp).
    If you are relatively handy with FDM, there is a config file (in XML) that has the path information for the apps and you just need to change it from the hardcoded C drive reference to the share you create.)
    Your other option is to NOT load the fiels as bulk. If you have a lot of large data files being loaded, this would be a bad idea. If you have relatively small load files every month and not a lot of users on the system, this may not impact performance. I would update the path information if it were me.
    Charles

  • An error occured importing the file

    Hello,
    We are currently experiencing an issue with Importing a file that contains the Japanese Kanji character set.
    The error received is "Error - An error occured importing the file"
    The Kanji characters are only for the Descriptions within the import file and WILL NOT be stored in the Oracle Database. I have enabled the East Asian lanaguages on the Windows 2k3 server but still get the error. Is there another setting the needs to be enabled or a 3rd party software that must be installed?
    Any help would be appreciated.
    Thanks
    Tony

    Hello,
    It appears that you did not tell FDM to accept possible non ASCII characters.
    To do this change the option in "Administration" -> "Configuration Settings" -> "File Encoding Type" to Unicode.
    Keep in mind this will allow the parsing engine to accomidate additional characters. BUT, if the file is an ANSI type file that contains the characters and not a TRUE Unicode file, the characters will just now be skipped.
    Thank you.

  • Error while importing the MS CRM default solution from 2013 to 2015 version.

    Hi All,
    We are getting the following error while importing the default solution form MS CRM 2013 version to 2015.
    Kindly help,
    Regards, Rekha.J

    Hi,
    Thanks for the reply email, I had already gone through this link but not able to find this file CustomizationImport from  SystemDrive:\Program
    Files\Microsoft Dynamics CRM.
    Also a note we are using CRM online version.
    Regards, Rekha.J

  • Time for importing the framework

    Hi,
    I am imporing the sap frame work to identity center.
    However it is taking lot of time for importing, the application is showing the message as import in progress, but this is going on for almost 3hrs.
    Is this is the normal long running process?
    Do I have any other way to check the import status?
    Please help.

    got resolved..issue is with login

  • An error occurred importing the file, although some of the file data may ha

    I am trying to update some xml. I login to admin module and click on Import Exchange File. When I try to import an xml I get this error:
    An error occurred importing the file, although some of the file data may have been processed. ==> com.waveset.util.IOException: ==> java.sql.SQLException: ORA-01407: cannot update ("WAVESET_V60_QA"."OBJECT"."XML") to NULL
    I have checked database permission and the user has proper permission.
    Any idea why I would get this error?
    Thank you in advance
    Deval

    Hi,
    source account must have values. If not, check your import format.
    Regards

  • Error While Importing the Package

    Hi,
    I am transporting the business package to a different portal server. I exported a package using System Config>Transport>Export Utility. I can see the .epa file as well.
    But when i try to import, i get the following error message:  "Error extracting the package file. Check the log files for details. "
    Any help would be much appreciated.

    hi,
    I think you are in portal of sp 9 or less than that. YOou may need to upgrade your portal to sp12 or more. Try that.
    do have a look at this <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=85003">thread</a>
    Regards,
    Ganesh

Maybe you are looking for

  • Bt as a whole are a disgrace to humanity

    every single day i check here to see the latest developments in the ongoing hh5 problem. so many people with the exact same problem that has nothing to do with their personal settings. every day the same response: it's not our fault we fixed everythi

  • Getting error when viewing an attachment in the Room tasks

    Hi All, I am getting an error when i am trying to view an attachment added for a task created for a room. I am getting this error only when i am attaching a document as a link and not as a document itself. The error i am getting is "Exception URL typ

  • EAR Deployment error!

    I have created a servlet client to test a secured web service. When I deploy the EAR,I get error: Result => deployment aborted : file:/C:/DOCUME~1/uname/LOCALS~1/Temp/temp1530011368822716654CapsWS_EAR.ear Aborted: development component 'CapsWS_EAR'/'

  • Problem with clustering with JBoss server---help needed

    Hi, Its a HUMBLE REQUEST TO THE EXPERIENCED persons. I am new to clustering. My objective is to attain clustering with load balencing and/or Failover in JBoss server. I have two JBoss servers running in two diffferent IP addresses which form my clust

  • SAP SCPM Roadmap

    Hey scpm community, i was wondering if there is somewhere something existing linke a SCPM roadmap. What I'm interested in is information on dates and planned enhanced functionality. Cheers, Moritz