CFolders: How to use 4.6c as Backend?

Hallo,
we are installing an cfolders on a WAS 6.40 (cFolders in DMZ). The backend system is a 4.6c...Does anyone has experience, what is necessary to install to use the trans cfi02 and cfe02 in this system? SAP says: it`s possible but how?
Thanx for help and kind regards
Holger

Hi Holger,
Were you able to find a solution to this.
Please let me know, I'am also looking for a possibility to integrate cFolders with SAP R/3 4.6c.
Thanks,
Vivek

Similar Messages

  • How to use logon group of backend systems via reverse proxy

    Hi
    we have setup EP 6.0 in DMZ2 and connected backend servers in INTERNAL network. We have another firewall for DMZ1. In order to provide access to EP and respective backend systems, we have installed two reverse proxy servers on Apache, one in DMZ1 and another in DMZ2. We could able to reach to the backend system successfully in this setup by using proper rewrite rule for virtual systems in order to connect to multiple systems.
    However we have observed that connection for backend systems is established only to respective CI and not to any of the application server, even though we have created "Load Balancing" systems in EP and used the same logon group of backend systems.
    Kindly suggest us if there is any option using which we can establish connection via Load balancing option in this current setup of ours.
    Thanks
    Pradeep

    Hi Mechael/Dutt
    We r using Integrated ITS in WAS 6.40. and we r maintaing seperate entries for each systems in rewrite rule.
    Thanks
    PRadeep

  • Using MS Access as backend in Webdynpro Application

    hi guys,
    I am creating a application in webdynpro in which i want to use MS Access as Backend, so can u please tell how to use MS Access as backend.
    What all needs to be done and where the database file needs to be stored etc. please give me all the details...
    thanks in advance
    Gaurav Makin

    Hi Gaurav,
    It is pretty easy to use the MSAccess as a  back end from the webdynpro applications. Take the driver as a JDBC-ODBBC driver and  creat the alias name for the  database  server  to use as a data source.Select the model as a Beanmodel  while creating a model in the Webdynpro explorer.
    please  find the below code which will help you lot.
    Please let me know if you need any further information.
    package com.accenture.radar.project;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import javax.naming.InitialContext;
    import javax.sql.DataSource;
    @author suvarna.chittoor
    To change the template for this generated type comment go to
    Window>Preferences>Java>Code Generation>Code and Comments
    public class ProjectBean {
         private String name;
         private String description;
         private String du;
         private String saveOrUpdate;
         static DataSource dataSource;
         private Connection connection;
         private ResultSet rs;
         private ArrayList duArrayList =new ArrayList();
         private ArrayList projectArrayList =new ArrayList();
         public ProjectBean()
              try
                   //code to look up the datasource
                   InitialContext initialContext = new InitialContext();
                   dataSource = (DataSource)initialContext.lookup("jdbc/aliasforradar");
              catch(Exception e)
                   System.err.print("Error Message"+e.getMessage());
         public static Connection getConnection() throws SQLException, ClassNotFoundException
              System.err.println("In Get Connection");
              java.sql.Connection connection = null ;
              try
                   connection = dataSource.getConnection();
              catch (SQLException e)
                   System.err.println(e.getMessage());     
                   throw e;                         
              System.err.println("After getting Connection from the datasource");
              return connection;
         public void getDUInformation()throws SQLException, ClassNotFoundException
                        connection = getConnection();
                        PreparedStatement ps= connection.prepareStatement("select distinct name from du");
                        rs=ps.executeQuery();
                             while(rs.next())
                                  duArrayList.add(rs.getString("name"));
                        ps.close();
                        connection.close();
         public void saveProjectDetails() throws SQLException, ClassNotFoundException
                   Connection connection = null;
                             if(saveOrUpdate.equalsIgnoreCase("Save"))
                                  connection = getConnection();
                                  PreparedStatement ps =
                                       connection.prepareStatement(
                                            "insert into project values(?,?,?)");
                                       ps.setString(1, getName());
                                       ps.setString(2, getDescription());
                                       ps.setString(3, getDu());
                                       ps.executeUpdate();
                                       connection.close();
                                       ps.close();
                             else
                                  connection = getConnection();
                                  PreparedStatement ps =connection.prepareStatement("update project set du=?,description=? where name='"name.trim()"'");
                                  ps.setString(1,du);
                                  ps.setString(2,description);                         
                                  ps.executeUpdate();                         
                                  connection.close();
                                  ps.close();
         public void getProjectDetails() throws SQLException, ClassNotFoundException
                             Connection connection = null;
                                  connection = getConnection();
                                  PreparedStatement ps=connection.prepareStatement("select name,description,du from project");
                                  rs=ps.executeQuery();
                                       while(rs.next())
                                            Project_HelperClass proj= new Project_HelperClass();
                                            proj.setName(rs.getString("name"));
                                            proj.setDescription(rs.getString("Description"));
                                            proj.setDu(rs.getString("du"));
                                            projectArrayList.add(proj);
                                    ps.close();
                                    connection.close();
         public void getProjectInformation()
                   throws SQLException, ClassNotFoundException {
                   Connection connection = null;
                   connection = getConnection();
                   PreparedStatement ps =
                   connection.prepareStatement("select description,du from project where name='"name"'");
                   rs = ps.executeQuery();
                     while(rs.next())
                        this.description=rs.getString("description");
                        this.du=rs.getString("du");
                      connection.close();
                      ps.close();
    @return
              public String getDescription() {
                   return description;
         public void deleteProject() throws SQLException, ClassNotFoundException
             Connection connection = null;
              connection = getConnection();
              PreparedStatement ps=connection.prepareStatement("delete from sme_support where project = '"name"'");
              ps.executeUpdate();
              PreparedStatement ps1=connection.prepareStatement("delete from wbse where project = '"name"'");
              ps1.executeUpdate();
              PreparedStatement ps2=connection.prepareStatement("delete from supervisor where project = '"name"'");
              ps2.executeUpdate();
              PreparedStatement ps3=connection.prepareStatement("delete from du_lead where project = '"name"'");
              ps3.executeUpdate();
              PreparedStatement ps4=connection.prepareStatement("delete from project where name = '"name"'");
              ps4.executeUpdate();
              connection.close();
              ps.close();     
              ps1.close();
              ps2.close();
              ps3.close();
              ps4.close();          
    @return
         public String getDu() {
              return du;
    @return
              public ArrayList getDuArrayList() {
                   return duArrayList;
    @return
         public String getName() {
              return name;
    @param string
              public void setDescription(String string) {
                   description = string;
    @param string
         public void setDu(String string) {
              du = string;
    @param list
              public void setDuArrayList(ArrayList list) {
                   duArrayList = list;
    @param string
         public void setName(String string) {
              name = string;
    @return
         public ArrayList getProjectArrayList() {
              return projectArrayList;
    @param list
         public void setProjectArrayList(ArrayList list) {
              projectArrayList = list;
    @return
         public String getSaveOrUpdate() {
              return saveOrUpdate;
    @param string
         public void setSaveOrUpdate(String string) {
              saveOrUpdate = string;
    Thanks and regards
    Ratnakar reddy alwala

  • How to use Inputlistofvalues

    I have a List in backing bean which I want to use as inputlistofvalues in UI. can someone explain how to use this explaining the backend code and UI code that will be required to support this? OR is there something like childpropertytreemodel() that converts a list into treemodel?
    Thanks
    Anil

    Hi,
    just in case that you are an Oracle employee working with an internal build, can you please ask your questions on the internal forum. Note that there is no public preview or build "drop3c2"
    Frank

  • How to use MVC using MDM as backend... in Webdynpro for java

    Hi,
       How to use MVC using MDM as backend.. when we r using R/3 we used to create RFC model. I dont know how to use it here..
    Regards,
    laxmi.

    Haii
    Create a data a source using ur ODBC tool. This can be found in Administrative tools of windows.
    In ur connectino class u can write the following code
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection("jdbc.odbc.dsnname u have given when u created data source","user namet","pwd");( I think there is no need to give username when u connect to ur access)
    The connection "con" is ready to use.. Put these statements inside a try catch...
    I think i have explained enough..
    regards
    SHanu

  • DownloadM - GTK2 download manager/accelerator using aria2 as a backend

    EDIT: Now on AUR (http://aur.archlinux.org/packages.php?ID=41384)
    Hello friends.
    Since I couldn't find any good GUI download accelerators for Linux I thought that many people could benefit from aria2 if it had a nice GUI.
    I started developing DownloadM for that purpose.
    My brother (nick vbCrLf) helps me with it.
    I use C++, gtkmm, xmlrpc-c, and the IDE is qtcreator hence the project uses qmake.
    It is currently functional but not complete at all. Here is a screenshot:
    Current limitations:
    1) No way to configure almost anything.
    2) Always downloads to $HOME/Downloads
    many more...
    It has at least one nice feature. If you close it before a download is finished, the download will be resumed the next time you open DownloadM.
    Here is the project page: https://sourceforge.net/p/downloadm/. You can download a tarball from there.
    The git repo is there also.
    git clone git://git.code.sf.net/p/downloadm/git.git
    To build the project, one needs to run "make" in each directory. The build order is:
    1) Entities
    2) aria2c_com
    3) DownloadM
    4) GUI
    The executable's name is "downloadm".
    I'm not sure what the dependencies are . I guess it's something like:
    aria2 xmlrpc-c gtkmm
    Note: The program creates the folder $XDG_CONFIG_HOME/DownloadM
    I know there is still a long way to go but since it's already functional I thought I would share it with you.
    It is also my first real-world project so feel free to share from your experience.
    Any thoughts are welcome.
    Thanks.
    A PKGBUILD is in the making (below). My first try. I need help
    EDIT: It works now. I'm pretty sure I did things in a weird way but it works.
    # Maintainer: SoleSoul <j.lahav ta gmail tod com>
    pkgname=downloadm
    pkgver=0.1.1
    pkgrel=1
    pkgdesc="A download accelerator/manager which uses aria2c as a backend."
    arch=('i686' 'x86_64')
    url="http://sourceforge.net/p/downloadm/"
    license=('GPL')
    depends=('gtkmm' 'xmlrpc-c' 'aria2' 'libsigc++')
    makedepends=('qt')
    source=(http://downloads.sourceforge.net/project/downloadm/DownloadM-$pkgver.tar.gz)
    md5sums=('cd9dc47c2095c1df2f4bf9ee9052145e')
    build() {
    cd DownloadM
    cd Entities
    qmake && make
    cd ../aria2c_com
    qmake && make
    cd ../DownloadM
    qmake && make
    cd ../GUI
    qmake && make
    package() {
    mkdir -p $pkgdir/usr/bin/
    cp $srcdir/DownloadM/GUI/downloadm $pkgdir/usr/bin/
    mkdir -p $pkgdir/usr/share/downloadm/
    cp $srcdir/DownloadM/GUI/downloadm.glade $pkgdir/usr/share/downloadm/
    Last edited by SoleSoul (2010-10-03 10:57:08)

    In order to make DownloadM easier to test I want to make a PKGBUILD for it and upload it to the AUR. I am starting to write one on the first post. Any help is welcome.
    I think I need to sort out a few things before it would be possible to write a proper PKGBUILD. Lets do it one by one.
    Is it a good practice to hard-code the location of the .glade file to "/usr/share/downloadm/downloadm.glade" ? If not, how should I specify it's location?
    Right now the steps necessary to prepare a package are to compile it by running "make" in each directory by the order specified in the first post. Maybe qmake has to be invoked also to create a correct release makefile?
    Then we need to move the executable to somewhere (/usr/bin/downloadm?) and the glade file also (/usr/share/downloadm/downloadm.glade?)
    I think that's it. Am I right?

  • How to Unlock planning application from Backend ?

    Hi Gurus,
    How
    to Unlock planning application from Backend ?

    You should use the utility to unlock it http://docs.oracle.com/cd/E17236_01/epm.1112/hp_admin/ch04s02.html
    But it refers to planning table HSP_UNLOCK
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to use ET_ATTACH importing parameter Function module BBP_PD_SC_CREATE

    hi,
    how to use ET_ATTACH importing parameter of Function module BBP_PD_SC_CREATE, my requirement is to create SC with attachment.
    an example would really help.
    Kind Regards,
    Kailash.

    Hi,
    Generally we create the SC from ITS or Portal, and there in the Create SC screen , once you add the item into the shopping cart , in the Item details, there is the section called , Documents and Attachements, where in you can upload the attachments which ever you want. Sometimes the extn .DOC, .pdf and .xls are allowed. but that also you can check which are the Authorized files extns avaialbe in Backend R/3.
    Using the FM RFC_READ_TABLE, in table pass TDWP and in the i_field pass 'APPSFX' and then you can get the authorized file formats. in Backend Transaction DC30 you can verify which are the allowed file formats.
    Moreover for restricting the User from uploading the attachment BADI BBP_ITEM_CHECK_BADI can be implemented for raising the error message if required.
    Regarding the ET_ATTACH, it is the structure of type BBPT_PDS_ATT_T,  so you have to provide the complete details for this structure. Like : GUID, P_GUID ,LOGICAL_SYSTEM, DESCRIPTION, URL, TYPE,DISP_URL, PHIO_EXT ,etc.
    Once all the entries are fine.
    You can create the SC, but the recommeded way for creating the SC is thru ITS or Portal.
    I hope this will help. Feel Free while asking questions.
    Thanks and Regards,
    Ankur Goyal

  • How to use the is_selected method of if_wd_context_element API

    HI,
    scenario : if the element is selected, I want to pass some of its attributes to the backend.
    description : In a Context node, I want to check which elements are selected by the user. For this there is a method in the in if_wd_context_elemenent API in web dynpro ABAP. The method is called is_selected. How to use this method ?
    Please give me an example. What does this method return. can I use it in the if condition.
    Regards
    seventyros
    Edited by: seventyros on May 5, 2011 9:32 AM

    Hi tryos,
    IS_SELECT method is available at element and node level.
    check this...
    http://help.sap.com/saphelp_nw04s/helpdata/en/fd/be5b4150b38147e10000000a1550b0/content.htm
    Check this is set_selected method, try with is_select also...
    Select All in table
    if lo_el_it_lips->is_selected ( flag = abap_true ).
    endif.
    // Node
    DO count TIMES.
    lo_nd_it_lips1->is_selected(             // lo_el_it_lips - element has no index, only flag.
    flag = abap_true
    index = int ).
    ADD 1 TO int.
    ENDDO.
    Cheers,
    Kris.
    Edited by: kissnas on May 5, 2011 9:49 AM

  • How to use session cookie property of System object?

    Hi all,
    I have searched all over the SDN but didnt get anything relevent so here i am posting my query...
    My scenario is as follows:
    I have created a KM document iview that launches an HTML page, on click of button of HTML page a VC iview is launched. On this iview i have a button that hits BI query.
    PS: A system object is created for the connectivity bet portal and backend BI server.
    PS: i have configured SSO between portal and backend.
    Now when i click on button on iview that fetches the data from backend, i am asked for authentication pop-up, although i have configured SSO why i am asked to enter UID and PWD again??
    In system object there is a property named
    <b>"session cookie = MYSAPSSO2"</b>
    So should i use this property so that cookie will get transfered from one session to other session when i click button on iview??
    If yes then HOW??
    Is there any other setting remained in Visual Admin?? or Backend or portal?
    What could be the missing??
    PS: User id are same on portal & backend.
    Any help will be highly appreciated...
    Regards,
    Ameya
    Thanks in advance
    Message was edited by:
            Ameya Pimpalgaonkar
    null
    Message was edited by:
            Ameya Pimpalgaonkar

    Hi Ameya,
    I do not know the exact answer.However you should look for something called JSESSION ID.
    Have a look at the thread:
    Re: Problems Using Application Integrator for BSP Application
    Reg SSO Logon Tickets and Browser sessions
    How to use jsessionid while making HTTP calls??
    Hope you find something which can help you.
    Regards
    Atul Shrivastava

  • How to create Contract in SAP backend systems( R/3)

    Hello All,
    We have SRM4.0 with classic scenario. We don't have sourcing cockpit , bidding engine and all activated.
    Please suggest me, how can I create contract in backend system?
    We don't want to create GOA in SRM system and distribute it to backend system.
    Regards
    Neelesh

    Hi Neeleesh,
    Go through the GOA setup in the <a href="https://websmp205.sap-ag.de/~sapidb/011000358700002897362004E/CG_Sourcing5.pdf">Strategic Sourcing Configuration Guide</a>
    In the web GUI you can use the transaction BBP_CTR_MAINCC to create the Global Outline Agreement
    Note 646903 is also useful.
    Hope this helps.
    /Kristoffer

  • How to use Microsoft DateTime Picker ActiveX control in Forms 6i?

    Does anyone have idea on how to use Microsoft Date-Time Picker ActiveX component in Forms 6i? Please give me coding examples for using this control to retrieve & store date at the backend.
    Regards

    when u load activex (spreedsheet) the corresponting menu also u can see when u run through which also you can set the attribute values
    im also check the same it is working
    sorry i saw it on design time
    kansih
    Edited by: Kanish on Apr 28, 2009 2:54 AM

  • How to install ABAP as a backend system in my EHP1

    I have successfully installed EHP1 composition enviornment from SDN , now i m able to work on
    NWDS for JAVA and Enterprise portal . it contains java application server .
    but in order to get data from ABAP Backend system from NWDS(JAVA) , I don't have ABAP Backend sysytem , how to install abap backend system with abap application server in my system ????
    there is one link to install Netwaever ABAP 7.1 trial version( webdynpro abap and abap application server ) in sdn  but in system requirement it clearly mentioned that " make sure that there is no SAP sysytem installed in ur system " .
    I need webdynpro java ,webdynpro abap  and enterprise portal together  but  i have only webdynpro java and EP , so how to install abap as a backend system in my EHP1 ?
    or any other download link which contain all three ??
    please help me ?

    Hi,
    CE is indeed not double stack. However, it is possible to install both an ABAP and a CE on the same host provided they have different system ids and instance numbers. This works for the current SDN download versions: CE 7.1 and CE 7.1.1 (system id CE1, system number 00) and AS ABAP 7.01 (system id NSP, system number 02).
    Needless to say, it is perfectly possible to configure and establish all kinds of connections between the two:
    JCo/RFC calls in both directions
    Web Service calls in both directions
    AS ABAP as a portal backend
    publishing system information in SLD
    accessing an ESR
    accessing a Service Registry (publish + query)
    using AS ABAP as user database for the CE
    Single Sign-On
    Best regards,
    Thorsten

  • How to use SupplierERPCreateRequest

    Hi dear SOA gurus,
    We are planning to use the SupplierERPCreateRequest webservice, but we don't have enough information on how to use it and what the parameters in the webservice call should be. I'm trying to find any information on this particular webservice as during the call we are getting all kind of error messages and can't figure out why. It would be great to get an XML that actually worked for you in your implementation and to get an understanding on the context fields in the call that are system relevant and not self described.
    Any help is appreciated.
    Thanks in advance,
    Boris

    Hi Boris,
    If the SupplierERPCreateRequest WSDL in a Soap client (like SoapUI for example, you would be able to tell what the request mandatory fields are & their format because of the embedded XSD.
    Alternatively, you could use TCode SPROXY in the backend, find the SupplierERPCreateRequest service, test the service (F8) & select the 'Generate Template Data' option. This will generate a template request with data in the required format for the mandatory fields. For fields just data typed as string it will default values like 'Str 123' as an example.
    Regards, Trevor

  • How to use Enterprise Services available in workplace

    Hello Friends,
    We have found some Enterprise Services to use for our existed business scenarios in ES Workplace.
    My requirement here is: There are some interfaces which are running through websphere from source to destination. Now, we wanted to migrate those interfaces using PI 7.1, for which Can I use SAP provided Enterprise Services in ES Workplace? If so, how can I use those? What is the approach? Is there any process for this?
    Kindly provide us blogs, pdfs or step by step procedure how to use?
    Regards
    PM.

    Hello PM,
    It depends on the exact scenario and best fit of usage of ESs. The ESs listed out in the ES workplace are the different functionalities and specific to business scnearios.
    So in your case, it is not a good idea to directly use the services available from ES workplace. You need to understand/analyse the exact functionalities etc
    wrt your query on how to use ES from ESworkplace: All ESs are coming as EhPs.. so you need to import those EhPs in your SAP backend, and publish the services into ES Registry.. then you can consume without PI.
    You can use PI, to have new developments or extending the existing ES using outside in approach. Otherwise PI is not required to execute the ES.
    Following URLs will help you to understand these better
    Simple use cases :
    http://esworkplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?sap-unique=045503&sap-params=aWQ9RjZDRkMwRUEzRUYxNEJDOTg0MUM1MjgyNzJFRTg1ODMmcGFja2FnZWlkPURFMDQyNkREOUIwMjQ5RjE5NTE1MDAxQTY0RDNGNDYyJm1vZGU9
    ES configuration: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20b723f8-a422-2c10-aca5-fe64eeda1ff2
    Specific to using PI or migrating to PI, need to have more details to respond. Because we can not just replace with ES..
    Hope it helps
    Regards, Moorthy

Maybe you are looking for

  • Generics in swing?

    Just wondering -- Are there any plans to use generics with swing classes? In particular, ListModel, TableModel, and (perhaps) TreeModel? After all, the default implementations of the first two must now be based on Vector<E> ...

  • Page breaks missing

    i have two repeating frames in my rdf. both repeating frames have the maximum records setting set to 1 in their property palettes. i also tried using insert page break before set to 'yes' for the first repeating frame and insert page break after set

  • Peoplesoft Trees as Hierarchial Columns in OBIEE 11g

    Sorry for a duplicate posting. Logged in as a normal user with random number. I know how much people hate it. Logged in as myself now. Hi, I have extensively searched using Google or 11g docs but could not find a proper solution to using Peoplesoft t

  • JVM and WSAD

    friends i am trying to run a program to test out my project(s) the main class has no compile errors as such but never runs and fails with the following message java.lang.NoClassDefFoundError: com/companyname/testdriver/services/TestClass Exception in

  • Hyperion Anaylzer - how to Print report with information in pages?

    Hi,<BR><BR>I use Hyperion Analyzer Version: 6.1.1.00206 (from Help | About menu).<BR><BR>I created report with pages (on Navigate button selected the Pages). In pages are months (January, February, March, etc).<BR><BR>Now I would like to print curren