Error trying to call channel using accessor

Hello All,
Messages are failing while accessor is trying to call channel
Please help me figure out a fix for the problem. Hope that the following trace information helps.
<Trace level="1" type="T">Interface Mapping http://imprintlabs.com/I33A_Goods_Receipt/XI IM_A1_ZWMMBIDMASS01_to_SCPM_ZWMMBIDMASS01</Trace>
  <Trace level="1" type="T">*** START APPLICATION TRACE ***</Trace>
  <Trace level="1" type="T">ValueMapping Exception - List ID 44 not found in the Integration Directory Value Mapping Table.</Trace>
  <Trace level="1" type="T">Turn on Logging.</Trace>
  <Trace level="1" type="T">Hash is null - need to lookup values from DB</Trace>
  <Trace level="1" type="T">Exception: trying to get System Accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
  <Trace level="1" type="T">*** END APPLICATION TRACE ***</Trace>
<Trace level="1" type="T">Runtime exception occurred during execution of application mapping program com/sap/xi/tf/_MM_A1_ZWMMBIDMASS01_to_SCPM_ZWMMBIDMASS01_: com.sap.aii.utilxi.misc.api.BaseRuntimeException; RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ZWMMBIDMASS01/IDOC/EDI_DC40/SERIAL. The message is: Exception:[java.lang.RuntimeException: stdLookup- Unable to get lookup values] in class
com.sap.xi.tf._MM_A1_ZWMMBIDMASS01_to_SCPM_ZWMMBIDMASS01_ method
Trace level="1" type="System_Error">Error exception return from pipeline processing!</Trace>
  <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
- <!--  ************************************
  -->
- <Trace level="1" type="B" name="interface activity determination">
  <Trace level="1" type="T">Version 006</Trace>
  <Trace level="1" type="T">Message status 012</Trace>
  <Trace level="1" type="T">Interface action ARCH</Trace>
  <Trace level="1" type="T">(must be INIT for a new determination)</Trace>
  <Trace level="1" type="T">Set interface action ARCH into MAST</Trace>
  </Trace>
  </SAP:Trace>
regards,
Roshni

Hello Ramesh/Satish
The payload was processed and this time the message got through. The value mapping exception did occur, but it there was no System Accessor Error.
Trace level="1" type="T">*** START APPLICATION TRACE ***</Trace>
  <Trace level="1" type="T">ValueMapping Exception - List ID 44 not found in the Integration Directory Value Mapping Table.</Trace>
  <Trace level="1" type="T">Turn on Logging.</Trace>
  <Trace level="1" type="T">Hash is null - need to lookup values from DB</Trace>
  <Trace level="1" type="T">Content Type text/xml</Trace>
Although the problem has been resolved I still wonder what caused the accessor error.

