How can I create unique partnerships to deal with like EDI messages?

I have an EDI to Application partnership setup currently that deals with translating MEDRUC type EDIFACT messages to a mainframe format. The setup is
Sender = PARTNERA,
Receiver = PARTNERB
DocType = MEDRUC.
In the Input EDI tab the
Sender Qualifier ID = ZZ:PARTNERA
Receiver Qualifier ID = ZZ:PARTNERB
Standard = EDIFACT
Version = D
Release Number = 97B.
Use UNG to locate partnerships = No
EDIFACT messages contain all this information in their UNB and UNH segments which is where SunONE IS B2B looks to then match against the relevant partnership. My problem is this does not go to enough granularity for me to distinguish uniqueness for the second partnership I need to create.
The problem is the "Association assigned code" field in the UNH for EDIFACT messages is not catered for anywhere in the partnership details area. This means then that whilst my existing partnership deals with Simplified Billing Claim MEDRUC's which is Association assigned code = SBC20, I can't create an EDI to Application partnership for PARTNERA and PARTNER B to cater for Two Way Gap Claiming MEDRUC's which are Association assigned code = TWC10, ie the two messages are D97B MEDRUC type messages only distinguished from each other by this Association assigned code.
Any ideas how can I then create a unique EDI to Application partnership for this TWC10 MEDRUC message?
What I am thinking I will have to do is make this second partnership Application to Application and create a custom service to wrap the MEDRUC message with a HREC/TREC and use the parameters in the HREC to dictate the DocType rather than use the UNB/UNH segments in the MEDRUC?

Hmmm. It looks like way back when the decision was made on how specific the keys had to be, they didn't get quite specific enough for your case. I'm not super experienced with EDIFACT but I'll throw out some suggestions based on my HREC and X12 knowledge.
A. Could you handle both instnaces through the same partnership, but alter the map to create unique outputs based on the two different types? At least of the cards would need to be handled through Route, but you could have that picked up by a simple Outprep / Gateway Service list that put the data where you wanted it.
B. Before Parse, run a custom service that is capable of inspecting for which type of data it is, then modify one of the key fields in place to find the Second partnership. Really getting adventurous, maybe you could alter keys in the UNG to make the distinction. This assumes that you don't have both types of documents in the same interchange.
C. Your idea may be workable. Can you give some more detail on the make-up of the Service list and the destination/processing of the two differnt types of MEDRUC?
Thanks.

