SOAMANGER Settings for Consuming WebService

HI,
I am consuming a web service in SAP and need to create logical port details.
Since LPCONFIG is obsolete now, I am thinking of creating the logical port config details in SOAMANAGER.
Could anyone please tell me the procedure for manual port configuration process?
Thanks.

Thread locked.
A simple search on SDN will provide you with these details, one possible thread for example:
[create logical port via http dest on soamanager;
OR
[http://help.sap.com/saphelp_nw70/helpdata/en/9e/c7a3591dc74a679bbc9716354e42af/content.htm]
Regards, Trevor

Similar Messages

  • Problems running DII client for consuming webservices

    Hello webservices experts,
    am running into problems - when I try running my DII client for a webservice that I've successfully deployed on j2sdkee1.4.
    The exception goes like this
    java.rmi.RemoteException: JAXRPC.JAXRPCSERVLET.28: Missing port information
         at com.sun.xml.rpc.client.dii.BasicCall.invoke(BasicCall.java:462)
    I've searched this forum and others as well. Although a lot of people seem to be having this problem nobody seems to have got it solved. Any way out? The client is a mere copy paste of the DII client example in j2eetutorial 1.4

    Solved it ! Some endpoint alias problem during deployment ! Now works fine !

  • How to supply username and password for consuming webservice in BizTalk Adaptor?

    While I hit the web service directly , I am able get response from that service, it asked for username and password, after that it processed the request and gave expected output. I am trying to consume the same web service (https) from BizTalk orchestration
    ,  it created message type , port type, binding for me , all fine, but while sending message to the webservice , it throws error like this 
    <SOAP-ENV:Fault xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wd="urn:com.abc/bsvc">
    <faultcode>SOAP-ENV:Client.authenticationError</faultcode>
    <faultstring>invalid username or password</faultstring>
    </SOAP-ENV:Fault>
    I have given username and passoword in port level. I tried basic binding, I also tried wcf_basic binding , but no luck. These bindings were generated by wizard only, I Imported those bindings , ports got created, I just added username and password in the
    port level.
    How should I supply username and password in BizTalk to get this working ? Any inputs would be greatly appriciated
    Regards
    Vivek

    Hi,
    the way to resolve this is to write a Wcf Custom Behavior.
    Several people have blogged about this and Microsoft have written some articles:
    http://social.technet.microsoft.com/wiki/contents/articles/627.using-custom-behaviors-with-the-biztalk-wcf-adapters-part-2.aspx
    http://msdn.microsoft.com/en-us/library/cc952299(v=bts.10).aspx
    The articles are old so you need to verify they still apply.
    mark

  • Consuming webservice in a webdynpro component

    Hi Experts,
    I have a third party free webservice as WSDL link.My requirement is to make use of that webservice in my webdynpro component.
    Can any body give me a step by step approach to consume that webservice in my webdynpro Component.
    If possible, Provide me some good material for consuming webservice in a webdynpro component.
    Awaiting for a useful reply.
    Thanks,
    Ramanan.p

    hi,
    Few indroductory sessions
    /people/thomas.jung/blog/2007/12/17/consuming-services-with-abap -Consuming webservices with webdynpro.
    It is possible to create webservice in ABAP as well as in Webdynpro.
    ABAP Webservice:
    http://wiki.open-esb.java.net/Wiki.jsp?page=BAPIWEBSERVICE
    http://www.sappro.com/downloads/SAPXI.pdf
    Webdynpro Webservice:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/244e7923-0a01-0010-5887-fe0b0c6dbb8d
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/30f1b585-0a01-0010-3d96-ad0ea291c4f9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/db785a70-0701-0010-858c-eee0ec4fe1b3
    In Web Dynpro ABAP there is nothing special about calling a web service. Unlike WD Java, there are not dedicated model object types in WD ABAP. WD ABAP simply has the ability to interact with other ABAP development object types. You can call function modules, ABAP classes, even modules in old dynpro apps.
    So calling the webservice from ABAP therefore is just the process of generating the ABAP Proxy Class. This is the same process regardless of if you want to use this proxy class from WDA or any other type of ABAP development object. You can then call the proxy class from WDA just like any other type of ABAP class. There is a service wizard option in later support package levels that includes an option for ABAP Proxy classes - although it doesn't generate the proxy class it just generates the code and context for the call to an already existing proxy class. The service wizards in WD ABAP are not required however. They are just shortcut code generators and often can't even generate a complete context for a complex web service proxy - so expect to do some manual adjustment after running the wizard.
    Edited by: Mahalakshmi kothuri on Jun 1, 2008 4:17 PM

  • Consuming Webservice(SAP B1if) by PHP SOAP

    Hi all,
    im newbie in B1if, is this possible consuming Webservice by PHP SOAP.  i didnt find any Document or Example for consuming Webservice by PHP. just from Yatsea Li "Consuming B1if Web Services by DotNet". i created webservice just like Yatsea Li did.   I am really just trying to find out how to consuming a webservice by php. Can any one point me in the direction of some usable documentation or example  for it?
    Kind regards,
    Christoph

    Hi Christoph,
    let me summarize:
    You don't want to consume an external Webservice with B1if as I assumed first.
    Your plan is to consume a Webservice - provided by B1if -  with an external PHP based program (such a scenario is described in this youtube video).
    So as prerequisite you followed the guidance by Yatsea and did the following:
    You created a scenario in B1if using Web Service Inbound, and defined an output in atom0.
    You created a test inbound file and tested the scenario in the integration flow
    (existing testfile and successful test run is prerequisite to genrate XSD).
    You activated the scenario in the setup.
    You created a XSD and a WSDL via the B1if Scenario setup.
    You used the self-created WSDL for your test with the external program
    The Webservices provided by B1if are per default in SOAP format, so you need to handover the following structure:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
      <SOAP-ENV:Body>
       <root>
      </root>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    The service method is identified by the root tag of SOAP Request.
    Did you already try to consume the B1if Web Service via WFetch or SOAP UI successfully or do you have the same problems as with your PHP application?
    Do you have your generated WSDL available?
    Best regards
    Bastian

  • What settings are reqd. for consuming a webservice in 6.2 - Other questions

    Hi,
    I have been following the below mentioned blog to create a program to consume a webservice.I am currently on Enterprise version(4.7), release 6.2.
    I get a communication_failure(sy-subrc = 1) when using "METHOD http_client->receive".Please let me know if you have any solutions.(The code of the program is in the blog..link mentioned below)
    Could the group provide solutions to the following in relation to blog mentioned below:
    Webservice consuming using ABAP in 6.2
    /people/durairaj.athavanraja/blog/2004/09/20/consuming-web-service-from-abap
    - What Proxy settings are required to be performed,
      where can we perform the same
    - What is the information required to fill the user id
      and passwords for ? - Are the credentials for the
      webservice we are calling or for the proxy
      (correct me if i am wrong)
    - How can we fill the fields Proxy and port, how do they
      play a role.
    Thank you

    Hi,
    As reply to his blog DuraiRaj Athavan Raja has provided the following information.Thank you Raja.
    http_client->receive - Communication failure obtained
    2006-07-18 22:29:04 Durairaj Athavan Raja [Reply]
    do you connect to internet via proxy? if yes you have to either code proxy authentication or simply maintain it in transaction SICF.
    go to
    SICF->client->proxy settings
    go to http_log tab
    host name: proxyhost.domain.com
    port: <portno>
    user - > proxy user id
    pwd -> proxy pwd and save it .
    and this setting is per client , so you have to do that for all clients.
    Regards
    Raja
    I am working on getting the proxy settings completed and will update the post when i am through with all the findings.

  • Webservice creation for consuming BAPI

    Hi,
          I want to create a webservice for consuming data from standard sap functional module for mobile integration. Can someone explain his experience to reach this requirement?
    My main requirement is to design a webservice which can consume SAP BAPI.
    Thanks,
    Kundan

    Hi,
    I am not sure the reason why you are not getting the output. But have you tested your web service before it is used in the adobe interactive form?
    If not check your web service by some methodology
    XI : WebService Studio - A Plain Jane SOAP Tool
    Microsoft Infopath - Microsoft Office 2003 Infopath & SAP RFC/Webservice
    Regards,
    Ganesh N

  • Trying to call a Webservice - "Settings for the J2EE Server do not exist."

    Hi, we're on SAP ECC 6.0 and I'm trying to get access to a webservice:
    BAPI converted to Webservice ok
    Webservice activated ok
    http active ok
    WSADMIN - click on the WSDL button - browser launches, user id requested, userid given, WSDL displays perfect! Even tested from the outside.
    WSADMIN - click on the Web service homepage - Settings for WDSL generation (RPC or Document style, same result) - Error - "Settings for the J2EE Server do not exist."
    Internet browesr - I go to the URL for the WSDL - works again perfect!
    Internet browesr - I go to the URL  - error ! <faultstring xml:lang="en">SOAP processing failure, error id = 112 </faultstring>
    Are the two errors the same?
    Do I have to have a J2EE server to enable Webservices?
    Is this a complex system change?
    Is there a workaround?
    Thanks for any tips on getting Webservice to function
    Philip

    hi,
    when the WAS ABAP has a webserver running and the WSDL service up and running (WSDLs are created dynamically) you get the WSDL served from WAS ABAP.
    "Webservice homepage" is an application written in Java and running on WAS Java., So, if you want to use that application you have to have a WAS JAVA up and running, you have to have the application 'Webservice homepage' up and running and of course on WAS ABAP you have to have the URL of the WAS JAVA specified to enable the WSADMIN function to link you to the Java app.
    Most probably you do not even have a WAS Java running and/or the application 'webservice homepage" not set up. Either way, in my opinion the application "webservice homepage" is crap anyway (because it is not really independent. if SAP implements something strangely on the server side they of course implement it the same way on the client/testing side, so you never find out that in real world scenarios e.g. no client understands the feature X the way SAP implemented it). use any non-SAP-tool to test your SAP webservices, e.g. XML Spy, or SOAPUI.
    my 2 cents,
    anton

  • Consume Webservices with AXIS from within WebAS

    I have problems invoking Web Services from within a bean running in WebAS. I am using Axis to create the calls to the WebServices.
    From a WebService_A running on WebAS 6.4 I want to call WebServices both running on the same server (WebAS 6.4) and on different servers (e.g. Axis).
    If in the endpoint I use the server machine's IP address, I get a server Timeout (502), if I use the machine's name I get the message "Unknown Host". Only when I call a WebService within WebAs and use "localhost" in the endpoint address, do I get the desired result.
    I have already described the problem of calling a web service on a different server in the topic below,and have also tried to configure the servers proxy settings as described (which however showed no effect):
    Proxy Settings for WebService invocation
    As for the generation of proxies (Developer Studio generated deployable proxies) I do not know if they would work for calls on a different server (e.g. Axis), because Developer Studio for some reason would not generate the proxy for the Axis-generated WSDL file (no detailled error message). However I cannot use the generated proxies anyway, because I need to call on endpoints which are provided from a GUI, so I must do the calls by hand - or can I reset a proxy's endpoint?
    Does anybody know which additional settings I have to set (Axis Engine, or in WebAS Administration?)
    Every hint would be greatly appreciated.

    Hi,
    You don't need LCDS/FDS/BlazeDS to consume a web service. All
    you need to do is to use the WebService component.
    Hope this helps.

  • Consume webservice - autentication none isn't working

    Hi,
    I'm not sure if this is the correct folder.
    I've the following problem:
    I've written a RFC-enabled function. After that, I created a webservice and the corresponding proxy classes for consuming the webservice. In the webservice configuration I configured the webservice with autentication "none". Same was done in the proxy configuration.
    When I start my report, which is consuming the webservice, every time I get a Netweaver Logon Popup.
    Is it possible to consume the webservice without any credencials or is there a possibility to send these crendentials over parameter in the ABAP-call?
    I would like consume the webservice without input data in the logon screen.
    Thanks in advance
    Cunanan80

    Hi,
    thanks for your quick answer.
    In my ICF configuration I dont have a tab "Anonymous Logon Data". I tried to configure the user under the tab "Logon-Data" where I can configure the logon types.
    I choosed "Standard" and give the credentials of my dialogue user in the fields of logon data. Furthermore I configured the security settings to SSL and the Authenticate option to "Standard SAP User".
    Nevertheless I get the Logon Popup when I start my report.
    The given user should have the necessary rights because I can execute the webservice after I give this credentials in the logon popup.
    Any further idea?
    Thanks in advance
    Cunanan80

  • Getting error while consuming webservices

    Hi Colleagues,
    In our application we are calling External webservice through WSDL file. I have deployed the WSDL files on server and get the WSDL URL using "WDURLGenerator.getAbsoluteWebResourceURL(wdComponentAPI.getDeployableObjectPart(), "file.wsdl")". I am able to call the service from WS Navigator.
    I have consumed webservices uisng Adaptive webservice model and given the service group configuration ,created a provider system, assigned the provider system to the application through SOA Management-->Application Communication
    Now when i tried to run the webdynpro application i am getting following error
    Could anyone please let me know how to overcome this?
    Exception i am facing is given here:
    com.sap.engine.services.webservices.espbase.query.exceptions.ObjectNotExistsException: BORM_SWDC_API_SLM_SP_GET_DLPortType using destination : dwd.SystemHome.50000
        at com.sap.engine.services.webservices.espbase.query.WSQueryImpl.findWSEndpoints(WSQueryImpl.java:198)
        at com.sap.esi.esp.service.server.query.discovery.DestinationsHelperImplSoa.getEndpointConfigurations(DestinationsHelperImplSoa.java:1448)
        at com.sap.esi.esp.service.server.query.discovery.DestinationsHelperImplSoa.getWSDLUrl(DestinationsHelperImplSoa.java:1025)
        at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.getWSDLUrl(GenericServiceFactory.java:578)
        at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:338)
        ... 76 more
    Caused by: com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for web service mass config parameters service reference ID 'BORM_SWDC_API_SLM_SP_GET_DLPortType_service_sap_com_BASIC' and application name 'demo.sap.com/softcomp'. Check mass configuration has been done properly.
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:522)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.readOperationsFromWSDL(WSModelInfo.java:435)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadataInternal(WSModelInfo.java:403)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:381)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateModelInfo(WSModelInfo.java:317)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateModelInfo(WSModelInfo.java:292)
      at com.sap.tc.webdynpro.model.webservice.gci.WSTypedModel.<init>(WSTypedModel.java:68)
      at com.sap.demo.softcomp.model2.Model2.<init>(Model2.java:63)
      at com.sap.demo.softcomp.softcomp.comp.SoftcompComp.wdDoInit(SoftcompComp.java:127)
      at com.sap.demo.softcomp.softcomp.comp.wdp.InternalSoftcompComp.wdDoInit(InternalSoftcompComp.java:266)
      at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:160)
      at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:227)
      at com.sap.tc.webdynpro.progmodel.components.Component.initController(Component.java:253)
      at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:206)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:553)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doPreprocessing(ClientApplication.java:1338)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToApplicationDoPreprocessing(AbstractExecutionContextDispatcher.java:146)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForAppPreprocessing.doService(DispatchHandlerForAppPreprocessing.java:35)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)
      at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToApplicationDoPreprocessing(ExecutionContextDispatcher.java:100)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:74)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:571)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:602)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doPreprocessing(ApplicationSession.java:252)
      at com.sap.tc.webdynpro.clientserver.session.ClientSession.doPreprocessing(ClientSession.java:677)
      ... 48 more
    Caused by: com.sap.esi.esp.service.server.query.discovery.ExtendedServiceException: com.sap.engine.services.webservices.espbase.query.exceptions.ObjectNotExistsException: BORM_SWDC_API_SLM_SP_GET_DLPortType using destination : dwd.SystemHome.50000
      at com.sap.esi.esp.service.server.query.discovery.DestinationsHelperImplSoa.getEndpointConfigurations(DestinationsHelperImplSoa.java:1459)
      at com.sap.esi.esp.service.server.query.discovery.DestinationsHelperImplSoa.getWSDLUrl(DestinationsHelperImplSoa.java:1025)
      at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.getWSDLUrl(GenericServiceFactory.java:578)
      at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:338)
      at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:321)
      at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:282)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:514)
      ... 73 more
    Caused by: com.sap.engine.services.webservices.espbase.query.exceptions.ObjectNotExistsException: BORM_SWDC_API_SLM_SP_GET_DLPortType using destination : dwd.SystemHome.50000
      at com.sap.engine.services.webservices.espbase.query.WSQueryImpl.findWSEndpoints(WSQueryImpl.java:198)
    Please let me know how to overcome this?
    Thanks in Advance
    Regards
    Swetha

    Hi Swetha,
    Caused by: com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for web service mass config parameters service reference ID 'BORM_SWDC_API_SLM_SP_GET_DLPortType_service_sap_com_BASIC' and application name 'demo.sap.com/softcomp'. Check mass configuration has been done properly.
    some configurations for consuming services using service group is missed out.
    check this article for consuming service :
    [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50d70a19-45a3-2b10-bba0-807d819daf46]
    Thanks and Regards

  • Consuming Webservice in WebDynpro - Content-Type issue

    Hi,
    I am getting a shortdump when consuming WebService in WebDynpro.
    I trace it back to the class CL_SOAP_HTTP_TPBND_ROOT method GET_HTTP_HEADERS whereby the
    value = 'text/html; charset=iso-8859-1' while the constants tsrc_soap_11_http_content_type = 'text/xml' ; tsrc_soap_bx_http_content_type = 'application/x-sap-bxml' ; tsrc_soap_mtom_http_cont_type = 'application/xop+xml' ; tsrc_soap_mp_http_content_type = 'Multipart/Related'. Because of this Content-Type difference my WebDynpro application dumps?
    Any ideas how to solve this problem?
    Thanks.
    Regards,
    Amel

    hi,
    Few indroductory sessions
    /people/thomas.jung/blog/2007/12/17/consuming-services-with-abap -Consuming webservices with webdynpro.
    It is possible to create webservice in ABAP as well as in Webdynpro.
    ABAP Webservice:
    http://wiki.open-esb.java.net/Wiki.jsp?page=BAPIWEBSERVICE
    http://www.sappro.com/downloads/SAPXI.pdf
    Webdynpro Webservice:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/244e7923-0a01-0010-5887-fe0b0c6dbb8d
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/30f1b585-0a01-0010-3d96-ad0ea291c4f9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/db785a70-0701-0010-858c-eee0ec4fe1b3
    In Web Dynpro ABAP there is nothing special about calling a web service. Unlike WD Java, there are not dedicated model object types in WD ABAP. WD ABAP simply has the ability to interact with other ABAP development object types. You can call function modules, ABAP classes, even modules in old dynpro apps.
    So calling the webservice from ABAP therefore is just the process of generating the ABAP Proxy Class. This is the same process regardless of if you want to use this proxy class from WDA or any other type of ABAP development object. You can then call the proxy class from WDA just like any other type of ABAP class. There is a service wizard option in later support package levels that includes an option for ABAP Proxy classes - although it doesn't generate the proxy class it just generates the code and context for the call to an already existing proxy class. The service wizards in WD ABAP are not required however. They are just shortcut code generators and often can't even generate a complete context for a complex web service proxy - so expect to do some manual adjustment after running the wizard.
    Edited by: Mahalakshmi kothuri on Jun 1, 2008 4:17 PM

  • Consuming Webservice in ABAP: SoapFaultCode:1

    Hi,
    I have created a webservice with NetweaverDeveloperStudio and deployed it to a J2EE. I tested it with the "NDS-Webservice-Tester" and it worked fine.
    I then created a proxy following the section for WebAS 640 in the weblog of Thomas Jung:
    /people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap
    When using the "test-interface" function in SE80 (also described in Thomas weblog) I get the following result:
    <CX_AI_SYSTEM_FAULT>
    <CODECONTEXT>http://www.sap.com/xml_errorcodes</CODECONTEXT>
    <CODE>SoapFaultCode:1</CODE>
    <ERRORTEXT>
    000D6019F1DD004000000036000020D8000405473991B26F:
    Found 0 operation definitions using keys:
    Key name:'first-body-element-ns'
    key value: 'urn:EdilogUserManagementWebserviceWsd/EdilogUserManagementWebserviceVi/document';
    Key name:'SoapRequestWrapper'
    key value:'getCompany';
    </ERRORTEXT>
    <LANGUAGE />
    </CX_AI_SYSTEM_FAULT>
    Any idea what might cause this error? Is there a list with the SoapErrorCodes and their specific meanings?
    Thanks and regards
    Jan Hempel

    I solved the problem "accidentally": The name of the Webservice was to long! Changing the name from "EdilogUserManagementWebservice" to "UserManagement" did the trick.
    This is probably due to the restricted fieldlength of ABAP-programnames.
    Regards
    Jan Hempel

  • WRX Error-For consumables posting with Acc Assignment K

    We are doing a GR for consumables posting with account assignment category K (Cost centre).  However, while trying to post the document, system issues a message that "Account determination for WRX cannot be determined". 
    Why this error is coming for consumables posting for a cost centre ?  Is it standard or am I missing any configuration ?

    Hi,
    When you are booking a Consumption to a Cost Center at the time of GR, the entry whihc is passed is
    Consupmtion A/c Dr
    GR/IR Account Cr.
    At the time of IR, the entry will be
    GR/IR Account Dr.
    Vendor A/c Cr.
    So you will have to do the settings for the WRX for GR/IR account in OBYC.
    Regards,
    Amit
    Edited by: amit kulkarni on Dec 2, 2009 5:19 PM

  • RAID for Consumer PCs

    If you have an interest in using RAID, then the MS Word document attached to this post may be useful information.  Scroll all the way to the bottom for the attachment.
    RAID for Consumer PCs
    Table of Contents
    RAID
    RAID 0
    RAID 1
    RAID 5
    RAID 10 (0+1)
    INTEL Controller Support for Different RAID Configurations
    Background Information for Creating a RAID configuration.
    Considerations:
    Performance comparisons
    Creating a RAID 0 Array
    Creating a RAID 1 Array
    Creating a RAID 5 Array
    Creating a RAID 10 (0+1) Array
    Conversion from RAID 0 to RAID 5
    RAID 0 to RAID 5 Observations
    Other RAID Migrations
    *************DISCLAIMER***********
    RAID
    RAID is an acronym for Redundant Array of Inexpensive Disks and also commonly called Redundant Array of Independent Disks.  A RAID array is created when one or more hard disks or one or more solid state disks (SSD) are combined to form a logical volume using one of several different configurations.  Consumer level PCs typically use RAID 0, RAID 1, RAID 5 and occasionally RAID 10 (0+1).  The RAID configuration choice is dependent on the requirements for redundancy, speed and capacity.  The choice of a RAID configuration will be a compromise between speed, redundancy, capacity and cost.  The different RAID configuration options can be restricted by hardware limitations.
    RAID 0
    A RAID 0 volume is created when 2 hard disks are used and then data is spanned or striped across the different hard disks.  The process of spanning data across different hard disks is also called scatter loading.  By spreading data across multiple hard disks, a significant performance improvement can be gained.  However, should one of the hard disks fail, then the entire RAID 0 configuration becomes unusable.  A RAID 0 volume combines the capacity of the hard drives being used in the configuration.
    RAID 1
    A RAID 1 configuration is created when 2 hard disks are used and then data on hard drive 1 is replicated to hard drive 2.  The process is also called data mirroring.  This configuration provides for redundancy in the event of a single hard drive failure but at the expensive of a degradation to write performance as data has to be written to multiple hard drives.  Since the data is being replicated between two volumes the overall capacity is limited to that of one hard drive.
    RAID 5
    A RAID 5 configuration is similar to a RAID 0 array except RAID 5 deploys distributed parity also referred to as checksum data.  Blocks of data are stripped across three or more hard drives and each hard drive contains block level recreation data (parity).  In the event of a hard drive failure, parity will allow for the data to be accessed through a dynamic data creation process.  The downside to the dynamic data creation process is a reduction in performance until the failing hard drive can be replaced.  RAID 5 performs best for supporting read accesses as write operations will be slower while the parity blocks are being updated.  Parity data does consume disk space.  A three hard drive RAID 5 array will have about the same total data capacity as a two hard drive RAID 0 array.
    RAID 10 (0+1)
    A RAID 10 configuration also called RAID 0+1 can be implemented in two different methods depending on the hardware being used.  The below left configuration is a striped RAID 1 array being replicated and the below right configuration is a RAID 0 array being replicated.  A RAID 10 configuration can provide a RAID 0 performance level even with the loss of one hard disk.  The downside to RAID 10 is the reduced configuration capacity.
    INTEL Controller Support for Different RAID Configurations.
    The RAID configurations used in this document are based on the INTEL SATA controller.
    See the below table.
    NOTE: Even though your system board may have the appropriate Intel controller,
    not all system boards will provide RAID functionality.
    Background Information for Creating a RAID configuration.
    You can create a RAID configuration provided that:
    The PC cabinet can accommodate additional hard drive(s) if needed.
    The system board has the necessary open SATA port(s) if needed.
    A SATA controller that can support the desired RAID configuration.
    You can determine the status of your RAID configuration by using the Intel Rapid Storage Technology (IRST) software.  If you don’t have this software on your PC then you can download IRST from the Intel web site.  I recommend that you use the latest version available from Intel.  Background information can be obtained from the IRST User Guide.  When you launch IRST, the help topics are an excellent source of information.  You can access IRST by going into the Control Panel and select Intel Rapid Storage Technology. You can also access IRST from the lower right Task Bar location.  IRST should resemble a hard drive icon and normally it has a green check mark.  By default IRST is set as delayed startup so don’t expect to see it active right after boot up. The Intel images being used in this document are from IRST version 11.1.0.1006.
    If the SATA controller in your PC is not set to RAID then read this Microsoft article if you are running VISTA or Windows 7.  You need to run the MrFixIT script before you reboot your PC in the bios and make the SATA controller mode change to RAID.  The script will then allow Windows to choose the correct driver when you reboot your PC.  If you plan on using a boot drive image restore then be sure to run the script just prior to making taking your image backup.  That way your backup image is set to allow Windows to choose the correct SATA driver.
    Before creating any RAID configuration, always make backups of your data and image the boot hard disk to external media such as an USB drive.  Additionally, be sure that your imaging product boot disk is functional, particularly if the PC’s boot hard disk is part of the RAID configuration.  Its best to use a commercial hard disk imaging product as support and functionality is generally better than the “freebie” software.
    Be sure that your PC is running the latest available BIOS.  BIOS updates are used to update the Intel ROM firmware.  Additionally, check for hard drive and SSD firmware updates.
    Summary of preparation steps in priority order:
    Backup your data.
    Test out your recovery and restore procedures.
    Update the following: BIOS, hard drive firmware, SSD firmware
    Update IRST
    Execute the Microsoft MrFixIt if your PC is not set to RAID mode in the bios.
    Create an image of your boot hard drive.
    Considerations:
    After replacing a failed hard drive, don’t expect the rebuild process to be fast.  All of the data that existed on the failed hard drive must be either regenerated using parity data or replicated to the new hard drive.
    I recommend that you use an uninterruptable power supply (UPS) when using RAID 5. Cached write data needs to be written to hard drive in the event of a power failure to avoid the loss of data.  You might want to consider disabling write back cache if you are not using an UPS. There is a performance reduction by doing so at the expense of improving data integrity.
    If you need a RAID array over 2 TB then your PC needs: UEFI bios, 64 bit operating system, GPT formated hard drives.  Review this Microsoft article on Windows and GPT FAQs.
    Since a MBR formated array will limit the useable space to 2 TB it’s therefore best to use hard drives that are 1 TB or less for RAID 0, 5 and 10.
    Consider the data growth rate and the size of the array.  The Intel controller will limit the number of hard drives.  The size of the PC cabinet and available system board SATA ports will also be growth constraints.  It’s not uncommon for a business to experience an annual data growth rate of 20 percent.
    If you need a RAID solution beyond the typical consumer level RAID configurations, then you should review the RAID options available from HP.
    RAID technology in not infalible so you need to consider backups.  A voltage spike inside your PC could render the RAID unusable and unrecoverable.  Corrupted data or a virus are other reasons for keeping backups.  An external USB connected hard drive might be sufficient for backups.
    Throughly test your backup and restore software. Always keep more than one backup copy of your data.
    Performance comparisons:
    All of the hard drives benchmarked are Hitachi 1.5 TB SATA III hard drives connected as SATA II devices.  HD Tune was used to benchmark the seniaros using default settings.
    Configuration
    Average MB/s
    Maximum MB/s
    Single hard drive
    113
    152
    RAID 0
    222
    289
    RAID 1
    104
    142
    RAID 5
    221
    288
    RAID 10 (0+1)
    220
    274
    Creating a RAID 0 Array.
    If you are configuring the Windows boot drive into a RAID 0 array, then you need to use the Intel option ROM method for creating the array.  Tapping Cntl-i at boot up will get you into the Intel option ROM firmware setup utility.  Once the array has been created then boot up your image recovery disk and load the array from your image backup.
    If you are creating a RAID 0 data only array then you can use the IRST when running Windows to create the array.  You can also use the Intel option ROM firmware setup utility.  Even though this HP VISTA RAID setup article is dated, it does have some excellent information.
    Launch IRST.
    You can observe in the above image the status of the hard drives attached to the Intel SATA controller.  Now click on Create. Select Optimized Disk (RAID 0) then click on Next.
    Configure the RAID 0 array by selecting two hard drives of the same size and click on Next.
    Next click on Create Volume.
    A warning window will appear.  Click on OK.
    The new RAID volume is now created. However, you now need to use Windows Disk Management to ready the volume for use.
    Creating a RAID 1 Array.
    If you are configuring the Windows boot drive into a RAID 1 array, then you need to use the Intel option ROM method for creating the array.  Tapping Cntl-i at boot up will get you into the Intel option ROM firmware setup utility.  Once the array has been created then boot up your image recovery disk and load the array from your image backup.
    If you are creating a RAID 1 data only array then you can use the IRST when running Windows to create the array.  You can also use the Intel option ROM firmware setup utility.  Even though this HP VISTA RAID setup article is dated, it does have some excellent information.
    Launch IRST.
    You can observe the above status of the hard drives attached to the Intel SATA controller.  Now click on Create.
    Select Real-time data protection (RAID 1) and click NEXT.
    Configure the RAID 1 array by selecting two hard drives of the same size and click on Next.
    Next click on Create Volume.
    The new RAID volume is now created. However, you now need to use Windows Disk Management to ready the volume for use.
    Creating a RAID 5 Array.
    A RAID 5 array will require three to four hard drives. While it is possible to convert a RAID 0 to a RAID 5 array, I recommended that you consider building the RAID 5 array from scratch rather than use a conversion method.
    If you are configuring the Windows boot drive into the RAID 5 array, then you need to use the Intel option ROM method for creating the array.  Tapping Cntl-i at boot up will get you into the Intel option ROM firmware setup utility.  Once the array has been created then boot up your image recovery disk and load the array from your image backup.
    If you are creating a RAID 5 data only array then you can use the IRST when running Windows to create the array.  You can also use the Intel option ROM firmware setup utility.  Even though this HP VISTA RAID setup article is dated, it does have some excellent information.
    The following procedure will build the RAID 5 array with three hard drives using IRST.
    Launch IRST.
    During this create process, I will be using the last three hard drives
    listed in the above image under Storage System View.  Now click Create.
    Select Efficient data hosting and protection (RAID 5) and click
    On Next.
    Select the three hard drives for RAID 5 and click on Next.
    Review the volume creation selections then click on Create Volume.
    Review the final warning then click on OK.
    Now click on OK and review the final array status.
    Creating a RAID 10 (0+1) Array.
    A RAID 10 (0+1) array will require four hard drives.
    If you are configuring the Windows boot drive into the RAID 10 (0+1) array, then you need to use the Intel option ROM method for creating the array.  Tapping Cntl-i at boot up will get you into the Intel option ROM firmware setup utility.  Once the array has been created then boot up your image recovery disk and load the array from your image backup.
    If you are creating a RAID 10 (0+1) data only array then you can use the IRST when running Windows to create the array.  You can also use the Intel option ROM firmware setup utility.  Even though this HP VISTA RAID setup article is dated, it does have some excellent information.
    The following procedure will build the RAID 10 (0+1) array using four hard drives using IRST.
    Launch IRST.
    This create process will be using the last four hard drives listed in the above image under Storage System View.  Notice that the hard drives are not the same size.  Two of the hard drives are 1.5 TB and two hard drives are 2 TB.  While it’s recommended to use all hard drives of the same size, it’s not required. The RAID 10 creation progam will pick to two smallest hard drives for the striped pair and then the two largest hard drives for replication pair but not the opposite as the two largest hard drives if used as the striped pair would not fit on the two smaller hard drives for replication.  Now click Create.
    Select Balanced performance and data protection (RAID 10) and click
    on Next.
    Select the four hard drives for RAID 10 and click on Next.
    Notice that IRST is set to create a RAID 10 volume with the capacity of 2.7 TB.
    Review the volume creation selections then click on Create Volume.
    Review the final warning then click on OK.
    Now click on OK and review the final array status.
    Conversion from RAID 0 to RAID 5
    If you have a RAID 0 hard disk configuration and you are concerned that a hard drive failure will cause your PC to crash or results in data loss then you might have an option to use RAID 5.  A RAID 5 three drive configuration can survive a single hard drive failure but not two failing hard drives. While there are other RAID configurations possible, this document will only be addressing a three hard drive configuration using the Intel SATA controller.  Some of the newer HP PCs can accommodate three hard drives and can be configured when ordered with RAID 5.
    Observe the below image.  This PC has a RAID 0 2.7 TB array.  To build the RAID 5 array, you will need to add (configure) an additional hard drive into the array. Click on Manage and then add an eligible hard drive to the array.
    Note: all data on the hard drive to be added to the array will be lost since parity and data from the existing array needs to be written to the added hard drive to create the RAID 5 array.  Take backups of your existing array in case something goes wrong.
    Once you are on the Manage screen then click on Change type.
    The following screen will appear:
    Select the drive to be included into the array and click on OK.
    When the migration process begins, the Status is now indicating migrating and the Type is RAID 5.  The hard drive added was 2 TB which meets the minimum amount.  BE PATIENT!  The migration process will take a very long time for an in place migration to complete.
    It’s much faster to delete out the original RAID 0 volume, create the new RAID 5 volume and then reload the original RAID 0 image from your backups. I recommend that you consider
    this method verses the in place approach.
     Click on Status to show the migration progress.
    RAID 0 to RAID 5 Observations
    I was able to shut down and boot the RAID configuration before the migration process had completed.  The in place migration method was very slow, about 3% per hour and hence my recommendation to use a differnet method.  Booting up from different hard drive before the migration process has completed results in a BSOD on boot up.
    After completing the RAID 5 conversion, I did receive a message from IRST indicating that one or more volumes is protected against a hard drive failure.
    Other RAID Migrations
    While there are other RAID migrations options available, they can be platform (chipset) specific.   Review this Intel Chipset article on supported RAID migrations.  Even though the Intel RAID migration has a safety function built into the process in the event of a power loss or shutdown, it’s always best to have a complete set of up-to-date backups.
    The migration process can be painfully slow.  The migration time is largely dependent on the hard drive sizes and the number of hard drives involved in the overall migration.  In some cases it might be faster to build the RAID array from scratch and then load the data back to the array verses using an in place migration process.
    It is possible to increase the overall RAID array (volume) size with some RAID configurations by adding hard drives to the array.   The overall size of the array may be limited by how the array had been previously formatted by Windows.  Review the information under the Considerations topic in this document.
    *********updated August 21, 2013
    If you are using SSDs in a RAID 0 configuration then you will need to have the Intel 7 or 8 chipset plus Intel Rapid Storage Technology (IRST) version 11 or higher to get Windows TRIM support to function. The latest version of IRST as of 8/21/2013 that I have seen is 12.7.1036.
    *************DISCLAIMER***********
    There may be inaccuracies with the information contained in this document so please consider that when using RAID.
    *************DISCLAIMER***********
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT
    Attachments:
    RAID for Consumer PCs.doc ‏3761 KB

    Great document
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

Maybe you are looking for

  • Unable to boot after failed 10.10.2 update

    Hey all, I have an early 2008 24" 2.8GHz iMac with a 120GB Intel 320 SSD and 6GB RAM that I installed myself. I performed a clean install of Yosemite 10.10.0, and with the 10.10.1 update, there were no issues, and the machine ran fine. However, when

  • Project in cs5 gone????

    Installed Premiere CS5. Created small test project. Save and made changes and saved several times. Then I go to open project and it opens empty. Nothing on the sequence or no files in resource central. This really makes me nervous. Is this maybe a bu

  • How to adapt text size of menu items ?

    Hello, I am a new Flash 8 user and I am trying to customize a "accordion menu". My code first loads a XML document and then writes the different titles (of different length) in dynamic text boxes. Can you explain me what code I should write to be sur

  • Can't watch itunes on TV

    Can someone help me hook Itunes movies to myTV?

  • Slow 4G in Orange County, CA

    For the last two weeks, my 4G speeds have dropped from their normal 20-25 down to less than 2.5 down. I have consistently slow speeds in Huntington Beach, Seal Beach, and Costa Mesa so far. I have tested from multiple locations miles apart in each ci