Other than SAP RFC

hi
i have gone through the Documentation providing all necessary details about how to get connected to SAP RFC access through SAP Widget Foundation, however ,please tell me how to access other backends through coding or using tools in SAP Widget development tool
Viswas

Hi,
for example to access MS Access on the computer, you can use COM (on Windows).
Please check http://manual.widgets.yahoo.com/ in the section System DOM Reference / COM.
Maybe you'll also find this link useful for accessing Microsoft Applications: http://support.microsoft.com/kb/222101
Hope it helps,
Ladislav

Similar Messages

  • Implementation Focus other than "SAP Cloud for Customer"?

    Hi all!
    Am just wondering if there had ever been other options other than "SAP Cloud for Customer" in Step 2 of the First Implementation project - where there other options in the past?
    Thanks!
    Jeffrey

    Yes, this started in Business ByDesign. 

  • Help other than SAP help to be integrated

    Dear All,
    Can you please help me regarding the following issues
    1) My customer wants us to integrate a help other than SAP help or a help using RWD infopak. Is it possible?
    2) We are planning to develop the help in a HTML format or something similar to it. Can anyone tell is it possible from a field in transaction to call a URL whre the help for that field will be displayed.
    3) Any suggestions on how to develop the help and integrate??
    Expecting a reply soon
    Regards,
    Sujith

    you can place (install) the help files on any machine you want, at least it has a web server on it.
    you can then specify the "Server Name" and "Path" in SR13 to this server (e.g. Server Name = mywebserver.mycompany.com:1080, Path = helpdata)
    the clients open the associated program to the extension of the files (in case of .chm and .html it would be most likely the Internet Explorer)
    kr, achim
    check this link: https://websmp106.sap-ag.de/~sapdownload/011000358700002110712004E/SAPLibInstGuide_640_EN.pdf
    Message was edited by: Achim Hauck

  • WT SynchManager instl. on a different Server other than SAP/SQL Server.

    Hi,
    Is it possible to move/install WebTools SynchManager on a different server other than the SAP/SQL Server? Please let us know.
    Note: 
    1. We are aware of the recommendation:  u201CInstall the SynchManager on the SAP Business One server on which the DI API is installedu201D in the "Business One Web Tools SynchManager Guide.pdf".
    2. But, SAP/SQL Server at our Client is starving of RAM due to a high number of windows services/application trying to run at the same time (although the maximum amount of RAM possible under the current configuration is installed (4GB)).
    3. So, we are evaluating as to which of these application (WebTools being one of them) can be moved to a different server.
    Thanks and Regards,
    Kafil Shumon.

    Hi Kafil,
    You can put the synchmanager on a different server as  long as the DI API is installed and that server can access the B1 licensing server.

  • HANA DB install other than SAP Provided appliance--testing restore

    Hi All,
    We want to test HANA DB backup and restore procedures.Can we install HANA DB on any other hardware or OS pther than SAP provided appliance?
    Regards
    Purna

    Hi,
    HANA appliance is the hardware and software combination and that too buy from the authorized partners only. So, you can't test on the other hardwares.
    Regards,
    Neha Singla

  • Any Netweaver EP training in Chennai? Other than SAP or SIEMENS PLZ

    I am trying to find any training programme avalable in chennai on SAP Netweaver Enterprise Portal. If someone has any idea if other than SIEMENS or SAP doing this in chennai, please let me know.
    Thanks!
    Narayana Babu Reddyvari

    Hi Narayana,
    Apart from SAP & Siemens below is the SAP authorized training institute in Chennai:
    Aldea Infotech Private Limited
    1st Floor
    New no:28, Venkatakrishna Road
    Mandaveli
    Chennai � 600028
    Tamilnadu
    INDIA
    Tel: +91 44 45535000
    Mobile: +91 9952966888
    Contact Person: Chandru Muthukkaruppan
    E-mail: [email protected]
    Website: http://www.aldeainfotech.com
    Regards,
    Subhasha

  • Notification of Work item via email other than SAP mail

    Hi folks!!
    I am new to workflow.
    We have implemented workflow for Purchase Orders and getting workflow notification into SBWP-Workplace.
    Now we want to send notification to the private e.mail address, for this I have already made setting through T.Code SO13....Automatic forwarding.
    But the workflow notification is only appearing in SAP-Workplace and is not appearing in private mail box.
    Kindly guide me if there is any other setting required for this
    Best regards

    In SO16 Tcode in the Mail Sys GRP tab you should select the radi button send to home adddress of the user. Please note that this address is the email address maintained in SU01d along with SAP User Id.
    Thanks
    Arghadip

  • Can we give  SAP ABAP CERTIFICATION exam from other than SAP TECHED

    Dear,
           I busy with my project if i won't get chance to attend the SAP TECHED can i  give SAP ABAP ASSOCIATE LEVEL CERTIFICATION in any other way . i possible please tell me fee and process to attend the exam .

    >
    Jurjen Heeck wrote:
    > Oh, and have your keyboard fixed. Your CAPS LOCK gets stuck everytime you type SAP
    >
    lol... laughing my guts out.
    pk

  • Experiences on JPA persistence providers other than standard SAP's

    Hi developers,
    in this thread I would like to gather experiences from all those who have tried using JPA persistence providers other than SAP standard implementation in productive environments
    It would be very interesting if you could share you experiences, for instance with regards to:
    - advantages of a specific implementation
    - disadvantages (if any)
    - new features available (e.g. Lazy support for Lob and single-value relationships)
    - ease of transport (did you manage to somehow use the java dictionary DCs or what?)
    - ease of build (e.g. EclipseLink requires additional build plugins to be developed)
    - ease of overall setup: how long did it take to set the DI stuff up (SLD SC creation/track creation/check-in/check-out/activate/transport/...)?
    thank you so much for sharing your experiences.
    Regards
    Vincenzo

    Hi Vincenco,
    yes, semantic IDs do not have a place in JPA. Semantic keys are needed, but not as IDs.
    Both SAP JPA and EclipseLink use @GenerationType.TABLE generation if you define @GenerationType.AUTO. ("AUTO" just means that the persistence provider "should pick an appropriate strategy for the particular database" (javadoc)
    Both TABLE and SEQUENCE are somewhat automatic.
    I guess the fact of lost-values is because the fetching of IDs is done in another transaction (probably for performance reasons, not to have the sequence table as a bottle neck).
    On Oracle, the combination of allocationSize on JPA side and INCREMENT BY / CACHE on Database side is as follows: allocationSize must be equal to INCREMENT BY, but JPA uses the intermediate numbers (which is not the case in normal (PL)SQL programming. There is no annotation-JPA-pendant to CACHE. But that JPA uses the intermediate numbers from memory may be considered as a JPA way of sequence caching (that may be further improved by Sequence CACHE for really big mass insers in one transaction).
    CACHE>1 will give you lost values even with allocationSize = Increment BY = 1.
    On the other hand, allocationSize=1 may give bad performance on mass inserts because the JPA provider must ask the database for every instance. allocationSize>1 (e.g. 20) is better but will again yield lost values. (But who cares with "long"?)
    There is one important issue with both automated value creation strategies - GeneratorType.TABLE and GeneratorType.SEQUENCE: The ID cannot be set by yourself on instantiation of an Entity object. JPA spec defines that the ID is set at the latest on EntityManager.flush or EntityManager.commit, which is sometimes too late if you have container managed transaction boundaries.
    But both SAP JPA and EclipseLink assure that the ID with Table and Sequence is set already after call EntityManager.persist(newObject). This improves a lot, but may be not enough.
    Example:
    @Entity(name="T_ORDER")
    public class Order {
         @OneToMany(targetEntity=OrderItem.class, mappedBy="order", cascade=CascadeType.ALL)
         private List<OrderItem> items = new ArrayList<OrderItem>();
         public void addItem (OrderItem item) {
              this.items.add(item);
              item.setOrder(this);
    @Entity(name="T_ORDERITEM")
    public class OrderItem {
         @ManyToOne(targetEntity = Order.class)
         private Order order;
    EntityManager em = emf.createEntityManager();
    em.getTransaction().begin();
    Order o = new Order();
    OrderItem i1 = new OrderItem();
    o.addItem(i1);
    em.persist(o);
    OrderItem i2 = new OrderItem();
    o.addItem(i2);
    At the end of this snippet, o and i1 have ID != null but i2 has ID==null. there is no way to "auto-persist" an object which gets into a relation to an already persisted object. i2 gets an ID!= null after flush or commit.
    This may be tricky if your business logic that adds items is "pojo" without acces to EntityManager or if you do not want to mess up your business logic with flushes.
    How to "broadcast" the  unique IDs of just inserted order items to the User Interface if they are not yet set in the last line of your SLSB?
    We switched to simple UUIDs that are generated on instanciation. long VARCHAR2s, but it works fine and is very common.
    Regards
    -Rolf

  • Read flat file form other than sapserver(not in sapser) in background mode

    Dear Friends,
    I want to upload data from flat file to sap in background mode.
    I know how to read file for application server in background mode, but my requirement is , i need to read the flat file data from other than sap server in backgound mode.
    please help me,
    Regards,
    prabhu

    hi
    you can do like this way.
    fist should get de directory file name.
      CALL FUNCTION 'RZL_READ_DIR_LOCAL'
        EXPORTING
          NAME           = FILE_PATH
        TABLES
          FILE_TBL       = I_FILES
        EXCEPTIONS
          ARGUMENT_ERROR = 1
          NOT_FOUND      = 2
          OTHERS         = 3.
      IF SY-SUBRC EQ 0.
        FILES_TAG = 1.
      ENDIF.
    second
       LOOP AT I_FILES.
    open datafilenaem.
    close datafilename.
    endloop.

  • Is there any other method other than se78 to upload a graphic into SAP R/3?

    Hi,
      Is there any other method other than se78 to upload a graphic into SAP R/3?
    Anita Jeyan

    hi ,
    just use  OAER or RSTXLDMC program
    it will definately help you
    regards
    rahul

  • What is the costliest module is sap other than b.i

    What is the costliest module is sap other than B.I  AND CRM

    HI
    like to learn only costliest model in sap ?
    then learn the module BMW
    Ciao.

  • How to create user other than 'sa' to connect database server in SAP SBO

    I want to ask how the step for create user other than 'sa' to connect database server in SAP SBO? Until now I use 'sa' (default) for connect to database server in SAP SBO application.
    Can I do that?

    You may create multiple SQL users to give full right to B1 database instead of using 'sa' user.
    However, the preferred way would be by Use Trusted connection when you set the connection to SQL Server. In this way, you just need one more user for SQL.  A group of window users could use this SQL access to connect database server.
    Thanks,
    Gordon

  • SAP F&R:: Forecasting at any level other than LOCATION/ PRODUCT- LOCATION

    Hi, I am trying to check if F&R has the capability to let me plan the forecasting process at any level other than Location-Product.
    For example, I wish to execute a WEEKLY FORECAST only at the MERCHANDISE CATEGORY level, for all products defined under that MERCHANDISE CATEGORY. Is it possible to execute the forecast process this way? Please throw some light.
    Thanks!
    Vismay!

    Hi Vismay,
    you could use the mass_maintenance for location products and assign the forecast frequenca profile to all location products of a certain merchandise category (use merchandise category as selection).
    Alternative could be (if you are interested to do the forecast calculation once a week): You can create a new forecast frequency profile with the appropriate settings (weekly forecast; weekday the calculation has to be done; recurrency = 1). Define this new profile as the default profile!
    Best regards,
    Uli

  • Perl SAP::Rfc - input tables - The specified type Typ rfcdes is unknown.

    I am pretty new to SAP and am working to understand the guts of it while also trying to do something useful, especially understanding how we could use Perl Sap::RFC.  I've been looking for days and making a little progress over time, but now I'm stuck.
    Problem Summary:
    I want to read the RFCDES table using RFC_READ_TABLE to get a dump of what's in there.   It is apparently too large for a plain RFC_READ_TABLE, but I discovered that by defining the fields that I want, I can get out what I need.  I did this by successfully executing RFC_READ_TABLE in SE37 for the RFCDES table by defining entries in the FIELDS table, but I can't figure out the right way to send a table as input to SAP via SAP::Rfc.
    Background:
    I am using SAP::Rfc v 1.55 on linux with 640,0,303 release of the rfcsdk.
    I am getting the error:
    RFC call failed: EXCEPT SYSTEM_FAILURE  GROUP   104     KEY     RFC_ERROR_SYSTEM_FAILURE        MESSAGE The specified type Typ rfcdes is unknown. at /home/<userid>/local/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi/SAP/Rfc.pm line 1055.
    Here is my code block (minus connect info):
    my $it = $rfc->discover("RFC_READ_TABLE");
    $it->QUERY_TABLE("rfcdes");
    $it->ROWCOUNT( 30 );
    $it->OPTIONS( ["NAME LIKE 'SAP%'"] );
    my $str = $it->tab('FIELDS')->structure; # I think this line is extraneous
    $it->FIELDS([{ FIELDNAME => "RFCDEST", OFFSET=> "000000", LENGTH => "000000",  FIELDTEXT=> ""}]);
    $rfc->callrfc( $it );
    $rfc->close();
    The parameters to FIELDS are what worked in SE37.  I would eventually like to return more than just rfcdest (such as RFCOPTIONS) but at this point, anything working would be good
    I have successfully done an RFC_READ_TABLE with SAP::Rfc (using the tables.pl example) so I'm pretty sure I have that working but I think the FIELDS input/output table is throwing me off.  Maybe I'm not understanding the array of hashes correctly?
    I have looked at the thread SAP-::Rfc with Perl which got me this far but I'm still missing something.  Can anyone please help?
    Thank you for your time.

    You might want to check out the newer SAPNW::Rfc.  Not sure what version system you're connecting to.
    Anyway, here's how I did RFC_READ_TABLE with SAP::Rfc years ago:
    my $IT = $RFC->discover("RFC_READ_TABLE");
    $IT->QUERY_TABLE('TBTCO');
    $IT->OPTIONS( ["ENDDATE = '$MAXDATE' AND ENDTIME > '$MAXTIME' OR ENDDATE > '$MAXDATE'"] );
    my @FLDARRAY = qw(JOBNAME JOBCOUNT JOBCLASS PERIODIC REAXSERVER RELUNAME SDLUNAME
    AUTHCKMAN EVENTID SDLSTRTDT SDLSTRTTM STRTDATE STRTTIME ENDDATE ENDTIME STATUS);
    $IT->FIELDS([@FLDARRAY]);
    $RFC->callrfc( $IT );
    print "Num Rows in PRD matching selection criteria: ".$IT->tab('DATA')->rowCount()." \n";
    for my $ROW ( $IT->DATA ) {
       #do stuff;
    $RFC->close();
    Cheers,
    David.
    For reference, here's my wiki profile, where you can find my blogs on SAPNW::Rfc, and some sample scripts.
    http://wiki.sdn.sap.com/wiki/display/profile/David+Hull
    Edited by: David Hull on Mar 28, 2010 10:05 AM

Maybe you are looking for

  • Out of Memory Runtime Error

    Hello, I'm new to Java, this is only my third time using the language, and first time writing an applet. What I'm trying to do is create an applet that will plot 2D a set of coordinates based on an input string. Inexplicably, the VM gives an "<<Out o

  • Imac 20" just stopped working - just switches off

    Hi I'm running an imac 20" intel and its about a year old - I've had no problems with it until now - I installed ilife 08 last week and also added a 4 port USB extender cable but it worked ok for a few days after.....Now it has suddenly started turni

  • Financial Reports Migration

    Hi, I have now installed R and A and configured properly. Now I need to do some migration of reports from one environment to another. I have been trying two different ways: 1. Using the LCM and 2. Using the File -> Export/ Import in Workspace. The LC

  • FreeRadius Server + Arch. Thoughts?

    My motel has multiple buildings across 2 acres of land with 5 routers linked to the main router.  For my next project I'm thinking of connecting a radius server(on arch) to my router w/ ddwrt.  Since I'm new to freeradius and wifi hot spot verificati

  • Ramco Marshall - SAP Interface using XI

    Hi,   I want to build an interface between <u><b>Ramco Marshall and SAP using XI</b></u> . Please provide me some information, methodology and document for the same. Thanks