Similar Messages

  • General error- trying to call n900

    Hello, first i am sorry for my english. So i have a problem with my Nokia n900, when i am trying to call other person i hear strange signal and on screen showed text with GENERAL ERORR. i tryed with other sim cards but its the same. Ofcourse  i can received calls and sms. also i tryed to update software with nokia program to clear device from application but it change nothing. so i dont understand why i cant call??? what i should to do ? 

    Hi,
    Don't worry about your english as it is fine.
    In reference to the issue you are experiencing I would check over my settings and if your handset is unlocked i would also try an alternative Sim card.
    If as you say updates are not clearing the issue then it would not hurt for you to seek assistance from an approved Nokia Service centre.
    Hope you get this sorted soon so you can continue to get the most out of this awesome machine.
    Nokia Lumia 520
     iphone 6 Plus.
    Be happy !!

  • Error trying to update contact using ContactList_UpdateInsert

    I am trying to add an externalId to a contact using ContactList_UpdateInsert.  I am retrieving all the values from the ContactList_Retrieve and using those same values in my request for the UpdateInsert but the server is attempting to Insert a new record instead of Updating.  The full error is below:
    <soap:Fault>
    <faultcode>soap:Server</faultcode>
    <faultstring>Server was unable to process request. ---> Contact(s) saved in the system. Please review the list of error(s)/warning(s) found when processing the data.\n- Contact: John Doe | ERROR: The username [JohnDoe] cannot be assigned to contact with email [[email protected]] as it is already used.</faultstring>
    <detail/>
    </soap:Fault>

    Hi,
    If you are updating a CRM entity that doesn't have External ID you can't do it while also providing a username.
    What you need to do is create a backup of your usernames, update the entity's external ID through the API call (it will wipe the username since the respective entry is empty) then re-make the call with the username in place. It will update that field only then.
    Kind Regards
    Alex

  • ORA-28513 error when I call sp using  dbms_hs_passthrough

    I call sp on AS400 using ODBC Database Gateway and dbms_hs_passthrough.
    If I make all params IN - all OK. If I set one or more params as INOUT or OUT - I get error message ORA-28513: internal error in heterogeneous remote agent.
    declare
    ProdID VARCHAR2(6);     
    DSC VARCHAR2(35);     
    TCDE VARCHAR2(6);     
    CLID VARCHAR2(11);     
    Rate NUMERIC(10,0);     
    WSID VARCHAR2(4);     
    ErrorCode VARCHAR2(1);
    ErrorMsg VARCHAR2(200);
    execStr varchar2(100):= 'call alibts1.ImportInsProductData(?,?,?,?,?,?,?,?)';
    i binary_integer;
    n binary_integer;
    begin
    i:=dbms_hs_passthrough.open_cursor@AS400ODBC;
    dbms_hs_passthrough.parse@AS400ODBC(i,execStr);
    ProdID := '000100';     
    DSC := 'TEST 1';     
    TCDE := '000003';     
    CLID := '001';     
    Rate := 41;
    WSID := 'ORA1';     
    ErrorCode := ' ';
    ErrorMsg := ' ';
    dbms_hs_passthrough.bind_variable@AS400ODBC(i,1,ProdID);
    dbms_hs_passthrough.bind_variable@AS400ODBC(i,2,DSC);
    dbms_hs_passthrough.bind_variable@AS400ODBC(i,3,TCDE);
    dbms_hs_passthrough.bind_variable@AS400ODBC(i,4,CLID);
    dbms_hs_passthrough.bind_variable@AS400ODBC(i,5,RATE);
    dbms_hs_passthrough.bind_variable@AS400ODBC(i,6,WSID);
    dbms_hs_passthrough.bind_out_variable@AS400ODBC(i,7,ErrorCode);
    dbms_hs_passthrough.bind_out_variable@AS400ODBC(i,8,ErrorMsg);
    n:=dbms_hs_passthrough.execute_non_query@AS400ODBC(i);
    dbms_hs_passthrough.GET_VALUE@AS400ODBC(i,7,ErrorCode);
    dbms_hs_passthrough.close_cursor@AS400ODBC(i);
    dbms_output.put_line(ErrorCode);
    end;
    In trace file I found this:
    Exiting WP_SQLBindParameter, rc=0 at 2011/03/14-16:32:21
    Exiting hgoprbv, rc=28513 at 2011/03/14-16:32:21 with error ptr FILE:hgoprbv.c LINE:351 ID:Out binds not allowed
    nrows:0
    Exiting hgoexec, rc=28513 at 2011/03/14-16:32:21 with error ptr FILE:hgoexec.c LINE:182 ID:Calling hgoprbv
    Is it mean I can't use OUT params in HS_PASSTHROUGH with ODBC Gateway?

    As you've linked the docu - check out
    2.3 Known Restrictions
    which states:
    * Does not support stored procedures
    Reason for this restriction is we have no control over the foreign ODBC drivers and the function it has implemented. As you've also already figured out it works for your MS SQL Server connection, but fails for the iSeries which is indicating an issue with the driver or its implementation.
    And that's the reason why it is documented as a known restriction and if you want to call a foreign procedure you have to use the dedicated foreign database gateway (if it is available) - for example DG4MSQL for MS SQl Server and DG4DRDA for DB2 databases on IOS, LUW and z/OS.

  • Error trying to shrink logs using management studio

    hi,
    i am trying to shrink my transaction logs.  my database is 4.4TB in size.  the trn logs are backed up every 15mins to nas so not quite sure how they blew up from 100gb to over 200gb in one night.
    when i try to shrink files i get.  cannot show requested dialog.  value of 4625504 is not
    valid for value.  value should be between minimum and maximum parameter name: vlaue.
    nothing in the event log......
    any help appreciated.
    thanks
    phill

    Hello,
    Try applying the latest service pack on SSMS or use a newer version of SSMS. My suggestion is based on the following Connect item:
    http://connect.microsoft.com/SQLServer/feedback/details/688397/ssms-database-shrink-dialog-displays-value-of-x-is-not-valid-for-value-value-should-be-between-minimum-and-maximum
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Error trying to validate app using Xcode: "An SSL error has occured and a secure connection to the server cannot be made."

    After I have done a last Apple Updated on my computer, can't anymore validate or submit apps usign Xcode, everytime I received this message: "An SSL error has occured and a secure connection to the server cannot be made"
    Any ideas?

    I had this happen a while ago too when I switched development machines, but I was able to submit it from a friend's house, so I'm pretty sure it is my ISP but this should not be a problem. I am trying to push out another update and I'm having the same problem again. I would be very happy if there was a permanent solution to this problem.

  • Error trying to Analytic Workspace using latest version AWM 10.1.0.4

    Windows XP Professional
    Oracle 10g with latest patch 4163362 (10.1.0.4)
    Installed AWM 10.1.0.4
    Installed GLOBAL schema
    Started AWM 10.1.0.4
    Connected to Database,everything fine
    Expanded Schema Folder, navigated to GLOBAL schema
    Right mouse click, selected "Created Analytical Workspace"
    The following error is encountered
    oracle.express.idl.util.OlapiException: ORA-04043: object "SYS"."GENRAWSEQUENCE" does not exist

    Please refer to the patchnote.htm that is bundled with 10.1.0.4.0 patch set. Only you are aware of what type of database configuration you have. You will want to pay close attention to "7.2.1.3 Set the SHARED_POOL_SIZE and JAVA_POOL_SIZE Initialization Parameters" and "7.2.2 Upgrade the Release 10.1 Database".
    Basically, I believe you have missed these required steps after installing the 10.1.0.4.0 patch set from the OUI:
    (pasted from the patchnote.htm)
    13.     Enter the following SQL*Plus commands:
    14.     SQL> STARTUP UPGRADE
    15.     SQL> SPOOL patch.log
    16.     SQL> @ORACLE_BASE\ORACLE_HOME\rdbms\admin\catpatch.sql
    17.     SQL> SPOOL OFF
    18.     
    19.     Review the patch.log file for errors and inspect the list of components that is displayed at the end of catpatch.sql script.
    This list provides the version and status of each SERVER component in the database.
    20.     If necessary, rerun the catpatch.sql script after correcting any problems.
    21.     Restart the database:
    22.     SQL> SHUTDOWN
    23.     SQL> STARTUP
    24.     
    25.     Run the utlrp.sql script to recompile all invalid PL/SQL packages now instead of when the packages are accessed for the first time. This step is optional but recommended.
    26.     SQL> @ORACLE_BASE\ORACLE_HOME\rdbms\admin\utlrp.sql

  • Error while trying to call external  web service from oracle PL/SQL 10.2 g

    Hi I am trying to call an external web service from oracle PL/SQL .I am getting following run time error when I try to set the opeartion style.
    But as per the oracle documentation this is one of the 2 valid values.
    ORA-29532: Java call terminated by uncaught Java exception: operation style: "document" not supported.Teh webservice does expect the operation style as document.
    Following is the code I am executing.
    FUNCTION email
    return varchar2
    AS
    service_ SYS.utl_dbws.SERVICE;
    call_ SYS.utl_dbws.CALL;
    service_qname SYS.utl_dbws.QNAME;
    port_qname SYS.utl_dbws.QNAME;
    operation_qname SYS.utl_dbws.QNAME;
    string_type_qname SYS.utl_dbws.QNAME;
    retx ANYDATA;
    retx_string VARCHAR2(1000);
    retx_double number;
    retx_len number;
    params SYS.utl_dbws.ANYDATA_LIST;
    l_input_params SYS.utl_dbws.anydata_list;
    l_result ANYDATA;
    l_namespace VARCHAR2(1000);
    begin
    -- open internet explorer and navigate to http://webservices.imacination.com/distance/Distance.jws?wsdl
    -- search for 'targetNamespace' in the wsdl
    l_namespace := 'http://service.xmlservices.global.freedomgroup.com/';
    -- search for 'service name' in the wsdl
    service_qname := SYS.utl_dbws.to_qname(l_namespace, 'ClientCoreWebServiceBeanService');
    -- this is just the actual wsdl url
    service_ := SYS.utl_dbws.create_service(HTTPURITYPE('http://hostname/GlobalWebServices/services/ClientCoreWebService?wsdl'), service_qname);
    -- search for 'portType name' in the wsdl
    port_qname := SYS.utl_dbws.to_qname(l_namespace, 'ClientCoreWebServiceBeanPort');
    -- search for 'operation name' in the wsdl
    -- there will be a lot, we will choose 'getCity'
    operation_qname := SYS.utl_dbws.to_qname(l_namespace, 'postalCodelookup');
    -- bind things together
    call_ := SYS.utl_dbws.create_call(service_, port_qname, operation_qname);
    -- default is 'FALSE', so we make it 'TRUE'
    SYS.utl_dbws.set_property(call_, 'SOAPACTION_USE', 'TRUE');
    -- search for 'operation soapAction' under <wsdl:operation name="getCity">
    -- it is blank, so we make it ''
    SYS.utl_dbws.set_property(call_, 'SOAPACTION_URI', '');
    -- search for 'encodingstyle' under <wsdl:operation name="getCity">
    SYS.utl_dbws.set_property(call_, 'ENCODINGSTYLE_URI', 'http://schemas.xmlsoap.org/soap/encoding/');
    -- search for 'binding style'
    SYS.utl_dbws.set_property(call_, 'OPERATION_STYLE', 'DOCUMENT');
    -- search for 'xmlns:xs' to know the value of the first parameter
    -- under <wsdl:message name="getCityResponse"> you will see the line <wsdl:part name="getCityReturn" type="xsd:string" />
    -- thus the return type is 'string", removing 'xsd:'
    string_type_qname := SYS.utl_dbws.to_qname('http://www.w3.org/2001/XMLSchema', 'string');
    -- in the line <wsdl:operation name="getCity" parameterOrder="zip">
    -- the parameterOrder is 'zip', thus we put in 'zip'
    -- the 'ParameterMode.IN' is used to specify that we will be passing an "In Parameter" to the web service
    -- the 'ParameterMode.IN' is a constant variable in the sys.utl_dbws package
    --vj this cud be either params or xml
    SYS.utl_dbws.add_parameter(call_, 'param1', string_type_qname, 'ParameterMode.IN');
    SYS.utl_dbws.add_parameter(call_, 'param2', string_type_qname, 'ParameterMode.IN');
    SYS.utl_dbws.set_return_type(call_, string_type_qname);
    -- supply the In Parameter for the web service
    params(0) := ANYDATA.convertvarchar('<TFGGlobalBasicXMLDO><systemCd>GLOBAL</systemCd><username>GlobalAdmin</username><password>GlobalAdmin</password><localID>1</localID></TFGGlobalBasicXMLDO>');
    params(1) := ANYDATA.convertvarchar('<TFGGlobalPostalCodeLookupIDDO><postalCode>02446</postalCode><countryCode>USA</countryCode><stateCode>MA</stateCode><cityDisplay>BROOKLINE</cityDisplay><countyDisplay>NORFOLK</countyDisplay><include_inactive_flag>True</include_inactive_flag></TFGGlobalPostalCodeLookupIDDO>');
    -- invoke the web service
    retx := SYS.utl_dbws.invoke(call_, params);
    dbms_output.put_line(retx.gettypename);
    -- access the returned value and output it to the screen
    retx_string := retx.accessvarchar2;
    dbms_output.put_line('done' || retx_string);
    dbms_output.put_line('PL/SQL DII client return ===> ' || retx_string);
    -- release the web service call
    SYS.utl_dbws.release_service(service_);
    return retx_string;
    end email;

    thsi is urgent anybody ????

  • Error in BAPI call using  webdynpro

    hi ,
    am new to this webdynpro abap..so i was trying out sample tutorials from sdn..when i trigger a button click event in order to call bapi function..the error has be raisen..so give me a solution for this..kindly chk out this link..i was trying for this application..i did exactly as mentioned in this tutorial..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/00545e6d-0679-2910-acab-8073ce9a1659?rid=/webcontent/uuid/fed073e5-0901-0010-4eb4-c9882aac7b11 [original link is broken]
    in this second tutorial..bapi usage
    error :
    The following error text was processed in the system NSP : RFC Exception COMMUNICATION_FAILURE with Message RFC destination bapi Fm does not exist. Occurred
    The error occurred on the application server w2gzmbks01_NSP_00 and in the work process 0 .
    The termination type was: RABAX_STATE

    Hi Anuj,
    I ve a similar kind of issue at my end. I am trying to call  BAPI_DOCUMENT_CREATE2 from a Webdynpro application(A2C/000) and using commit work. A new doc_number is very much created, even commit work returns no error.
    But surprisingly i dont see this new record in the same destination (A2C/000).
    this BAPI is already remote enabled (SE37)

  • FABridge - Error: You are trying to call recursively into the Flash Player [...]

    I'm using FABridge to communicate between JS (and GWT) and a flex component I've written, but I've run into a strange error:
    You are trying to call recursively into the Flash Player which is not allowed. In most cases the JavaScript setTimeout function, can be used as a workaround.
    I know what the error means, but what I don't understand is why I'm only receiving this error when I run the application locally (127.0.0.1) in this one webapp.
    Once I upload the app to the remote testing server, the error goes away and the app functions as it should.  I've tried to use setTimeout without any luck.
    I thought this might be a crossdomain problem so I set Security.allowDomain("*") in flex and the same on the testing server via a crossdomain.xml file but this did nothing.
    The function that is being called takes a parameter (image or an image wrapped in swf file) via the querystring and adds it to the stage.  The files all exist on the remote server.
    Another strange part is that when I run the flex app via Flash Builder it behaves fine. Also, I've run the component as part of a separate project locally without issue.
    The problem only exists when I run the component as part of the this project, when I'm working on it locally.  I even have another local app using the same component that works fine.
    I'm at a loss.  Any ideas?

    Ok, I was excited when I noticed I didn't change allowscriptaccess, but that didn't work. 
    Just to recap:
    -I have Security.allowDomain("*") as the first line in the init() (creationComplete) function
    -I have a crossdomain.xml file located on the remote server that allows="*" and ports="*" (because gwt debugs through :8888)
    -allowscriptaccess is set to always
    -I am using FABridge to communicate between JS and the swf.  Calling the function directly from Firebug causes the same error. 
    Even trying to call a function that is completely unrelated to the remote domain produces the same error.  For example, getAppHeight().  So at second glance, this doesn't seem to be a security issue?
    The only post (Google Cache) about the error suggests I use FABridge.MethodsToCallLater which doesn't seem to exist anymore in the version of FABridge that I downloaded.  The copy of FABridge I have doesn't have any version information in the file, but I believe I pulled it from the Flex 3 SDK. 
    Can anyone tell me if that feature has been removed/added in recent versions?  Or any other insights into my current situation?  Thanks for looking!

  • Window pops up stating"browser error" when trying to access documents using google doc's. Holding shift key and refresh does not clear window. What's next?

    Shut down and restarted computer, "browser error" still pops up when trying to access documents using Google doc's.
    Holding shift key and clicking refresh does not clear window.
    What else can be done to clear the window and gain access to my documents?

    Hi,
    Found a note explaining the significance of these errors.
    It says:
    "NZE-28862: SSL connection failed
    Cause: This error occurred because the peer closed the connection.
    Action: Enable Oracle Net tracing on both sides and examine the trace output. Contact Oracle Customer support with the trace output."
    For further details you may refer the Note: 244527.1 - Explanation of "SSL call to NZ function nzos_Handshake failed" error codes
    Thanks & Regards,
    Sindhiya V.

  • I just renewed my subscription (today, at 24:30 am), but so far I could not use the program (4:37 pm are). I tried to call in the support numbers, but no one answers. When I try to re-download the program, nothing happens.

    I just renewed my subscription (today, at 24:30 am), but so far I could not use the program (4:37 pm are). I tried to call in the support numbers, but no one answers. When I try to re-download the program, nothing happens.

    Hmmm, odd. Take a look at the "correct answer on at this link: Re: "Renew your Subscription" This Adobe help link too: Sign in, activation, or connection errors | CS5.5 and later
    If that doesn't help you will need to contact Adobe directly: Contact Customer Care 1 (800) 833-6687
    Benjamin

  • Error: there is a problem connection to the GPRS service in your registered home network, error trying to make data connection. this may be casued by a voice call, a wired activesync connection or inncorrect network setting

    like 2 weeks ago i called in to att to see how much is the data plan and it would end up costing $30.
    so i was like screw that. well they figured that i got a new phone replacing the LG shine. so they asked
    for to call this number so they can recieve data which would updated the system that i have a plam treo 750.
    ever since this conflict i can't send picture messages. i get that problem. everytime i attempt to send a picture
    i recieve this.
    - there is a problem connection to the GPRS service in your registered home network.
    - then i get a test that says error trying to make data connection. this may be casued by a voice call,
    a wired activesync connection or inncorrect network setting.
    please someone help me.
    btw. hard reset and soft reset did not work for me.
    Post relates to: Treo 750 (AT&T)

    problem fix, i had to call in. customer serivce. and when i called to ask about the plan. they blocked it. so i had to unblock my internet.
    Post relates to: Treo 750 (AT&T)

  • Went to update my ipod,now I am not able to use itunes because of an error... I have downloaded itunes again, saying it is uploaded then click itunes get error 7! Called for support, they are a joke !! Need advice please ...

    Went to update my itunes upon request from apple, updated now I have an error 7.
    I went to apple site to download itunes get message saying it is uploaded successfully.
    Go to itunes unable to because of error message. Called apple... they are a joke you have
    3 months to use the "phone service" after 3 months you have to pay $19.99 to talk to someone.
    Apple says update.. ha ha dont do it.. you wont be able to use your itunes.
    Any one have any suggestions in how to fix this issue??

    Hello cindib77,
    We've an article that provides further information and steps that can help resolve this error.
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/TS3074
    Cheers,
    Allen

  • Error while trying to call a ABAP webdynpro appl. as a link on html form

    Hi,
      When I am trying to call a ABAP Webdynpro aplication as a link on html form. I get the following error
    Error when processing your request
    What has happened?
    The URL http:///sap/bc/webdynpro/form_ap/ (Path of ABAP webdynpro application) was not called due to an error.
    Note
    The following error text was processed in the system DRD : Error in Web Dynpro Runtime System
    The error occurred on the application server DRD_06 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: GET_REQUEST_INPLUG_PARAMETERS of program CL_WDR_CLIENT_APPLICATION=====CP
    Method: INIT of program CL_WDR_CLIENT_APPLICATION=====CP
    Method: IF_WDR_RUNTIME~CREATE of program CL_WDR_MAIN_TASK==============CP
    Method: HANDLE_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST_FROM_MEMORY of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP 
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system DRD in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server DRD_06 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server DRD_06 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 102 -u:  -l: E -s: DRD -i: DRD06 -w: 0 -d: 20081002 -t: 032939 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Any help will be greatly appreciated.
    Thanks
    RM

    RM,
    url clearly shows that it is unable to get host and port.check how you are building that url in html page
    Thanks
    Bala Duvvuri

