Pipeline mat error

Hi Gurus,
While issuing pipeline material to a cost center for mvt type 201P, getting the following error, "No special stocks defined for value-only materials". The value updation is done for the pipeline material, is it correct.
Regards,
Kumar

Hi
No qty and value updation is ever done for Pipe line materials. You need to maintain the price in the inforecord for the pipeline vendor for automatic settlement since there is no PO also inviolved.
Regards

Similar Messages

  • HP Deskjet Ink Advantage3545 all-in-one printer....Print Filter Pipeline Host Error

    I have HP Deskjet Ink Advantage 3545 all-in-one printer
    It has encountered _Print Filter Pipeline Host Error .
    What should be done as a remedy ..............

    Hi Rish
    I found this and thought it might help
    http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/Print-filter-pipeline-host-stopped-wor...

  • Consignment and pipeline settlement error

    Hi Expert!
    I have error when processing consignment and pipeline settlement for company code 4424. The error is "No message was found for partner 146073/company code 4424". Can anyone tell me what has going wrong and how to solve it?
    Thanks.

    HI,
    The MRKO Transaction only for settling the Pipe line and Consigmnet pscenarions.
    No effect if u maintain as like that.
    If u have doubt do one in Devlopmet.
    Regards,
    Andra

  • Custom Pipeline Component error

    I have created a custom pipeline component which references a template file on the local drive e.g. c:\test\template.xlsx.  however when I run the application the Send pipeline fails Reason: 'c:\test\template.xlsx' could not be found. 
    It does exist, everything is spelt correctly and the host account has access to the folder.  Why can't the component see it?
    ----------------<0>----------------
    http://redeyedmonster.co.uk
    ----------------<0>----------------

    I tried a code as highlighted by Rachit, but I don’t see issue as the referred blog suggest.
    Coming to questioners code, I created a quick pipeline component which uses a dll for
    Microsoft.Office.Interop.Excel
    accessing the excel files and does something with Excel file.
    Few things I want to highlight here.
    If the questioner (RedEyeMonster) is using the same dll (Microsoft.Office.Interop.Excel)
    in the pipeline component as I used, then I am afraid Workbooks.Open’s component doesn’t just take one parameter as shown.
    Open method doesn’t have any overloaded methods. It takes few parameter and its worth checking each one on them.Some of the parameter are very important and could cause issues (like
    ReadOnly , IgnoreReadOnlyRecommended, Editable etc). As said, the
    Workbooks .Open method doesn’t just have template file location parameter. It’s worth reviewing the code again.
    Microsoft.Office.Interop.Excel.Application excelApplication = new Microsoft.Office.Interop.Excel.Application();
    //When I tried without the following couple of lines, my program waited for long time and crashed
    excelApplication.DisplayAlerts = false;
    excelApplication.Visible = true;
    Microsoft.Office.Interop.Excel.Workbook excelWorkboook = excelApplication.Workbooks.Open(@"C:\MRAshwinPrabhu\TestExcel.xsl", 2, false,
    5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "",
    false, false, 0, false, true, 0);
    While trying the code, I create a excel file as extension *.xls (older version of Excel 97-2003 workbook) and in the code I tried to open the file as “C:\foldername\FileName.xlsx”.
    *.xls and *.xlsx are different, though in the folder the excel icon may look similar they are different file extensions. I for the same error as the questioner.
    Also issue I faced while trying this is “DisplayAlerts”
    property. When I tried without setting this property to false, my program just waited for long time and crached evently. So when you use in a program like pipeline where you don’t have UI, ensure this property is set to false.
    Hope the above suggest would help the questioner.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Post-processing pipeline causes error when placing "SceneGrid" object into 3D scene

    Hi,
    first want to thank you guys for the great work with proscenium and the awesome features.
    I was going through the examples and found a bug. I tried a combination of the examples "TestLines" and "TestPPEncodeDecodeHDR".
    The post processing pipeline somehow manipulates the render sates/vertex program in a way it crashes as soon as it should perform the drawTriangles call for a "SceneGrid" object.
    It does not seem to be related to my particular post processing setup - I tried TestPPBloom and TestPPEncodeDecodeHDR from the examples. The post processing pipeline seems to work fine with a 3DS model (Teapot) .
      //add grid
      scene.addChild(new SceneGrid());
      //setup post-processing
      if(true) {
    instance.createPostProcessingColorBuffer();
    instance.colorBuffer.targetSettings.useHDRMapping = true;
    instance.colorBuffer.targetSettings.kHDRMapping = 4;
    var colorToPrimary:RenderGraphNode = new RenderGraphNodePPElement(instance.colorBuffer, null, RenderGraphNodePPElement.HDR_DECODE, "Decode HDR" );
    colorToPrimary.addStaticPrerequisite(instance.colorBuffer.renderGraphNode);
    instance.renderGraphRoot.clearAllPrerequisite( );
    instance.renderGraphRoot.addStaticPrerequisite(colorToPrimary);
    This gives me the following error:
    Error: Error #3607: Stream 2 is set but not used by the current vertex program.
              at flash.display3D::Context3D/drawTriangles()
              at com.adobe.scenegraph::Instance3D/drawTriangles()[D:\Depots\Proscenium\branches\rel\code\P roscenium\src\com\adobe\scenegraph\Instance3D.as:537]
              at com.adobe.scenegraph::PB3DCompute/compute()[D:\Depots\Proscenium\branches\rel\code\Prosce nium\src\com\adobe\scenegraph\PB3DCompute.as:332]
              at com.adobe.scenegraph::RenderGraphNodePPElement/render()[D:\Depots\Proscenium\branches\rel \code\Proscenium\src\com\adobe\scenegraph\RenderGraphNodePPElement.as:272]
              at com.adobe.scenegraph::Instance3D/render()[D:\Depots\Proscenium\branches\rel\code\Prosceni um\src\com\adobe\scenegraph\Instance3D.as:304]
              at com.adobe.scenegraph::BasicScene/enterFrameEventHandler()[D:\Depots\Proscenium\branches\r el\code\Proscenium\src\com\adobe\scenegraph\BasicScene.as:273]
    Thanks,
    Philipp
    Full Source Code:
    package
              import com.adobe.scenegraph.*;
              import com.adobe.scenegraph.loaders.*;
              import com.adobe.scenegraph.loaders.collada.*;
              import com.adobe.scenegraph.loaders.obj.*;
              import flash.display.*;
              import flash.display3D.*;
              import flash.events.*;
              import flash.geom.*;
              import flash.utils.*;
              public class TestLinesWithPostProcessing extends BasicScene
      override protected function initModels():void
      //add grid
                                  scene.addChild(new SceneGrid());
      //add teapot
    //                              var f:Function = function(event:Event):void { (event.target as ModelLoader).model.addTo(scene); }
    //                              var loader:OBJLoader = new OBJLoader("res/content/teapot.obj");
    //                              loader.addEventListener(Event.COMPLETE, f, false, 0, true);
      //setup post-processing
                                  if(true) {
                                            instance.createPostProcessingColorBuffer();
                                            instance.colorBuffer.targetSettings.useHDRMapping = true;
                                            instance.colorBuffer.targetSettings.kHDRMapping = 4;
                                            var colorToPrimary:RenderGraphNode = new RenderGraphNodePPElement(instance.colorBuffer, null, RenderGraphNodePPElement.HDR_DECODE, "Decode HDR" );
                                            colorToPrimary.addStaticPrerequisite(instance.colorBuffer.renderGraphNode);
                                            instance.renderGraphRoot.clearAllPrerequisite( );
                                            instance.renderGraphRoot.addStaticPrerequisite(colorToPrimary);
      override protected function resetCamera():void
                                  scene.activeCamera.identity();
                                  scene.activeCamera.lookat(new Vector3D(0, 5, -15), new Vector3D(0, 0, 0), new Vector3D(0, 1, 0));

    Hi John,
    Pls check in SXI_CACHE to verify that the BPM(active in Integration Repository) has the latest version active on the ABAP stack.(I am saying this because you mentioned that a mapping step was missing..is it not..)
    go to SXI_CACHE --> Integration Processes(double click), in the list that you get verify that the return code is 0.
    Thanks & Regards,
    Renjith.

  • Pipeline entry error.

    Hi ,
    I am sending the data to the web service from the xml spy.
    the message is failing in XI .
    I checked the RWB audit log and the error is
    Transmitting the message to endpoint http://xxxx:50000/sap/xi/engine?type=entry using connection AFW failed, due to: Received HTTP response code 404 : Not Found.
    the J2ee (http) port is 50000
    and the R3 HTTP port is 8000.
    In the SDL the business system of XI has the pipeline address with the port as 8000 and also the same in integration server config in R/3.
    I refreshed the cache too from the administration page .
    any idea why is this error still occuring
    Thanks
    Nikhil

    Hi,
    Check this thread-
    HTTP_RESP_STATUS_CODE_NOT_OK 404 Error
    Go to SXI_CACHE and refresh the cache. Or delete the cache.
    Also go to SLD->Business system->Integration Server URL it should use Http Port (8xxx)
    Regards,
    Moorthy
    Message was edited by: Krishna Moorthy P

  • Pipeline Material Error

    Hi,
    One of the raw material used during production is D M Water which is produced in house. have
    When I am trying to issue the pipeline material to production,
    I am getting error " Pipeline material has no fixed vendor"
    Message No - M7164
    Please suggest what I have to do to resolve the issue.
    Thanks and Regards,
    Pavan

    Hi
    First of all you should understand that the material used in the production of the DM water is produced in house.So it not raw material .
    Example
    DM Water (FG)  is manufactured using Some SFG(Water) and this is using some input  material as water(RM).
    Now Input material RM can be treated as Pipeline and you have to make inforecord  with pipeline and you can issue the material and settle liabilty using MRKO.
    you have to create the production order  for SFG ( water ) and  FG water.
    regards

  • Print filter pipeline host error

    Having installed an HP 1510 All-in-One printer on a pc running Windows XP SP3 I have been unable to print anything as every attempt produces the following error message:
    Print filter pipeline host has encountered a problem and needs to close.
    As such the printer is unusable. I have since tried to install the printer on someone else's pc which also has XP SP3 running and got the exact same error.
    Is this printer REALLY compatible with XP SP3 as it doesn't look like it.

    Hello again EdwardTrunk,
    I would like to apologize for the confusion on the driver issue.
    I have located a "HP Deskjet 1510 e-All-in-One Printer series Full Feature Software and Drivers" for this product.
    Please make sure that you disconnect the usb cable from the printer and from the computer and leave it off.
    Uninstall any software for this printer that you have already attempted to install.  Once it has been removed, reboot the computer.
    When the computer is back on, please click on the above link and download the Full Feature driver to the Desktop of your computer so that it creates it's own Icon. 
    When the download is complete, double click the icon and follow the instruction. 
    Please DO NOT connect the USB cable.  The installation will Prompt you when to connect the USB cable.
    Once again I do apologize for the confusion and the inconvenience.
    If you require any additional assistance, please feel free to write me back and I will be more than happy to help.
    Thank you once again for your time.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • MAT error: 0xHEX is used a class and object...

    Hi there,
    playing around some more with MAT I ran into the following error with some of my dumps. All were taken on 1.5 SUN JVMs (running on either Solaris or Linux).
    org.eclipse.mat.snapshot.SnapshotException: Error: 0x8d776450 is used as class and object simultaneously. Are you using a beta DLL for Sun JDK 1.4.2 to write the heap dump?
    at org.eclipse.mat.hprof.HprofParserHandlerImpl.createRequiredFakeClasses(HprofParserHandlerImpl.java:191)
    at org.eclipse.mat.hprof.HprofParserHandlerImpl.beforePass2(HprofParserHandlerImpl.java:89)
    at org.eclipse.mat.hprof.HprofIndexBuilder.fill(HprofIndexBuilder.java:76)
    at org.eclipse.mat.parser.internal.SnapshotFactoryImpl.parse(SnapshotFactoryImpl.java:183)
    at org.eclipse.mat.parser.internal.SnapshotFactoryImpl.openSnapshot(SnapshotFactoryImpl.java:101)
    at org.eclipse.mat.snapshot.SnapshotFactory.openSnapshot(SnapshotFactory.java:77)
    at org.eclipse.mat.ui.internal.ParseHeapDumpJob.run(ParseHeapDumpJob.java:52)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Since the suggested problem (usage of JDK 1.4.2) is not the case: What else can I do to find out what is going on? Do I need any special switches for jmap? The dumps all were taken with the same command:
    jmap -heap:format=b <pid>
    Still, some work, some do not. Any suggestions?
    bye, Michael

    Hi Michael,
    this smells like a bug. The easiest way again is to have a look at the dump. If you zip it, it should become smaller. I could also provide upload space. Right now, I am at the J1 in San Francisco so it might not be as easy for me to fix this.
    Andreas.

  • Error while creating SC: Internal Error - termination type TH_RES_FREE

    Hi I encountered this error while creating a SC. All attributes for this user are maintained and the "check user" transaction does not give any error.
    Amol Mate
    Error when processing your request
    What has happened?
    The URL http://punhjwsapsrm:8000/sap/bc/gui/sap/its/bbpsc02/! was not called due to an error.
    Note
    The following error text was processed in the system SSS : Internal Error
    The error occurred on the application server PUNHJWSAPSRM_SSS_00 and in the work process 1 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Function: B40B_READ_TABLE of program SAPLBBP_BD_DRIVER_40B
    Function: META_READ_TABLE of program SAPLBBP_BD_META_BAPIS
    Form: LOCATIONS_READ of program SAPLBBP_ATTR_F4
    Function: BBP_ATTR_F4_SLOC_PPOMA of program SAPLBBP_ATTR_F4
    Form: STG_LOC_GET_FOR_LOCATION of program SAPLBBP_SC_APP
    Form: STG_LOC_GET of program SAPLBBP_SC_APP
    Form: LOCATION_STG_LOC_GET of program SAPLBBP_SC_APP
    Form: USER_ATTRIBUTES_GET of program SAPLBBP_SC_APP
    Form: SC_INIT of program SAPLBBP_SC_APP
    Function: BBP_SC_APP_EVENT_DISPATCHER of program SAPLBBP_SC_APP
    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 SSS 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 PUNHJWSAPSRM_SSS_00 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 1 in transaction ST11 on the application server PUNHJWSAPSRM_SSS_00 . 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:100-u:PTEST -l:E-s:SSS-i:PUNHJWSAPSRM_SSS_00 -w:1-d:20051121-t:171904-v: TH_RES_FREE-e:Internal Error
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

    Hi Amol,
    First of all the sicf transaction is to be used only if you use the internal ITS.
    Now you have to put an external breakpoint in the source code of the ABAP Program or FM you want to debug , one of these in your case :
    Function: B40B_READ_TABLE of program SAPLBBP_BD_DRIVER_40B
    Function: META_READ_TABLE of program SAPLBBP_BD_META_BAPIS
    Form: LOCATIONS_READ of program SAPLBBP_ATTR_F4
    Function: BBP_ATTR_F4_SLOC_PPOMA of program SAPLBBP_ATTR_F4
    Form: STG_LOC_GET_FOR_LOCATION of program SAPLBBP_SC_APP
    Form: STG_LOC_GET of program SAPLBBP_SC_APP
    Form: LOCATION_STG_LOC_GET of program SAPLBBP_SC_APP
    Form: USER_ATTRIBUTES_GET of program SAPLBBP_SC_APP
    Then launch the transaction in IE, once the program reaches a breakpoint, you'll get the ABAP debuger in IE.
    Regards.
    PS: if it doesn't work, put the parameter ~generatedynpro in BBPGLOBAL service to have it applied to all BBP transactions
    Vadim

  • Error Handling in BPM - Send Step

    Hello,
    I would like to implement the following two error handlers using BPM:
    1. There is a send step which sends a message to an HTTP receiver. If the HTTP server is down I would like to add 3 retries and just in case after the third retry fails there should be an error Email sent. So I am wondering whether a communication error (which happens in the HTTP receiver communication channel) is delivered back to the process engine so that it can be handled using BPM.
    2. I also need to apply a validation using XML schema. So if validation fails the error should also be returned to the process engine so that it can be handled in the integration process.
    Are those two requirement possible as described (returning communication and validation errors)? Or do I have to follow another approach?
    Thank you very much!

    Hi Florian,
    >>2. When I activate transport acknowledgement and there is an error in XML validation outbound channel request I get an system error acknowledgement back however the error branch is NOT taken either!
    Correct send step using transport acknowledgment will check whether the message was transmitted or not
    Check this link http://help.sap.com/saphelp_nw04s/helpdata/EN/43/65ce41ae343e2be10000000a1553f6/content.htm
    >>3. And NOW it gets interesting: When I simulate step 2 again an cancel the error message afterwards then the error branch is taken! Not very useful in my opinion if error messages have to be canceled first. The error branch seems to be pretty useless for me in case of asynchronous send steps.
    Again when you cancelled the message it was not received successfully by the receiver system and hence it raised exception (as mentioned in the Exception of send step.)
    I will suggest you to try using Application Acknowledgment in send step. Also If you provide the steps of BPM then it will be more helpful.
    Also have a look at this :
    Asynchronous send step can raise exception only when
    1. Thrown when a permanent system error occurs:
    a. In the case of an asynchronous send step, the exception will only be triggered if an error occurs during the transfer to the pipeline. Errors that occur during mapping in the pipeline, do not trigger an exception.
    b . In the case of a synchronous send step, the exception is also triggered by permanent system errors that occur in the pipeline or while transporting the message to or from the pipeline.
    Regards
    Suraj
    Edited by: S.R.Suraj on Sep 8, 2009 6:41 AM

  • Handle system errors in BPM

    I'm working on a BPM that may fail to perform some steps due to system errors. I can raise an exception if that happens, but what I'd like to do in the exception branch is to build a response message to the calling application that starts the BPM, declaring the reasons of the error. I can do that  giving a generic "system error" description, but I'd like to be more precise, and access the system error cause itself and add it to the message description.
    Is this possible? How to make it?
    Thanks in advance.

    Hi,
        As per my knowledge we can raise System errors using Send step and Transformation Step.I dont think we can rise System errors using Control step.Control Step handles only Exceptions not System errors.(Confirm once).
    But if you want to rise System errors go for Send Step Synchronous or Asynchronous.
    Send Step Synchronous used when exception triggered by permanent system errors that occur in the pipeline or while transporting the message to or from the pipeline.Asynchronous Send Step:the exception will only be triggered if an error occurs during the transfer to the pipeline. Errors that occur during mapping in the pipeline, do not trigger an exception.
    Transformation step used when to rise Permanent System error occurs.
    Regards,
    Raj

  • BPM Error:PL_timeout

    Hi all,
    i am facing one error in SXMB_MONI.
    The scenario is Sync-Async Bridge using BPM,request is successfully processing from XI but response case getting error in SXMB_MONI like pipeline timeout error at call Adapter.can anyone help me in this.
    BestRegards
    Venkatagiri

    make a search on sdn this is a very common issue in sync/async bridge (using BPM) scenarios...
    PL_TIMEOUT in Sync Async scenario using BPM
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c059d583-a551-2c10-e095-eb5d95e03747?quicklink=index&overridelayout=true
    Create BPM in synchronous mode please help

  • Socket Connection Error

    Hi,
    I m facing some strange issues in a java file. The requirement is something like, i need to process some business operation , connect to a third party vendor and they need to process some operation in 10 secs and they reverted back with the result. The whole process should complete in 15 secs.
    So for the first time while connection to the third party it is working fine, but for the second time it fails and showing connection failed in the UI. When i retires it is successfully connects. i checked the log file, there it is throwing exceptions some of the time. Please find the piece of code below. From the third party there is no issues from them , all the operations sucessfully done from their side..
    try {
    // open socket connection
    socket = openSocketConnection(host, port, connectTimeOut, responseTimeout);
    if(socket.isConnected()){
    // some steps of business processing.....
    // write request
    // read response
    // set pipeline
    // set error status
    catch(SocketTimeoutException ste){}
    catch (UnknownHostException uhe) {}
    catch (SocketException soe) {}
    catch (Exception e) { }
    finally {
    try {
    if (socket != null)socket.close();
    } catch (Exception e) { }
    // method for connecting the server....
    openSocketConnection(String host, int port, int connectTimeOut, int responseTimeout) throws SocketTimeoutException, ServiceException,IOException {
    Socket socket = null;
    socket = new Socket();
    socket.bind(null);
    socket.connect(new InetSocketAddress(host,port),connectTimeOut);
    if (socket.isConnected()) {
                   socket.setSoTimeout(responseTimeout);
    } else {
         throw new ServiceException("Error opening socket connection to Third party Vendor.");<------- mostly in second time throwing exception, but when retires working fine...
    return socket;
    Can anyone please help me out for this.

    Remove the isConnected() test and associated code: it's contributing nothing here. If the socket itself throws an exception then you have a problem. At the moment all you have is a self-inflicted wound.
    You can also remove the bind(null) call.

  • OSB- BEA-380000 - com.bea.wli.sb.pipeline.PipelineException in OSB 11.1

    Hi,
      My test case is a simple one. JMS Proxy (Publish with QOS- exactly once) --> http Proxy (Publish with QOS- Best Effort)--> http BS. Am getting a BEA-380000 - com.bea.wli.sb.pipeline.PipelineException error while testing from JMS proxy in test console. However, the test is successful while testing from http Proxy.
    I saw one of the threads OSB - BEA-380000 - com.bea.wli.sb.pipeline.PipelineException   but it didn't solve my issue.
    Please advise if anyone has a solution.
    Thanks,
    Nikhil

    Hi All,
    I found these are the observations when ever this error occured.
    1) name space issue, un used namspaces are giving conflict, two namespaces with different uri's, out of which one is no more required, that will give problem.
    2) Copying any stage from route node to the other stages ( it will add few extra namespaces).
    3) Using un-reachable variables in the failed stage.
    Thanks.
    Edited by: user12679330 on 07-Oct-2011 02:19

Maybe you are looking for