Possibility of having NW Gateway over SAP CLM?

Dear Experts,
We have a Customer requirement of using NW Gateway over SAP CLM. Can this forum please confirm if this is feasible?
To be precise:
We need to use NW Gateway on SAP CLM to expose the CLM RFCs as oData services and consume them in SAPUI5. The second is quite possible, I understand. My doubt is whether we can install NW Gateway on SAP CLM system to achieve our goal.
Any pointer is much appreciated!
Cheers,
Mickey.

Hi again,
based on SAP Sourcing/SAP CLM integration with SAP SRM and SAP Sourcing - Wikipedia, the free encyclopedia , it is clear that CLM is part of SAP Sourcing which is part of business suite.
Again SAP Sourcing is part of SAP SRM which is of course part of business suite.
Regards,
Chandra

Similar Messages

  • What the advantages of having an BAPI over Other data migrations

    What the advantages of having an BAPI over Other data migrations

    Th advantages of BAPI
    1. Simple to use (its just an FM)
    2. Not cumbersome like bdc
    where we have to record each and every screen
    sequence.
    3. SAP guarantees the consistency
    of bapi in future releases.
    One of the big plusses for BAPIs is that the interface and function are not supposed to change. This is a big plus when you do upgrades or hot packs because the transaction can change (format, required inputs etc) which means you then need to update the call transaction.
    Some of the BAPIs are better documented and easier to use than others.
    You usually need to perform the BAPI that actually does the COMMIT after you call your BAPI.
    The Program coding for calling a BAPI is usually cleaner than setting up the screen flow etc for the Call Transaction.
    You don't need to worry about special data circumstances interrupting the normal data flow of the screens and causing errors because of that.
    BAPIs probably have better performance since they don't do the screen flow processing.
    In general if the BAPI exists for the transaction you want to perform and you can figure out how to use it the BAPI is probably the best way to go.
    This is just from my experience working with both BAPI and Call Transaction. I have had some very good successes with BAPIs, but very occasionally found that I could not get the BAPI to perform the update I needed.
    Refer the transaction BAPI for detail information.
    You can also refer to below links:
    http://www.sapgenie.com/abap/bapi/example.htm
    Basic learning guide:
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    BAPI intro:
    http://www.sappoint.com/abap/bapiintro.pdf
    Overview:
    http://www.planetsap.com/Bapi_main_page.htm
    Also have a look at the following link :
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    Go through the following Document
    Bapi to create customer master
    BAPI_CUSTOMER_CREATEFROMDATA
    BAPI_CUSTOMER_CREATEFROMDATA1
    Or you can use FM SD_CUSTOMER_MAINTAIN_ALL
    what is BAPI?
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module
    ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access.
    Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects.
    You create business objects and those are then registered in your BOR (Business Object Repository)
    which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA.
    In this case u only specify the business object and its method from external system
    in BAPI there is no direct system call. while RFC are direct system call.
    Some BAPIs provide basic functions and can be used for most SAP business object types.
    These BAPIs should be implemented the same for all business object types.
    Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs.
    Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values,
    for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved
    and returned to the calling program.
    The instance is identified via its key.
    The BAPI GetDetail() is an instance method.
    BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed
    so that they can be called several times within one transaction.
    For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction,
    the second BAPI call must not affect the consistency of the sales order 2.
    After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type,
    for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type,
    for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database
    or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type.
    The instance to be cancelled remains in the database and an additional instance is created
    and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst!
    ance and the BAPI and Remove<subobject> removes a subobject from an object instance.
    These BAPIs are instance methods.
    Check these Links out
    http://searchsap.techtarget.com/ateQuestionNResponse/0,289625,sid21_cid558752_tax293481,00.html
    http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm
    http://www.sap-img.com/fu033.htm
    http://www.sap-img.com/abap/ale-bapi.htm
    Please check out this thread..
    Re: bapi
    Also refer to the following links..
    www.sappoint.com/abap/bapiintro.pdf
    www.sap-img.com/bapi.htm
    www.sap-img.com/abap/bapi-conventions.htm
    www.planetsap.com/Bapi_main_page.htm
    www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    Java Connector(JCO) can call not only BAPI's but also the function modules which are remotely enabled..
    BAPI's as i said earlier are remotely enabled function modules..
    Hence, JCO can call also BAPI's(n not only BAPI's as u mentioned).
    Check the following BDC over BAPI
    The steps to be followed are :
    1. Find out the relevant BAPI (BAPI_SALESORDER_CHANGE for VA02).
    [for VA01 use BAPI_SALESORDER_CREATEFROMDAT2]
    2. Create a Z program and call the BAPi (same as a Funtion module call).
    2. Now, if you see this BAPi, it has
    -> Importing structures.
    eg: SALESDOCUMENT: this will take the Sales order header data as input.
    -> Tables parameters:
    eg: ORDER_ITEM_IN: this will take the line item data as input.
    Note :
    Only specify fields that should be changed
    Select these fields by entering an X in the checkboxes
    Enter a U in the UPDATEFLAG field
    Always specify key fields when changing the data, including in the checkboxes
    The configuration is an exception here. If this needs to be changed, you need to complete it again fully.
    Maintain quantities and dates in the schedule line data
    Possible UPDATEFLAGS:
    U = change
    D = delete
    I = add
    Example
    1. Delete the whole order
    2. Delete order items
    3. Change the order
    4. Change the configuration
    Notes
    1. Minimum entry:
    You must enter the order number in the SALESDOCUMENT structure.
    You must always enter key fields for changes.
    You must always specify the update indicator in the ORDER_HEADER_INX.
    2. Commit control:
    The BAPI does not run a database Commit, which means that the application must trigger the Commit
    so that the changes are read to the database. To do this, use the BAPI_TRANSACTION_COMMIT BAPI.
    For further details... refer to the Function Module documentation for the BAPi.

  • SAP SRM Contracts Vs SAP CLM Contract

    Hi SAP Gurus,
    Can you guys please tell me the difference between SAP SRM Contracts and SAP CLM Contracts.
    In which factors SAP CLM serves better than SAP SRM??
    Why SAP CLM came into existence when we have SRM Contracts? What are the draw back and what is not achieved with SRM Contracts?
    Thanks in Advance

    Hello Sanjay
    There are many differences, SAP CLM Contract run in Sourcing and SAP SRM Contracts run in SRM.
    Advantages CLM Contracts:
    - Establish a contract as a result of a project
    - build the draft agreement from a template
    -   - Create your own folder structure to organize your contract attachments
        - Transfer quickly attachments between the different folders
    -   - Download easily multiple attachments with a single click
    - Administrator can create new customer fields (extensions) and customer tables (extension collections) for all      master agreements or specific master agreements
         - New customer fields are immediately available in the UI and as a search parameters 
          - All is done via configuration, therefore no upgrade issues
         - Generation of contract document out of master agreement
         - Template Library with approved legal contract templates for quick contract generation
         -  Possibility to provide end user with flexibility to modify the provided content from the template during contract creation
          - Adjust contract by adding or removing of clauses and sections to the content provided by the selected contract template
          - Multiple content options (alternative clause content) available to provide end user with controlled flexibility
          - Automated transfer of master agreement meta data into generated contact document
          - Creation and transfer of line item table into contract document
    -     - Creation of a unique barcode on the contract header
          - Contract negotiation with clause changes in MS Word are tracked in the contract repository
          - Change of meta data like Agreement Effective Date in MS Word possible and transfer back to master agreement in repository
          - etc
    The are the possibility to integrate CLM contract to SRM Contracts
    Regards

  • HT1848 I rented a movie on my ipod touch and want to watch it on my computer because my ipod is having trouble downloading over wifi. How do you find your rental purchases to download on a computer?

    I rented a movie on my ipod touch and want to watch it on my computer because my ipod is having trouble downloading over wifi. How do you find your rental purchases to download on a computer?

    You cannot.
    iTunes Store: Movie rental frequently asked questions (FAQ)
    If you download a rented movie on your iPhone 4 or later, iPad, iPod touch (4th generation or later), or Apple TV: It is not transferable to any other device or computer."

  • HT1329 My old computer crashed and I had to get a new one.  I was unable to save anything from the old computer.  Is there anyway to get my music from my Ipod to my new computer without having to start over with the old cd's again

    My old computer crashed and I had to get a new one.  I was unable to save anything from the old computer.  Is there anyway to get my music from my Ipod to my new computer without having to start over with the old cd's again

    Hello cheech07,
    The following article contains directions that can help get you back on track with iTunes. I'd recommend picking up at 'Part 5' of the 'External drive' section.
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Cheers,
    Allen

  • Crystal reports over SAP r/3 tables

    I am trying to write a Crystal report over SAP r/3 tables (BSIK and LFA1) with no success.
    I have CRpts installed along with the "client side" SAP integration kit.  When i try to create a new connection to my development ERP system i am asked to select an available system, but the dialogue box is empty.   I can however connect to a SAP BW query successfully using the SAP toolbar that has been added when installing the integration kit.
    Is there anywhere a set if instructions to successfully install and configure CRpts to report over SAP r/3 tables ?
    Andrew Fox

    Make sure to define an environment variable called SAPLOGON_INI_FILE in the system your CR designer is installed on. The variable should contain the path to your SAPlogon.ini file including the file name. eg if saplogon.ini is found under c:\Windows then the variable shoud be set to c:\Windows\saplogon.ini . Restart the CR designer and try again.
    If the system list remains empty then locate to saplogon.ini file, open it using Notepad and choose the Save as option. All you have to do is to overwrite the existing file (ie. do not change the name) after changing the encoding to UTF-8 (drop-down list at the bottom of the Save as window)
    Regards,
    Stratos

  • I need advice:  I love my apple TV.  But my laptop at home, only has a 750gig hard drive.  Is there a possibility of having all my media on an external hardrive to still connect to the Apple TV?

    I need advice:  I love my apple TV.  But my laptop at home, only has a 750gig hard drive.  Is there a possibility of having all my media on an external hardrive to still connect to the Apple TV?
    Is there like in a hard drive of which iTunes can read the media, which will not require me to add and delete media onto iTunes, because of a lack of space on my laptop?

    just get an ext HD, and point your itunes library to that drive so now you'll just keep all your media on this ext

  • Is it possible to create WEB SERVICE in SAP 4.7

    Hi guys,
    is it possible to create WEB SERVICE in SAP 4.7 ?
    i want to make a FM as web service enabled.
    plz advice.
    Regards
    pabi

    Hi,
    The definitive (and in my experience only) documentation on this is at;
    http://help.sap.com/saphelp_47x200/helpdata/en/94/f8c8a2e68811d6b2dc00508b5d5211/frameset.htm
    This same information is available combinded as a single pdf, but I can't find this.
    Regards,
    Nick

  • Possible to exposer Tabular model over HTTPS on port 443?

    I know how to Access OLAP Cube with Excel over 443 port.
    Is it possible to Access Tabular mode over port 80 or 443 with Excel?
    Kenny_I

    Hi Kenny_I,
    To access SQL Server Analysis Service tabular model remotely, we need configure the Windows Firewall for Allow Analysis Access. Generally, we open TCP port 2383 or 2382 for remote access. 
    Open TCP port 2383 when installing a default instance or creating an Analysis Services failover cluster.
    Open TCP port 2382 when installing a named instance.
    Please refer to the link below to see the detail information.
    http://msdn.microsoft.com/en-us/library/ms174937.aspx
    After we configure the Windows Firewall for Allow Analysis Access, we can connect to SSAS tabular database in EXCEL. In your scenario, you want to access it using port 80 or 443, there is no such a scenario base on my research. So why do you want to access
    tabular mode in excel using port 80 or 443?
    Regards,
    Charlie Liao
    TechNet Community Support

  • Is it possible to rearrange the order of SAP STD Selection Screen?

    Hi.
    Is it possible to rearrange the order of SAP STD Selection Screen?
    Example:
    IW69 has Location data selection at bottom of screen. 
    Is it possible to move that to top of the selection screen?
    We are on ECC6.0.
    Thank you,
    Brett.

    Hello Brett
    You may try to use GuiXT:
    [Adjusting Transactions Using GuiXT|http://help.sap.com/saphelp_sm32/helpdata/en/89/91b9db194f11d5b3a30050dae02d7c/content.htm]
    Regards
      Uwe

  • I have a free app on my iphone, i would like to get it to my ipad..how do I get it without having to start over the entire game?

    I have a free app on my iphone, i would like to get it to my ipad..how do I get it without having to start over the entire game?

    If you use the same Apple ID on both devices, you can share apps, but you won't share the progress I'm afraid.

  • How to calculate days between 2 dates excluding public holidays over SAP ?

    Hi
    Have a universe over SAP data. Trying to calculate days between 2 dates. SAP holds Public Holiday data in various tables e.g  Thol and data is updated via scal. Using my univeres as a source I want to run  reports for different countries so need to have various bank holidays not just UK. In SAP function modules handle this. Has anyone designed a solution to cater for this situation in a universe ?
    Thanks in advance
    M

    Hi,
    I assume you mean SAP R/3 (ECC) when you write SAP and SAP BW.
    Are you using BW? If so, I would load the data into SAP BW, create a query using customer exit variables and build your universe on top of that...
    -J

  • Is possible date wise trial balance  in sap

    Hello,
    Is it possible date wise trial balance in sap, for example trail balance as on 20.06.2010.
    Please provide your inputs
    Thanks,
    Ratnam

    Date wise trial balance can be created using report writer tools. Have done this for my clients.
    Following activities have to be done:
    Install table FAGLFLEXA using t.code: GRCT
    You can do this by copying FAGLFLEXT, after copying, add additional fields like posting date, value fields like balance carryforward etc.
    Create a report library using t.code GRR1 and reference the table FAGLFLEXA or FAGLFLEXT
    Create a report under the library created above
    Using report writer or report painter you design the report same as F.08
    Let me know your email id, will provide the detail screenshots.
    Thanks,
    Sharif

  • Advantages of SSRS over SAP HANA

    We are looking into options for developing reports.
    The data sources are SAP HANA ad Oracle/SQL Server. The two reporting options we are looking at are SSRS and SAP HANA. I would like to know if SSRS is advantageous over SAP HANA. If yes, please specify the reasons.
    Thanks in advance.

    Hello,
    SQL Server Reporting Services provides a full range of ready-to-use tools and services to help you create, deploy, and manage reports for your organization, as well as programming features that enable you to extend and customize your reporting functionality.
    One of the principal advantages of using Reporting Services is the ability to manage reports and related items such as folders, data source connections, and resources, from a central location. We can define security, set properties, and schedule operations.
    We can also create shared schedules and shared data sources and make them available for general use.
    For more information about SQL Server Reporting Services, please refer to the articles below:
    http://technet.microsoft.com/en-us/library/ms159106.aspx
    http://www.venkateswarlu.co.in/MSBI/ssrs/advantages_of_ssrs.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • It is possible to charge an iPad3 over USB and transmit data over USB at the same time?

    Hello,
    it is possible to charge an iPad3 over USB and transmit data over USB at the same time?
    If yes, how?
    Thanks
    Best regards

    OK!?
    That is right that the USB data oins are not connected to +5V pin.
    But i found a description for a self built power supply for iPad.
    http://timothyb.net/DIY_iPad_2_USB_Charger.html
    and
    https://www.mikrocontroller.net/topic/262610?goto=2726627#2726627
    The description say: data pin D- need a voltage level of 2V and D+ 2,857V
    when the data pins have this special voltage levels and VCC has +5V only then the iPad is charging.
    The voltage "D+/D- coding" is the key for the iPad to charge.
    OK now back to my problem.
    The regular USB data pin voltage level is 0,3 - 3.,0 voltage. When the iPad is charging the data pins have this special voltage level. Now i try to transmit data over the usb data pins with the. Normaly the USB port transmit the data with a voltage level of max. 3V.
    And here my problem. The higher voltage level at the data pins cares therefor that the iPad stop the charging.
    Is that correct?

Maybe you are looking for

  • Oracle 11g for WinXP VirtualMachine install problem

    Hi! I have problem with installation Oracle 11g x32 on WinXP x32 which was installed into VMWare Player When my installation goes to 60% i have an error em.ear file not found... I looking for many issues on this forum, but i can't fix this error (i h

  • Problem with Embedded OC4J - Can find EJB class???

    I am getting the following error when starting my application within JDeveloper. 05/06/22 16:11:35 Error instantiating application 'current-workspace-app' at file:/C:/developc/developc-oc4j-app.xml: Error initializing ejb-module; Exception Error load

  • Equivalent of 'null' for integers?

    I was wondering if the integer data type has a value that is the equivalent to 'null'?

  • [SOLVED] Problems building libtorrent+rtorrent

    I used this guide to easily build libtorrent+rtorrent on my ubuntu box and want to do the same on my archlinux laptop. However, when doing ./configure for rtorrent I get this message: checking pkg-config is at least version 0.9.0... yes checking for

  • Can't time-stretch region in Arrange

    I'm trying the trick of holding down Option while resizing a region in the Arrange window and it's not working. I get a window saying "File with specified name and version number already exists. Result code = -48. File = LogicSampleClip1. I even save