Error with BPC transport

Hi All,
We encounter an error transporting BPC dimensions. The error is raised when importing into the target system. All dimensions are imported fine, except the 10 dimensions that are use in one specific model.
Error in Admin module or a component used by Admin module
Failed to update dimension /CPMB/PMD0348, source prefix: PM, target prefix PM.
Failed to import entity Dimension, ID:D_DATASRC
Any ideas on this?
Regards,
Vincent

Hi Vincent,
Do you know what that transport is changing in target Model/Dimensions?
Can you also run Data Checker in the target system to see if there are any issues with he Model/Dimensions?
Regards,
Gersh

Similar Messages

  • Installing Exchange 2010 on Server 2008 R2 Get error with Hub Transport Role

    Hub Transport Role
    Failed
    Error:
    The following error was generated when "$error.Clear();
              install-MsiPackage `
              -PackagePath ($RoleInstallPath + "TransportRoles\agents\Hygiene\ASEntIRS.MSI") `
              -LogFile ($RoleSetupLoggingPath + "\InstallASEntIRS.msilog") `
              -PropertyValues ("ALLUSERS=1") `
              -UpdatesDir $RoleUpdatesDir
            " was run: "Installing product D:\Program Files\Microsoft SQL Server\Microsoft\Exchange Server\V14\TransportRoles\agents\Hygiene\ASEntIRS.MSI failed. Fatal error during installation. Error code is 1603.".
    Installing product D:\Program Files\Microsoft SQL Server\Microsoft\Exchange Server\V14\TransportRoles\agents\Hygiene\ASEntIRS.MSI failed. Fatal error during installation. Error code is 1603.
    Fatal error during installation
    Elapsed Time: 00:00:01
    Client Access Role
    Cancelled

    Hi,
    From the description, I recommend you copy the Exchange installation files to the local machine, or download a fresh copy of Exchange 2010 and then reinstall it.
    Besides, please ensure that you install Exchange 2010 on 64-bit edition of Windows Server 2008 R2 Standard with SP1 or Windows Server 2008 R2 Enterprise with SP1.
    If the issue persists, please refer to the following KB further troubleshooting.
    You receive error 1603 when you try to install the Exchange Server 2010 RU1
    https://support.microsoft.com/kb/981474
    Hope it helps.
    If you need further assistance, please feel free to let me know.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Waiting error with BPC for Excel on Citrix

    Good day,
    We are currently running SAP BPC 5.1 SP 7 (release 5.0.508.03)
    On Production and Staging , users running BPC client on our Citrix environment are experiencing a "WAITING" message when submitting on input schedules on BPC Excel after working or leaving the input schedule idle for more than +/- 10 minutes.
    We currently only experience the problem on BPC clients running on Citrix. The BPC clients running via the LAN is not experiencing this problem and we cannot replicate the problem on the LAN
    We asked our Network team to investigate they found that there was a network reset connection (RST, ACK) from the BPC Client on Citrix to the Application Server after 1 minute and 5 seconds of refreshing the input schedule.             
    Steps for Reconstruction          
    1.User running BPC for excel client on our Citrix environment.
    2.logs onto BPC for Excel.
    3.Opens and refresh's an input schedule in BPC for Excel.
    4.Works on or leaves the input schedule idle for 10-15 minutes.
    5.Submits on the input schedule after 10-15 minutes
    6.Receives a "WAITING" message in the top left hand corner for the excel for BPC screen.
    7."WAITING" message runs indefinitely.
    Notes:
    1.We can reproduce this on our Citrix Staging environment and currently experience this problem on our Citrix Staging and Production environment. The problem cannot be reproduced when a BPC client connects  via the LAN for Staging and Production.
    2.Citrix session remains active and connected during the above steps.
    3.The only way the "WAITING" message is stopped is if the users selects refresh or submit on the input schedule after a few minutes, the refresh then runs successfully, but the Submit does not go through successfully.
    4. We have asked or Citrix team to investigate and they cannot find anything that could be causing the problem.
    Any ideas?
    Thanks,
    Peter Bellis

    ok.
    In this case it seems you have a problem with antivirus or forewall into Citrix server which is blocking the communication with application server.
    I expect to be more like antivirus which is blocking actually the activity of add ins from excel whoich measn the BPC client.
    So actually your problem has nothing to do with Cittrix is just a pure problem with installation of client into that machine (in your case citrix server).
    So I suggest to disable any antivirus or firewall into that citrix server for test purpose and afte that you have to make sure that you don't have any restrictions on port 80 if this is used by BPC.
    Regards
    Sorin Radulescu

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • Error with Transport system not configured that may be related to CHaRM

    Who has in depth knowledge on setting up SAP Solution Manager CHaRM. Had an odd problem with the transport system failing when the QA system was shut down for maintenance. Transports were not able to be created or save to.  Error message was Transport System not configured.  Brought up QA and re-distributed system and Transport group and transport requests started working again.

    Hello,
    if a system, e.g. QA system, will not be available due to a maintenance task,
    we set the status of this system to "temporarily inactive" (see header data in transaction SMSY).
    This status allows us, to create new transport requests in DEV-System although consolidation system QA is not available.
    (Of course you have to reset the status, when QA-system ist started again.)
    Hint: it is not possible to release or to import a transport request, when consolidation system is shut down.
    Therefore the developer should pay attention to the messages, which raise in urgent corrections.
    best regards
    Horst

  • Error when running Dashboard with BPC 10 Connection

    Hello Experts,
    I am trying to preview my created Dashboard with BPC 10 Connection. Upon clicking Preview I encountered an "UnSupported Excel Function" error.
    When I clicked OK and tried to refresh my report, another error came up:
    Have you encountered these errors before?
    Thanks!
    Regards,
    Joana

    Hi Joana,
    Please refer knowledge base article 1741089 - Dashboard design error message: Unsupported Excel function EPMOlapMember - which says the same:
    Cause
    This is normal product behavior. Only native Excel functions which are
    supported by Xcelsius should be used for generating the dashboard.
    The embedded spreadsheet does not support all Excel functions. It does not
    support macros, conditional formatting, linking to other external spreadsheets,
    and some formula functions.
    Resolution
    Use only functions that are supported by Dashboard Design (Xcelsius).
    For a full list of supported functions, see the section Supported Excel
    functions in the Dashboards and Presentation Design User Guide available form http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_dashD_user_en.pdf.
    Hope this helps.
    Regards,
    Kalyan.

  • Error when generating transport dataset (transfering queries with RSAQR3TR)

    Hi!
    I try to transfer queries from one system to other.
    Systems are not connected with each other, so no transports are available.
    I am doing like this:
    - running program RSAQR3TR in "old" system
    - downloading a query as TXT file into my PC
    - running program RSAQR3TR in "new" system
    - uploading TXT file into "new" system and get a message - "Error when generating transport dataset"
    I have only query and user group in "old" system. Is this information enough to transfer them to "new" system?
    <b><REMOVED BY MODERATOR></b>
    Mindaugas
    Message was edited by:
            Alvaro Tejada Galindo

    Hi,
    Step 1. Run RSAQR3TR in 'old' system. Select EXPORT and specify the objects to be transported. 
    (System includes these in an automatically created transport request) 
    Step 2. Release this transport and request it be transported to 'new' system. 
    (This results in the entries being populated in transport table AQTDB in 'new' system). 
    Step 3. Run RSAQR3TR in 'new' system. Select IMPORT and tick the Overwrite checkbox. Specify the transport number in the field labelled 'dataset with imports'. 
    (RSAQR3TR gives the message that stuff has been imported OK). 
    Step 4. if you still couldn't find the queries, so ran RSAQR3TR one more time, this time specifying 'Copy Standard Area -> Global Area'
    Regards
    Sudheer

  • Xcelsius Integration  with  BPC MS version - Error

    Hi
    I am trying to integrate xcelsius tool  with  BPC MS version.i am  getting below error when I try to check the configuration..can anyone help on this?
    **Server Error in '/OSoft' Application.**
    **Parser Error**
    **Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.**
    **Parser Error Message: Could not create type 'XcelsiusService.QueryResults'.**
    **Source Error:**
    **Line 1:  <%@ WebService Language="c#" Codebehind="QueryResults.asmx.cs" Class="XcelsiusService.QueryResults" %>**
    **Source File: C:\BPC\Websrvr\Web\App\XcelsiusService\QueryResults.asmx Line: 1**

    The SAP BusinessObjects EPM Connector add-on file is included in the SAP BusinessObjects
    Extended Analytics Analyzer Support Package setup. The setup installs Extended Analytics
    Analyzer and copies the EPMConnector.xlx file in the EPMConnector sub-folder of the Extended
    Analytics Analyzer installation folder.
    You can find the software here:
    http://service.sap.com/swdc
    Installations and Upgrades - Entry by Application Group --> SAP BusinessObjects Portfolio --> SBOP Extended Analytics -- > BOBJ Extended Analytics 7.5 --> Installation
    You can find the user guide here -- note that it is confusingingly found under Financial Consolidation
    http://service.sap.com/instguides
    SAP Business Objects --> EPM --> Financial Consolidation --> 7.5 --> SAP BO EPM Connector User Guide 7.5
    http://service.sap.com/~sapdownload/011000358700001297252009E/EPMConnector75_en.pdf
    More information can be found in the BPC 7.5 NW Master Guide
    http://service.sap.com/~sapdownload/011000358700001106942009E/SBOP_PC_75_NW_SP03_Master.pdf
    Best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Applications Regional Implementation Group (RIG)

  • Xcelsius integration with BPC - MS Versions - Error

    Hi
    I am trying to integrate xcelsius tool  with  BPC MS version.i am  getting below error when i test teh webservice....
    can anyone  help on this?
    Server Error in '/OSoft' Application.
    Parser Error
    Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
    Parser Error Message: Could not create type 'XcelsiusService.QueryResults'.
    Source Error:
    Line 1:  <%@ WebService Language="c#" Codebehind="QueryResults.asmx.cs" Class="XcelsiusService.QueryResults" %>
    Source File: C:\BPC\Websrvr\Web\App\XcelsiusService\QueryResults.asmx Line: 1

    The SAP BusinessObjects EPM Connector add-on file is included in the SAP BusinessObjects
    Extended Analytics Analyzer Support Package setup. The setup installs Extended Analytics
    Analyzer and copies the EPMConnector.xlx file in the EPMConnector sub-folder of the Extended
    Analytics Analyzer installation folder.
    You can find the software here:
    http://service.sap.com/swdc
    Installations and Upgrades - Entry by Application Group --> SAP BusinessObjects Portfolio --> SBOP Extended Analytics -- > BOBJ Extended Analytics 7.5 --> Installation
    You can find the user guide here -- note that it is confusingingly found under Financial Consolidation
    http://service.sap.com/instguides
    SAP Business Objects --> EPM --> Financial Consolidation --> 7.5 --> SAP BO EPM Connector User Guide 7.5
    http://service.sap.com/~sapdownload/011000358700001297252009E/EPMConnector75_en.pdf
    More information can be found in the BPC 7.5 NW Master Guide
    http://service.sap.com/~sapdownload/011000358700001106942009E/SBOP_PC_75_NW_SP03_Master.pdf
    Best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Applications Regional Implementation Group (RIG)

  • Error while uploading Transport request

    Hi friends,
    Error while uploading transport request to the transport directory,
    we downloaded the trasnport request from one sap system which have a set of developments
    for example downloaded files are;
    control file: K900470.SAD and Data file: R900470.SAD fronm transport directory.
    we are trying to upload the transport to another Sap system
    we have
    Uploaded  the controlling file K900470.sad to the location  /usr/sap/transpad/cofiles/
    Uploaded the controlling file R900470.sad to the location  /usr/sap/transpad/data/
    we tried tro  add in the import queues using  TCODE: STMS
    and trying to import.
    During import we get
    error:
    HALT: unknown dynpro format: d021s_length() returned 0 Please contactthe SAP support.
    End with rc : 16
    Please help me with the problem.
    Thanks in advance
    Deepak

    Hi,
       Check the versions of the two sap systems you are downloading and uploading the transport requests

  • Error while uploading Transport request from SAP ECC6.0 EHP4 to SAP ECC 5.0

    Hi friends,
    Error while uploading transport request to the transport directory,
    we downloaded the transport request from one sap system which have a set of developments(contains screen programs)
    for example downloaded all co files and data files
    control file: K900470.SAD and Data file: R900470.SAP from transport directory.
    we are trying to upload the transport to another Sap system
    we have
    Uploaded the controlling file K900470.sad to the location  /usr/sap/transpad/cofiles/
    Uploaded the controlling file R900470.sad to the location  /usr/sap/transpad/data/
    we tried to add in the import queues using TCODE: STMS and trying to import.
    During import we get the below error:
    HALT: unknown dynpro format: d021s_length() returned 0 Please contact the SAP support.
    End with rc : 16
    Please help me on this
    We are trying to copy from ECC 6.0 EHP4 to SAP 5.0 and SAP 4.7EE
    Thanks & Regards
    Murali Papana

    Did you see that you tried to transport to an older release!! You should have expected such a result.
    Before doing such a thing, you should have looked at SAP notes to see SAP recommendations, if any. And you're lucky, there are ones: [Note 1090842 - Composite note: Transport across several releases|http://service.sap.com/sap/support/notes/1090842]. You need to know that ECC6 corresponds to SAP Basis 7.0, and ECC5 corresponds to SAP Basis 6.40.

  • Vehicle Scheduling Error:Error when creating transport structures in live C

    HI Gurus,
    We have one background job defined for Vehicle scheduling, which shows completed successfully but in log it says that :
    : Error when creating transport structures in liveCache and Not possible to schedule shipment in the planning horizon.
    My planning horizon is for 90 days from current date and demand horizon is for 30 days.
    I have checked the VS profile and i dont find any problem with profile.
    Can you please help me in finding what exaclty went wrong
    Thanks,
    AMol

    Try This..
    1. Open the crystal client on your local machine and import that particular report.
    2. Do Database -> Verify Database. Then refresh the report on your PC and make sure that it returns data as expected.
    3. Export it back to repository and try scheduling it again. You can verify through CMC for Crystal Reports under " Database Configuration" property to make sure it points to the right ODBC.
    Let us know.

  • Commitment Item error in Stock transport order

    Hi all
    I have a stock transport order (STO) for a material non valuated in both sending and receiving plants.
    While creation , there is an error with respect to completion of an "committment item" *.
    If I input  the committment item in  STO create transaction in R3 , the STO is  saved  (permitting blank account assignment for the STO item  as intended)  and there is no further issue till post goods issue in sending plant or GR in receiving plant.
    The problem is however that this STO is triggered from APO and transferred via CIF to R3 while there is no chance to input the commitment item. This results into a CIF error with the STO not created  in both R3 and APO.
    Is there a way I could bypass this "committment stuff" in this situation?
    Thanks in advance
    Anton
    *The exact error message is as follows;
    "  No commitment item entered in item 00001 plant < >
       Message no. FI311
    Diagnosis
    The posted document contains at least one company code in which Funds Management, Cash Budget Management, or Project Cash Management is active. Therefore you must enter a commitment item in all involved company codes.
    Procedure
    Enter a commitment item.
    If you cannot enter a commitment item, check with your system administrator that your account assignment derivation is adjusted so that the system can automatically derive a commitment item from another account assignment, or from the G/L or cost element.   "

    Hi,
    Did you try using derivation rule using FMDERIVE in case funds management is active.
    Please also refer to the link below which guides on the item category to be assigned in Commitment item.
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/f0/ca5716260211d28a430000e829fbbd/frameset.htm
    Regards
    K.R

  • Error while doing transport to Quality from Solman

    Dears,
    I am using Solman 7.0 SP15.
    I have recently configured Charm,Now to test it funcationality I created one transport and as per process released it by solman.
    Now I am trying to import this request by Solman into QAS but it is giving error:
    TMS communication error with TMSSUP#QAZ.DOMAIN_DEV
    Message no. XT153
    Diagnosis
    There was an error during communication with the RFC destination
    TMSSUP#QAS.DOMAIN_DEV
    System Response
    The exact error message of the system is:
    Name or password is incorrect (repeat logon)
    Procedure
    The function terminates.
    Procedure for System Administration
    Check your TMS configuration with the transaction STMS.
    I checked all RFCs are working fine with authorization test,RFC TMSSUP#QAZ.DOMAIN_DEV is also working fine but its created with clicked logon screen option that i read is OK.
    We have one RFC destination to 000 Client of our domain controller DEV.
    Please suggest do i nead to create RFC destnations to QAS and PRD also to import requests or what is the root cause of this issue.
    Shivam
    Edited by: Shivam Mittal on Jan 22, 2009 9:30 AM

    Hi,
    TMSSUP#QAZ.DOMAIN_DEV  Client 000 ...
    Looks like the user who performs action "import to qas" does not exist in QAZ (000).
    /cheers

  • Error while exporting transport requests

    Dears,
    In our PI 7.1 server,configured with CTS +,We are getting below error while exporting transport requests:
    Caused by: com.sap.tc.di.draft.ts.TsExecutionException: Error executing function (check stacktrace for details): EPS_OPEN_OUTPUT_FILE, (service=com.sap.tms)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.TmsJCoExceptions.throwTsServiceException(TmsJCoExceptions.java:74)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.EpsJCoAdapter.openFile(EpsJCoAdapter.java:98)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.AbapEpsOutputStream.open(AbapEpsOutputStream.java:83)
    ... 40 more
    Caused by: com.sap.conn.jco.AbapException: (126) OPEN_FAILED: OPEN_FAILED
    at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.execute(MiddlewareJavaRfc.java:1492)
    at com.sap.conn.jco.rt.ClientConnection.execute(ClientConnection.java:1065)
    at com.sap.conn.jco.rt.RfcDestination.execute(RfcDestination.java:987)
    at com.sap.conn.jco.rt.RfcDestination.execute(RfcDestination.java:977)
    at com.sap.conn.jco.rt.AbapFunction.execute(AbapFunction.java:300)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.JCoAdapter.executeFunction(JCoAdapter.java:103)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.EpsJCoAdapter.openFile(EpsJCoAdapter.java:78)
    In SE01 it show tp 12 while releasing request.
    Please suggest.
    Shivam
    Edited by: Shivam Mittal on Mar 16, 2010 1:04 PM

    File Permission Issue.

Maybe you are looking for