ISA Framework:[XCM configuration]='zcrmordermaintain002' does not exist.

Hi all,
While configuring a configurable product in service order and service quotation i am getting this error.
" ISA Framework: The XCM configuration='zcrmordermaintain002' does not exist."
When i simulate the configuration itself in product master it works fine but the mentioned error occurs
when i try to edit the product model in the Service Quotation.
I have already maintain a JCO connection for "Zcrmordermaintain002" and "Zcrmproductsimulation002 " and made an entry of it in the Table "COMM_IPC_PROP".  Do is miss some other entries ?
Please help me to fix the error.
Thanks in Advance,
Regards,

Hi experts,
I am able to see the Product Configuration in the Business Transactions
In my case there were two mistakes.
Instead of Zcrmordermaintain002 i had configuration as zcrmordermaintain002.
I guess it should be the problem but i regenerated it.
Secondly i created 2 separate JCO connections for zcrmproductsimulation and for zcrmordermaintan002.
For me it worked dat way...
But the further Problem what i am facing is:
When i select the configuration in the transaction it is not saving and it show a script error in the explorer
Stating:
Error on the page : Access Denied
Code: 0
Any Suggestion what could be the problem ?
Regards,
Edited by: Usman on Jul 15, 2009 12:59 PM

Similar Messages

  • ERROR: Cannot start mail services, configuration directory does not exist

    I'm running an Xserve G5 with one internal boot drive and one RAID using the other two internal drives. I used Apple's Disk Utility to set-up the RAID.
    Back in early December, I moved my mail database and mail store to the RAID. Ever since, when I restart the server, the mailaccess.log generates the following error:
    Jan 23 18:51:33 mail master[47]: ERROR: Cannot start mail services, configuration directory does not exist: /Volumes/RAID/mail.data/db
    I'm speculating this is a timing error that gets created when Postfix initially can't find the RAID. Then, it must try again and find it because the error message does not repeat and mail starts running.
    Is this something to worry about?

    Hi Joel,
    You're right, it's a timing issues. The mail system is ready for work before the file system is mounted. It's benign.
    Jeff

  • Source configuration EHHSS_INC_REC_OIF_ADD_FINTR_LST does not exist

    When i try to deep copy EHHSS_INC_REC_OIF_V3 component in EHSM. It gives error "Source configuration EHHSS_INC_REC_OIF_ADD_FINTR_LST does not exist".
    Secondly, how to create custom tabs in EHSM screen.
    Could anyone please help me regarding this.

    Hi Malar,
    you have those missing Java classes in a Java DC and want to use that?
    In that case: create a public part with purpose compilation ("API"), add an appropriate entity (select the right Java package and choose "Add to public part" from the context menu or add a "Java Package" or "Java Package Tree" entity manually). Add a build-time dependency from your WD DC to that public part of the Java DC. That should take care of the build issue.
    The question then is: How do you want to provide the Java classes at runtime? Put them into the Web Dynpro application (create an assembly public part for the Java DC and also add a build-time dependency), put them into a reusable J2EE Server Library (Create a separate DC for that, create the assembly public part for the Java DC, add a library reference from your WD DC to the Library DC), ...
    Regards,
    Marc

  • MS ssis service: registry setting specifying configuration file does not exist. attempting to load default configuration file. SQLIService100 - event id 274

    window 2008 R2 server ---- after installing SQL 2008 R2 then applying sp2 / sp3 I noted a warning -
    Note this server had SQL 2008 R2 uninstalled previously.
    MS ssis service: registry setting specifying configuration file does not exist. attempting to load default configuration file.
    SQLIService100 - source
    event id- 274
    user - N/A
    Task category - service control.
    Do we need to fix something and how do we fix this warning event?
    dsk

    You could search online for this warning. I was able to find http://superuser.com/questions/346264/event-log-warning-registry-setting-specifying-configuration-file-does-not-exist
    where the fix is "in your registry, go to:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSDTS\ServiceConfigFile
    or
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\100\ServiceConfigFile
    if value is empty then add in:
    C:\Program Files\Microsoft SQL Server\100\DTS\Binn\MsDtsSrvr.ini.xml"
    Arthur
    MyBlog
    Twitter

  • Configured diectory does not exist

    Hi All.
    I have a File to rfc scenario.. where I have to read the file from location 10.100.10.20 from the directory data\source.
    I have given the path in the sender channel as 10.100.10.20\data\source .
    The comm channel results with error  configured diectory
    10.100.10.20\data\source does not exist
    Any idea on this??
    I am using NFS protocol...

    Hi Ravindra,
    Suppose, if you use Transport protocol is FTP,
    Then, you have to specify like this in Sender Communication Channel.
    Transport Protocol : FTP
    Message Protocol: File
    Source Directory: \data\
    File Name            : your file name
    See the below link, it might be helpful to you.
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/00453c91f37151e10000000a11402f/content.htm
    Hope this helps to you.
    Regards,
    P.Rajesh
    Edited by: Rajesh_1113 on Apr 24, 2011 7:06 PM

  • System.ServiceModel.Configuration.MachineSettingsSection does not exist

    Based on the instructions in this link for enabling logging of PII...
    https://msdn.microsoft.com/en-us/library/ms730318(v=vs.90).aspx
    None my versions - 3.5 -4.5.1 of .NET has a class System.ServiceModel.Configuration.MachineSettingsSection
    The only class with that name that exists is System.Transactions.Configuration.MachineSettingsSection
    I can only assume this is why it is not possible to add that section to machine.config, can anybody confirm this please?
    If so, then where should this section go in machine.config to enable PII logging?
    Thanks
    Jon

    The System.ServiceModel.Configuration.MachineSettingsSection class is indeed not public.
    But you can still add the enableLoggingKnownPii setting to a configuration file if this is what you want:
    Configuration machineConfig = ConfigurationManager.OpenMachineConfiguration();
    System.ServiceModel.Configuration.ServiceModelSectionGroup section = machineConfig.GetSectionGroup("system.serviceModel") as System.ServiceModel.Configuration.ServiceModelSectionGroup;
    foreach (ConfigurationSection s in section.Sections) {
    if(s.GetType().ToString().Equals("System.ServiceModel.Configuration.MachineSettingsSection"))
    string xml = s.SectionInformation.GetRawXml();
    if (xml == null)
    xml = string.Empty;
    s.SectionInformation.SetRawXml(xml + "<machineSettings enableLoggingKnownPii=\"true\"/>");
    machineConfig.Save();
    The other option is to just open the machine.config file in Notepad and add the enableLoggingKnownPii attribute manually:
    http://stackoverflow.com/questions/2325473/where-is-machine-config
    Hope that helps.
    Please remember to mark helpful posts as answer to close your threads and then start a new thread if you have a new question.

  • Error 1070023 Configured Disk volume does not exist.

    Hi
    I installed Essbase 11.1.1.2 in stand alone mode. When I am trying to start Sample.Basic, I am getting the below error
    Error 1002097 Unable to load database Basic.
    The App log showed the following error
    Error 1070023 Configured Disk volume does not exist.
    Please help..

    So everything works when the volume is set to E?
    If so, you might be able to use DISKVOLUMES E in the essbase.cfg file which sets a default (for BSO cubes, at least), but you shouldn't have to do that.
    The DISKVOLUMES documentation says that the volume that contains your ARBORPATH is the one used by default. Not completely sure I trust that it's up to date, and isn't now ESSBASEPATH or something else, but regardless, do those variable all look to be set correctly? To be honest, that's a longshot, as I'd be surprised if a missing / incorrect value there wouldn't cause bigger problems...

  • The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.

    I am experiencing this error with one of our cluster environment. Can anyone help me in this issue.
    The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.
    Thanks,
    Venu S.
    Venugopal S ----------------------------------------------------------- Please click the Mark as Answer button if a post solves your problem!

    Hi Venu S,
    Based on my research, you might encounter a known issue, please try the hotfix in this KB:
    http://support.microsoft.com/kb/928385
    Meanwhile since there is less information about this issue, before further investigation, please provide us the following information:
    The version of Windows Server you are using
    The result of SELECT @@VERSION
    The scenario when you get this error
    If anything is unclear, please let me know.
    Regards,
    Tom Li

  • Configuration file "config\jazn.xml" does not exist

    I have just installed 10g and am trying to setup iSQL*PLUS/dba. I found directions here http://download-west.oracle.com/docs/cd/B12037_01/server.101/b12170/ch3.htm#BCEIHEJF, however, when I try to start the JAZN shell or run the command line to create the dba user, I receive this error:
    oracle.security.jazn.JAZNRuntimeException: Configuration file "config\jazn.xml"
    does not exist. Check your JAAS configuration settings.
    at oracle.security.jazn.JAZNConfig.getJAZNProperties(Unknown Source)
    at oracle.security.jazn.JAZNConfig.access$100(Unknown Source)
    at oracle.security.jazn.JAZNConfig$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jazn.JAZNConfig.getJAZNPropertiesNoCheck(Unknown Source)
    at oracle.security.jazn.JAZNConfig.<init>(Unknown Source)
    at oracle.security.jazn.JAZNConfig.initJAZNSingleton(Unknown Source)
    at oracle.security.jazn.JAZNConfig.getJAZNConfig(Unknown Source)
    at oracle.security.jazn.util.Dbg$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jazn.util.Dbg.getJAZNProperty(Unknown Source)
    at oracle.security.jazn.util.Dbg.getBoolJAZNAndSystemProperty(Unknown Source)
    at oracle.security.jazn.util.Dbg.<clinit>(Unknown Source)
    at oracle.security.jazn.JAZNConfig.fileExists(Unknown Source)
    at oracle.security.jazn.JAZNConfig.getDefaultJAZNConfigFilePath(Unknown
    Source)
    at oracle.security.jazn.JAZNConfig.access$000(Unknown Source)
    at oracle.security.jazn.JAZNConfig$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jazn.JAZNConfig.getJAZNPropertiesNoCheck(Unknown Source)
    at oracle.security.jazn.JAZNConfig.<init>(Unknown Source)
    at oracle.security.jazn.JAZNConfig.initJAZNSingleton(Unknown Source)
    at oracle.security.jazn.JAZNConfig.getJAZNConfig(Unknown Source)
    at oracle.security.jazn.tools.Admintool.refresh(Unknown Source)
    at oracle.security.jazn.tools.Admintool.init(Unknown Source)
    at oracle.security.jazn.tools.Admintool.main(Unknown Source)
    User does not exist in system.
    Has anyone run in to this and found a solution? Is there something more that I need to do? I know nothing about JAAS.

    I have the same problem. Did you resolve this problem?

  • Error: ORA-16532: Data Guard broker configuration does not exist

    Hi there folks. Hope everyone is having a nice weekend.
    Anyways, we have a 10.2.0.4 rac primary and a 10.2.0.4 standby physical standby. We recently did a switchover and the dgbroker files automatically got created in the Oracle_home/dbs location of the primary. Now need to move these files to the common ASM DG. For this, I followd the steps from this doc:
    How To Move Dataguard Broker Configuration File On ASM Filesystem (Doc ID 839794.1)
    The only exception to this case is that I have to do this on a Primary and not a standby so I am disabling and enabling the Primary(and not standby as mentioned in below steps)
    To rename the broker configuration files in STANDBY to FRA/MYSTD/broker1.dat and FRA/MYSTD/broker2.dat, Follow the below steps
    1. Disable the standby database from within the broker configuration
    DGMGRL> disable database MYSTD;
    2. Stop the broker on the standby
    SQL> alter system set dg_broker_start = FALSE;
    3. Set the dg_broker_config_file1 & 2 parameters on the standby to the appropriate location required.
    SQL> alter system set dg_broker_config_file1 = '+FRA/MYSTD/broker1.dat';
    SQL> alter system set dg_broker_config_file2 = '+FRA/MYSTD/broker2.dat'
    4. Restart the broker on the standby
    SQL> alter system set dg_broker_start = TRUE
    5. From the primary, enable the standby
    DGMGRL> enable database MYSTD;
    6. Broker configuration files will be created in the new ASM location.
    I did so but when I try to enable the Primary back I get this:
    Error: ORA-16532: Data Guard broker configuration does not exist
    Configuration details cannot be determined by DGMGRL
    Form this link,(Errors setting up DataGuard Broker it would seem that I would need to recreate the configuration....Is that correct ? If yes then how come Metalink is missing this info of recreating the configuration... OR is it that that scenario wouldnt be applicable in my case ?
    Thanks for your help.

    Yes I can confirm from the gv$spparameter view that the changes are effective for all 3 instances. From the alert log the alter system didnt throw u pany errros. I didnt restart the instances though since I dont have the approvals yet. But I dont think thats required.

  • Configured source directory .... does not exist was suppressed

    Hi,
    Below log is from PI 7.1 EHP1 system. I have tried to execute simple use cases from SDN but got below exception. The folder actually is there and there is not typing error. What could be the problem and any solution?
    Kind regards,
    Altug
    #2.0 #2010 05 11 01:57:10:002#+0300#Error#com.sap.aii.adapter.file.File2XI#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124200000000000007B0#9722350000001755##com.sap.aii.adapter.file.File2XI.getFileList(File2XIConfiguration.FileSource[])#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI File2XI[XiPatternChannel_FileSender/PI7_FileSystem_XIPattern1/]_4767#Plain##
    Channel XiPatternChannel_FileSender: Directory C:
    work
    XIPattern1 does not exist#
    #2.0 #2010 05 11 01:57:10:002#+0300#Error#com.sap.aii.af.service.administration.impl.AlertingStatusListener#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124300000000000007B0#9722350000001755##com.sap.aii.af.service.administration.impl.AlertingStatusListener.run()#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI AF AAM AlertingStatusListener$AsyncAlerter@67c2a0d6_4768#Java##
    Unable to raise alert for fatal process status (adapter :, channel ): com.sap.aii.af.service.alerting.AlertingException: An alert with suppress information:  Error Code:  Error Category:  Error text: Configured source directory 'C:
    work
    XIPattern1' does not exist was suppressed!Host:w2k3x64_PI7_00|AdapterType:File|Sender::PI7_FileSystem_XIPattern1|Receiver::|Interface:XiPatternInterface1:http://sap.com/xi/XI/System/Patterns|MsgID:null#3#http://sap.com/xi/XI/System#File#7be7f5b9e06c30cc97f90f55a21e150e#
    #2.0 #2010 05 11 01:57:20:002#+0300#Error#com.sap.aii.adapter.file.File2XI#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124400000000000007B0#9722350000001755##com.sap.aii.adapter.file.File2XI.getFileList(File2XIConfiguration.FileSource[])#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI File2XI[XiPatternChannel_FileSender/PI7_FileSystem_XIPattern1/]_4769#Plain##
    Channel XiPatternChannel_FileSender: Directory C:
    work
    XIPattern1 does not exist#
    #2.0 #2010 05 11 01:57:20:017#+0300#Error#com.sap.aii.af.service.administration.impl.AlertingStatusListener#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124500000000000007B0#9722350000001755##com.sap.aii.af.service.administration.impl.AlertingStatusListener.run()#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI AF AAM AlertingStatusListener$AsyncAlerter@1cfe7a5d_4770#Java##
    Unable to raise alert for fatal process status (adapter :, channel ): com.sap.aii.af.service.alerting.AlertingException: An alert with suppress information:  Error Code:  Error Category:  Error text: Configured source directory 'C:
    work
    XIPattern1' does not exist was suppressed!Host:w2k3x64_PI7_00|AdapterType:File|Sender::PI7_FileSystem_XIPattern1|Receiver::|Interface:XiPatternInterface1:http://sap.com/xi/XI/System/Patterns|MsgID:null#3#http://sap.com/xi/XI/System#File#7be7f5b9e06c30cc97f90f55a21e150e#
    #2.0 #2010 05 11 01:57:30:002#+0300#Error#com.sap.aii.adapter.file.File2XI#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124600000000000007B0#9722350000001755##com.sap.aii.adapter.file.File2XI.getFileList(File2XIConfiguration.FileSource[])#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI File2XI[XiPatternChannel_FileSender/PI7_FileSystem_XIPattern1/]_4771#Plain##
    Channel XiPatternChannel_FileSender: Directory C:
    work
    XIPattern1 does not exist#
    #2.0 #2010 05 11 01:57:30:017#+0300#Error#com.sap.aii.af.service.administration.impl.AlertingStatusListener#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124700000000000007B0#9722350000001755##com.sap.aii.af.service.administration.impl.AlertingStatusListener.run()#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI AF AAM AlertingStatusListener$AsyncAlerter@d023a80_4772#Java##
    Unable to raise alert for fatal process status (adapter :, channel ): com.sap.aii.af.service.alerting.AlertingException: An alert with suppress information:  Error Code:  Error Category:  Error text: Configured source directory 'C:
    work
    XIPattern1' does not exist was suppressed!Host:w2k3x64_PI7_00|AdapterType:File|Sender::PI7_FileSystem_XIPattern1|Receiver::|Interface:XiPatternInterface1:http://sap.com/xi/XI/System/Patterns|MsgID:null#3#http://sap.com/xi/XI/System#File#7be7f5b9e06c30cc97f90f55a21e150e#
    #2.0 #2010 05 11 01:57:40:002#+0300#Error#com.sap.aii.adapter.file.File2XI#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124800000000000007B0#9722350000001755##com.sap.aii.adapter.file.File2XI.getFileList(File2XIConfiguration.FileSource[])#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI File2XI[XiPatternChannel_FileSender/PI7_FileSystem_XIPattern1/]_4773#Plain##
    Channel XiPatternChannel_FileSender: Directory C:
    work
    XIPattern1 does not exist#
    #2.0 #2010 05 11 01:57:40:002#+0300#Error#com.sap.aii.af.service.administration.impl.AlertingStatusListener#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124900000000000007B0#9722350000001755##com.sap.aii.af.service.administration.impl.AlertingStatusListener.run()#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI AF AAM AlertingStatusListener$AsyncAlerter@76395415_4774#Java##
    Unable to raise alert for fatal process status (adapter :, channel ): com.sap.aii.af.service.alerting.AlertingException: An alert with suppress information:  Error Code:  Error Category:  Error text: Configured source directory 'C:
    work
    XIPattern1' does not exist was suppressed!Host:w2k3x64_PI7_00|AdapterType:File|Sender::PI7_FileSystem_XIPattern1|Receiver::|Interface:XiPatternInterface1:http://sap.com/xi/XI/System/Patterns|MsgID:null#3#http://sap.com/xi/XI/System#File#7be7f5b9e06c30cc97f90f55a21e150e#
    #2.0 #2010 05 11 01:57:50:002#+0300#Error#com.sap.aii.adapter.file.File2XI#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124A00000000000007B0#9722350000001755##com.sap.aii.adapter.file.File2XI.getFileList(File2XIConfiguration.FileSource[])#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI File2XI[XiPatternChannel_FileSender/PI7_FileSystem_XIPattern1/]_4775#Plain##
    Channel XiPatternChannel_FileSender: Directory C:
    work
    XIPattern1 does not exist#
    #2.0 #2010 05 11 01:58:00:002#+0300#Error#com.sap.aii.adapter.file.File2XI#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124B00000000000007B0#9722350000001755##com.sap.aii.adapter.file.File2XI.getFileList(File2XIConfiguration.FileSource[])#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI File2XI[XiPatternChannel_FileSender/PI7_FileSystem_XIPattern1/]_4777#Plain##
    Channel XiPatternChannel_FileSender: Directory C:
    work
    XIPattern1 does not exist#
    #2.0 #2010 05 11 01:58:00:002#+0300#Error#com.sap.aii.af.service.administration.impl.AlertingStatusListener#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#000C293D9117124C00000000000007B0#9722350000001755##com.sap.aii.af.service.administration.impl.AlertingStatusListener.run()#J2EE_GUEST#0##488CE8105C4F11DF9D42000C293D9117#488ce8105c4f11df9d42000c293d9117#488ce8105c4f11df9d42000c293d9117#0#XI AF AAM AlertingStatusListener$AsyncAlerter@37d6d40_4778#Java##
    Unable to raise alert for fatal process status (adapter :, channel ): com.sap.aii.af.service.alerting.AlertingException: An alert with suppress information:  Error Code:  Error Category:  Error text: Configured source directory 'C:
    work
    XIPattern1' does not exist was suppressed!Host:w2k3x64_PI7_00|AdapterType:File|Sender::PI7_FileSystem_XIPattern1|Receiver::|Interface:XiPatternInterface1:http://sap.com/xi/XI/System/Patterns|MsgID:null#3#http://sap.com/xi/XI/System#File#7be7f5b9e06c30cc97f90f55a21e150e#

    Hi,
    Use this as a source directory mention the \ at last "C:
    work
    XIPattern1\"
    This doesn't help me. But later I give a permisson to the directory for everyone group. This time PI process worked and processed file.
    Thanks.
    Altug

  • Configured source directory does not exist

    Hi Guys,
    I had configured a sender file adapter and when i check the CC monitoring it gives the message : Configured source directory '/usr/sap/NRD/SYS/global' does not exist. But the directory is in the AL11 of R/3 application server. Iam using the NFS in the File Adapter Communication channel.
    Can anyone throw some light reagrding the error.
    Thanks,
    Kittu.

    Kittu,
    1. With NFS , XI server can acccess only folders available on its OWN local path. It cannot access the Path of your R3 machine. The XI server is looking for the path on its own directories and it is not finding the same.
    One option is to mount your Drive on the XI server to some folder. Not something I
    would recommend thought.
    2. The better thing to do would be,
    a) place the file on the XI 's some folder ( you would need a local directory access to the server) or some program to upload the file to the server.
    b ) Use FTP. Look into this blog by Shabrish for how to set up a FTP ion your Local Desktop and make XI access the same,
    /people/shabarish.vijayakumar/blog/2006/08/01/along-came-a-file-adapter-mr-ftp-and-rest-of-the-gang
    Regards
    Bhavesh

  • File Adapter to iSeries IFS "Configured source directory does not exist"

    Good day, All
    We are using PI 7.1
    I need the PI file adapter to pull a file off of an iSeries(AS400) IFS folder directory.
    I'm able to configure the file adapter to pull off files from the PI server C and D drives.
    I'm able to configure the file adapter to pull off files from other network drives.
    But the iSeries IFS folder keeps coming back "does not exist".
    I've configured the Source Directory with / and with \ and it doesn't help.
    I am able to navigate to the folder while logged into the PI server as the server admin.
    I've tried mapping a drive on the server to the IFS folder but that doesn't work either.
    Please help!!!
    I've wasted too much time trying different settings on this already.
    Any assistance would be greatly appreciated.
    Thanks,
    Chad

    Dear Chad,
    Please go through the following SDN link :
    - Configured source directory .... does not exist was suppressed
    give the write permisson to the directory for everyone group and check if that helps.
    Also, kindly go through the following links :
    1) http://wiki.sdn.sap.com/wiki/display/XI/TroubleshootingtheFile+Adapter (point 2)
    2) Not able to read files from Windows directory to Unix Server using NFS
    which might give some hints in solving your issue.
    Best Regards
    Nishwanth

  • Error :  java:6: package com.crystaldecisions.sdk.framework does not exist

    Hi All,
    I am using BO XI R2 version.
    I am facing issues with BOE Java SDK web application.
    In this application, I have just by-passed login page(jsp page) and logout from BO. But, it is throwing errors as mentioned below:
    Generated servlet error:
    E:\BusinessObjects\Tomcat\work\Catalina\localhost\_\org\apache\jsp\BO_005fHello_005fWorld\login_jsp.java:6: package com.crystaldecisions.sdk.framework does not exist
    import com.crystaldecisions.sdk.framework.CrystalEnterprise;
    Application gives errors for these two packages:
    package com.crystaldecisions.sdk.framework
    package com.crystaldecisions.sdk.exception
    Can anyone please tell me the solution?
    From where I can get the jar files to resolves these problems?
    I tried to search these jar files in BO installation folder but was not able to get.
    Can anyone tell the exact folder path for these jar files, if it is there.
    Or any link to download jar files.
    Thanks in advance.

    Hello ,
    -In order to run your application, please copy the Business Objects JAR files from the installed location.
    -For example : If you have installed Business Objects on C:
    then , go to the path :
    C:\Program Files\Business Objects\common\3.5\Java\Lib and copy all the Jar files from that location including JAR files that are present in the external folder.
    -Paste these JAR files inside lib folder of your application.
    -The class com.crystaldecisions.sdk.framework comes under cesession.jar
    Thanks,
    Chinmay

  • WF Configuration assistant Error (Table or view does not exist)

    Hi
    I'm trying to configure a fresh owf_mgr schema on my new 11gr2 database using configuration assistant 2.6.4.0.0.
    The assistant connects but is not able to continue. The error is: java.sql.SQLException: ORA-00942: table or view does not exist.
    I don't find anything useful in the log file though.
    I previously did the same thing on a 11gr2 db and it went all nice and good.
    Any ideas what table or view does the wizard mean?
    Thank you in advance.

    Hi
    I'm trying to configure a fresh owf_mgr schema on my new 11gr2 database using configuration assistant 2.6.4.0.0.
    The assistant connects but is not able to continue. The error is: java.sql.SQLException: ORA-00942: table or view does not exist.
    I don't find anything useful in the log file though.
    I previously did the same thing on a 11gr2 db and it went all nice and good.
    Any ideas what table or view does the wizard mean?
    Thank you in advance.

Maybe you are looking for

  • How to copy and paste the solution files of SharePoint 2010 from one machine to another machine?

    Hi, I was working with SharePoint 2010  in one of my Virtual machines.Now that the lease for my Virtual Machine is going to expire, I want to shift the entire contents of the project to another machine (local) with SharePoint 2010. Also, I want the p

  • No "goto" menu on nokia 6120

    I have recently upgraded my phone from a 6230i to a 6120, which is all in all a great phone but I miss very much the goto menu on one of the selection keys. I know you can set up the "active standby" shortcuts but have found out that it is kinda clum

  • Wait(ms) becomes highly erratic...!?

    I've got a complex data acquisition VI that runs for days on end. Recently, it had been running for 12+ days and had accumulated more than 70,000 data points when something impossible started happening. One of the things this VI does is sequence some

  • Creating App for Client

    hi there, i'm currently developing my first iPhone/iPad app for a client. when publishing/releasing it in the app store i do not want my name to appear as the seller but the client's name. do i need to create an iPhone/iPad developer account for the

  • About status display on CSL page in E-recruiting

    On the candidate short list page, is the status of each candidate referring to candidacy status or application status defaultly.  Also, what are default activities for changing status of candidacy? thanks.