Java Docs for the Module Process Classes

Hi,
I would like to start creating my own JDBC and file-based modules for interface development. I have found several  SDN contributions which step through the creation of these modules. These are very helpful.
However, I have not yet found comprehensive documentation describing the classes used in module develpment. i.e.:
- com.sap.aii.af.mp.module.Module
- com.sap.aii.af.mp.module.ModuleContext
- com.sap.aii.af.mp.module.ModuleData
Does anyone know where to find the Java Docs for these classes? Or is there any other equivalent explanation of how to use these classes, their methods and fields?
Any help would be greatly appreciated.
Carl Engel
CSC Australia

Hi Carl,
Another link for you
http://help.sap.com/saphelp_nw04/helpdata/en/87/3ef4403ae3db12e10000000a155106/frameset.htm
This says that the java documentation is available in the example adapter/module that is there with XI.
I vaguely remembering seeing the docu..it was long back though..right now i donot have access to a system...
Get the rar(java archive) that i talked about in the above link...
Thanks,
Renjith

Similar Messages

  • Need Java API doc for the preference Manager class

    Where can I get Java Doc for the following classes
    import oracle.webcenter.peopleconnections.preference.Preference;
    import oracle.webcenter.peopleconnections.preference.PreferenceException;
    import oracle.webcenter.peopleconnections.preference.PreferencesManager;
    import oracle.webcenter.peopleconnections.preference.PreferencesManagerFactory;
    Thanks,
    Bala

    The API is the same (that's the whole point with Java), and last time I checked there were programs on Linux that can handle zipfiles and html files. :)
    So yes, use the same.
    (That is, unless you have downloaded the windows help format api docs. Then you need to download the regular html ones.)

  • Where are the latest java docs for the 9i JDBC drivers

    Hi, I'm trying to locate the java docs for the latest 9i JDBC drivers. I have searched all over the otn and oracle sites and still haven't found them. Does anyone know where they can be found.
    Thanks,
    Simon

    I believe they're right on the download page where you download the drivers.
    Justin
    Distributed Database Consulting, Inc.
    www.ddbcinc.com

  • Java Source for the tools.jar class files?

    Hi
    I'm writing custom taglets within an IDE. It would be great if I could find the source for files in tools.jar. Right now I'm a bit hindered by the lack of method specifications I would get if I had the source code.
    I'm especially interested by the Tag class methods
    Thanks

    Hi,
    Tag (and everything else in com.sun.javadoc) is an interface, so there are no class (static) methods.
    What was it you were wanting to do or to know?
    Bruce

  • Creating Java code for the function module

    Hi Colleagues,
    I have a fuction module in ABAP system. Now I want to Generate java code for the FM.
    I cam to know that we can achive that using AXIS, By getting the XML file for the fuction module and generate Java
    Class file using that XML file.
    Can any one tell me how to achive it.
    Or any other way to do that?
    Please provide you valid suggestions.
    Regards,
    Sathya

    Hi,
    You can integrate axis2 in eclipse. I think you have to find the plugin for that.
    After that you can let axis generate the jave code (stubs and proxies) for your web service via the wsdl file.
    Kind Regards,
    Robin

  • Provide the java code for the following scenario.

    Hi Experts,
    I have tried with all the combinations for this scenario. As per my understanding i require java code for the following scenario
    so that it becomes easy........
    I require a Message mapping for this Logic.
    In the Source there are 4 fields and, the Target side, the fields should appear like this.
    Source Structure- File
    Record
    |-> Header
    Order_No
    Date
    |-> Item
    Mat_No
    Quantity
    Target Structure-IDoc
    IDoc
    |-> Header
    |-> Segment
    Delivery_Order_No
    Recv_Date
    |-> Item
    |-> Segment
    Delivery_Order_No
    Material_Num
    Recv_Quantity.
    The Logic is for every Order number an IDOC is generated.And if the Material num matches then the quantity should be added. and important note is that the material numbers are different for every order number. That means if a material number is 2 in the order number A. Then the material number can never be 2 in any of the order numbers.Here is the following with an example for the above scenario.
    For example:-
    we have
    Source Structure- File
    Order-no Date Mat_No Quantity
    1 01/02/2011 A 10
    1 01/02/2011 B 15
    1 01/02/2011 A 10
    2 01/02/2011 C 10
    2 01/02/2011 C 10
    3 01/02/2011 D 20
    3 01/02/2011 D 10
    3 01/02/2011 E 25
    Target Structure-IDoc
    Delivery_Order_No Recv_Date Material_Num Recv_Quantity
    1 01/02/2011 A 20
    1 01/02/2011 B 15
    2 01/02/2011 C 20
    3 01/02/2011 D 30
    3 01/02/2011 E 25
    So for this example total of 5-Idocs created. That means for this example if Order_No is 1 When the Mat_No is A the quantity gets added. For this Scenario 1 IDoc with four Fields 2 in Header(Delivery_Order_No, Recv_Date) and 2 in Item(Material_Num, Recv_Quantity) is generated by adding the quantity field in the Target Side. Similarly if Order_No is 1 when the Mat_No is B then separate IDoc is generated with four Fields 2 in Header(Delivery_Order_No, Recv_Date) and 2 in Item(Material_Num, Recv_Quantity) in the Target Side. Similarly, if Order_No is 2 when the Mat_No is C, an IDoc is generated with four Fields 2 in Header(Delivery_Order_No, Recv_Date) and 2 in Item(Material_Num, Recv_Quantity) by adding the quantity field in the Target Side. ike wise the process goes on upto 3.Kindly do the needy..
    Kindly provide the java code.
    Thanq very much in advance..

    what i have understood from ur example is that u want to generate an idoc for unique combination of  Order-no and Mat_No
    if yes then chk the below mapping..
    change the context of Order_No, Date, Mat_No and Quantity to Record (right click-> context)
    1)
    Order-no
    ----------------------concat[;]---sort----splitbyvalue(valuechanged)-----collapse context---IDoc
    Mat_No
    2)
    Order-no
    --------concat[;]---sort----splitbyvalue(value changed)---collapse context---UDF1--splitbyvalue(each value)--Delivery_Order_No
    Mat_No
    3)
    Order-no
    -----------concat[;]---sortbykey----------------------- \
    Mat_No                       /                            \
    Date--------------- /                                       \
    ----------------------------------------------------------FormatByExample-----collapsecontext---splitbyvalue(each value)----Recv_Date
    Order-no                                                 /
    -----------concat[;]---sort----splitbyvalue(value changed)
    Mat_No
    4)
    Order-no
    --------concat[;]---sort----splitbyvalue(value changed)---collapse context-UDF2--splitbyvalue(each value)--Material_Num
    Mat_No
    5)
    Order-no
    -----------concat[;]---sortbykey
    Mat_No                       /
    Quantity --------------- /
    ----------------------------------------------------------FormatByExample-----SUM(under statistic)----Recv_Quantity
    Order-no
    -----------concat[;]---sort----splitbyvalue(value changed)
    Mat_No
    UDF1:
    String [] temp= a.split(";");
    return temp[0];
    UDF2:
    String [] temp= a.split(";");
    return temp[1];

  • Java Docs for Internet sales

    I was looking for the ISA Java docs and tried to download the file ISAWAC40SP09P_9-10002109.SAR, but I cannot find it anywhere. SAP site has file ISAWAC40SP08_0-20000529.SAR but the javadocs are missing. Could anyone please let me know the location from where I can download the file ISAWAC40SP09P_10-10002109.SAR or alternatively Java docs for Internet sales

    Hi Pankaj,
    you can try with the first patch of the SP 9 - for example try the file ISAWAC40SP09_0-10002109.SAR. Extract the file using the sapcar program and search for docs.sar file where the documents are.
    I hope this will help you.
    Regards
    Borislav

  • Java doc for GeneratedComplexType

    Hi,
    Please help me find the Java doc for
    com.sap.engine.services.webservices.jaxrpc.encoding.GeneratedComplexType
    Thanks!

    I'm looking for the same javadocs ... Did you find something?
    Regards

  • Java doc for IClientUserFactory

    Java doc for interface IWDClientUser
    says "
    See Also:
    com.sap.tc.webdynpro.services.sal.core.IClientUserFactory"
    I cannot find a Javadoc about  IClientUserFactory,  or the package com.sap.tc.webdynpro.services.sal.core in the Webdynpro java doc. Are they any?
    in Fact I am looking for a method which will return me the user  name of the current session, do  you have any suggestions?
    Thanks, regards, peter

    I'm looking for the same javadocs ... Did you find something?
    Regards

  • Memory could not be allocated for the activation process. Please close all applications and try agai

    I have just had a Windows XP failure and took the opportunity to replace with Windows 7.  After I reinstalled PhotoShop CS(1) the message "Memory could not be allocated for the activation process. Please close all applications and try again"  is shown and forces PhotoShop to close.  I have 4Gb of Ram installed and a total of about 10Gb of Page File space on three partitions of a 500Gb HDD.  The system is not heavily loaded!  However, I cannot access Photoshop to check scratch disk allocation.  How to fix???
    Back to top

    Yes, there are many forums, and it can be confusing. Your question has the best chance of being answered if it is in the proper place. I think it is there now.
    Pattie
    http://forums.adobe.com/message/5092533#5092533  is your post address
    Download and installation forum:
    http://forums.adobe.com/community/download_install_setup

  • Memory could not be allocated for the activation process. Please close all applications and tr again

    Hello,
    Just purchased a new laptop:
    Intel Core 2 quad
    4gb memory
    1000 HDD
    Photoshop CS 8.0 disc dead/scratched/unreadable.  So I copied my Adobe folder from my Program Files Folder on my PC and pasted on laptop.  When I try and run PS I get the error message "Memory could not be allocated for the activation process. Please close all applications and try again". Which I do then Photoshop closes.
    Can anyone help (in layman terms please)?

    Not really. You are essentially FUBARd. Without a proper install, there is usually no way on to get the licensing stuff working. You might be able to get there by installing any other CS product, so PS could latch on to the licensing system that would be already in place, but otherwise it's a lost cause. Simply copying over the executables is normally not enough. I will admit though, that I skipped CS, so there may be some tool somewhere that I don't know about can do this post facto...
    Mylenium

  • Standard And Customized BEx Reports & workbooks for the Modules FI,SD,MM

    Hi..All
    Can any one explain about Standard and customized BEx Reports and workbooks which were frequently used in implementation projects for the modules SD,MM and FI?
    Thanks & Regards
    Jonn

    Hi John,
    Find below some of FI(AP) queries....
    1.Accounts Receivable: Payment History -0FIAR_C05_Q0001
    2.Accounts Receivable: Overdue Analysis -0FIAR_C03_Q0005
    3.Accounts Receivable: Days Agreed / Days Taken -0FIAR_C03_Q0001
    you can find some queries in help.sap.com
    I don;t remember the queries used for other modules...you can refer the below link and identify the queries most usefull for your requirements...
    help.sap.com/bw
    thanks,
    vachan

  • "error while evaluating Java script for the package"

    Okay, this is a new one on me! Anyone ever get this message? I don't know what is going on with my iMac, all I know is that about a month ago my iTunes was working fine, and when I just went to use it, it tells me "you can not use the application iTunes with this version of Mac OS X. So I thought maybe something was wrong with my iTunes and downloaded it again and i got the "error while evaluating Java script for the package" when I tried to reinstall iTunes. Another issue I am having is with updates. I haven't received an update for a long time and when I manually check, it tells me there are none.

    Okay, this is a new one on me! Anyone ever get this message? I don't know what is going on with my iMac, all I know is that about a month ago my iTunes was working fine, and when I just went to use it, it tells me "you can not use the application iTunes with this version of Mac OS X. So I thought maybe something was wrong with my iTunes and downloaded it again and i got the "error while evaluating Java script for the package" when I tried to reinstall iTunes. Another issue I am having is with updates. I haven't received an update for a long time and when I manually check, it tells me there are none.

  • What is the standard method to integreate with AME for the approval process

    I have developed a new OAF page and registered under Employee Self Service menu.
    What is the standard method to integreate with AME for the approval process.
    Appreciate your early response

    Any one used AME with the new OAF pages?
    Please share , how you use AME with OAF page

  • Depreciation posted for the wrong asset class

    Hi Experts
    An asset was posted for the wrong asset class. Invoices for this asset were already posted and depreciation was posted for several months. Now we realize the mistake and want to correct it. How can we reverse the origanl documents including the depreciation and post it to the correct asset class accounts?
    Thanks
    Ofer

    Hi Ofer,
    you can transfer the depreciation to the new asset. Why you want to reverse th edepreciation?
    Generally depreciation can not reversed. If you want to reverse the depreciation you can enter depr. key "0000" and make a repead run. In that case the depreciation will be reversed (posted oposite) for alle open fiscal years.
    regards Bernhard

