Regarding customized application development

dear SDN .
can anyone share some knowledge on customized application development.
i.e 3 layered framework to develop ABAP applications.
can u please provide the document or any useful link .
Regards,
Suman.

Hi,
try this: http://help.sap.com/
Regards, Dieter

Similar Messages

  • Regarding WebDynPro  Application Development Problem

    Hi,
       I have created a WebDynPro application to access the BackEnd System.I have Used BABI_MATERIAL_SAVEDATA functional Module.In my appln I Used 2 views , first view has fields like material name,desc,unitof measure .In 2nd view it will display the message which is from Backend .it  the fields are i have created system and successfully connected with Server. But while running this application its displaying as " Trying to create X: -
    (dash) "
    x is the material Name .
    whr is the actual problem ,in Server or Coding ? How to solve it ?
    Please Help Me ..
    Thanks in Advance.

    Hi,
    It seems not an Error.In second the View thr is a TextView . I bind that  with a context node-MESSAGE which is derived from Bapi_material_savedata  Module.. While executing that appln
    ,"TRYING TO CREAT " message shows in the text view.. i want to Know that whether i would b a server Pblm  or In coding ?..

  • Regarding LabVIEW application developer job

    plse check the  attached cv.
    Attachments:
    CV.doc ‏47 KB

    Sir,
    Have sent you my CV. Please do check & revert..
    Contact No: 9768773040
    Regards,
    Shilpa.M

  • SOA in Custom Application Developments

    Hey All,
    Would nyone help out me in explaining
    1> the features of SOA and
    2>how are these features used in SOA.
    in brief i would like to know how does our custom application development satisy/utilize SOA.
    Hari

    Hi Harish,,
    There are two posibilities for  your Custom Development.
    1) Your CD contains frontend which you have developedusing any tool( eg WebDynPro, Visual Composer etc) and it is accessing some backend. Now SOA would come where you are accessing the backend. For accessing backend , you are using some services(EJB,RFC,WEB Services etc). They all are part of SOA. Now if you are using the above mentioned architecture, we can say that your CD is using SOA and in actual services provider( SAP ERP, J2EE etc ) is the producer and your CD would be service consumer.
    2) Your CD doesn't contain any frontend. Then if it contains services which you have developed and exposed(mainly web services or other like EJBs or RFC ), it would be called as SOA enabled and your application would be called as service producer.
    SOA is used mainly for reusability along with better interoperatibity among various platforms.
    Regards,
    Piyush

  • Commercial Application developed with Oracle APEX

    Except the commercial application list on the official Oracle APEX web-site, anyone can give more information regarding commercial application developed using Oracle APEX?
    One I can find: XPinventory (http://xp4each.wordpress.com).

    I'm curious - is there a problem with the 15 commercial applications listed at http://www.oracle.com/technology/products/database/application_express/html/apex_com_commercial_apps.html? What are you specifically looking for?
    Joel

  • Regarding Oracle ADF Enterprise Application Development - Made Simple book

    Hi guys,
    I am trying to do Sten Vesterli's Oracle ADF Enterprise Application Development - Made Simple
    book. But I am stuck setting up OTPC. When I am trying to run "tpcinstaller.jar" and give my database connection information I am given a TPC-90019 error.
    The log file says it is a "ORA-01882: timezone region not found" error.
    My timezone is 'Asia/Calcutta'.
    This is what tpcinstaller log file contains,
    -------------------------------------------------------------------------------------log_file
    oracle.alminternal.version.Version: file:/C:/install/tpcinstaller.jar!/META-INF/version.xml
    11.1.1.4.37.59.23
    Launched from jar:file:/C:/install/tpcinstaller.jar!/oracle/alminternal/installer/Installer.class
    Found installer jar file /C:/install/tpcinstaller.jar
    Installer jar file name: /C:/install/tpcinstaller.jar
    Created temporary directory: tpctemp
    Execute command[tpctemp]: [D:\Oracle\Middleware\jdk160_21\bin\jar.exe, -xf, /C:/install/tpcinstaller.jar, lib]
    Extracting files ...
    Launching installer wizard, it may take a minute or so, please wait ...
    Execute command[tpctemp\lib]: [D:\Oracle\Middleware\jdk160_21\bin\java.exe, -classpath, annotations.jar;commons-io-1.2.jar;dms.jar;forms-1.0.6.jar;ideimpl.jar;idert.jar;javatools-nodeps.jar;javatools.jar;javax-ide.jar;javax.persistence_1.0.0.0_2-0-0.jar;jewt4.jar;oicons.jar;ojdbc6dms.jar;ojdl.jar;ojmisc.jar;oracle.ide.jar;oracle.ide.webbrowser.jar;oracle.ide.webupdate.jar;org.eclipse.persistence_1.0.0.0_2-1.jar;share.jar;TimingFramework.jar;uic.jar;xercesImpl.jar;xmlparserv2.jar;/C:/install/tpcinstaller.jar, oracle.alminternal.installer.Installer, -W]
    Temporary directory: connector created
    C:\install\tpctemp\lib\otpc created
    Jan 5, 2013 11:38:33 PM oracle.alminternal.installer.ideimpl.webbrowser.ProxyAddin loadProxyNative
    WARNING: Unable to default HTTP proxy: Native support is not available.
    :::settingsInitialized = false
    jdbc.url = jdbc:oracle:thin:@localhost:1521:xe
    jdbc.user = BOOK
    jdbc.password = BOOK
    SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-01882: timezone region not found
    -------------------------------------------------------------------------------------log_file
    Regards !
    Sameera
    Edited by: samme4life on Jan 5, 2013 9:10 PM

    I have the same problem, when I delete row and after that I use refresh button in internet explorer. What I do is I drag and drop button "removeEntity" and edit it in backing beans adding new bindigs that commit changes and referesh page. Code:
    public String commandButton2_action1() {
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding =
    bindings.getOperationBinding("removeEntity");
    Object result = operationBinding.execute();
    if (!operationBinding.getErrors().isEmpty()) {
    return null;
    OperationBinding commit1 = bindings.getOperationBinding("Commit");
    commit1.execute();
    OperationBinding requery = bindings.getOperationBinding("findAllRezerwacja1");
    requery.execute();
    return null;
    In page definition I added "Commit" action and code with methodAction is:
    <methodAction id="removeEntity" InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" MethodName="removeEntity"
    RequiresUpdateModel="true" Action="999">
    <NamedData NDName="entity"
    NDValue="${bindings.findAllRezerwacja2.currentRow.dataProvider}"
    NDType="java.lang.Object"/>
    </methodAction>
    <action id="Commit" IterBinding="findAllRezerwacja1Iter"
    InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" RequiresUpdateModel="true"
    Action="2"/>
    Can sb tell is there is normal that when I delete row in table, and after it I refresh manually by IE page is normal that I get error messages. I this is the same situation using Back in IE. Deleting row that is commited to database works fine, but the problem is with manually refreshing page?
    Next question is about using Delete action from node instead of removeEntity, what is the difference? As you can see, I use removeEntitity method. Choosing Delete action instead doesnt works. Why? Rest of the code is the same but instead of dropping method removeEntity I drop Delete action
    Sorry for my English, its not my native.
    Thank in advance

  • How Tou2026 Create Custom Application in E-Commerce 7.0?

    Hi all,
    We want to set up SAP E-Commerce for ERP 7.0. For SAP E-Commerce for ERP 5.0 the following configuration guide is available:
    How Tou2026 Create Custom Application in E-Commerce 5.0
    What about SAP E-Commerce for ERP 7.0? Is this guideline also valid for 7.0?
    If not, where can I find the corresponding configuration guideline for SAP E-Commerce for ERP 7.0 (on the SAP Service Marketplace?)?
    Thanks in advance.
    Regards,
    AV

    Hello Av,
    Please see the Development and extension guide @
    http://service.sap.com/crm-inst
    => Release 7.0
    => Operate
    Regards
    Mark

  • Running an application developed in Oracle Forms and reports

    Hi Folks,
    Does anyone know or have an opinion on whether an application developed in Oracle Forms/Reports can run on Oracle Cloud as it is a supported product?
    It is also possible to 'mix' adf and forms , but on the cloud.....?
    Thanks
    Alex

    Hi,
    Oracle supports three types of cloud deployments
    (Private) where by applications runs on premises fully controlled by customers.
    (Public) where by applications runs at oracle data centers and managed by dedicated team of experts.
    (Hybrid) partial applications runs on premises "Customer Site" and rest on oracle public cloud.
    in your scenario of using forms/reports and ADF , i personally recommend to have your private cloud as the forms / reports are the previous generation of oracle development tools , everything in oracle public cloud is now based on Oracle fusions and fusion middle ware where the development tools are Jdeveloper , XML , etc...
    Regards,
    Awad El-Sidiq.
    Edited by: user5314604 on Mar 31, 2013 2:15 PM

  • SAP Application Development Lead (ABAP) Needed in Fort Worth, Texas

    Hi SAP Community,
    A client of mine in the Aerospace and Defense industry is looking for an SAP Application Development Lead in Fort Worth, Texas for an 11 month contract. Below is the description, if you are interested please email me your resume at <removed> or give me a call at <removed>
    <b>SAP Application Development Lead – ABAP</b>
    <b>
    Fort Worth, Texas
    Contract - 11 months</b>
    <b>Responsibilities:</b>
    • Lead the development of the technical integration strategy for the SAP environment including approved tools, usage criteria, development standards, and monitoring techniques.
    • Ensure optimization of SAP technical performance in the infrastructure environment, including network, database, and application server performance.
    • Provide oversight to individual project technical development activities to ensure appropriate use of integration tools and standards.
    • Establish an internal staff development plan to train and development internal expertise in use of SAP technical tools and techniques and testing tools.
    • Participate in SAP issue and change management processes to ensure alignment with business objectives, and appropriate prioritization and assignment of integration related change requests.
    <b>Skills:</b>
    • 7-10 years experience in ABAP toolsets.
    • Comprehensive knowledge of problem analysis, and design and application development programming techniques.
    • Minimum of 5 years experience in developing and supporting SAP in a complex, multi-organization, multi-landscape environment.
    • Minimum of 5 years experience with SAP’s native integration tools (BAPI, IDOCS, etc).
    • Minimum of 3 years experience with IBM’s WBI (Websphere).
    • Superior organizational skills and excellent communication skills.
    • Strong analytical and problem solving skills.
    • Good customer service skills.
    • Solid project management skills and team-oriented interpersonal skills.
    • Ability to work in a matrix organization.
    <b>Education:</b>
    Bachelor's degree in Computer Science, Engineering, or related discipline with an IT focus is required.
    <b>• This position requires use of information which is subject to the International Traffic in Arms Regulations (ITAR). All applicants must be U.S. persons within the meaning of ITAR. ITAR defines a U.S. person as a U.S. Citizen, U.S. Permanent Resident (i.e. 'Green Card Holder').</b>
    Message was edited by:
            Rich Heilman

    This is not a recruitment site.  Thanks for NOT posting such threads.
    Regards,
    Rich Heilman

  • XI Interoperability with C-based Custom Applications

    How can XI interoperate/connect to C-based custom applications?  What connectivity option (i.e. adapters) can be used for both inbound and outbound processing?  Please provide the best approach using the existing technology adapters, existing 3rd-party adapters, other means, while excluding the development of custom adapters.

    Hi,
    Am not sure about HTTP, but for the file part it iwll be quite simple .
    I learnt C during my university days and from what I remember, you can write and read file using standard C / C++ classes / functions.
    So, when the C application needs to talk / send data to XI, it can write a file using the standard functions available and using the sender File adapter of XI, you can poll the same file and do the needful in XI ( including Content Conversion if the C application is to create a TXT file).
    In the other case if XI needs to send data to the C application, then XI can write a file and the C application can read this file using its standard functions.
    With respect to XI, you will be dealing with a File Bases Interface with the C application. And the process will be just like any other file interface.
    Regards
    Bhavesh

  • Application Developement Runtime-Install (WLS 10.3 on SuseLinux ES 10.4)

    Hello,
    my target is to deploy our FMW Applications in a production environment on an Standalone WebLogic Server 11g (10.3.3) on SuseLinux Enterprise Edition 10 Patch 4 (64 bit) under VM Ware using SSO against Active Directory in Windows Server 2003 R2 SP2 and Windows Server 2008 R2 SP1. Our applications are already running without problems using SSO against the same Active Directories on the same WLS Server Version BUT on a Windows Server 2003 R2 Sp2 System for testing purposes.
    On the SuseLinux ES 10.4 (64 bit) following generic installations have been done with Sun JDK 1.6.0_u25:
    (1) WebLogic 10.3.3 (java -d64 wls1033_generic.jar) -> successfully.
    (2) Application Development Runtime-Libraries (ofm_appdev_generic_11.1.1.2.0_disk1_1of1.jar followed by ofm_appdev_generic_11.1.1.3.0_disk1_1of1): succeeded
    BUT FAILURE on all prerequisite checks (Operating system certification, Recommended operation system packages, Kernel parameters, Recomended glibc version, Physical memory). I couldn't find any information about this till now.
    So, here are my first questions to (1) and (2):
    -> Are there any known problems and issues with WebLogic Server/APPDEV-Runtime Installations under SuseLinux ES 10.4 or others?
    -> Has anybody else tried the Installation of Oracle Fusion Middleware APPDEV-Runtime on WLS 10.3.3 under SuseLinux Enterprise Server 10 Patch 4 (64 bit) and knows something about this failures?
    (3) I ignored the failure of the prerequisite checks of the OFM_APPDEV (the installations seem to be completed successfully) and went on with Domain- and SSO-Configuration (Production-Mode) and the Deployment of the FMW applications in the required SuseLinux Environment. The Deployment was successfull and we are able to run the applications by using FORM-BASED Authentication against the Active Directory, but we have now problems with SSO with Kerberos 5. I was able to configure the Active Directory Provider and the Identity Assertion Provider (for SPNEGO) in the Console/Myrealm and I configured the Domain for KRB5-JAAS-Configuration as I did it in the Test-Windows-Environment. It seems, that my krb5.conf is not picked up or read properly or the keytab-File isn't correct (ktpass, ktutil, kinit, klist,... was used and it looks ok, enctype is RC4-HMAC as it is for the wls-user-account in AD) or... For checking the keytab-File I used the utilities provided by the PowerBroker-Installation used by the customer to join the Linux-Machine to the Active Directory Domain.
    I reviewed all points in the SSO-support-pattern on Oracle Support: WebLogic Server Support Pattern: Kerberos and SPNEGO Configuration Issues [ID 1332241.1].
    I can't figure out, what the problem is. I can't see any mistake in the configuration.
    I'm asking now:
    -> What's missing in the installation of the Standalone WLS Server/Application Development on SLES 10.4 what makes us fail with the SSO-Configuration?
    -> Is there a workaround for the failures in the installations above?
    -> Are there known bugs or issues concerning the krb5-configurations on SuseLinux ES 10.4?
    -> Can the installation of PowerBroker/Likewise which is used by the customer cause the problem?
    -> Can there be a problem with the used JDK (Sun JDK 1.6.0_u25 installed by our customer) concerning to com.sun.security.auth.module.Krb5LoginModule which is required for JAAS-Configuration?
    Any ideas and answers are welcome!
    Thank you in advance, Anita
    Edited by: user586097 on 21.06.2012 06:05
    Edited by: user586097 on 21.06.2012 07:02

    Hello Justin,
    thank you for your reply!
    I followed your Link and checked the certification matrix for SLES 10(SP4), the version of the OS we use.
    Oracle WebLogic Server Version 11gR1 (10.3.1+) is certified for:
    OS Version: SLES 10 (SP4+)
    OS 32/64 bit: 64
    Oracle FM 32/64 bit: 64
    JDK 32/64 bit: 64
    Oracle Database: Oracle 10.2.0.4+, Oracle 11.1.0.7+, Oracle 11.2.0.1+
    The only doubt I have, is the Installation of the "Application Developement Runtime Libraries":
    (1) ofm_appdev_generic_11.1.1.2.0_disk1_1of1.jar
    (2) ofm_appdev_generic_11.1.1.3.0_disk1_1of1.jar
    -> http://www.oracle.com/technetwork/middleware/downloads/fmw-11-download-092893.html.
    I supposed they fit the 64bit requirenment as well? Aren't they?
    Regards,
    Anita

  • Table per locale - i18n application development approach

    I learn that I shall use table per locale approach for a multi-language application development. And I am in a situation that no all entries will have multi-language versions. I can image some possible issues on data retrieval and update. Can anyone share experience in this regard?
    Thanks very much in advance.

    I would share my experice here.
    For the internationalization of our product, we do not have a table per locale, rather we have a row per locale in the appropriate table. We have localeCode, messageCode and messageDescription columns in that table and the application picks up the right row depending on user locale.
    By default we have English data in the database. For inserting french data we run a database script which inserts same rows as English rows appended by some french characters. This is for internal testing purpose only.
    In addition, we also run another translation script for creating locale specific resource bundle files and tiles files.
    So, labels will come from tiles files and data/messages would come from resource bundle and database. These scripts will not be delivered to the customer. They have their own translators and its their job to provide translations at all necessary places.
    After running this script we have experienced that the server takes more time to startup.
    Rahul

  • Microsoft Azure Application Development services Requried

    I want Microsoft Azure Application Development for my website but there is more changes required. Finally I am stuck in the situation so please help me or suggest me a better source that could be able to change it. 

    Hi Vivaan Saxena,
    This forum is to discuss and ask questions about the setup and deployment of .NET Framework. Apparently, this issue isn't related with the topic here. I suggest you ask in
    Microsoft Azure forum.
    https://social.msdn.microsoft.com/forums/azure/en-US/home?category=windowsazureplatform
    Best regards,                                     
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Deploy custom applications

    Hi,
    I have developed a custom application in APEX. I wants to deploy and make it as a web application so that it can be access through url. Please let me know how to achieve this.
    Thanks & Regards,
    Sagarika

    Hi Sagarika,
    What do you mean by a custom app and web applicatiion? Do you mean them for Database application and Websheet applications?
    You cannot convert a database application to a web sheet application.
    Give more details of your database and apex version, explain in detail about your exact requirement, so that we will be able to assist you more.
    Regards,
    Natarajan

  • Registering of Custom Application tables

    Hi All,
    I have a doubt in Registering of Custom Application tables?
    I know that we can register the custom application tables through AD_DD Package.
    But i want to know what is the need for registering the custom Application tables?
    B'cos why i am asking is, i have created custom tables without registering it and it is also working fine.
    Regards
    Santhosh

    You register your custom application tables using a PL/SQL routine in the AD_DD package. Flexfields and Oracle Alert are the only features or products that depend on this information. Therefore you only need to register those tables (and all of their columns) that will be used with flexfields or Oracle Alert.
    Oracle Applications Developer’s Guide - 3-11, Table Registration API
    http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/115devg.pdf

Maybe you are looking for

  • (JS) Find Page of Object

    While preparing a presentation I'm going to be giving in a couple of months, I took a good hard look at my findPage(theObj) function and I think that this is as good as it gets: function findPage(theObj) {   if (theObj.hasOwnProperty("baseline")) {  

  • Telling SSIS how to interpret a date from a file

    Hi Everyone. I'm using SSIS to read a delimited file. The file I'm reading has dates in different formats in different columns. Unfortunately, some columns have the dates with only 2 digits for the year, and this, in some columns, makes SSIS take a b

  • Offline approval setup for SRM 7

    Experts, I have feq uestions on OFFLINE APPROVAL set up in SRM 7. 1. Do I need to scehdule the report /SAPSRM/OFFLINEAPPROVALGET for the inbound emails to be prcoessed and status for shopping carts/PO correctly updated? 2.Do the backgorund jobs (for

  • Need a PDF viewer - how to get premium version of the ToGo apps when I don't have a TELUS data plan

    Hey all ... Is there a way to download and install a premium version of the ToGo apps (or just the PDF Viewer component - I searched the latter term and found one relevant thread wherein sdgardne had made reference to the premium ToGo apps) on my dev

  • Monitor recomendations anyone???

    Believe it or not, I'm still using my Lacie 20 inch CRT's on my older PowerMac G5.  But Adobe and Apples decision not to offer upgrades to non-Intel based Macs are finally forcing me to buy a new computer  @%$&#$.  So CS5 has essentially started a ch