Maybe you are looking for

  • Xml publisher report problem

    I have a xml publisher report which list job names. After submitting concurrent program, I am getting below error A semi colon character was expected. Error processing resource some of the Jobs have special character '&'. below is code CREATE OR REPL

  • I have a problem connecting  a canon Pro-100 injet printer to my iMac oS Mavericks.

    I have purchased a Canon Pro-100 inkjet printer which I am trying to connect to my printer. The software on the disc was not compatible with OS Mavericks so Canon sent me the updated software. Still won't work. I get an air message which I have sent

  • WPC Component Editor

    Hi community, I am trying to create a Component Editor in WPC. I have made a faq editor PAR file, containing class: com.sap.nw.wpc.km.service.editor.component.FAQComponent and registered that editor in WPC editor components. When I try to open the we

  • Safari 4 (PPC)

    Well, just installed new version, went to the problem site (My Yahoo) to see if they fixed the hang problems I was having in Beta. Answer, No! Still hangs! Guess I will have to wait for version 4.5, or if that is not the answer, then until I upgrade

  • SAP MII Build Complex XML Structure

    Hi All, I have a requirement in which I have to fetch data from multiple queries and build a xml output. I m able to execute queries, put repeater on them, and able to trace the results. But now, I want to build an xml out of this and show it as tran