Difference between Standard PI 7.31 SP14 Rest adapter VS Advantco Rest Adapter

Hi,
I have a requirement which need to connect Restful webservices( JSon format). and my current version is on PI 7.31 SP11
I have to chose the best options of REST adapter which is avialable in the market.
So far I identifyed two options one is '3rd party Advantco REST adapter" and another one is 'Standard REST Adapter which is avilable from PI 7.31 SP14'
If i chose standard REST adapter which is avilable on PI 7.31 SP14 then I only do 3 more SP version upgrade, if I chose 3rd Party Advantco REST adapter, for cost prospective I need to spend money.
My question is here, which is the best option for Rest adapter requirements out of these options? Please suggest me.
Thanks & Regards,
Sateesh N

Hi Heiko - There is no standard adapter available from SAP for invoking restfull services.
Even the wiki which you are referring leads to advantco's REST adapter.
http://scn.sap.com/community/pi-and-soa-middleware/blog/2012/03/07/integrating-rest-services-on-pi
There is a simillar adapter from Ka Te
http://www.kate-group.com/portfolio/restful-adapter-for-sap-pi/
Reference : https://scn.sap.com/thread/3518130

Similar Messages

  • OAB - difference between standard rate and variable rate

    What is the difference between standard rates and variable rates

    These Variable rates will take into effect only when you check the "uses variable rate" check box in standard rate right?
    Yes, variable rates are evaluated only if this flag is selected.
    You mentioned Standard Rate is the rate you attach to a benefit. Where do we attach?
    You donot attach the rate to a benefit in a separate form. You select the compensation object you want to attach the rate to within the standard rates form.

  • Difference between standard SOP and Flexible planning

    Hi, Pls explain the difference between Standard SOP (sales and Operation planning) and flexible planning?

    Hi,
    Following links will help you to understand.
    https://forums.sdn.sap.com/click.jspa?searchID=20534538&messageID=6314185
    The contents are as below :
    Steps
    1) Create Planning for material MC87
    2) Copy to Active Version MC78
    3) Transfer to Demand Mangement MC74
    B) STD sop for Product Group
    Here also the Characteristics are same material->product group
    You have to maintain master data Product group
    steps:
    1) Create Product Group MC84
    2) Create Plan for Product Group MC81
    3) Disaggregate Product Group Plan MC76
    4) Copy to active version MC78
    5) Transfer to Demand Management mc75 for Pg or mc74 for material
    FLEIXIBLE PLANNING
    Here you can able to Define your own characteristics and Key figures
    Char like Sales org,Dis chann, Div,......
    Key figures like stock,invoice qty,....
    steps
    1) Create Info structute MC21
    2) Maintain Planning Parametes MC7F
    3) Create Planning Type MC8A
    4) Create Flexible Planning MC93
    5) Copy to active version MC8V
    6) Transfer to Demand managemet
    5) Create Std SOP Planning -MC
    6) Transfer to DM from change mode of Flex Plann with active version MC94
    if you want use the flexible planning info like SIS in std sop
    after the 4th step of above it will be like
    5) MC87 std sop there Sales data from SIS it will ask for info str and version then you can get it automatically then the std steps like
    6) Copy to Active Version MC78
    7) Transfer to Demand Mangement MC74
    Please refer this link also,
    SOP Process

  • Difference between Standard Pricing and Moving Average Price

    Hi,
    Would like to seek some advises on the difference between standard price and Moving average price.
    also, how does it affect the account postings differently?
    Thanks

    Standard Price
    Materials whose price control indicator is set to S are valuated in Financial Accounting (FI) at standard price.
    This is recommended for semifinished products and finished products.
    The moving average price is shown as a statistical value in the material master record.
    The standard price is normally calculated using a standard cost estimate for the material. The standard price can also be calculated in a mixed cost estimate.
    Moving Average Price
    When materials whose price control indicator is set to V are received from in-house manufacturing processes, they are initially valuated with a value you defined (such as the standard price). When you settle, the material stock account is debited with the variances. This results in a new moving average price.
    Valuating semifinished products and finished products with the moving average price is not recommended.
    Regards,
    Indranil

  • Difference between standard dtp and direct access dtp

    Hi,
    Can anybody tell me the difference between standard DTP and Direct access DTP other than Help.sap.com.
    Regards,
    Devi

    simple words.. Standard DTP needs to use for Physical data targets loading.
    Direct Access DTP needs to use for virtual providers. you won't pull data into BI. it will directly retrive from DS while reporting .
    Nagesh Ganisetti.
    Assign points if it helps.

  • Difference between Standard Hierarchy and Alternate Hierarchy

    Hi
        Can anyone explain the difference between Standard Heirarchy and Alternate Hierarchy in Controlling.
    Thanks in Advance,
    Deepthi.

    <b>Standard Hierarchy:</b> It is a hierarchy of cost center groups / profit center groups in which all cost centers / profit centers are gathered together in a controlling area.
    In order to create cost centers, you require a structure in master data maintenance to which you can assign cost centers. You create this CO structure, the standard hierarchy, when you create a controlling area. If this hierarchy is not present during controlling area maintenance, the system automatically creates the highest node there.
    <b>
    Alternate Hierarchy:</b> The alternate hierarchy setting in the controlling area enables you to name up to two more alternative hierarchies (according to fiscal year), which can be used for the authorization check in the same way as the standard hierarchy (meaning, that inheritance logic is used). You can also deactivate the standard hierarchy as an authorization hierarchy, and use only the alternative hierarchy.
    Regards,
    NareN.

  • Difference between standard benefits and advanced benefits

    whats the difference between standard benefits and advanced benefits

    per one of our HR consultants. Below are the additional benefits that you get with advanced benefits over SOB. Please remember OAB needed to be licensed additionally.
    •     Life event management with batch processing (in addition to on-line)
    •     Automation of benefit administration
    •     Flex benefit plan set up
    •     Reimbursement requests
    •     What-if Modeling
    •     Communications Triggering, requested literature etc
    Edited by: Sunthar Tharmalingam on Jan 2, 2013 10:05 AM

  • What is the difference between standard,sorted and hash table

    <b>can anyone say what is the difference between standard,sorted and hash tabl</b>

    Hi,
    Standard Tables:
    Standard tables have a linear index. You can access them using either the index or the key. If you use the key, the response time is in linear relationship to the number of table entries. The key of a standard table is always non-unique, and you may not include any specification for the uniqueness in the table definition.
    This table type is particularly appropriate if you want to address individual table entries using the index. This is the quickest way to access table entries. To fill a standard table, append lines using the (APPEND) statement. You should read, modify and delete lines by referring to the index (INDEX option with the relevant ABAP command). The response time for accessing a standard table is in linear relation to the number of table entries. If you need to use key access, standard tables are appropriate if you can fill and process the table in separate steps. For example, you can fill a standard table by appending records and then sort it. If you then use key access with the binary search option (BINARY), the response time is in logarithmic relation to
    the number of table entries.
    Sorted Tables:
    Sorted tables are always saved correctly sorted by key. They also have a linear key, and, like standard tables, you can access them using either the table index or the key. When you use the key, the response time is in logarithmic relationship to the number of table entries, since the system uses a binary search. The key of a sorted table can be either unique, or non-unique, and you must specify either UNIQUE or NON-UNIQUE in the table definition. Standard tables and sorted tables both belong to the generic group index tables.
    This table type is particularly suitable if you want the table to be sorted while you are still adding entries to it. You fill the table using the (INSERT) statement, according to the sort sequence defined in the table key. Table entries that do not fit are recognised before they are inserted. The response time for access using the key is in logarithmic relation to the number of
    table entries, since the system automatically uses a binary search. Sorted tables are appropriate for partially sequential processing in a LOOP, as long as the WHERE condition contains the beginning of the table key.
    Hashed Tables:
    Hashes tables have no internal linear index. You can only access hashed tables by specifying the key. The response time is constant, regardless of the number of table entries, since the search uses a hash algorithm. The key of a hashed table must be unique, and you must specify UNIQUE in the table definition.
    This table type is particularly suitable if you want mainly to use key access for table entries. You cannot access hashed tables using the index. When you use key access, the response time remains constant, regardless of the number of table entries. As with database tables, the key of a hashed table is always unique. Hashed tables are therefore a useful way of constructing and
    using internal tables that are similar to database tables.
    Regards,
    Ferry Lianto

  • What is the difference between Standard text and Text Symbols?

    Hi,
                1.Difference between Standard text and text symbol,?
                2. Which we use Standard symbol?

    Text symbol
    Text symbols are symbols representing text elements. In fact, a text symbol can be defined for every text elements. The reading of the form is easier in the SAPscript editor. The name of the text symbol must not exceed 32 characters and its value 60 characters. The value assignement can be done in two ways:
    - Using the following command: "/: DEFINE &SYMBOL&='TEST_SYMBOLE'"
    - Using a standard text symbol.
    The text symbol value is temporary stored. When the print program finishes the execution, the text symbol does not exist anymore. The text symbol must have a value when it is declared.
    Also check this link,
    http://www.supinfo-projects.com/en/2005/forms_sapscript_en/5/
    Standard text are good, if you are using them in more than one SAPScript, because you have to maintain them only once, and not in every SAPScript.
    It is really good to write rarely changing texts into the SO10 standard texts (for example company name, and address).
    standard text is not always used in scripts. when ever u want to display some data u need to use standard text so that the data gets displayed. Say, u have a large piece of document which needs to be printed at end of script... rather than writing the whole thing in script, we create standard text using SO10 and then use the name along with standard text in script.

  • What's the difference between Standard and Enterprise?

    Hi,
    I want to download oracle 8i for linux,and I don't know
    what's the difference between the standard and enterprise
    version. Can anyone give me the answer? Thanks a lot.
    forfun
    null

    forfun (guest) wrote:
    : Hi,
    : I want to download oracle 8i for linux,and I don't know
    : what's the difference between the standard and enterprise
    : version. Can anyone give me the answer? Thanks a lot.
    : forfun
    Enterprise vs Standard : technical view
    If you install Enterprise you must:
    - install Enterprise whith all the modules
    - apply the patch 8.1.5.0.1
    (if all the modules weren't installed, the patch fails because
    he tries to relink non installed products)
    If you install Stardard you must:
    - install Standard
    - no patch required !
    Enterprise vs Standard : package
    Standard is good enougth for a lot of purposes. It includes
    TextRetrival, Java inside the database, etc.
    With Enterprise, you can by additional products like Spatial
    data, Time Series, etc.
    Hope this helps,
    Thanks to Yann Doussot for these informations
    Gilles
    http://perso.club-internet.fr/gbriard
    null

  • Differences between standard and enterprise ??

    Hello everyone,
    Where could i find an exhaustive list of all the differences between Oracle 9i standard and Oracle 9i enterprise. Recently, i wanted to use a function based index but it is forbidden in Oracle 9i standard... Are there a lot of other "surprises" like this one ?

    This http://otn.oracle.com/products/oracle9i/pdf/o9i_family_features.pdf is a reasonably exhaustive list of the feature differences between Enterprise and Standard. I believe it is complete, but can't guarantee it.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Difference between standard edition and enterprise edition?

    Is there any document describing the feature differences between Oracle 9i standard edition and enterprise edition?
    Specifically is Oracle Text bundled with the standard edition?
    Thanks a lot
    James

    Hi,
    Check this document:
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=112591.1
    Apart from the features that are present in E.E. and not in S.E., there is little difference (except the license price...).
    Note that some seperately purchased options are only available with E.E., not S.E. (e.g. Partitioning, Enterprise Manager Packs).
    MB

  • Difference between Standard EBS Rapid Planning and stand-alone  Rapid Plan

    Hello All,
    We are currently working on installing ASCP and Rapid Planning as part of client R12 implementation.
    As part of the installation, we identified VCP can be installed in 2 different ways
    1) As a Standard EBS module
    2) Standalone application on top of Web-logic.
    Can anyone please confirm what could be the pros/cons if we go with option 1 and option 2 ?
    Which option should be the best if we are planing to go RP with cloud ?
    Appreciate your inputs if possible.
    Cheers,
    Krishna

    Rapid planning always requires an EBS installation.
    The difference between a standard EBS and standalone is that
    1. a standard RP install (actually an ASCP install) is linked to an EBS source instance (ie data is collected from there)
    2. a standalone install is where you install Oracle Applications 12.1 (ASCP installation) , only configure the ASCP setup (since RP requires certain ASCP functionality like collections/patches/profile settings). Data here is collected through legacy collections (ie coming from a non-EBS source)
    There is no way to run RP just on weblogic
    You mention R12, but bear in mind that RP only works on 12.1.x.
    In your case if you have

  • Difference Between Standard Service PO Lines and Service Inform Lines

    Could someone please advise me of the differences between a Standard Service Line Type and an Informatory Service Line Type? 
    How does using one opposed to the other affect a PO?
    Regards,
    Minh Pham

    no longer an issue.

  • Difference between Standard and Regular Purch Org

    Hi Experts,
    what is the difference between standar purch(used in pipeline procurement ,consignmnet and stock transfer)
    org and regular purch org
    Regards
    Sameer

    Hi,
    If several purchasing organizations procure for a certain plant, you can define one of them as the standard purchasing organization for the transactions "pipeline procurement", "consignment" and "stock transfers".
    In source determination for stock transfers and consignment, the system automatically utilizes this standard purchasing organization. In the case of goods issues of pipeline materials, the purchasing info records of the standard purchasing organization are read.
    Regards
    Utsav

Maybe you are looking for

  • Error comes while save a smart style

    Hi all While i am creating a smart style message comes 'Object can only be created in SAP package' .Then after creating a smrt style then when i am trying to save this smart style the error message comes like that 'SAP object [[style name]] cannot be

  • Batch Renaming in Bridge CS6

    I take pictures of a swim team and I keyword tag each image with the swimmers name.  I would like to batch rename and save in a new folder the files so they have the original filename and then the keyword name.  I don't see that as an option in the m

  • How do I non-destructively sharpen, re-size and save my images if I'm using both LR & CS6?

    Hi guys {and gals}...  Ok... here is my dilemma. I am having an incredibly difficult time understanding the best way to sharpen, re-size and save my images for both posting on the web and giving them to clients. I completed my first paid photo shoot

  • Its not letting me install itunes on my laptop

    Hello ive gotten a new laptop and i am trying to install Itunes but its not letting me. Keeps saying. Service "Apple Mobile Device" (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system service. I don't kno

  • Integration of JSP and xhtml in jsf project

    Can we use both jsp and xhtml in single jsf project. Actually I encountered a problem while configuring jsp and xhtml in web.xml of jsf project. The web.xml configuration file allows to use only one view handler (jsp or xhtml).By default it use jsp v