Similar Messages

  • How can we handle browser settings while dealing with the security ?

    Hi ,
    how can we handle browser settings while dealing with the security ?When we configured security in web.xml , during the first request the container is asking for the authentication credentials once they are provided it go's on. but when the user gives a fresh request from the second window within the same browser that time it is not asking for authentication. How can we overcome this.Is there anything to do with server configurations?
    How can we make the container no to keep the things or act like session?

    Ya... I am taking a small example need not happen always but a kind of possibility i am thinking off.
    once the user sign out and just left without closing the browser and a friend (suppose not a good friend ... just kidding...) of that user may open the same jsp or file .This time the security is breached. If that feature or property exists....
    I know what you might say ... the user will log-out before leaving where a programer might invalidate the session at the time of log out.
    Consider the case of a bad Programing or just a programer might forget to invalidate,At that time as a application administrator how can he solve that issue.
    Thanks.......
    Edited by: user8483670 on Jun 6, 2011 1:08 AM
    Edited by: user8483670 on Jun 6, 2011 1:09 AM

  • How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?

    How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?
    Several times in the last year, I've gotten a message that Time Machine needs to completely redo my backup. Using the wireless connection, this takes almost two days. Is there a way to do the backup with ethernet and then switch back to wireless? Thanks.

    May I know what is needed to make sure the MacBook is able to see Time Capsule on ethernet?
    Connect an Ethernet cable from one of the LAN <-> ports on the 2Wire gateway to the WAN port (circle of dots icon) on the Time Capsule.
    If AirPort Utility cannot "see" the Time Capsule now, you will need to perform a "hard reset" by holding in the reset button for 7-8 seconds or so and then reconfigure the Time Capsule. You can use the same Time Capsule name and password, etc. as before.
    Configure the Time Capsule to "Create a wireless network" and select the Bridge Mode option when it appears during the setup using AirPort Utility.
    Once the Time Capsule is configured, restart the entire network again. Power down everything, start the 2Wire first and then start each other device after that one at a time about a minute apart.
    Now you can connect your Mac directly to one of the LAN <-> ports on the Time Capsule for the backup using another Ethernet cable. In general, about 20-25 GB per hour will transfer.
    The Time Capsule will broadcast a much faster wireless network than the 2Wire can provide, so you might want to leave the setup "as is" for awhile after the first backup is complete. If you decide to use the Time Capsule as your main wireless access point, you would want to turn the wireless off on the 2Wire since two wireless networks in close proximity can create interference problems.
    Or, if you want to use the wireless on the 2Wire, you could turn off the wireless on the Time Capsule. Then backups will occur over the 2Wire wireless, or over Ethernet.
    I don't really recommend the "Join a wireless network" setting on the Time Capsule for most users, but you could go back to that setup as well if you want after the first backup is complete.

  • How can I create a new Care Plan with one or more care tasks

    Hello,
    I'm working on a Dutch website in the HealthVault Environment. I got difficulties in creating and updating a careplan with care tasks. Most likely it's due to lack of knowledge...
    Following code works fine:
    CarePlan plan = new CarePlan();
    plan.Name = "test";
    this.PersonInfo.SelectedRecord.NewItem(plan);
    It creates a plan called [test]. But I don't know how to create a plan with one or more tasks in it: the tasks property is read only.
    https://msdn.microsoft.com/en-us/library/microsoft.health.itemtypes.careplan.tasks.aspx
    Half a year ago I was able to add an example of a careplan, which was a feature of the dev tools, but for some reason that's not possible anymore.
    https://developer.healthvault.com/DataTypes/Overview?TypeId=415c95e0-0533-4d9c-ac73-91dc5031186c
    So my question is, how can I add a new care plan with a task like the example from the HealthVault dev tools:
    <tasks>
    <task>
    <name>
    <text>Run 100 miles</text>
    </name>
    <description>Run 100 miles in 6 months</description>
    <start-date>
    <structured>
    <date>
    <y>2013</y>
    <m>12</m>
    <d>1</d>
    </date>
    </structured>
    </start-date>
    <end-date>
    <structured>
    <date>
    <y>2014</y>
    <m>6</m>
    <d>1</d>
    </date>
    </structured>
    </end-date>
    <target-completion-date>
    <structured>
    <date>
    <y>2014</y>
    <m>12</m>
    <d>31</d>
    </date>
    </structured>
    </target-completion-date>
    <sequence-number>279128532</sequence-number>
    <recurrence>
    <interval>
    <text>Once</text>
    </interval>
    <times-in-interval>10</times-in-interval>
    </recurrence>
    <reference-id>p01vil21ckg7k2346y1g60337mmi20sg564l321l8pmpqev39n302572sewu76lh9019s3993e02924</reference-id>
    </task>
    </tasks>
    Any help is welcome 
    Wilfred

    Hi Wilfred,
    Have you tried this?
    CarePlan plan = new CarePlan();
    plan.Name = "test";
    plan.Tasks.Add(someTask) 
    If you have a task list already, you would need to enumerate through it and add one by one...
    foreach (var task in existingList)
        plan.Tasks.Add(task)

  • How can i  create and access resource file(with .res ext) in j2me

    hi,
    i am developing an mobile international application using jsr-238 an optional api to implement the idea of internationalizationand localization.
    please tell me how can i create .res files in my application to store strings of different languages.thanks inadvance.

    Hello GG RA,
    which fileformat do you want to use (binary or ASCII)?
    There are some LabVIEW shipping examples for File I/O
    You could use the LabVIEW NI Example Finder (Help --> Find Examples..(search item "file")) to get an overview about the different file-formats in LabVIEW.
    Hope this helped out and feel free to reply if you have more questions about File I/O in LabVIEW
    Best regards
    Benjamin

  • How can you create a spry menu bar with no background colour?

    How can you create the first level of a spry menu bar to have no colour? I have a coloured background right now and the colour matches when you load the site in Internet explorer but does not match in Firefox. Any suggestions are welcomed on how to fix this.
    Thanks!
    HK

    Here is the site:
    http://partnersnaturally.ca/
    I am learning with code, (obviously) so any feedback would be nice. I use dreamweaver CS4, but when I originally designed the site it was in a much older version of dreamweaver. I wonder if that could also be a cause. (besides human error)
    Thanks again,
    HK

  • How can I create public AND private access with a wireless VPN router?

    I am thinking about getting one of the new pre-n wireless routers that has a builtin VPN.  I will need to have a private net for my office and a public net for my customers.  On the private side- my employees will need to access all network resources and servers etc.  On the public side, my customers just need to get to the Internet and maybe print on that side too.
    Both sides will be DHCP.
    Can I set this up with 1 device ro do I need 2?  How can I do this?  Any help is greatlu appreciated.
    Thanks all.
    Message Edited by Gman on 10-14-200607:08 PM

    The only safe way to do this is to creat user groups On your server and give specific assess to the users who log into the network.
    Using a single router , bifurcating a public from a private network is not possible.You will not be able to use the VPN since the users hav e to be connected to the VPN to log into your network.

  • How can I create a stop animation video with single images in Premiere Pro?

    Let me start off by saying I am 100% new to pretty much all Adobe software as of about 3 weeks ago. I have been doing a lot of googling these past few weeks. With that said, I will do my best to explain my question.
    I am making a stop motion animated video.  I am not using several photos to create the look, but rather single photoshopped images that I have deleted the backgrounds out of. Basically the video is single charms "crawling" or flying in individually from off screen into a circle, there is a story explaining what each charm means. I started in After Effects, but had issues with audio... am I right in my understanding that you cannot preview the audio unless you use the preview feature? So my solution was playing a guessing game, rendering/exporting, importing it to Premiere Pro, taking notes and then heading back to After Effects to try to re-do the timing. Obviously this was not working too well.
    Then after doing more googling and clicking around I figured out you could layer images in Premier Pro and make them move just as you would in After Effects, which is great! There are two things hanging me up...
    1. I used the wiggle effect in After Effects. For the life of me I cannot find or figure out an effect or preset similar to this in Premiere Pro. Is there such a thing? Or do I have to create rotation keyframes? (I think I'm using keyframes correctly).
    2. Making the images stop-motiony and not smooth.
    My question is... any suggestions on how to re-create the wiggle effect easily in Premiere Pro? Or is there away to create the effect in After Effects and then import the image into Premiere Pro and still be able to change the position and timing?
    Please help! My deadline is tomorrow by the end of the work day!
    Please forgive me if these are silly questions... go easy on me, I'm soo new! Thanks in advance!

    Thanks so much for the reply!
    I read that... but it doesn't preview the whole thing? It only previews a few seconds and then loops. I tried to figure out how to change the preview settings, but I can't seem to get it to work.

  • How can I create a file in iMovie with a lengthy audio file, but only 1 picture?

    Let me state first off that I'm a blind user using the Voiceover screen-reader in OS X.
    Now, I want to upload some audio to Youtube, but they do not allow simple MP3 files. As such, I want to create a file in iMovie with my audio and 1 picture to use as a visual. Within iMovie, I add my audio file, select a picture, but when I publish, the audio is cut off after only a few seconds. Can someone please explain how I can fix this issue so my entire audio clip will play?

    iMovie is a visual medium, so you need to make the duration of your photo at least as long as your voiceover track. You should be able to double click on your photo and then enter a duration.
    See iMovie Help at this link.
    http://help.apple.com/imovie/#mov3a883915
    An MP3 file may work for you, but for best results, use a WAV or AIFF file (uncompressed). You can convert MP3 to AIFF in iTunes. Let me know if you need instructions.

  • SharePoint Designer 2013 (2010 Platform Workflow) - How can I create a new list item with a SPECIFIC content type?

    In SharePoint 2010 I created workflows that used the 'Create list Item' Action, which then set the Content Type ID (so I could create documents of various types in a document library). 
    We just switched to the SharePoint 2013 platform, and now the drop down for Content Type ID is blank in all of the workflows that are still using the SharePoint 2010 platform.  Is there any way to create a list item with specific content
    type?  Even if I could just input a string into that field instead of using this blank drop-down.  Please help! 

    Hi Sarah,
    According to your description, my understanding is that you cannot create a new list item with a specific content type using SharePoint 2010 Platform Workflow.
    I tested the same scenario in my environment, and the Create List Item worked fine with the specific content type.
    How did you create the content type?
    Please check if the content type is added to the list/library the workflow associated with.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How can i create a query of overdues with days wise

    Hi,
       thanks for quick reference and i am using time char cal year/month,period like and some thing i got it but i am not able to sure that its enough to crate a query.
    if u dont mine can u give me a step by step procedure for it and i know that i have to offset but i dontknow how can and for which kf i have to offset.
    thanks for who gave me help.
    bye sandhya.

    Hi Sandhya,
    Re: Aging Report
    Well, in the new selection you will restrict with the cal year/month. (i think it is user entry variable). In the same selection drag the respective key figure too. On the period object use offsets. I hope this will help you. for step wise better take a look of the above link. Its not much complicated I believe. Please get back if you have any doubts.

  • How can I get security updates without dealing with Firefox 4 update reminders?

    I tried Firefox 4 for awhile, hated it and reloaded 3.6. I keep getting reminders to update to 4 which are bothersome. I have disabled reminders, but how can I continue to get security updates without upgrading to 4?

    Install Secunia's free Personal Software Inspector: http://secunia.com/vulnerability_scanning/personal
    You also need to update Flash a.s.a.p. The version you're running right now is a security risk. See http://www.adobe.com/support/security/advisories/apsa11-02.html
    Update via http://get.adobe.com/flashplayer/
    Also, update Firefox to 3.6.17 because there was a security breach at Comodo which is an SSL certificate provider recently whereby a number of fraudulent certificates were inadvertently issued. These allow a hacker to impersonate any site including online banking and the Firefox version you're running at the moment will not warn you that the site is a fake. The fraudulent certificates were blacklisted in v3.6.17 and beyond.
    See http://blogs.comodo.com/it-security/data-security/the-recent-ra-compromise/

  • How can I create a multi field search with wildcard option

    I've been working on a project which has a MySQL database
    that the user can search by choosing to enter some or all of three
    fields in a form on a PHP page, which then, obviously, relate to
    specific variables and fields in the database.
    Previously I had the default values of the variables as '-1'
    which meant that the results page simply ignored any of the
    variables that hadn't been filled in. However, now that the 8.0.2
    update to Dreamweaver has forced the Type of each variable, it no
    longer ignores those values and so returns no results. In order to
    get a correct result I have to fill in all three, I can't just fill
    in one of the fields.
    What do I have to do to regain the functionality of the
    results page simply ignoring any field that isn't filled in
    (effectively giving a 'any' value)?

    When building SQL statement, leave out the WHERE
    xyzfield=SearchString.
    "Podsnap" <[email protected]> wrote in
    message
    news:e7o8o0$jpo$[email protected]..
    >I need to create a search page that give all results if
    nothing is input
    >into
    > the field.
    >
    > Ultimately I want to have several fields on the page and
    the user will be
    > able
    > to enter as much or as little into the fields.
    >
    > So while the first field it likely to be a keyword
    search I might also
    > have a
    > field for say, 'city' and if nothing is chosen then it
    will give results
    > for
    > all cities but, obviously, if London is chosen then it
    will give results
    > for
    > just London. (And obviously if something is put into the
    keyword field as
    > well,
    > then that will filter the results further).
    >
    > Any ideas how I go about this? Or can you point me to a
    good tutorial? Or
    > even
    > an extension?
    >
    > Thanks.
    >
    > PS: I'm not, by any means, a code warrior, so speak
    slowly ;)
    >

  • How can I create a playlist that syncs with my ipod touch 5 that plays both podcasts and music? Before updating to itunes 11 I was able to do it and now it seems that the power is gone. (I do not have the podcast app on my ipod touch 5)

    When apple first introduced the podcast app for my iphone I discovered that installing it took away the option to have a playlist (smart playlist or regular) that mixed music, audiobooks and podcasts. I therefore quickly uninstalled it and was happy to have my iOS devices happily mixing music and podcasts.
    With the push to itunes 11.1 and iOS 7 on my ipod Touch and ipad mini I no longer have mixed playlists. I do see (according to itunes) that the podcasts are copied to my devices but there doesn't seem any way to play them. Nor do my mixed format playlists contain them.
    When combined with the change to the podcast tab in itunes that shows all available by default and doesn't seem to offer any way to Turn it OFF so I can easily see what new unlistened to podcasts exist it seems that the way I got used to using my itunes since my ipod nano first generation has been eliminated. I haven't read why so if someone could point me to their logic on how come I would want the changes they keep trying to force on me I would at least understand their motives.
    If no one has a better fix I have discovered that I can declare the podcasts to be audiobooks and get them to play that way. One downside to that approach is that it doesn't clear them out of the podcast folder thanks to the change to the iCloud friendly format or whatever they were hoping for.

    And what is the wording of the error message?

  • How can I create a redirect to an URL like in SICF?

    Hi,
    we offer  the payroll (com.sap.pct.erp.ess.paycheck_service / sap.com/ess~rem/payslip2) in our portal which is a Java-WD. Whenever we import a modified version of the corresponding HRFORM into the P-system the application aborts with an error because the HRFORM has to be generated first after the import.
    I wanted to get rid of this problem by using the SICF where you can define a redirect to an URL (I wantet to switch to a "service is under construction"-WD). Unfortunately the SICF can only be used for WD4ABAP-services as I know - not for Java.
    Has anybody an idea how to solve my problem? I want to switch to a "service is under construction"-WD whenever there's an abort while processing the payroll application.
    We don't have any Java skill.
    Greetings,
    Steff

    You can place the html in component folder. src>mimes>Components. and can be accessed by code
    try {
    String url = WDURLGenerator.getAbsoluteWebResourceURL(wdComponentAPI.getDeployableObjectPart(),"<redirect>.html");
    } catch (WDURLException e) {
    wdComponentAPI.getMessageManager().reportException(e.getMessage(),true);
    1) you can use the url to navigate to the redirect page or can try exit plug.
    nikhil