Maybe you are looking for

  • Functions in Calculation and Summary Fields

    Hi, I'll give a bit of background to my situation before describing the advice I'm looking for here. I am experienced Mac user and I have used AW a fair bit in the past, but since I've been working in a job which has Windows machines and uses a compl

  • "Resume"/"Restore windows" features

    Dear members of the community, I have the following issue with "Resume"/"Restore Windows When Quitting and Re-opening Apps" features on my MacBook Pro (Early 2011) running Lion 10.7.3 : The "Resume"/"Restore Windows When Quitting and Re-opening Apps"

  • Help.. before i throw this thing out the window

    I've had my macbook pro for about 2 weeks now... at first the internet was running insanely fast; you know, as it should have been. Lately, however, when i try to get online the pages wont even load, and when they do load, they load half-assed. Half

  • Logic for making ASN as an attachment to a email?

    hi all, can anyone help me trying to write a logic for making the Advanced Shipment Notification as an email attachment after having converted it into pdf format? I need logic for: 1) Initially converting it into pdf 2) Making the pdf as an attachmen

  • How to recover from a hung softwareupdate process?

    Hello, This weekend I ran software update via the Server Admin tool on all the nodes in a small cluster of eight Xserves (one master, seven cluster-style nodes). They are all dual processor G4 Xserves with 1 gig of ram, upgrading from 10.4.8 to 10.4.