Market set adapter

Hi experts,
Can you provide any help on Marketset adapter?The help documentation is not of much help.Any additional documentation, or your specific implementation scenario description,step by step configuration details like it's given for some other adapters like IDOC would be of immense help.
Regards
JD

Hi Sudheer,
You use the marketplace adapter (MPA) to connect the Integration Server to marketplaces. It enables messages to be exchanged by converting the XI message format to the marketplace format MarketSet Markup Language (MML) and the other way around.
For more information on the Marketplace Adapter and it's feature, go thro' the below link:-
http://help.sap.com/saphelp_nw04/helpdata/en/1a/ef487f5b680f4c84d632cfe76ec8cb/content.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/b3/30cc3fbeb83946e10000000a114084/content.htm
Hope this helps.
Regards.
Praveen

Similar Messages

  • How to set adapter specific message attributes on Pi 7.1 inside a Java map.

    Hello,
    how can I set adapter specific message attributes in a Java mapping on PI 7.1.? The TransformationInput grants access to the DynamicConfiguration but the TransformationOutput doesn't. I have found threads refering to the old way of implementing Java mappings (e.g. Get dynamic filename in a Java Mapping (NOT UDF)). But there doesn't seem to be one refering to the actual PI.
    Kind regards,
    Heiko

    Using DynamicConfiguration from the TransformationInput works.

  • Setting adapter specific message attributes

    hi xi guroos.
    i just got one doubt in a file to file scenario.
    if i set adapter specifec message attributes in sender file CC.
    and if  i enabled file name checkbox.
    some xi prof saying that the file at recievr directory will get created with the same filename which we r using at source directory .
    if this is the case then no need to create any UDF for getting same file name i n mapping and one more doubt is
    then what is the use of typing filename at reciever file adapter.
    u r anwer will be appreciated.
    waiting for u.
    bey.
    regards.
    seeta ram.

    <i>some xi prof saying that the file at recievr directory will get created with the same filename which we r using at source directory .</i>
    Its true.
    <i>if this is the case then no need to create any UDF for getting same file name i n mapping and one more doubt is</i>
    By marking the checkbox, at receiver u could have the same filename as that of sender. But this is the only requirement, UDF is not required.
    However if u want the filename as a value in Message mapping, u need the UDF. And moreover, there r many more header parameters that could be accessed in UDF
    <i>then what is the use of typing filename at reciever file adapter.</i>
    If u doesnt tick the checkbox (in most of the cases), then XI should know with which name file should be created
    Hope each doubt is cleared
    <i>[Reward if helpful]</i>
    Regards,
    Prateek

  • Setting Adapter-Specific Message Attributes in an Adapter Module

    Hi!
    I want to set Adapter-Specific Message Attributes in an Adapter Module. Is it possible to configure the Variable Transport Binding in this way?
    Best regards,
    Daniel

    I'd like to know it as well.
    I've checked out the XI AF API but didn't find much.
    One thing that I've observed is that since Module API can treat any Message Class (not only XI Messages), I guess it won't have any specific methods for XI messages (hence, no dynamic configuration). But you could try to get the message object and then treat it as an XI Message (you would be doing the steps that the Java Mapping API do before it calls a Java Mapping class) to get the Map objects (which include the parameters).
    Good luck on it, and let us know if you have any progress!
    Regards,
    Henrique.

  • Where is the Set Adapter Specific Attributes indicator on the comm channel?

    I really think I must be losing it guys.
    We are SP16, we went directly to SP16 from 9, so we skipped over SP14.
    When I go into a communication channel and choose an adapter(File) for instance. I cannot find the Set adapter-specific message attributes indicator anywhere!
    Someone please tell me where it is located! If possible please send a screenshot to [email protected]
    Thanks,
    chris

    Hi,
    did you reimport SAP BASIS component to IR ?
    just like specified in question 3 (adapter section)
    in the XI FAQ?
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    Regards,
    michal

  • SAP Market Place Adapter

    Hi Frnds,
    What is SAP Market place Adapter, when i refer the doc in help.sap.com, i dint get any idea, in which scenarios we will use SAP Market place.....
    Regards,
    raj

    Hi
    You use a marketplace adapter to connect the Integration Server to marketplaces. It enables messages to be exchanged by converting the XI message format to the marketplace format MarketSet Markup Language (MML) and the other way around.
    You configure the adapter in the configuration part of the Integration Server when you define a communication channel.
        To be able to send messages from marketplaces to the Integration Server, you must first configure the sender marketplace adapter.
    ·      To be able to send messages from the Integration Server to marketplaces, you must first configure the receiver marketplace adapter. The receiver adapter supports system acknowledgments but not application acknowledgments.
    ·        The marketplace adapter takes existing attachments into account and forwards them on.
      Configuring the Receiver Marketplace Adapter
    http://help.sap.com/saphelp_nw04/helpdata/en/3b/059afabd164c4789075c9810911c14/content.htm
    Configuring the Sender Marketplace Adapter
    http://help.sap.com/saphelp_nw04/helpdata/en/01/cdd3c885f29247b0bb88d4f9df0b38/content.htm
    Thanks
    Saiyog

  • Market Place Adapter

    Hi,
    Can some one explain when a market place adapter is used? What kind of systems are connected to XI using that adapter ? Any links also can be off good help.
    Thanks and Regards,
    Sudheer.

    Hi Sudheer,
    You use the marketplace adapter (MPA) to connect the Integration Server to marketplaces. It enables messages to be exchanged by converting the XI message format to the marketplace format MarketSet Markup Language (MML) and the other way around.
    For more information on the Marketplace Adapter and it's feature, go thro' the below link:-
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/ef487f5b680f4c84d632cfe76ec8cb/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/b3/30cc3fbeb83946e10000000a114084/content.htm
    Hope this helps.
    Regards.
    Praveen

  • Set adapter specific message attribute in graphical mapping

    Hi,
    I'm trying to set the mail reply to field in email messages sent by mail receiver adapter.
    To do this, I use the ASMA and developped my own UDF
    public String setMailFrom(String mailFrom, Container container) throws StreamTransformationException{
    DynamicConfiguration conf = (DynamicConfiguration) container
        .getTransformationParameters()
        .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create(
        "http://sap.com/xi/XI/System/Mail",
        "THeaderREPLY-TO");
    String valueOld = conf.get(key);
    if (valueOld != null) {
        String valueNew = mailFrom;
        conf.put(key, valueNew);
    return mailFrom;
    This works but I needed to asign the result of the udf to a node of my target message in order for the udf to be called.
    Is there a way to call a UDF without assigning the result to anything in the target message....
    Is there a better way to modify the ASMA than using a UDF in a mapping.
    Thanks.

    assign it to the root node of the target message.
    Also use exceptions in your code so that you can do independent testing.
    Additional ref:
    /people/shabarish.vijayakumar/blog/2009/03/26/dynamic-configuration-vs-variable-substitution--the-ultimate-battle-for-the-file-name

  • Setting Adapter Timeout

    Hello
    I am having a File/FTP Adapter at my receiving end.I have noted that if a async msg is sent with Exactly Once option and if FTP server is down the message does not gets delivered but as soon as its up it gets delivered.
    I just wanted to know how long Adapter keeps polling to the target directory? Can we set some specific timeout for adapter e.g. if FTP server does not comeup within 15 mins the adapter should timeout and message should fail. The message can then be sent manually.
    Thanks in advance.
    Regards
    Rajeev Patkie

    Ashu,
    It is not only the JTA timeout which may cause transaction rollback. If JDBC and BPEL are involved then following timeouts also does matter and ideally all of them will be less than the JTA timeout -
    1. XA connection timeout configured in data-source
    2. Statement timeout configured in data-source
    3. BPEL timeout - set property SyncMaxWaitTime (value in seconds) in the EM console
    4. SOA EJB's timeout
    Now question here should not be that which timeout is actually causing the transaction rollback, rather question should be that why a JDBC call is taking 300 seconds? What processing are you doing which is taking this much time?
    Regards,
    Anuj

  • Setting adapter Ldap in Oracle Virtual Directory

    I'm setting up a new adapter in Oracle Virtual Directory for a OpenLDAP, something curious happens does not enable me finish the button, another detail is when I click on SSL I get the following message:
    could not load certificate chain: java.lang.exception: Could not retrieve certificate

    After inspecting the OVD's RootDSE, I noticed that it does not support LDAPv3 controls. There is no supportedControl attribute present in RootDSE even if the Persistent Search Control flag is enabled from OVM.
    Is there any way to point to the backend SunOne server's RootDSE through OVD so the SunOne's persistent search control could be used?
    Thanks,
    Smita Raut

  • Setting Adapter Specific properties

    Hi All,
    I have the following Scenario :
    Source system ; SAP R/3   - Client Proxy is created to send the data
    Destination System : JMS(Websphere MQ) . Receiver JMS channel is used to deliver the message.
    I have written a proxy in R/3 system to post the data to JMS.
    The receiveing Application is expecting the Message in byte format and it is also expecting a custom property "File Name" as part of the JMS Message properties.
    I just stuck up how to set these in my XI message at the sending system and resolve the same at receiver JMS channel and deliver to the target application.
    Thanks in advance.
    Regards
    Renu

    Hi,
    http://help.sap.com/saphelp_nw04/helpdata/en/10/b1b4c8575a6e47954ad63438d303e4/content.htm
    have a look at this link from java.sun.com, there you can read details (predefined JMS properties, types you can use, etc..) about JMS properties.
    http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/jms/Message.html
    If you're talking about "Adapter-Specific Message Properties"
    then this is the same as for any other adapter:
    have a look at my weblog on "Adapter-Specific Message Properties" usage:
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    also check:
    http://help.sap.com/saphelp_nw04/helpdata/en/43/03612cdecc6e76e10000000a422035/content.htm
    and on this page:
    http://help.sap.com/saphelp_nw04/helpdata/en/f4/2d6189f0e27a4894ad517961762db7/content.htm
    you'll see what kind of "Adapter-Specific Message Properties" can you get from your mapping program
    Thanks
    Swarup

  • Setting adapter specific re-schedule time period

    When sending message in asynchronous mode, if it fails, XI will automatically re-schedule it for a few times later, for a certain amount of repeat times.(I believe our current setting, the retry period  is 5 minutes, and for 3 times)
    The problem: We have different adapters, and for some adapters, we have special requirement of retry period. My question is, can I set up the retry period per adapter level?

    Hi Wgao,
    Actually this  depends on the Inbound or Outbound Queues.. , I don't think so it is depending on the Interface Level/Adapter Level.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b0/df5f3c8dde1c67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/75/66ee407552742ae10000000a155106/content.htm
    Hope this helps,
    Regards,
    Moorthy

  • Can I set adaptive resolution to OFF as the default ?

    Hi -
    I turn off adaptive resolution (fast previews) as a matter of course but it seems that I have to do this specifically for every composition window.
    The default is apparently for adaptive resolution to be on.
    This is a little tedious and I wondered if there is a way to change this default behaviour.
    I would expect to find such a setting in preferences but that only offers an option to set the degree of adaptive resolution - not turn it off completely.
    Obviously not desperate but it would be one less hassle.
    Thanks.

    Thanks Rick.
    By the time I discovered that I didn't like adaptive resolution and then how to do something about it I already had a couple of CS6 project files and lots of comps on the current job.
    I suppose I would have realised this before too long but I'm grateful to you for taking the time and getting me there quicker.
    Thanks - Rod

  • Is limiting network speed by setting adapter speed good? [SOLVED: yes]

    i have an arch NAT router PC which has 3 network adapters present; "external" for my cable modem interface, "internal" for an internal subnet 172.16.0.0/16, and "wifi" which is a separate internal subnet 192.168.192.0/24 open wifi that I recently setup for guests and the like. the open wifi is explicitly barred access to the 172 network with iptables. i currently have a 50mbps down/10mbps up comcast internet connection. i have been limiting the open wifi's speed by setting the NIC designated for it to 10 mbps, just so that all of my bandwidth isn't completely eaten up. this appears to work completely fine; realistic speed is measured to around 8mbps throughput, which I consider fine for basic internet access.
    i'm just curious whether this is an appropriate method to restrict bandwidth speed? i've read about something called "qdisc" which could limit speeds within iptables, is this a better way to accomplish this?
    Last edited by train_wreck (2012-11-15 03:34:10)

    Luckily you are in the position of having a whole link that you want a hard limit on.
    tc is more for traffic control between source and destination of packets going over the same link, or dynamic stuff. However, it will never be as trusted as a link set to a slower bit rate, and can be a pain to manage/T-Shoot.
    Over the WAN traffic control is normally done with switching protocols like ATM and MPLS. However, even on large networks clients may be rate limited by the network admin simply setting the speed of their link slower in the configuration then what it can really handle.
    Last edited by hunterthomson (2012-11-14 10:29:33)

  • Step Setting adapter

    How can I change the Adapter type in the Step Settings for all of my sequence calls from the "NONE" to "CVI" type.
    I have a large number of sequences and don't want to change each one individually.
    Thanks
    John
    Solved!
    Go to Solution.

    I wish it was that easy.  I am using a customer supplied program that created the sequence files, but each test is a separate sequence in the sequence file.  So each test is listed as a sequence in the sequence pane.  I am not able to change multiple steps by selecting muliple sequences.  The attached screenshot might help.
    Thanks
    John
    Attachments:
    Capture.JPG ‏32 KB

Maybe you are looking for

  • Load a PDF and Print it Without User Seeing the PDF

    I have a client who has a need to allow users via a web browser to print PDFs wihtout gaining direct access to them.  Ignoring all the flaws in this logic , I am new to Flex and am having difficulty determining if this is possible.  So, here are the

  • AFP version in Leopard

    What version of AFP is used in Leopard? What are the AFP functions 76 and higher? Are these documented somewhere? - Alex

  • Accessing the Sample Clock

    I wish to use the sample clock of my E-Series board to establish a time base (which will have greater resolution than LabViews standard millisecond timers). How can I do this? Also, do I have to be acquiring data in order to use the clock? Or, can I

  • Hyperion Planning distributive

    Hello, Tell me please, Hyperion Planning installer pack from edelivery.oracle.com include all update and path which is in support.oracle.com? Thanks

  • MAJOR BUG - !!! Please Help!!!!!

    I've been working on a song and saving regularly but I cannot load it after quitting and restarting logic. i get an error that says " out of memory cant insert or delete data " this is a consistent repeatable error on this particular song. I've loade