SAP Cloud SDK : Cloud For Customer HTML5 Development

Hi Experts,
I have Some questions about the Upgrade to Silverlight -> HTML5.
1) When the Cloud For Customer release the C4C in HTML5 mode with all the available work-center "Application and User Management" and all ?
2) What is the Development software/environment to create custom business objects or enhance the standard business objects using "SAP Cloud Application Studio 14XX" or "Eclipse" software?
3) After Upgrade the C4C into HTML5 what is the language use in development environment?
Many Thanks,
Mithun        

Hello Mithun,
1) You can use the work center "Administration" which takes the role of the "Application and User Management" with a hopeful better representation of the business user needs.#
2) At the moment there are no plans to replace the "SAP Cloud Applications Studio" by something else.
3) As long as there are no migration plans, there are also no plans for a "new" langauge
HTH,
   Horst

Similar Messages

  • Latest recommendation for custom screen development?

    easy points here  - get 'em while their hot!  : )
    I'm trying to confirm my thoughts/assumptions on the development of custom screens.  We are installing the various pieces of NW04s and expect the majority of our users to access ECC transactions through the SAP Portal (using Web GUI for HTML).  Also, we will have a significant number of custom screen requirements; some may be enhancements to existing SAP delivered screens; others may be new screen development.
    What is SAP's latest recommendation for custom screen development?
    More specifically, what are various options and their advantages and disadvantages?
    For example:
    **Web Dynpro for Java
    + easy Portal integration
    - requires NW Dev Studio/Infrastructure
    **Web Dynpro for Java
    + Development tools within Workbench
    - more difficult to integrate in the Portal
    **Z transaction development with Screen Painter
    **HTML/JavaScript or similar
    etc....
    Thanks,
    Brian

    Brian,
    For me , I have only two choices
    1. Web Dynpro for Java
             Great front end IDE to work with, only issue could be the performance issue, while Java is trying to communicate with SAP ECC.
    2. Web Dynpro for ABAP
              Relatively new, however a good tool to work with. Performance improvement compared to Java Web Dynpro.
    I don't think you should have a concern of integrating this with Portal, as you have a separate iView for ABA Web Dynpro. The screen can be developed on the SAP ECC and then can be called from the Portal screen.
    You still have other options like developing normal dynpro - but that will not give a look and feel of the web interface. BSP / PCUI are the other choices but given the roadmap of SAP for UI, I would stick to Web Dynpro for ABAP / Java.
    Please let me know if you have any questions.
    Regards,
    Ravi

  • Unable to get create_SDA.bat file for custom adapter development.

    Hi ,
    I am working on custom adapters development following the PDF(SOA361-how to develop an adapter in SAP Netweaver PI)  about using Sample Adapter .
    In section where we will create the SDA file and deploy it to the J2EE server.
    The create_SDA.bat file is unavailable , How can I get that file.
    Regards,
    Syed.

    This is the original content. Adjust it to your needs.
    set PATH=C:\j2sdk1.4.2_11\bin;%PATH%
    REM Create jar file
    cd ..\AdapterZIP
    jar cvf ..\AdapterZIP_RAR\zip_ra.jar *.xml  com\test\zip\adapter\ra\*.*
    REM Create rar file
    cd ..\AdapterZIP_RAR
    jar cvf ..\AdapterZIP_SDA\zip_ra.rar *.jar  META-INF\*.*
    cd ..\AdapterZIP_SDA
    jar cvf zip_ra.sda *.rar  META-INF\*.*
    pause

  • SAP delivered standard BADI for custom extracts in R3

    Hello Friends,
    I sthere any SAP delivered standard BADI that can be implemented for custom extracts in SAP R3.
    Thanks
    Simmi

    Hello
    Please see this
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0ec3252-f21c-2a10-3c8d-b9ef05f839ef
    Page 61
    Thanks
    Chandran

  • What will be input for custom module developed for JDBC adapter

    Hi,
    I have a scenario SQLDB -> Xi -> R3 .
    Here I have added a custom module before callsapadapter module.
    As I know the sequence of module calling will be as follows :
    1. Standard jdbc adapter
    2. custom module
    3. callsapadapter
    Standard jdbc adapter has a select query . After that what will be the input format for my custom module .Will it be the xml structure of my source Data type or will it be a resultset or will it be a inputstream(stream of xml fomat????).
    And then in which format i need to generate the output format for CallSapAdapter.
    Regards

    Hello Moni,
    SAP has a wonderful feature in ABAP. There are some Runtime Errors that you can <i>catch</i>. This is somewhat similar to the Exception Handling procedure in Java / C++. So here's how you go about it....
    Sometimes there might some calculations that we do, multiplication , for example, where the result of the arithmetic operation is known only at run-time. And the recepient for this result may not always be of the right type to take the result. Consider the following code:
    parameters a type i obligatory.
    data : b type i,
           c type i.
    b = 99999999.
    ** Assume that the user has entered 99999999 for the value of the parameter a.
    c = a * b.    " 99999999 * 99999999 "
    write c.
    This program will certainly give a short dump saying that there was an arithmetic overflow. But we can actually avoid this Shor Dump and handle the situation quite elegantly. consider the following.
    parameters a type i obligatory.
    data : b type i,
           c type i.
    b = 99999999.
    CATCH SYSTEM-EXCEPTIONS ARITHMETIC_ERRORS = 1.
    ** Assume that the user has entered 99999999 for the value of the parameter a.
       c = a * b.    " 99999999 * 99999999 "
    ENDCATCH.
    if sy-subrc ne 0.
      write: 'There was an arithmetic overflow in the calculation.'
    else.
      write c.
    endif.
    This way you can actually avoid the short dump and make the system set a value for sy-subrc. Based on the avlue of the sy-subrc, you can go ahead with further processing / error-handling, as the case may be.
    Here, ARITHMETIC_EXCEPTIONS is called an <i>exception group</i>. For more information on what other run-time errors can be <i>caught</i>, and What the various exception groups contain, please refer to the online documentation for the CATCH statement.
    Regards,
    Anand Mandalika.

  • Need experience on FORM Template for custom system development

    Hi,
    I need to use FORM BUILDER+Application Server to do development for a custom system(No relation to EBS).
    There are many screens need to development, and I want to make these screen look like in the same style, I need to a TMPLATE.fmb to guide developers to do work.
    Is there any body have the similar experience?
    If there is one good template, that will be good.
    Thanks

    Hello,
    Set default values to Property Classes and the Visual Attributes, then store them in an Object Library for a reuse purpose. You can also group them into Object Groups to simplify the job.
    Create a Forms module that include all stuff required to your every underlying modules (drop from the Object Library with "reference" option).
    When this template form is complete, you can derive other modules from it, via the File -> New -> New module from template... menu.
    Once you have created one Property Class for the different Items (Text Item, Display Item, CheckBox,...) ask your developer(s) to use these classes for all created items in the new module.
    Francois

  • Tools for custom development

    Hello!
    I have done some programming in MS Excel(VBA) - source data are taken from bw and erp systems. This program does complicated computation based on the source data and it takes few hours to execute. Results are later analyzed with different Excel files. Now I need to extend this program with addition source data and calculations which Excel might not handle.
    What tools within the SAP NetWeaver you can suggest for custom application development?
    Best Regards,
    Maris Klimavicius

    Basically, you need a VM/Application server that can handle processing of large datasets. Visual Basic is extremely good for rapid application development but when it comes to large data processing and computations of millions of records, its not the best choice available. There are a lot of overheads of this development environment that make it unsuitable for your case. Unless you are ok to work with Win32 API using VB, I'd strongly suggest using ABAP which has been built ground up for data processing. Moreover, when using VB, you may need to employ techniques for parallel processing to reduce the processing time. All of this can be handled in ABAP very easily. Unless you can use SQL Server's data processing capabilities for analytics, I think you should re-evualte your current preferences.
    Thoughts????
    Message was edited by:
            Shehryar Khan
    Message was edited by:
            Shehryar Khan

  • Condtion type for  Customs Sec & Higher Edu cess

    Hi MM Guru's
    Please let me Know the SAP standard condition type for Customs Sec & Higher  Education cess which is 1% levied which is used in case of imports
    Regards
    Guruprasad

    Hi Sai Ram
    Please find the Imports Computation
    Base Price = A
    CIF Charges = B(cost insurance freight charges)
    Handling Charges= C
    Assesable Value = (ABC)=D
    BCD= 0-20% on D= E
    CVD= 16% on (D+E)=F
    Ecess on CVD = 2% on F=G
    Sec & Higher ECess= 1% on F=H
    Customs Ecess=2%on (EFG+H)=I
    Customs Sec & Higher Ecess = 1% on (EFG+H)=J
    Additional Customs Duty =4%on (DEFGHIJ)
    Regards
    Guruprasad

  • SAP Cloud for Customer & SAP ECC/CRM OnPremise integration using WebServices!

    Hello All,
    I would like to ask if anyone has really created a working integration scenario between a Cloud Solution & an ECC/CRM OnPremise solution?
    We are trying to build some prototypes for this, however, due to connectivity errors/issues, unable to proceed.
    I'm looking for information on:
    > What certificates precisely are needed on both Cloud & OnPrem systems?
    > What configuration if any is required on Cloud & OnPrem solution, except for communication system/arrangements on Cloud solution?
    > Any use case if available from anyone which can demo integration between Cloud solution & ECC/CRM OnPremise solution.
    I'd really appreciate responses on this.
    Many Thanks
    Ankur

    Thanks Sathya for the response.
    https://scn.sap.com/community/cloud/blog/2013/10/10/new-e-learning-for-i
    ntegration-of-sap-cloud-for-customer-with-sap-erp-and-sa
    p-crm-now-available  : Not working! => Please check & confirm.
    Just to give you our background...we are SAP Cloud Partners & VARs, hence we are building few prototypes for Customer Demos & POC.
    Per my understanding, its just one of the OnPrem system, either an ECC OnPrem or CRM OnPrem that you can integrate with one C4C tenant at a time, i.e. to one single tenant. In our case, we are trying to integrate ECC OnPrem with C4C system.
    We are in the process of deploying SAP PI as the middleware platform for integration between C4C & ECC/CRM OnPrem., which is going to take few more weeks.
    SAP HCI will be the other approach, but we are currently not familiar with that, hence we have a trial to start in coming week for SAP HCI, so this is going to take some time as well.
    Hence, WebService is the only currently available option for us to build these prototypes, POC for Customer Demos, to show working integration scenarios between ECC OnPrem & C4C system.
    We have been facing some technical issues after setting up necessary communication systems/arrangements on C4C system & trying to do a WS call from SDK also we get error when we do a ping test from within C4C system to check connection.
    Has SAP developed any WS integration between C4C & either of the ECC or CRM OnPrem system? Or is it just PI & HCI which SAP has for integration?
    I'd truly appreciate if you can guide us on creating few integration scenarios (Working ones of course ) using Webservice between C4C & ECC OnPrem system.
    Many Thanks
    Ankur

  • SAP Cloud for Customer SCN space now available

    If you haven't already checked it out, we now have a dedicated space just for SAP Cloud for Customer:
    http://scn.sap.com/community/cloud-for-customer
    Come join the conversation and engage with product management, solution management, knowledge management, and development from the SAP Cloud for Customer organization.
    Cheers,
    John

    Thanks Sathya for the response.
    https://scn.sap.com/community/cloud/blog/2013/10/10/new-e-learning-for-i
    ntegration-of-sap-cloud-for-customer-with-sap-erp-and-sa
    p-crm-now-available  : Not working! => Please check & confirm.
    Just to give you our background...we are SAP Cloud Partners & VARs, hence we are building few prototypes for Customer Demos & POC.
    Per my understanding, its just one of the OnPrem system, either an ECC OnPrem or CRM OnPrem that you can integrate with one C4C tenant at a time, i.e. to one single tenant. In our case, we are trying to integrate ECC OnPrem with C4C system.
    We are in the process of deploying SAP PI as the middleware platform for integration between C4C & ECC/CRM OnPrem., which is going to take few more weeks.
    SAP HCI will be the other approach, but we are currently not familiar with that, hence we have a trial to start in coming week for SAP HCI, so this is going to take some time as well.
    Hence, WebService is the only currently available option for us to build these prototypes, POC for Customer Demos, to show working integration scenarios between ECC OnPrem & C4C system.
    We have been facing some technical issues after setting up necessary communication systems/arrangements on C4C system & trying to do a WS call from SDK also we get error when we do a ping test from within C4C system to check connection.
    Has SAP developed any WS integration between C4C & either of the ECC or CRM OnPrem system? Or is it just PI & HCI which SAP has for integration?
    I'd truly appreciate if you can guide us on creating few integration scenarios (Working ones of course ) using Webservice between C4C & ECC OnPrem system.
    Many Thanks
    Ankur

  • Features in SAP Cloud for Customer

    Hi All,
      We have the possibility of enabling transaction launcher within SAP CRM on premise to kind of embed the backend SAP ERP
    screen within CRM UI. Can those options be configured/developed within SAP Cloud for Customer?
    If so, what are the options.
    Thanks,
    Suvankar Chatterjee

    Hi Suvankar,
    I actually thought of the mash up framework as well but for that you need to have single sign on configured between SAP system and cloud. Also, the application logic will reside in on-premise system.
    One more option would be to create a custom screen altogether using Cloud development studio & link it using a real time synchronous web service with On-premise. By this method, you application logic will reside in CLoud.
    So, you can pick any of the two methods based on your methodology.
    Thanks,
    Ravi

  • SAP Cloud for customer how to get the Account ID and UUID from cloud

    Hi Experts,
    I have small requirement in cloud for customer.
    How to get all the account id with UUID in excel sheet using any SDK or other ways?
    Any way to get this information because i have tried using "Mass Data Maintenance" but not getting any information. 
    anyone know how can i get this information in cloud system?
    Many thanks,
    Mithun

    Hi Mithun,
    In my understanding there SAP will not share IP address of tenant. If this is really urgent you should discuss to SAP Partner coach or any other representative. SAP network team will not directly communicate with you, this will require numerous approval inside SAP itself.
    Thanks
    Sunil Maurya

  • PI Integration between SAP ERP system and Cloud for Customer

    Hi,
    We have set up integration between Cloud for Customer tenant and our SAP ERP system via PI.
    For performing initial load, when we try to activate change pointers for Message types in the SALE transaction, we don't find the MATMAS_CFS and DEBMAS_CFS in the ERP system(IDES ECC 6.0 EhP6).
    CODERINT 600(SP1 &2) are installed and BC set COD_BYD_ERP_INT is activated in the system.
    Could anyone let us know what are we missing here, so that we can get the message types.
    Also we tried using Message type MATMAS for sending a message from ERP to Cloud for Customer. In PI message monitoring, the status shows as 'Processed successfully', however we do not find the message in Business Communication Monitoring in the Cloud system. neither do we see the Business Object created for that Material master.
    Please let me know how to debug such a scenario.
    Regards,
    Sangeeta

    Hi Vatsav,
    Yes the outbound works now with the following urls with channel id as param. With the 'BusinessSystem used as the sender(COD) business system ID. Thanks for your help and the document
    Customer Replication
    /XISOAPAdapter/MessageServlet?channel=:<business system>:COD_SOAP_BusinessPartnerReplication_Send
    Customer Address Replication
    /XISOAPAdapter/MessageServlet?channel=:<business system>:COD_SOAP_BusinessPartnerAddress_Send
    Customer Contact Replication
    /XISOAPAdapter/MessageServlet?channel=:<business system>:COD_SOAP_BusinessParterContact_Send
    Regards,
    Sangeeta

  • How to - Extract data from Cloud For Customer into SAP HANA system

    Hello Community,
    I have a requirement for extracting the existing data from Cloud for Customer into separate SAP HANA Box.
    Is it possible to achieve the same ? If yes, Please guide me for the same.
    Awaiting quick response.
    Regards
    Kumar

    Hi Kumar,
    In addition to what Thierry mentioned you could also use the C4C integration via standard Operational Data Provisioning (ODP) interfaces. This integration was acutally built for SAP BW and allows you to access any C4C data sources. From my perspective you can also build upon that for a native SAP HANA integration. Please also have a look at this guide: How To... load SAP Business Suite data into SAP... | SAP HANA.
    Besides that question let me also add the following: SAP Cloud for Customer already runs on SAP HANA since Nov. 2013. You may also use the powerful built-in analytics within C4C for analyzing data and any of your reporting demands. If your report should consider external data as well, you can combined the existing C4C data source with an external, so-called Cloud Data Source. More infomation is published in the C4C Analytics Guide: http://help.sap.com/saphelp_sapcloudforcustomer/en/PDF/EN-3.pdf.
    I hope this helps...
    Best regards,
    Sven

  • SAP HANA Cloud Portal : Configuration of HCP with Cloud For Customer

    Hi Experts,
    In our organization we have C4C system we have requirement to configuration with SAP HANA cloud Portal.
    1) What are the steps require in Cloud For Customer?
    2) What are the steps require to access the HANA Cloud Portal and Configure it?
    3) How to integrate Cloud For Customer with HCP?
    4) How to create Websites and Add the Widget for Tickets and Service request created from cloud for customer?
    Any Documentation for this Cloud For Customer and HANA Cloud Portal Configuration please share with me.
    Many Thanks,
    Mithun

    hi,
    Please find below the avilable public information about Support site edition -
    Support Site Overview : http://scn.sap.com/docs/DOC-50078
    Support Site (blog post)http://scn.sap.com/community/hana-cloud-portal/blog/2013/12/12/deliver-exceptional-customer-service-with-cloud-based-support-portal
    CAC Admin guide -  (search for configuring portal) - http://help.sap.com/saphelp_sapcloudforcustomer/en/PDF/EN-2.pdf
    Cloud Portal configuration guide - SAP Mobile Documents
    Soon we will put all public guides in a central location.
    Thanks,
    Inbal

Maybe you are looking for

  • USB Ports work Intermitta​ntly on Pavilion Notebook

    I have a HP Pavilion dv7-2270us Entertainment Notebook PC that is running Windows 7. The USB ports seem to work intermittantly. There are two regular USB ports on the left hand side and one on the right. I have an iPhone, Adidas miCoach, and wireless

  • Runtime error in linking with static variables....

    Hi, I am building a shared library which includes a compiled object generated from a class containing the static variables only and also I have another version of same class with same & some new static variables in it and using that to generate anoth

  • AVI to DVD

    Issue: No tool seems to convert the Tina avi-file in the right way. My goal is to soon cool down and burn that avi to a DVD and watch it smoothly on the telly. Yes, the Philips DVP5500S-player deals with MPEG2, MPEG1 and MPEG4. The footage is done in

  • Gift This App

    If you buy and app, it goes into your history. If you gift it, do you have to buy it again?

  • Not able to connect to wifi using iPhone 4 with OS5, sees the network but won't connect.

    Recently upgraded my iPhone 4 to the OS5 and I keep having sporadic issues with connecting to my home wifi, it sees the network but never connects.  I turned of Location Services and Cellular Data for that had worked sometimes, but now it just keeps