Error while assigning agent

Hi,
I get following error msg when I try to assign agent during RCA setup
The assignment of server sapsrmqas201 to SMD Agent failed
Unexpected error during the server name assignation (sapsrmqas201) for agent sapsrmqas201.xxx.xxx.com
In setup wizard, I choose agent installed on that server and when I click on set button I get this msg.
Any idea on solution for this.
Regards,
Shyam

Hi
Do you able to see the SMD agent as green under agent admin in solman workcernter?
if so try to restart the agent and try to start the setup wizard again,
Might be the issue with smd connection with Solman? have you registered the SMD to central SLD?
Please refer to the Diagnostics Setup Guide 7.11.pdf in [http://service.sap.com/diagnostics |http://service.sap.com/diagnostics ]-> media library
there you find more information on how to set up the connection parameters that are used by the SMD Agent to connect to Solution Manager.
Thanks,
Jansi

Similar Messages

  • Error while Assigning database level role (db_datareader) to SQL login (Domain Account)

    Team,
    I got an error while creating a User for Domain Account. Below is the screen shot of the error (error : 15401)
    Database instance is on SQL 2000 SP3. ( I know it is out of support, But the customer is relutanct to upgrade)
    On Google search, i found below article which is best matching for this error
    http://support.microsoft.com/kb/324321
    I have follows each step of troubleshooting. But still the issue persists.
    Step 1. The login does not exist == The login is very much exist in the domain as i am able to add the same domain id to other database instances
    Step 2. Duplicate security identifiers == i have used this query to find duplicate SID
    /*  SELECT name FROM syslogins WHERE sid = SUSER_SID ('YourDomain\YourLogin') */
    But there was only one row returned with create date of today's.
    Error while Assigning database level role (db_datareader) to SQL login (Domain Account) 
    Step 3. Authentication failure == Domain is available. User is able to login on other servers via RDP connection.
    Step 4. Case sensitivity == Database collation is set to Case insensitivity. (CI)
    Other two 5. Local Accounts & 6. Name resolution == is not applicable to me.
    I tried other ways also.
    A. Creating login and providing permission in one go only = User account is not created
    B. Instead of GUI, use query to create login and provide required permission = Same error.
    Does anybody has faced any such situation
    Chetan

    See the below output
    srvid
    sid
    xstatus
    xdate1
    xdate2
    name
    password
    dbid
    language
    isrpcinmap
    ishqoutmap
    selfoutmap
    NULL
    0x010500000000000515000000A1F66E1BFC1DC75D26E72530A2B80400
    14
    20:25.9
    57:33.4
    UKBAA\LHRAPPMuttavarapuS
    NULL
    1
    us_english
    0
    0
    0
    Chetan

  • Error - ATTRIBUTE_IDOC_METADATA - EDI: Error while assigning IDoc number

    Hi,
    I'm attempting to create a simple interface which converts cutomer data from a flat file and loads it into a SAP enterprise system as an DEBMAS06 IDoc type. I am getting the error message Error - ATTRIBUTE_IDOC_METADATA - EDI: Error while assigning IDoc number in the XI message monitor.
    Has anyone come accross this error before and if so, what is the resolution???
    Thanks, in advance,
    Pete

    Hi Peter,
    did you fixed it?
    How did you?
    got the same problem
    Kind regards,
    Michael

  • Error while assigning Decimal Attribute to PA

    Hi,
    I am receiving an error while assigning a decimal attribute to the planning area. I am attaching the screen shot below . Can anybody shade some light on this error, what could be the reason ?
    Thanks in advance.
    Regards,
    Chandan

    One cannot have a decimal attribute as the 'attribute' in planning. A decimal attribute can always be marked as a key figure.
    For eg: Price. It cant be a attribute of planning area (like Plant, product).

  • Error: EDI: Error while assigning IDoc number

    Hi Everybody,
    using XI 3.0 on Linux 64 bit SLES9 with Oracle I got some probleme sending messages from mq series to sap:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!-- Call Adapter
    -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30"
    xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"
    SOAP:mustUnderstand="">
    <SAP:Category>XIAdapter</SAP:Category>
    <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_IDOC_METADATA</SAP:Code>
    <SAP:P1>EDI: Error while assigning IDoc number</SAP:P1>
    <SAP:P2 />
    <SAP:P3 />
    <SAP:P4 />
    <SAP:AdditionalText />
    <SAP:ApplicationFaultMessage namespace="" />
    <SAP:Stack>Error: EDI: Error while assigning IDoc number</SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    What is missing here?
    Kind regards,
    Michael

    Hi Jayakrishnan,
    thanks a lot for your answer.
    SM59 is working finde. In IDX1 I got the the correct RFC destination entered and a double click works fine also.
    The other way around R3 -> XI -> mq series is working fine. Here we are trying mq -> XI -> R3 and it stops sending from XI to R/3.
    How to check the IDOC type?
    Regards,
    Michael

  • Error while assigning dates to associative array of date type

    Hi All,
    I am facing the issue while assigning dates to associative array of date type:
    Oracle Version:
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Stored procedure i am trying to write is as following
    create or replace procedure jp1 (
    p_start_date date default trunc(sysdate,'MM')
    , p_end_date date default trunc(sysdate)
    is
    l_no_of_days number;
    type t_date_id is table of date
    index by pls_integer;
    l_date_id_arr t_date_id;
    begin
    l_no_of_days := p_end_date - p_start_date;
    for i in 0
    .. l_no_of_days - 1
    loop
        l_date_id_arr := p_start_date + i;
        dbms_output.put_line(p_start_date + i);
    end loop;
    end;
    I am getting error at line 14 while compiling this. and the error message is as following:
    Errors for PROCEDURE JP1:
    LINE/COL ERROR
    14/5     PL/SQL: Statement ignored
    14/22    PLS-00382: expression is of wrong type
    So while investigating this i tried to output the value of (p_start_date + i) using dbms_output.put_line and the output is date itself.
    create or replace procedure jp1 (
    p_start_date date default trunc(sysdate,'MM')
    , p_end_date date default trunc(sysdate)
    is
    l_no_of_days number;
    type t_date_id is table of date
    index by pls_integer;
    l_date_id_arr t_date_id;
    begin
    l_no_of_days := p_end_date - p_start_date;
    for i in 0 .. l_no_of_days-1
    loop
        --l_date_id_arr := p_start_date + i;
        dbms_output.put_line(p_start_date + i);
    end loop;
    end;
    output of the
    exec jp1
    is as following:
    01-DEC-13
    02-DEC-13
    03-DEC-13
    04-DEC-13
    05-DEC-13
    06-DEC-13
    07-DEC-13
    08-DEC-13
    09-DEC-13
    10-DEC-13
    11-DEC-13
    12-DEC-13
    13-DEC-13
    14-DEC-13
    15-DEC-13
    16-DEC-13
    17-DEC-13
    18-DEC-13
    I see the output as date itself. so why it is throwing error while assigning the same to associative array of date type.
    I tried to google also for the same but to no avail.
    Any help in this regard is appreciated or any pointer some other thread on internet or in this forum.
    Thanks in advance
    Jagdeep Sangwan

    Read about associative arrays :
    create or replace procedure jp1 (
    p_start_date date default trunc(sysdate,'MM')
    , p_end_date date default trunc(sysdate)
    ) is
    l_no_of_days number;
    type t_date_id is table of date
    index by pls_integer;
    l_date_id_arr t_date_id;
    begin
    l_no_of_days := p_end_date - p_start_date;
    for i in 0..l_no_of_days - 1
    loop
        l_date_id_arr(i) := p_start_date + i;
        dbms_output.put_line(p_start_date + i);
    end loop;
    end;
    Ramin Hashimzade

  • Error while executing agent.  ORABPEL-05006

    Hi:
    I have a bpel process waiting until a DbAdapter (with one Wait Activity) reads a record on database, but the problem is :
    - The record is in the database
    - The DbAdapter read it but the process don´t continue.
    - If the process is monitored by the Bpel Console it seems like it is waiting for the expiration of the wait activity, but the expiration time is reached.
    When i restart the OC4J_BPEL the process that was waiting , continues.
    i was looking the log file of the oc4j and it throws the following exception, could anybody help me??
    Thanks
    Santiago Velez.
    <2006-11-08 13:43:26,871> <INFO> <default.collaxa.cube.ws> <AdapterFramework::Outbound> file:/data2/middle/integration/orabpel/domains/default/tmp/.bpel_PG-ComunicacionATC_1.0.jar/InsertaAtcsComunicados.wsdl [ InsertaAtcsComunicados_ptt::insert(AtcsComunicadosCollection) ] - Using JCA Connection Pool - max size = <unbounded>
    <ExpirationJob::execute> Error while executing agent.
    An error occured while attempting to execute the job "111499-BpWai0-BpSwt1.22-1" for agent "scheduler". The exception reported was : Dispatcher schedule error.
    An error occurred while scheduling a batch message with the dispatcher. The exception is: Failed to create "ejb/collaxa/system/DispatcherBean" bean; exception reported is: "javax.naming.NamingException: Not in an application scope - start Orion with the -userThreads switch if using user-created threads
    at com.evermind.server.PreemptiveApplicationContext.getContext(PreemptiveApplicationContext.java:34)
    at com.evermind.naming.FilterContext.lookup(FilterContext.java:138)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at com.collaxa.cube.engine.util.EngineBeanRegistry.lookupDispatcherBean(EngineBeanRegistry.java:137)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.scheduleRemote(DispatchHelper.java:348)
    at com.collaxa.cube.engine.agents.ExpirationAgent$ExpirationJob.execute(ExpirationAgent.java:417)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:141)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:281)
    ORABPEL-05006
    Dispatcher schedule error.
    An error occurred while scheduling a batch message with the dispatcher. The exception is: Failed to create "ejb/collaxa/system/DispatcherBean" bean; exception reported is: "javax.naming.NamingException: Not in an application scope - start Orion with the -userThreads switch if using user-created threads
    at com.evermind.server.PreemptiveApplicationContext.getContext(PreemptiveApplicationContext.java:34)
    at com.evermind.naming.FilterContext.lookup(FilterContext.java:138)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at com.collaxa.cube.engine.util.EngineBeanRegistry.lookupDispatcherBean(EngineBeanRegistry.java:137)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.scheduleRemote(DispatchHelper.java:348)
    at com.collaxa.cube.engine.agents.ExpirationAgent$ExpirationJob.execute(ExpirationAgent.java:417)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:141)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:281)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.scheduleRemote(DispatchHelper.java:354)
    at com.collaxa.cube.engine.agents.ExpirationAgent$ExpirationJob.execute(ExpirationAgent.java:417)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:141)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:281)

    anybody have comments on this????????????

  • Error while assignment of Paying Co Code in FBZP

    HI friends,
    I am getting the following error while assigning Paying Co Code in FBZP -
    Company code 7144 is not permitted as the paying company code
    Message no. F3063
    Diagnosis
    The paying company code and the company code on whose behalf the payment is being made must be in the same country, have the same local currency, and display the same currencies managed in parallel. The setting regarding extended withholding tax functions (active or not active) must also be identical for both company codes.
    System Response
    The entry is not accepted since these requirements are not met.
    Procedure
    Correct your entry.bold**
    The reason for the same isCompany code 7144 is not permitted as the paying company code
    Message no. F3063
    Diagnosis
    The paying company code and the company code on whose behalf the payment is being made must be in the same country, have the same local currency, and display the same currencies managed in parallel. The setting regarding extended withholding tax functions (active or not active) must also be identical for both company codes.
    System Response
    The entry is not accepted since these requirements are not met.
    Procedure
    Correct your entry.
    The scenario is that one company code is making the payments for the other. However, the 2 companies are based in different countries. Hence, system is not allowing this assignment.
    Has anyone come across this scenario? Is there any other wayaround for this which can result in Intercompany postings.
    If we assign the Paying Company Code in the Variant screen in F110( instead of FBZP), will that work? I have tried the same but it doesnt work that way.
    Any help on this will be highly appreciated.
    Thanks in advance,
    Hrishi

    - i am not sure if its possible; help on FBZP clearly states this
    +++++++++++++++++
    The paying company code and the company code to which payment is made must be in the same country and have the same local currency and parallel currencies. In addition, both company codes must have the same settings for enhanced withholding tax functions (active or not active).
    Only the valid company codes for the paying company code are included in the possible entries.
    +++++++++++++++++
    Rgds.

  • Sshd error while deploying agent to remote host

    Hi,
    Am getting the following error while deploying agent to remote host.
    SSH Setup failed on nodes: localhost. SSH setup failed because of any of the following reasons:
    sshd has gone down while doing SSH setup.
    The platform of the provided hosts may be incorrect. Please verify it.
    Fix above problems and Continue OR do manual ssh setup running command: "<OMS_HOME>/sysman/prov/resources/scripts/sshUserSetupNT.sh -hosts "user-pc" -user karthick -localPlatformGrp win -asUser SYSTEM [-asUserGrp root] -sshLocalDir \.ssh -homeDir $HOME". Check the log file at <OMS_HOME>\sysman\prov\agentpush\2011-08-18_10-45-16-AM\logs\sshSetup2011-08-18_11-19-21-AM.log for more information.
    I tried the following from both the host and working fine.
    ssh host1 date from host2
    ssh host2 date from host1
    When I try to do the manual ssh setup running the cmd
    $ sh sshUserSetupNT.sh -hosts "user-pc" -user karthick -localPlatformGrp win -asUser SYSTEM [-asUserGrp root] -sshLocalDir \.ssh -homeDir $HOME
    sshUserSetupNT.sh: line 17: $'\r': command not found
    sshUserSetupNT.sh: line 20: $'\r': command not found
    sshUserSetupNT.sh: line 27: $'\r': command not found
    sshUserSetupNT.sh: line 231: syntax error near unexpected token `elif'
    'shUserSetupNT.sh: line 231: ` elif ! test -f "$CLUSTER_CONFIGURATION_FILE"
    Getting the above error.
    Pls let me know how to fix this issue.
    Thanks in advance,
    -KarthicK

    Hi KarthicK,
    please have a look at the following forum discussion: How to install Oracle Grid Agent 11g into windows hosts ?
    The post of hani430 appears to be what you are looking for.
    Regards,
    Frank

  • Error While Assigning Ad insert contract from Ad insert orders.

    Hi Experts,
    While performing the transaction for u2018Assigning Ad inserts Contracts from Ad Insert ordersu2019, Iu2019m getting the following error.
    Message no. JVSD056
    I did the following steps.
    a) Created a geographical unit.
    b) Assigned that geographical unit in the BP master of the retailer with a newly created assignment type.
    c) Linked the geographical unit in the booking unit for Ad inserts  in MAM .
    d) Created an Ad insert order in MAM by using the booking unit which has the geographical unit assignment.
    Then tried to execute the u2018Assign Ad inserts Contracts from Ad insert orders. The error message is JVSD056.
    Appreciate if anyone can help me in this. This is the first time we are doing this.
    Regards,
    Suresh

    Hi Helios,
    I hav egone through the document.However i have resolved the error ar: illegal option -- F by following the doc id Doc ID 785828.1
    Now i am facing error while relinking
    Relinking module 'FNDCORE.dll' in product fnd ...
    Removing any existing temp directory
    rm -rf temp
    creating the temp directory
    mkdir temp
    changing permissions for the temp directory
    chmod 777 temp
    Getting the object file names for this FNDCORE.dll
    gnumake -f E:/oracle/apps/apps_st/appl/admin/PROD/out/link_fnd_5136.mk fndcore.LIST
    E:/oracle/apps/apps_st/appl/admin/PROD/out/link_fnd_5136.mk:760: *** target pattern contains no `%'. Stop.
    Unable to get the objects for module "FNDCORE.dll".
    See error messages above (also recorded in log file)
    for possible reasons for the failure.
    adrelink is exiting with status 1
    Please advice
    Regards,
    SRK

  • Error while assigning external event

    Hi Guys!
    I'm getting error, while trying to assign an external event on table output.
    I've got a button with action POSTPO, that is residing in standalone form. That action should send data form some form and a table to BAPI.
    When I try to configure connector line and assign that *event (from event scope 'any element'), I recieve Internet Explorer's script error " 'length' is null or not an object".
    Here are two screenshots: [1|http://www.dennisk.org/tmp/SAP/event_err.jpg], [2|http://www.dennisk.org/tmp/SAP/event_err_mod.jpg].
    At the same model I can assign that event to different form and table. The only difference is that before that faulty elements there is a chain of two directly connected BAPIs.
    Is there a way to fix it?
    Thanks in advance!
    Regards,
    DK

    anybody?

  • Error while assigning group

    Hi friends,
      1. Iam getting the following error when assigning the group to a user.
      <b>An error occurred while adding group assignments; to see the correct status, perform a new assigned groups search</b>
    2. When uploading the template also its throwing the java.null exception..
       template contains , user name, password, roles , mail_id, group..
      after uploading the template all the above information is created except group
      when i search for the user which is created based on uploading template ,
      the group is not assigned.
       I need to send users list asap with groups assigned. but its giving problem...
      can anyone suggest me on this..
      Thanks & regards
      Sireesha.

    Hello Sireesha,
    Have u followed standard format while uploading the text file....
    If not use this format while preparing the groups and users etc.....
    http://help.sap.com/saphelp_nw04/helpdata/en/ae/7cdf3dffadd95ee10000000a114084/content.htm
    Rgds
    Pradeep

  • Error while assigning constant to infoobject in open hub transformation

    While assigning constants(in rule details) to infoobject in a transformation in a open hub I am getting an error "The Object Name is not allowed to be empty"
    Can anyone tell my why this is happening? What should I do now?

    Hi,
    In the transformation, have you connected that rule to any target field of your destination? If not, then do that and then try to create the routine.
    Regards,
    Vaibhav

  • Error while assigning objects to Transport Request

    Hi All,
    while  assigning a Transfromation to a Treq i am getting an error saying
    Object '7KU37C7IG3T7AQ5NHSLEZVC91' (ROUT) of type 'Routine' is not available in version 'A'
    Message no. RSO252
    Diagnosis
    You wanted to generate an object with the name '7KU37C7IG3T7AQ5NHSLEZVC91' (in transport request ROUT) of type 'Routine' (TLOGO). This is, however, not available in the BW Repository database. It does not exist in the requested version A. If the version is 'D' then it is possible that an error arose during the delivery or installation. If the version is 'A' then the Object was either not created or not activated.
    System Response
    The object was not taken into account in the next stage of processing.
    Kindly advice how to rectify this error

    Hi,
    You see the which infoobejct contains that routine and first collect that infoobejct and transport it then transport Transfromation. I hope you are missing some Routines while collecting the Transformations into request.
    See OSS Notes:
    Note 613581 - Transfer structure does not exist in version 'D'
    Note 508921 - P11:Content transfer:RSO 252 or RSO 296:InfoObject
    Note 1157873 - BI7.0(SP18) Message RSO 252 using transport connection
    Thanks
    Reddy

  • Error while assigning an application to a user

    Hi All,
    I am new to Oracle Database Lite. I have created a new user and i want to assign a Sample application which comes while installing the mobile server. But while assigning the Sample application to a user through the application page, i got "ERROR: VIRTUAL PATH IS NULL" and when i wanted to assign the Sample application to a user through the user page, i got "Error in executing " Save application ":oracle.lite.web.resource.ResourceException: CONS-10050: Rollback failure: java.sql.SQLException: Io exception: Connection reset by peer: socket write error "
    So can any one help me how to resolve this error so that i can assign the application to a user?
    Any help is welcomed.
    Shrikant

    Thanks Scott. I've also been looking for a pattern of consistency that would point to the cause of the problem but have been unable to find one. I was hoping that others may have experienced the same error and could help to shed some light here.
    I dug around some and found that the wwv_flows_alias_idx constraint is a unique index on the alias and security_group_id columns of wwv_flows. My application has an alias that is the same for all installations so I thought that somehow a previously used value for security_group_id was being generated causing the unique constraint violation. Can you tell me how that value is generated during the install process? Is it some sort of hashing function?
    Thanks

Maybe you are looking for

  • Facelet to crare web app, instead of using JSP; JSF1.2 spec in WebSphere6.1

    Novice to JSF and Facelet. But, I had been using Struts since its inception. I am required to use IBM's WebSphere Application Server 6.1 that comes with Servlet 2.4 and JSP 2.0. WebSphere 6.1 App Server limits me to using JSF 1.1. This is because, JS

  • Why can I no longer configure multiple unsupervised devices?

    It looks like Apple Configurator removed the ability to install a profile to multiple unsupervised devices, and makes the act of doing so with a single device much more laborious. I use Apple Configurator to install a small profile that pushes a trus

  • Restoring MacBook Pro WITHOUT System Restore CD?

    Hello, I'm wondering how to restore my MacBook Pro to it's factory settings without the Restore CD/DVD. I have moved many times since I brought my laptop and subsequently have misplaced the CDs, I only have the OS X Leopard Install CD which I got som

  • Import Accounts

    Hi Guys, I'm trying to import some new accounts. I've mapped a few fields, specifically, account name and location, plus a few more. However i'm getting the following error: "Value '%1' for import field '%2' was an invalid format for the %3 field '%4

  • Integrete with Websphere 5.0 example

    Write class like this: package com.test.kodo; import com.ibm.websphere.management.AdminService; import com.ibm.websphere.management.AdminServiceFactory; import com.ibm.websphere.runtime.CustomService; import javax.naming.*; import java.util.*; import