Maybe you are looking for

  • Windows 7 slower on Macbook Pro 8,2 vs MacBook 4,1

    So I've owned 2 Apple laptops which have been the only 2 laptops I've ever owned. One is an Early-2008 black MacBook (4,1 I think) and my current laptop which is a Late-2011 MacBook Pro (8,2). After getting my MacBook Pro I gave my parents my old bla

  • Where is the download for Acrobat X Pro?

    I have bought the creative cloud 6 standart and i can not find a download for Acrobat X Pro. I have downloaded the trial for Acrobrat XI Pro, but my Serial number doesnt work there. What should i do? Thanks, Kat

  • ERROR :SCRIPT7002: XMLHttpRequest: Network Error 0x2efd, Could not complete the operation due to error 00002efd. File: default.html

    Hi ,all I am beginner for windows 8 app development. I created simple project on domain name called www.aaa.com and also hosted web services on same domain. at that time i was able to access web services on my application code using AJAX. Then i crea

  • Importing stills - how set duration?

    I'm importing a bunch of JPG still images - not a sequence. We used to be able to set the duration of each clip created, but now it seems to default to 10 seconds with no way to change? I checked out User Preferences, etc., couldn't find a way. Anybo

  • Additional cost*

    Ey I'm new member I would like to ask-when I'm on youtube trying to watch a video online it uses my airtime. I hv BIS nd I from south africa.. Thanks!