Adding orchestration with custom pipeline in order to call web svc

Hello,
I created an application that uses a receive pipeline to deconstruct a flat file (multiple records) and use a send pipeline to put together a csv file used in another process for batch loading data (multiple records).  Having another dept batch load
a csv format is our only choice at this time. There is a map to transform the incoming schema to the outbound schema. This is working great.
Now we need to validate addresses in between those pipelines via a web service that accepts one address record at a time.
So I added an orchestration and created the ports and schema according to the web svc.  In the orchestration I have a Construct shape to construct the message needed in the web svc validation method and an appropriate map.  Then a send shape to
the svc, and a receive shape for the svc response.  Finally a construct for the csv file.
When my orchestration gets to the send shape for the web svc, I get an error stating that there are multiple records in the request.  Indeed I can see in the message that I'm sending all of the addresses from the original file.
I thought I'd have to add loop surrounding my construct and send web svc message in order to send addresses one by one.  
But when I come out of the loop, how do I get all of the records back into only one csv file in order to batch load many records at a time?  
Can I do this without a loop and use one of the advanced functoids in the map?
Would an easy way be to just add another method to the web svc to accept an array of addresses?
As always, thank you for your expert advice!
Jean Stiles
jRenae.s

Hope this document can help:
http://msdn.microsoft.com/en-us/library/aa561121.aspx
Your problem is complicated and it has been in the scope of paid support since we should not be able to figure out the solution within the forum.
You can submit a service request to Microsoft Support from below link:
http://support.microsoft.com/select/Default.aspx?target=assistance
Best Regards,
APAC DSI
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Similar Messages

  • Possible to meet with Customer Service Rep, rather than call?

    We have been overcharged on our bill (ATT Uverse) on so many occasions, and there are so many inaccuracies on the bills submitted, that we need to sit face-to-face with an intelligent customer service representative and go through all the bills for the last 5 months, in order to reach a comprehensive solution.  Calling customer service has not been helpful.  They seem to be looking at different charges and different bills than the ones in front of us, not to mention the incompetency of some of the reps with whom we have been dealing.  I am considering filing a complaint with the Better Business Bureau...however, I want to give it one last try, before filing as many complaints as possible.   Is there a way to meet (not call) with a customer service representative, who can go through the hard copy bills with us?  Would going to their corporate office help?

     
    Send a message to the  ATT Customer Care team.  This group has been known to get things done but give them two to three business days to respond.  Be sure to include a detailed message of your issues along with your name and account number.
    Watch the little blue envelope at the top of this page for a reply. 

  • Enhance search functiponality with custom fields

    Hi Experts,
    I want to enhance component PRD01QR/Search with custom field in order to allow seraching for it. It is enhanced via set type. Please could you send me steps how to dpo it?
    Thanks,
    Juraj

    Hello,
    Maybe this helps:
    http://scn.sap.com/thread/3151887
    Best regards,
    Thomas Wagner

  • Is there a way to cif customer consignment SD-orders?

    Hi colleagues,
    Do any deal with customer consignment SD-orders to cif them in APO? I will much appreciate any tips about. Detailed chain below:
    1. Customer creates SD-order (SD1) from consignment stock
    2. Another SD-order (SD2) for replenishment consignment stock from unrestricted one is created automatically
    3. Outbound delivery & GI for SD2
    4. Outbound delivery & GI for SD1
    The issue is none of orders comes to APO. Is there a chance to do so?
    Thanks for advance, gurus -))
    Dmitriy.

    I think you can model the sales order as VMI orders. Assign a VMI-customer to the location master of the customer every sales order created in R/3 will be created as VMI-order in APO.It will also create a receipt at the customer location. Technically the orders will be more STO-like in APO, but in R/3 they're still standard sales orders.
    Please follow the link for more Info.
    http://help.sap.com/saphelp_scm50/helpdata/en/68/f69a3dcbcfac53e10000000a114084/frameset.htm

  • BizTalk:How to share customized pipeline with more than one BizTalk Application

    I have a new BizTalk application which will use a customize generic pipeline . This pipeline has been used in an existing BizTalk application.
    When I use BizTalk Server Administration to add this pipeline assembly as a resource for a new BizTalk application, it shows error message: "this biztalk assembley has already in store and is either associated with another application or another type".
    My questions is how to share the generic pipeline component with many BizTalk application?
    Many Thanks.

    Hi,
    If you plan on using the deployed pipeline across multiple applications in BizTalk you have two options:
    1) The Current Application (in BizTalk Server Administration Console) should have the other application [where the pipeline
    is deployed] as reference.
    right click the "Current Application" and select "Properties"
    on the "Properties" page, left hand side, select "References"
    On the right-hand side, use "Add" to add the "Other Application" as a reference.
    Refer: How
    to Add a BizTalk Assembly to an Application
    Doing so will ensure that ALL resources (maps, schemas, orchestrations, send ports, receive locations, rules, etc.) deployed
    for "Other Application" are available/reprehensible in "Current Application".
    2)  Create a common BizTalk application on BizTalk Admin Console and add your custom pipeline assembly in that new application
    as a resource. With this, you don't need any other application to be started apart from this common application. Any other application who wants to use this pipeline will refer this common application.
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • How to get interchange id in custom pipeline and in orchestration

    My scenario is that I want to create a unique id for a message which should be remain unique throughout  biztalk so that I can track it anywhere.
    I got messageID context property of message in decoding pipeline component through IBaseMessage pInMsg.MessageID.ToString() and
    got the same messageID   in orchestration through messageName(BTS.MessageID) in expression shape.
    But when I am using a custom disassembler component , I am unable to get the same messageID in orchestration because disassembler stage create a new messageID.
    Can I use interchangeID of message for this scenario ?
    If yes,how can I get interchangeID in custom decoding component as well as in orchestration ?
    Prakash

    Hi Prakash,
    Yes, I believe InterchangeID should work for you in this case.
    Refer: 
    http://geekswithblogs.net/chrishan/archive/2006/01/17/66161.aspx
    http://felixmondelo.blogspot.in/2007/08/interchangeid-vs-messageid.html
    How to access? 
    1) In your custom pipeline component you can access it 
    Guid interchangeID = Guid.Parse(pInMsg.Context.Read("InterchangeID","http://schemas.microsoft.com/BizTalk/2003/system-properties");
    where pInMsg is your IBaseMessage.
    2) In orchestration:
    varGuid = System.Guid.Parse(Message_1(BTS.InterchangeID));
    I hope his helps.
    Rachit

  • How to Generate sales orders with custom Fields using BAPI_BUSPROCESSND_CREATEMULTI

    Hi,
    I need to generate sales orders with custom fields on table CRMD_ORDERADM_H using BAPI_BUSPROCESSND_CREATEMULTI, after changing the structure BAPI_TE_CRMD_ORDERADM_H, and feed the  EXTENSIONIN table of the BAPI with data, the order is created, but any value on custom fields.
    After debuging, I saw that the BAPI search for structure conversion in table CRMC_OBJECTS_GEN, but we haven't entry with BAPI_TE_CRMD_ORDERADM_H in this table. is that the problem ?, Is there any way to fix it?
    Best Regards,
    Salah.

    That depends on where do you have the customer fields, check the table CRMD_CUSTOMER_H, if your custom fields are there, you need to use the changing parameter CUSTOMER_HEAD, I guess your already checked that one, right? but there's no custom fields, well...AET/EEWB doesn't enhance the strcuture of the BAPI, so you should do it manually, check the note following note for further details.
    988410 - FAQ: User-defined fields in the BAPI
    If you don't have access to the SAP Marketplace, in resume you should create an append on the structure BAPIBUS20001_CUSTOMER_H and include the following strcutrue CI_EEW_CUSTOMER_H
    Cheers!
    Luis

  • Report with customer info for an Sales Order with batch details

    Hi
    Can any one please tell me the SAP REPORT with contains data of customers were shipped a specific product (material number) by batch number.  report with the name and address of the customer, the sales order number and the number of products that were shipped.
    Thanks
    Nick

    Hi nick,
    See if anybody has worked on SIS (sales information system) in your team.
    He can help you out to create one info structure , by selecting desired characteristics, key figure with respective update rules. though its require lot of configuration but you can make it without abap development.
    (I couldn"t make it in time to provide you detailed configuration but below given path will take you to the configuration area )
    IMG - LG -Logistick information system -logistick data werhouse- data basis- field catalogue.
    IMG - LG -Logistick information system -logistick data werhouse- data basis -
    infostructure.
    IMG - LG -Logistick information system -logistick data werhouse- data basis - updating - update defination & update rules.
    ( MC18, MC21, MC24,& MC30)this transaction help to create field catelogue, info system, update rule & generation log respectively.
    karnesh

  • Wanted To Channge The Standsrd Purchase Order Template with Customized Temp

    Hi ALL,
    I m using oracle 11.5.10.2. I want to change the template attached with the Standard Purchase Order(PO_STANDARD_XSLFO) which is in XSL-FO Formatt.I want to use my customized template for printing Purchase order.I attached one template with the same Data definition which the standard template is having.
    But still it is taking the standard template not the customized one. Can u tell me how i can attch the customized template with the standard Purchase Order. And one thing more if i want to update the exisiting Standard template then how i can update it bcoz the update is disabled for that template.
    Thanx
    Ravi

    Hi Klause,
    Thanx, for ur Reply. I did the same thing.....i copied the xsl-fo for standard template and i just removed the braces from there, which was for printing purpose only. this is the change what i did....
    <fo:inline xsl:use-attribute-sets="legal_details_style">
    <xsl:value-of select="TOTAL_AMOUNT" />
    <fo:leader leader-pattern="space" leader-length="2.0pt" />
    ( --------------i removed this brace
    <xsl:value-of select="CURRENCY_CODE" />
    ) --------------i removed this brace
    </fo:inline>
    and the rest is similar to the standard template.. But it has given me that error....
    Error while generating the PDForacle.apps.xdo.XDOException genDoc() : Exceptionjava.lang.Exception: Error while generating PDF :null java.lang.Exception: Error while generating PDF :null java.lang.Exception: Error while generating PDF :null at oracle.apps.po.communicate.PoGenerateDocument.genDoc(PoGenerateDocument.java:2084) at oracle.apps.po.communicate.PoGenerateDocumentCP.runProgram(PoGenerateDocumentCP.java:302) at oracle.apps.fnd.cp.request.Run.main(Run.java:148)
    Thts the error...which i m getting..... Can u help me out.....
    Thanx
    Ravi

  • Table name for sales order with Customer info

    Hi Gurus,
    Could you please provide me table name for  sales order with customer no and customer name.
    I have list of sales order number (more than 1000 no's ) i need to identify customer number and customer name (ship to party and sold to party information). I am running this report every week. so i plan to create sqvi for this report.
    Thanks and regards,
    B.Deethya.

    Hello,
    Access Tables VBAK & VBAP.
    From the above tables you will get Solt to Party & Ship to Party Codes.
    For Customer names you have to pass the Customer Codes to Table - KNA1
    Hope this clarifies.
    Thanks,
    Jignesh Mehta

  • Defining the color index (populate the color palette with custom colors in an orderly manner)

    Hi,
    In Excel 2003 I used the following lines (see BELOW) to populate my color palate (in an orderly manner) with custom colors.
    It appears that these commands did not make the migration to Excel 2013.
    Could someone please help me with the fix.
    THANX for your time... Frank
    CODE:
    With ActiveWorkbook 'This defines the COLOR INDEX
       .Colors(1) = RGB(150, 0, 0)            'Red 1
       .Colors(2) = RGB(255, 255, 255)      'Black 5 WHITE
       .Colors(3) = RGB(255, 145, 145)        'Red 3
       .Colors(4) = RGB(193, 255, 193)      'Green 4
       .Colors(5) = RGB(0, 0, 255)           'Blue 2
       .Colors(6) = RGB(255, 255, 215)     'Yellow 4
       .Colors(7) = RGB(255, 195, 195)        'Red 4
       .Colors(8) = RGB(175, 255, 255)       'Cyan 4
       .Colors(9) = RGB(255, 0, 0)            'Red 2
       .Colors(10) = RGB(0, 180, 0)         'Green 2
       .Colors(11) = RGB(0, 0, 128)          'Blue 1
       .Colors(12) = RGB(255, 255, 0)      'Yellow 2
       .Colors(13) = RGB(255, 0, 255)     'Magenta 3
       .Colors(14) = RGB(51, 204, 204)       'Cyan 2
       .Colors(15) = RGB(241, 241, 245)     'Black 4 Gray
       .Colors(16) = RGB(200, 200, 200)     'Black 2 Gray
    '   .Colors(17) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(18) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(19) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(20) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(21) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(22) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(23) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(24) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(25) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(26) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(27) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(28) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(29) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(30) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(31) = RGB(0, 0, 0) 'Custom Color TBA
    '   .Colors(32) = RGB(0, 0, 0) 'Custom Color TBA
       .Colors(33) = RGB(205, 205, 255)      'Blue 4
       .Colors(34) = RGB(230, 255, 255)      'Cyan 5
       .Colors(35) = RGB(235, 255, 235)     'Green 5
       .Colors(36) = RGB(255, 255, 235)    'Yellow 5
       .Colors(37) = RGB(225, 225, 255)      'Blue 5
       .Colors(38) = RGB(255, 235, 235)       'Red 5
       .Colors(39) = RGB(251, 235, 255)   'Magenta 5
       .Colors(40) = RGB(255, 237, 225)    'Orange 5
       .Colors(41) = RGB(97, 97, 255)        'Blue 3
       .Colors(42) = RGB(0, 255, 255)        'Cyan 3
       .Colors(43) = RGB(255, 255, 159)    'Yellow 3
       .Colors(44) = RGB(255, 225, 97)     'Orange 4
       .Colors(45) = RGB(255, 172, 51)     'Orange 3
       .Colors(46) = RGB(255, 102, 0)      'Orange 2
       .Colors(47) = RGB(204, 0, 255)     'Magenta 2
       .Colors(48) = RGB(225, 225, 225)     'Black 3 Gray
       .Colors(49) = RGB(0, 128, 128)        'Cyan 1
       .Colors(50) = RGB(0, 255, 0)         'Green 3
       .Colors(51) = RGB(0, 122, 0)         'Green 1
       .Colors(52) = RGB(223, 218, 0)      'Yellow 1
       .Colors(53) = RGB(188, 76, 0)       'Orange 1
       .Colors(54) = RGB(255, 153, 255)   'Magenta 4
       .Colors(55) = RGB(102, 0, 102)     'Magenta 1
       .Colors(56) = RGB(0, 0, 0)           'BLACK 1
    End With

    Hi Peter,
    THANK YOU for your reply.
    I have just enough VBA skills to get myself into trouble PLUS it's been a LONG time since (with any regularity) I've written any subRoutines.
    I'm getting a Compile Error: Can't assign to array... and... "arrPal =" is HIGHLIGHTED (in the  arrPal = ActiveWorkbook.Colors   statement)
    I should probably mention that the ColorPalate code resides (along side) with other code... in a macro subroutine that configures Excel for the way I work.
    The code I used is BELOW
    THANX for your time... Frank
    CODE:
        With ActiveWorkbook 'This defines the COLOR INDEX
            Dim arrPal(1 To 56) As Long
            arrPal = ActiveWorkbook.Colors
               arrPal(1) = RGB(150, 0, 0)            'Red 1
               arrPal(2) = RGB(255, 255, 255)      'Black 5 WHITE
               arrPal(3) = RGB(255, 145, 145)        'Red 3
               arrPal(4) = RGB(193, 255, 193)      'Green 4
               arrPal(5) = RGB(0, 0, 255)           'Blue 2
               arrPal(6) = RGB(255, 255, 215)     'Yellow 4
               arrPal(7) = RGB(255, 195, 195)        'Red 4
               arrPal(8) = RGB(175, 255, 255)       'Cyan 4
               arrPal(9) = RGB(255, 0, 0)            'Red 2
               arrPal(10) = RGB(0, 180, 0)         'Green 2
               arrPal(11) = RGB(0, 0, 128)          'Blue 1
               arrPal(12) = RGB(255, 255, 0)      'Yellow 2
               arrPal(13) = RGB(255, 0, 255)     'Magenta 3
               arrPal(14) = RGB(51, 204, 204)       'Cyan 2
               arrPal(15) = RGB(241, 241, 245)     'Black 4 Gray
               arrPal(16) = RGB(200, 200, 200)     'Black 2 Gray
    '           arrPal(17) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(18) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(19) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(20) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(21) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(22) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(23) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(24) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(25) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(26) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(27) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(28) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(29) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(30) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(31) = RGB(0, 0, 0) 'Custom Color TBA
    '           arrPal(32) = RGB(0, 0, 0) 'Custom Color TBA
               arrPal(33) = RGB(205, 205, 255)      'Blue 4
               arrPal(34) = RGB(230, 255, 255)      'Cyan 5
               arrPal(35) = RGB(235, 255, 235)     'Green 5
               arrPal(36) = RGB(255, 255, 235)    'Yellow 5
               arrPal(37) = RGB(225, 225, 255)      'Blue 5
               arrPal(38) = RGB(255, 235, 235)       'Red 5
               arrPal(39) = RGB(251, 235, 255)   'Magenta 5
               arrPal(40) = RGB(255, 237, 225)    'Orange 5
               arrPal(41) = RGB(97, 97, 255)        'Blue 3
               arrPal(42) = RGB(0, 255, 255)        'Cyan 3
               arrPal(43) = RGB(255, 255, 159)    'Yellow 3
               arrPal(44) = RGB(255, 225, 97)     'Orange 4
               arrPal(45) = RGB(255, 172, 51)     'Orange 3
               arrPal(46) = RGB(255, 102, 0)      'Orange 2
               arrPal(47) = RGB(204, 0, 255)     'Magenta 2
               arrPal(48) = RGB(225, 225, 225)     'Black 3 Gray
               arrPal(49) = RGB(0, 128, 128)        'Cyan 1
               arrPal(50) = RGB(0, 255, 0)         'Green 3
               arrPal(51) = RGB(0, 122, 0)         'Green 1
               arrPal(52) = RGB(223, 218, 0)      'Yellow 1
               arrPal(53) = RGB(188, 76, 0)       'Orange 1
               arrPal(54) = RGB(255, 153, 255)   'Magenta 4
               arrPal(55) = RGB(102, 0, 102)     'Magenta 1
               arrPal(56) = RGB(0, 0, 0)           'BLACK 1
    ' apply new RGB's to whichever palette index's you want to change
            ActiveWorkbook.Colors = arrPal
        End With

  • I added icloud to my ipad 2 what will i need to do with my mac in order to start seeing the video and pictures on my  mac onceI take them on my ipad

    I added icloud to my ipad 2 what will I need to do with my mac in order to start seeing the video and pictures on my  mac once I take them on my ipad ?

    See Here
    Apple - iCloud - Learn how to set up iCloud on all your devices.

  • Set Custome pipeline for dynamic send port in orchestration

    I need to assign custom pipeline for dynamic send port in an orchestration .

    The option is available in the Port Configuration wizard
    Thanks, Murugesan M - Please Mark as the Answer, if this answers your question. Please vote as helpful, if this post is helpful.

  • Post Goods Receipt(PGI) with custom condition types on purchase order(PO)

    Hi all,
    I am trying to post goods receipt with custom conditions on the PO. One of the custom conditions is freight (delivery cost). The value on this condition will post to a different G/L account (freight provision account, rather than GR/IR).
    My problem is, when posting this GR, the cost center assigned in the PO under 'account assignment' is not used for posting the custom condition, which I really need it to happen.
    Simply put, I want all postings from this PO inherit values in 'account assignment'.
    I have been looking into configurations in automatic posting and condition types, but I still have no clue where I can make it happen. Do I have to use BADI?
    Thanks.

    Delivey cost condition will be posted to accrual accounts not to the cost center.

  • Can i order a Mac with custom parts.

    Hello guys, i am so new to Mac, so, here is my question.
    If i would like to buy a Mac with custom parts like...
    i want an iMac 27" with 5k display and my custom parts will be:
         CPU: 3.5GHz Quad-core Intel Core i7
         Graphic: NVIDIA GeForce GTX 775M 2GB GDDR5
    the rest will be still the same.
    PS: Coz i really like the i7 CPU but can't effort for 4GHz and i am a nVidia fan.

    The only available options are those stated on the Apple Store web pages.

Maybe you are looking for

  • How to dictate, type or edit docs on MacBookAir for use in Word?

    Hello, I have a MacBookAir.  Mr computer at work uses Windows 7 and Word.  I'd like to be able to use my MacBookAir to create and edit documents for work purposes.  I'd also like to be able to use a dictate-to-type programme such as Dragon on my MacB

  • Mac Mini Shut Down Problems

    I recently installed a firmware update that supposedly corrected some sleep issues. Since installing the update, I am sometimes unable to wake the computer from a sleep. Usually I can manually turn the computer off and then zap the p-ram to correct t

  • Help! I can't see my comments from the form I created

    Below is the form I created When I fill out the form in Firefox and access it through my email client that I set up in my email_form.php, I get the email, I see the name and the email address that I put in the form but I don't see the comments that I

  • Auto-tune method

    For the auto-tune in the MAX, I wanna to ask how many counts that the motors should be runned? Can I change the desired position? Regards, Ivan

  • Creating reports in adf applications

    what programs can i use to create reports in my adf/jsf application? can i use Oracle report or crystal report for it? or can u suggest some other programs wich i can use for this? thanks in advance :)