ERROR: AU incorrectly reports Dynamic Configuration capability (bus count i

Hi'
I can't seem to access my East/West Colossus samples in logic. I call up a new session, slecet software instruments, go to where Audio Units instruments are on your channel strip. Colossus does not show up. It worked before.
I wanted to go back to using tiger it seemed to work better so I tried to installed that but had problems doing so. I then installed 10.5 back to the way I had it before when all was fine. So I install 10.5 again went well. In stalled Logic/pro went well. Installed East/west colossus.
Audio Unit Mangers states Successful valuation everything passes But This Error message.
ERROR: AU incorrectly reports Dynamic Configuration capability (bus count is not writable)
Does anyone have an idea whats going on
Thanks
JodyG

Hi'
I can't seem to access my East/West Colossus samples in logic. I call up a new session, slecet software instruments, go to where Audio Units instruments are on your channel strip. Colossus does not show up. It worked before.
I wanted to go back to using tiger it seemed to work better so I tried to installed that but had problems doing so. I then installed 10.5 back to the way I had it before when all was fine. So I install 10.5 again went well. In stalled Logic/pro went well. Installed East/west colossus.
Audio Unit Mangers states Successful valuation everything passes But This Error message.
ERROR: AU incorrectly reports Dynamic Configuration capability (bus count is not writable)
Does anyone have an idea whats going on
Thanks
JodyG

Similar Messages

  • Firefox sync error server incorrectly configured

    The very first time I loaded firefox on my laptop (which i bought only a couple months ago) the syncing worked just fine.
    After i dont know how much time i started getting errors that the syncing was failing. I tried to reconfigure the syncing properties but started getting the error server incorrectly configured. I scoured the net looking for answers following all the troubleshooting that I could find.
    One thing I notice is that when i choose I have an account it is supposed to load a key that i can use on my already synced devices but that never actually populates and it immediately kicks me to the user name password and sync key screen. This issue remained throughout the duration of all the troubleshooting below. Additionally I cant even create a new sync account on that pc as it fails everytime.
    I have done the following in a effort to resolve this issue.
    I created a new sync account using one of my other pcs
    I added a pc that was never on the sync account to it to verify it does it fact sync
    i uninstalled firefox 4 separate times deleting all the folders and even as far as the registry keys
    i tried using a lan connection vs wifi
    i updated windows
    My computer;
    I have a lenovo ideapad with windows 7 and 8 gigs of ram with a amd processor
    My LOG:
    1308530082634 Service.Main INFO Loading Weave 1.7b1pre
    1308530082645 Engine.Bookmarks DEBUG Engine initialized
    1308530082646 Engine.Forms DEBUG Engine initialized
    1308530082646 Engine.History DEBUG Engine initialized
    1308530082647 Engine.Passwords DEBUG Engine initialized
    1308530082647 Engine.Prefs DEBUG Engine initialized
    1308530082647 Engine.Tabs DEBUG Engine initialized
    1308530082648 Engine.Tabs DEBUG Resetting tabs last sync time
    1308530082648 Service.Main INFO Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0.1) Gecko/20100101 Firefox/4.0.1
    1308530082651 SyncKeyBundle INFO SyncKeyBundle being created for
    1308530086186 Net.Resource DEBUG GET cached: 0
    1308530086186 Service.JPAKEClient ERROR Error acquiring channel ID. Server responded with HTTP 0
    1308530086187 Service.JPAKEClient DEBUG Aborting...
    1308530123488 Service.Main INFO Logging in user mkfrlxkbrzyhl4glxtgruf3z7t6xlrm3
    1308530123489 Service.Main DEBUG Finding cluster for user mkfrlxkbrzyhl4glxtgruf3z7t6xlrm3
    1308530125046 Net.Resource DEBUG GET cached: 0
    1308530125047 Net.Resource DEBUG Status 0 in Resource.get: retrying once.
    1308530126636 Net.Resource DEBUG GET cached: 0
    1308530126636 Service.Main DEBUG cluster value = https://phx-sync061.services.mozilla.com/
    1308530126637 Service.Main DEBUG Caching URLs under storage user base: https://phx-sync061.services.mozilla.com/1.0/mkfrlxkbrzyhl4glxtgruf3z7t6xlrm3/
    1308530128303 Net.Resource DEBUG GET cached: 0
    1308530128303 Net.Resource DEBUG Status 0 in Resource.get: retrying once.
    1308530129607 Net.Resource DEBUG GET cached: 0
    1308530129642 Service.Main DEBUG Exception: Login failed: error.login.reason.server No traceback available
    1308530132819 Service.Main INFO Service reset.
    1308530132820 Engine.Clients DEBUG Resetting clients last sync time
    1308530132820 Engine.Bookmarks DEBUG Resetting bookmarks last sync time
    1308530132821 Engine.Forms DEBUG Resetting forms last sync time
    1308530132822 Engine.History DEBUG Resetting history last sync time
    1308530132823 Engine.Passwords DEBUG Resetting passwords last sync time
    1308530132825 Engine.Prefs DEBUG Resetting prefs last sync time
    1308530132825 Engine.Tabs DEBUG Resetting tabs last sync time
    1308530132826 CollectionKeys INFO Clearing CollectionKeys...
    the couple of lines that stand out to me are
    1308530086186 Net.Resource DEBUG GET cached: 0
    1308530086186 Service.JPAKEClient ERROR Error acquiring channel ID. Server responded with HTTP 0
    appears it is trying to check some cache or something and cant find it so it just gives up....
    please help I have spent countless hours trying to fix this.

    One addition note: in my own situation, I checked my about:config and saw my sync server's URL (https://scl2-sync42.services.mozilla.com/ ). I entered it into my address bar and got the following message:
    "server issue: database is not healthy"
    (quotes were included) I've seen no mention of such a phrase in a Google search, so I assume that no one else has reported any such thing.
    Going into my about:config, I deleted the URL and it synced just fine!

  • Getting an error in Dynamic Configuration

    Hi Guys,
    I need to dynamically post the file into different directories based on the file in the source payload.
    In Receiver File Communication Channel
    Target Directory : *
    Filename : *
    Checked the ASMA Attributes for filename and directory
    Iam refering this weblog
    /people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping
    In the mapping
    <filename> ---> UDF --> topnode of target message.
    My UDF is as below
    public String Directory(String a,Container container){
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key  = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    DynamicConfigurationKey key1 = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "Directory");
    String FileName = conf.get(key);
    FileName = a;
    conf.put(key, FileName);
    String Directory = conf.get(key1);
    Directory = "/SAPInterface/XI/PPD/DHX/out";
    conf.put(key1, Directory);
    return " ";
    But in runtime(moni) iam getting  error as
    com.sap.aii.af.ra.ms.api.MessagingException: The Adapter Message Property 'FileName' was configured as mandatory element, but there is no 'DynamicConfiguration' element in the XI Message header: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: The Adapter Message Property 'FileName' was configured as mandatory element, but there is no 'DynamicConfiguration' element in the XI Message header
    Please suggest me how to correct this.
    Thanks
    Srinivas

    Hi Srinivas,
    You said you are having dynamic directories to post the file. But I see you hardcorded or put constant for directory which is /SAPInterface/XI/PPD/DHX/out. I think you need to put //SAPInterface/XI/PPD/DHX/out.
    Try this in udf:
    public String Directory(String a,Container container){
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key  = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    DynamicConfigurationKey key1 = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "Directory");
    String FileName = conf.get(key);
    FileName = a;
    conf.put(key, FileName);
    Directory = "//SAPInterface/XI/PPD/DHX/out";
    conf.put(key1, Directory);
    return " ";
    Put FileName and Directory in file name and directory paramters in receiver communication cahnnel and cehck.
    Regards,
    --Satish

  • Report Viewer Configuration Error

    Hi,
    I manage a TFS 2010 Server that makes heavy use of Reporting Services, and I have a user that reported the following error
    when attempting to open a report in the Microsoft Visual Studio Report Viewer:
    Report Viewer Configuration Error
    The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add <add verb="*" path="Resevred.ReportViewerWebControl.xsd" type = "Microsoft.Reporting.WebForms.HttpHandler, ReportingServicesWebServer,
    Version=10.0.0.0, Culture=neutral, PublicKeyToken=################" /> to the system.web/httpHandlers section of the web.config file, or add <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*"
    path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, ReportingServicesWebServer, Version=10.0.0.0, Culture=neutral, PublicKeyToken=################" /> to the system.webServer/handlers section for
    Internet Information Services 7 or later.
    Has anyone seen this error before, or have any advice on finding a solution?
    Thank you.

    Hi HealthServices3300,
    You can try to install "Microsoft Report Viewer 2010 Redistributable Package" on your server to check if it works for you.
    For the web.config info, it's for web application. And I'd like to know how did you create the report, and whether the report is for a web app or reporting service. From the error message and report, seems it's not a TFS issue. If it's SSRS project
    issue, please post this issue to
    this forum. If it's a report viewer control issue, you can post this issue in
    this forum for a professional response. After that, please update this thread with the new thread link. Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SQL Server Reporting Services Configuration Error(Subscription)

    I have just deployed a new project on the server and i can successfully run report from the BI Site; [Server Name]\Reports and no issue there. But when i try to create Subscription for the same report; I am trying File Share and it throws error as given
    below. Do i have to configure anything for subscription in the Reporting Services Configuration Tool???
    I also have few questions regarding Configuration;
    What account should i use for the Deployed Data Source on the Server? A valid SQL Server Account I assume!!!
    What account should i use for the Execution Account (For Unattended Operations) ? A valid Windows Account? or SQL Server account?
    What account should i use for the File Share Subscription (Credentials used to access the file share:)? A Valid Windows Account with permission for that folder?
    Here is the error I am getting in the log file.. 
    ReportingServicesService!library!b!06/17/2010-09:35:04:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error. See the report server log files for
    more information., AuthzInitializeContextFromSid: Win32 error: 110;
     Info: Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error. See the report server log files for more information.
    ReportingServicesService!library!b!06/17/2010-09:35:04:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    ReportingServicesService!subscription!b!06/17/2010-09:35:04:: Microsoft.ReportingServices.Diagnostics.Utilities.RSException: The report server has encountered a configuration error. See the report server log files for more information. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. See the report server log files for more information.
       at Microsoft.ReportingServices.Authorization.Native.GetAuthzContextForUser(IntPtr userSid)
       at Microsoft.ReportingServices.Authorization.Native.IsAdmin(String userName)
       at Microsoft.ReportingServices.Authorization.WindowsAuthorization.IsAdmin(String userName, IntPtr userToken)
       at Microsoft.ReportingServices.Authorization.WindowsAuthorization.CheckAccess(String userName, IntPtr userToken, Byte[] secDesc, ReportOperation requiredOperation)
       at Microsoft.ReportingServices.Library.Security.CheckAccess(ItemType catItemType, Byte[] secDesc, ReportOperation rptOper)
       at Microsoft.ReportingServices.Library.RSService._GetReportParameterDefinitionFromCatalog(CatalogItemContext reportContext, String historyID, Boolean forRendering, Guid& reportID, Int32& executionOption, String& savedParametersXml,
    ReportSnapshot& compiledDefinition, ReportSnapshot& snapshotData, Guid& linkID, DateTime& historyOrSnapshotDate, Byte[]& secDesc)
       at Microsoft.ReportingServices.Library.RSService._GetReportParameters(ClientRequest session, String report, String historyID, Boolean forRendering, NameValueCollection values, DatasourceCredentialsCollection credentials)
       at Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext reportContext, ClientRequest session, Warning[]& warnings, ParameterInfoCollection& effectiveParameters)
       at Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext reportContext, ClientRequest session, Warning[]& warnings, ParameterInfoCollection& effectiveParameters, String[]& secondaryStreamNames)
       at Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
       at Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
       --- End of inner exception stack trace ---
       at Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
       at Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService rs, CatalogItemContext reportContext, ClientRequest session, JobType type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters, String[]&
    secondaryStreamNames)
       at Microsoft.ReportingServices.Library.ReportImpl.Render(String renderFormat, String deviceInfo)
       at Microsoft.ReportingServices.FileShareDeliveryProvider.FileShareProvider.SaveReport(Notification notification, SubscriptionData data)
       at Microsoft.ReportingServices.FileShareDeliveryProvider.FileShareProvider.Deliver(Notification notification)
    I also get following error when I try to create email Subscriptoin
    w3wp!processing!6!6/17/2010-09:58:53:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Cannot create a connection to data source 'EU_Database'., ;
     Info: Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Cannot create a connection to data source 'EU_Database'. ---> System.Data.SqlClient.SqlException: Could not obtain information about Windows NT group/user 'THRY\RPUser',
    error code 0x6e.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.ReportingServices.DataExtensions.SqlConnectionWrapper.ImpersonateUser()
       at Microsoft.ReportingServices.DataExtensions.SqlConnectionWrapper.Open()
       at Microsoft.ReportingServices.ReportProcessing.ReportProcessing.ReportRuntimeDataSourceNode.OpenConnection(DataSource dataSourceObj, ReportProcessingContext pc)
       --- End of inner exception stack trace ---
    Thanks,
    RP

    Hi RP,
    For your first issue "cannpt create subscriptions", after analyzing the error logs, it seems to be caused to the service account for the Reporting Services service does not have proper permissions to invoke the WIN32 API.
    The SQL Server Reporting Services invokes the Win32 API to impersonate user's permissions to write files to shared folder or call COM+ components.
    In this case, we can change the service account to a account has permissions to invoke the Win32 API to solve the issue. For example, we can change the account to be NetworkService or LocalSystem:
     1. Backup the encryption key using Reporting Serivces Configuration Manager.
     2. Change the service account using Reporting Serivces Configuration Manager.
     3. Restore the encryptiong key using Reporting Serivces Configuration Manager.
    For your others questions, please see the following inline reply:
     --What account should i use for the Deployed Data Source on the Server? A valid SQL Server Account I assume!!!
     The account should be a Windows account or the SQL Server account, that has read permissions in the source data base at least.
     --What account should i use for the Execution Account (For Unattended Operations) ? A valid Windows Account? or SQL Server account?
     The account must be a Windows user account. For best results, choose an account that has read permissions and network logon permissions to support connections to other computers. It must have read permissions on any external image or data file that you
    want to use in a report. Do not specify a local account unless all report data sources and external images are stored on the report server computer. Use the account only for unattended report processing.
     --What account should i use for the File Share Subscription (Credentials used to access the file share:)? A Valid Windows Account with permission for that folder?
     You are right. It must be a Windows account, which has permissions to access and write files to the shared folder.
    For more information, please see:
    Configuring the Report Server Service Account:
    http://msdn.microsoft.com/en-us/library/ms160340.aspx
    Execution Account (Reporting Services Configuration):
    http://msdn.microsoft.com/en-us/library/ms181156.aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • Error in mappingwith dynamic configuration using udf

    Hi All,
    Good Morning,
    i am working with ABAP proxy to file scenarion but here according my client requirement i am using udf for file dynamic configuration.
    In mapping, i mapped the field from "Filename" to message type tag(receiver file header)  "/ns0:MTxxxxxxDataFile". between there two fields i am using the following udf for dynamic configuration. but i got error after testing with test data in mapping that is also mentioned below.
    plz help me to solve the error. i will be wait for ur immediate response this sis very urgent.
    very thankfull to immediate response.
    UDF:
    i am not puting any packages here.
    public String putFileNameInHeader1(String a,Container container){
    //write your code here
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File", "FileName");
    conf.put(key, a);
    return "";
    ERROR:
    12:21:30 Start of test
    Compilation of MMSAPLegacySalesDataToCOGNOS successful Runtime exception during processing target field mapping /ns0:MTCOGNOSLegacySalesDataFile. The message is: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._MMSAPLegacySalesDataToCOGNOS_ method putFileNameInHeader1$[cd00000038, com.sap.aii.mappingtool.tf3.rt.Context@f300f30] com.sap.aii.mappingtool.tf3.MessageMappingException: Runtime exception during processing target field mapping /ns0:MTCOGNOSLegacySalesDataFile. The message is: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._MMSAPLegacySalesDataToCOGNOS_ method putFileNameInHeader1$[cd00000038, com.sap.aii.mappingtool.tf3.rt.Context@f300f30] at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:350) at com.sap.aii.mappingtool.tf3.AMappingProgram.start(AMappingProgram.java:401) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:142) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:105) at com.sap.aii.ibrep.server.mapping.ServerMapService.transformInternal(ServerMapService.java:431) at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:169) at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0.execute(MapServiceRemoteObjectImpl0_0.java:301) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0p4_Skel.dispatch(MapServiceRemoteObjectImpl0_0p4_Skel.java:146) at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:313) at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199) at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(AccessController.java:215) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Root Cause: com.sap.aii.utilxi.misc.api.BaseRuntimeException: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._MMSAPLegacySalesDataToCOGNOS_ method putFileNameInHeader1$[cd00000038, com.sap.aii.mappingtool.tf3.rt.Context@f300f30] at com.sap.aii.mappingtool.tf3.rt.FunctionWrapper.calculateCurrentValue(FunctionWrapper.java:83) at com.sap.aii.mappingtool.tf3.rt.FunctionWrapper.cacheValue(FunctionWrapper.java:59) at com.sap.aii.mappingtool.tf3.rt.FunctionWrapper.gotoNextContext(FunctionWrapper.java:37) at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:252) at com.sap.aii.mappingtool.tf3.AMappingProgram.start(AMappingProgram.java:401) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:142) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:105) at com.sap.aii.ibrep.server.mapping.ServerMapService.transformInternal(ServerMapService.java:431) at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:169) at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0.execute(MapServiceRemoteObjectImpl0_0.java:301) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0p4_Skel.dispatch(MapServiceRemoteObjectImpl0_0p4_Skel.java:146) at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:313) at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199) at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(AccessController.java:215) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Root Cause: java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at com.sap.aii.mappingtool.tf3.rt.FunctionWrapper.calculateCurrentValue(FunctionWrapper.java:75) at com.sap.aii.mappingtool.tf3.rt.FunctionWrapper.cacheValue(FunctionWrapper.java:59) at com.sap.aii.mappingtool.tf3.rt.FunctionWrapper.gotoNextContext(FunctionWrapper.java:37) at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:252) at com.sap.aii.mappingtool.tf3.AMappingProgram.start(AMappingProgram.java:401) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:142) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:105) at com.sap.aii.ibrep.server.mapping.ServerMapService.transformInternal(ServerMapService.java:431) at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:169) at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0.execute(MapServiceRemoteObjectImpl0_0.java:301) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0p4_Skel.dispatch(MapServiceRemoteObjectImpl0_0p4_Skel.java:146) at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:313) at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199) at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(AccessController.java:215) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Caused by: java.lang.NullPointerException at com.sap.xi.tf._MMSAPLegacySalesDataToCOGNOS_.putFileNameInHeader1$(_MMSAPLegacySalesDataToCOGNOS_.java:853) ... 26 more RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ns0:MTCOGNOSLegacySalesDataFile. The message is: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._MMSAPLegacySalesDataToCOGNOS_ method putFileNameInHeader1$[cd00000038, com.sap.aii.mappingtool.tf3.rt.Context@f300f30]
    12:21:35 End of test

    Hi Sai,
    First of all, this UDF is pretty well knaown so there is no error in this UDF or your configuration for this UDF. I can suggest you something that at the time of configuration in IR, give a context object for that particular field of that file and then use the contect object name everywhere to refer that field. and also check the message type config for correction for my sake.
    There is also a possibility that of the input data. i guess you are sending the input file from Cognos and you making the file and putting some where in XI directory and want these to process something and generate with some new desired filename. Check the input because i guess its finding NOTHINg as an Input. check once again.
    Hope this will help you.
    Regards
    Aashish Sinha
    PS : Reward points if helpful.

  • Dynamic Configuration Error

    Hi All,
    I have tried a simple scenario following the blog:
    /people/jin.shin/blog/2007/04/27/sap-netweaver-xi-variable-substitution-with-adapter-specific-message-attributes-via-dynamicconfigurationbean
    I tried just the way as mentioned but getting error as "write property message.interface from key (http://sap.com/xi/XI/System/File)FileName with value null; "
    The Filename is not populated from the source file name.
    Can somebody please tell me what Iam missing.
    Aslo in the blog, its mentined as Dynamic Configuration under XI  Message Header, which  is not displayed for me ..
    Please help me in resolving this issue.
    Thanks

    Hi Rajesh,
    I tried as you have suggested but still same issue.
    My file is getting picked up but as the file name is not filled by Adapter module, Im not getting the output file generated.
    when checked in Runtime workbench, communication channel got error as"
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: The Adapter Message Property 'FileName' was configured as mandatory element, but was not supplied in the XI Message header: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: The Adapter Message Property 'FileName' was configured as mandatory element, but was not supplied in the XI Message header"
    Thanks

  • Dynamic Configuration Error:  Exception:[java.lang.IllegalArgumentException

    Hi All,
    I am using dynamic configuration to put a string to the message header. i have created a tilde delimited string with the length more than 200(length=928). During mapping i am using dynamic configuration to put this in SOAP header. But everytime i execute scenario i get an error:
    "com.sap.aii.mappingtool.tf7.MessageMappingException: Runtime exception when processing target-field mapping; root message: Exception:[java.lang.IllegalArgumentException: Value is too long (928/200): "
    Is there a limit to the length of the string that can be placed in the dynamic configuration ?
    Please help.
    Regards,
    Meenakshi Pradhan

    meenakshipradhan wrote:>
    > "com.sap.aii.mappingtool.tf7.MessageMappingException: Runtime exception when processing target-field mapping; root message: Exception:[java.lang.IllegalArgumentException: Value is too long (928/200): "
    >
    I think the above error does say about that..!! Try putting data like 201 chars and the 200 chars, then see what happens.
    VJ

  • Error Message through Dynamic Configuration length problem

    HI All,
    We are trying to raise an error message with the help of Dynamic configuration in the Message mapping.
    The need is to populate the message with certain variables.
    However we are facing the problem that the message is getting truncated beyond a certain length.(Around 60 characters)
    Similar custom messages in other interfaces are working fine for messages up to 100 characters.
    Question:
    1. What could be the maximum length for an error message in case of mapping failure?
    2. What could be limiting the length of the message in our case?
    Thank you for looking into this.
    Regards,
    Ankesh

    hi Ankesh,
    yes, there is limit length, see this oss [Note 974481 - XI Adapter Framework DynamicConfiguration Module|https://service.sap.com/sap/support/notes/974481]
    regards.
    Mickale

  • Disk utility reports failing hard drive with error code STF/8/3:2 ATA BUS 0

    My imac G5 (running Tiger) suddenly decided not to boot past the grey apple screen with the spinning wheel. I ran the disk utility and received error code STF/8/3:2 ATA BUS 0 MASTER on the mass storage test. I tried to run repair and only received a message "fatal hard drive error etc... back up, recover asap... I could not access the disk so I connected my new MacBook Pro by firewire in target disk mode. My HD shows up however, "nothing" shows up under when my "user" file. All I care about saving is my iphoto library. Everything else is trivial. Can someone Please help me? Is there any way I will be able to save this file?
    Message was edited by: Elizabeth Burson

    Welcome to Discussions - you can try DiskWarrior and see if it can retrieve some of your data. You can also take it in to Apple with an external fire wire drive you have purchased elsewhere (cheaper) and see if they can transfer the data. You can then install the external into your computer.

  • Unable to create Database in Reporting Service Configuration

    Hi,
    We have SQL Server 2012 in our environment. I want to enable monitor report in Lync 2013. i have separate Lync sql instance.
    I am trying to configure new database in Reporting Service Configuration manager in report Server database Configuration wizard.
    while testing connection getting below error.
    could not connect to server:A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to
    allow remote connections.(provider:Named Pipes provider,error:40-could not open a connection to SQL Server)
    kindly help to resolve issue.

    Hi Rakesh,
    Please check the below details information:
     Check the ReportServer db is present in the Database engine.
    Go and check the report server configurations (go here:Start -> All Programs -> Microsoft sql server 2012-> Configuration Tools -> Report Service Configuration Manager
    check all the connections if still not working. then create a new reporting services Database. While creating it make sure you select native mode, if you want to create a share point services then select share point integration mode.
    If the above didn't work, Please check which port is used for SQL Server database engine from SQL Server Configuration Manager.
    If we are using dynamic port, please make sure:
    SQL Server Browser service is running.
    UDP 1434 port is enabled in the firewall.
    If we are using static port, please make sure the port is enabled in the firewall.
    Below is useful link about how to troubleshoot connection issue:
    http://blogs.msdn.com/sql_protocols/archive/2005/12/22/506607.aspx
    https://msdn.microsoft.com/en-us/library/ms156468.aspx?f=255&MSPPError=-2147217396
    Similar thread for your reference:
    http://www.mssqltips.com/sqlservertip/2340/resolving-could-not-open-a-connection-to-sql-server-errors/
    If you have any more questions, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Error in Solar Eval for Configuration anaylsis

    Hi,
    While analysis of configuration objects (COFG), through solar_eval - >assignments->configuration , selecting the complete project structure,
    the output  is given by system is incorrect.
    For some of the nodes, the system is showing each configuration object 13 times.
    But when i restrict the structure for the particular node , the output is shown correctly.
    Anyone faced this, help is appreciated.
    Regards,
    Giridhar

    What is your service pack level? We are also experiencing some errors with this report. Specifically, for selection variants we have created, new structure nodes aren't being included in the report even though the option to include the complete structure has been selected. We are SP11 and will upgrade to see if this solves the problem.

  • XML query, DTD error on SSRS report

    Hi,
    I am trying to create a SSRS 2012 report with XML Data source, I sucessfull pass the connection string, but I am unsucessfull can't get the query. getting DTD is prohibited in this XML document.
    Please Help,
    thanks.
    angelatino2013

    Hi angelatino2013,
    Based on my research, this error can be caused by one of the following factors:
    Copied the wrong URL into the connection string, so it trying to access site with the improper data on it.
    We are using some incorrect parameter values in the connection string of data source.
    Insufficient session timeout or query timeout for the datasets.
    Out of memory exception of the Reporting Services.
    To resolve the issue, please try the following suggestions:
    Please make sure that we have typed the right URL with correct parameter values into the connection string.
    Increase the query timeout for each dataset in the report to 3600 seconds.
    Increase the maximum Reporting Services memory usage by modifying the WorkingSetMaximum configuration of the RSreportserver.config file.
    Optimize the dataset query as well as the report structure to avoid the possible OutOfMemoryexception.
    References:
    http://social.technet.microsoft.com/Forums/en-US/1b3448dc-11cd-4125-adb4-ae856e120e82/error-with-ssrs-reports-with-an-xml-datasource?forum=sqlreportingservices
    http://social.technet.microsoft.com/Forums/en-US/11b1a418-7c70-4318-9535-6a60dd26539d/dtd-is-prohibited-in-this-xml-document-systemxml-error-while-accessing-xml-file-of-form-library?forum=sqlreportingservices
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Publish error - error determining the .Mac publish configuration values

    I have been unable to publish a website refresh for the past 2 weeks (not since the first time I tried). When I attempt to publish, it hangs at the "preparing to publish" window and then gives the error message "There was an error determining the .Mac publish configuration values. Please try again in a few minutes." It does not then release this error window to close until it pops open another window telling me how many days I have left on my trial .mac account. It has the correct number of days so I assume that it is communicating with the .mac server at some level. My internet connection is via satellite. This is my only option as I am shipboard. Update: I was able to able to connect via cable recently and, much to my surprise (and frustration), everything posted fine. I have the most recent updates for all software including iWeb running on a MacBook 2GHz, 2GB ram and 28GB free harddisk(iWeb 1.1.2 and OS X 10.4.8 build 8L2127 ). My internet connectivity is fine for other applications and for other aspects of iWeb. The primary reason I purchased the MacBook was to use the iWeb and its publishing capability. I note from other threads that this is an established problem with iWeb and satellite internet connections. Has there been any reliable fix established for this problem? The last thread I could find was last summer (and nothing from Apple), seemingly enough time for Apple (or the creative members of AppleNation) to address it. Given the high cost and sporadic reliability of shipboard internet, I'm hoping to use .mac to host site because of the incremental update capability. If there hasn't been a reliable fix determined, can anyone recommend a hosting site/method that does work reliably with iWeb and a satellite internet connection. I'm completely in the dark how this would work. This is my first website experience.
    Any and all help would be greatly appreciated. I already sent out the .mac website in my Christmas letter so I'm fairly commited (but could recover, if unworkable)
    Thanks mucho!
    MacBook 2GHz, 2GB   Mac OS X (10.4.8)   shipboard satellite internet connection

    Now that would be cool...if we could figure out how to tell iWeb to be a little more patient with network latency! From all the reports here, it seems that if anything, iWeb has gotten more stringent in its network latency tolerance over the various little updates.
    I personally use .Mac for my iWeb hosting right now... But you are right... if you could find some alternate place to host your iWeb pages, then you can use any FTP program to do the uploading.... and maybe be more successful from the shipboard internet access.
    You might take a look at some of the free webhosts available... http://www.free-webhosts.com/ I have had pretty good experience with http://www.hostfreeweb.com/.

  • FRM-92101 error while running report from a button or menu

    Hi All,
    I am getting the error FRM-92101 while running report without parameter from a button or menu. I am using Developer Suit 10g. I get the error as it shows there has some configuration problem in my form. Will you please help me anyone how can i solve the problem. My previous forms running very well both with parameter and without parameter.
    Arif

    Hello Sir,
    Thanks for your cooperation. I have solved my problem by myself. The fact was that, when i tried with the following code which made my report---
    SELECT br.bid, br.bname, br.branchtxnstatus, dif.difference
    FROM branch br,
    (SELECT gladbrid branchid,
    SUM
    (CASE
    WHEN ga.gl_acc_categry IN ('L', 'I')
    THEN gd.gladbalance
    ELSE -1 * gd.gladbalance
    END
    ) AS difference
    FROM glaccount ga, glaccountdetail gd
    WHERE ga.glid = gd.gladglid
    GROUP BY gladbrid) dif
    WHERE dif.branchid = br.bid AND br.branchtxnstatus = :Br_Status
    and dif.difference!=0
    ORDER BY br.bid;
    and the code against the button or menu item is---
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('ASSET');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://192.168.0.21:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    Clear_message;
    END;
    Clear_message;
    which has shown the error FRM-92101 and didn't run the report.
    In that case I have changed the query to run the report. first of all i create a view following the query and build the report using a simple select query. that's etc. my report running fine now.
    It is mentioned that there had no error on my codes.
    Arif

Maybe you are looking for

  • Pdf reader X has problems with small pdf and printer with post script driver

    Hi friends. I have installed new Reader X and then i saw that, when i print a very small pdf with about 50 kb and i print it on a Laserjet 4000 printer the printer has problem with the amount of data that reader 10 produces. When i install a Postscri

  • VGA to DVI ??

    Just bought a brand new Apple Cinema Display 20". I have a G4 Quickslilver and it doesn't have a DVI port. Will the monitor work with a cheap VGA to DVI connector. Apple support told me it wouldn't then told me it will. Everywhere else I look there d

  • Deployment descriptor Preferences

    Hi All Was just curious to know whether its possible to have multiple values for a deployment descriptor property at design time which allows me to select one value at run time. ( something like drop down ) It will be great if someone could let me kn

  • Color profile doesn't match print output

    Why do my prints come out much darker than they appear on the monitor? I edit in Adobe 5 and print from Lightroom 3  with monitor calibration (Spyder software), and ICC profiles for my Epson paper, printed on my Epson printer. 

  • Do u know how to write a few line of codes to create folder?

    hi all, I just need a few line of codes to create a folder in my directory. Can someone just write a few lines of codes to create a folder?Thanks! This is my unzip codes and I need to put these few lines of codes in the "/* */" part. If I didn't crea