Need help in these topics. Or links please

Hi guys,
Could you tell me a resource where I can find information on these.
1. Programs written in java to manipulate on String functionaliy like String concat, substring, length and other string methods without using String's Builtin functions.
2. Java resource for Searching and Sorting Algorithms

I shall take a look at Source code that comes with JDK....
I have implemented something for String Concatenation ... I hope its correct....
public class StringConcatEx {
   public StringConcatEx() { }
   public char[] concat(char[] x, char[] y) {
       boolean done;
       char [] ret;
       int len = 0;
       len += x.length;
       len += y.length;
       ret = new char[len];
       for(int i= 0; i<x.length; i++ ){
            ret[i] = x;
for(int i= 0; i<y.length; i++ ){
     ret[x.length + i] = y[i];
return ret;
public static void main(String [] args) {
char charArray[];
StringConcatEx te = new StringConcatEx();
charArray = te.concat("foo".toCharArray(), "bar".toCharArray());
System.out.println("The Concatenated String is = '" + (new String(charArray)) + "'");

Similar Messages

  • I need help with these two crash IDs nsStyleContext::FindChildWithRules(nsIAtom const*, nsRuleNode*) and DFusionWebPlugin@0x86b5

    I need help with these two crashes...
    PL_DHashTableOperate | GCGraphBuilder::NoteRoot(unsigned int, void*, nsCycleCollectionParticipant*)
    DFusionWebPlugin@0x86b5
    The first one happened a couple of days ago, a few times and not on any specific website.
    The second one only happens on the site below.

    The second one indicates a problem with the DFusionWebPlugin that shows in your More system details list.
    # D'Fusion Web Plug-In for Safari 64 bits (3.00.13774.0)
    # D'Fusion Web Plug-In (3.00.13774.0)
    What you posted are crash signatures.<br />
    It might help if you post the actual crash IDs (bp-xxxxxxxx-xxxxxxxxx-xxxx-xxxxxxxxxxxx).<br />
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    See http://kb.mozillazine.org/Breakpad (Mozilla Crash Reporter)

  • Need help on these faq's

    Hi,
    Need some info on these questns...pls help
    1.What is the advantages of using ABAP objects in reports?
    2. What does an EXEC SQL statement do in ABAP. What is the disadvantage of using it?
    3. The format of hierarchical sequential ALV?
    4. Explain HOST command? Is it possible to run the host command in SAP environment?
    5. How to backup Sapscript layout set?
    6. Difference between parameters SET and GET?
    7. What is the coding example for filling a BDC table?
    8. What are the components of the SAP menu?
    9. Explain Scroll function?
    10. Steps to set a lock on a record within a DB table?
    11. What are the exceptions in Function Modules?
    12. What are the events driven in a batch job?

    Hi David,
    This is regarding SET & GET Parameters.
    SAP allows you to make use of SPA/GPA technique to fill the input fields of a called transaction with data from the calling program.SPA/GPA parameters are values that the system stores in the global, user-specific SAP memory. SAP memory allows you to pass values between programs. A user can access the values stored in the SAP memory during one terminal session for all parallel sessions. Each SPA/GPA parameter is identified by a 20-character code. You can maintain them in the Repository Browser in the ABAP Workbench. The values in SPA/GPA parameters are user-specific.
    ABAP programs can access the parameters using the SET PARAMETER and GET PARAMETER statements.
    To fill one, use:
    SET PARAMETER ID <pid> FIELD <f>.
    This statement saves the contents of field <f> under the ID <pid> in the SAP memory. The code <pid> can be up to 20 characters long. If there was already a value stored under <pid>, this statement overwrites it. If the ID <pid> does not exist, double-click <pid> in the ABAP Editor to create a new parameter object.
    To read an SPA/GPA parameter, use:
    GET PARAMETER ID <pid> FIELD <f>.
    This statement fills the value stored under the ID <pid> into the variable <f>. If the system does not find a value for <pid> in the SAP memory, it sets SY-SUBRC to 4, otherwise to 0.
    To fill the initial screen of a program using SPA/GPA parameters, you normally only need the SET PARAMETER statement.
    The relevant fields must each be linked to an SPA/GPA parameter.
    On a selection screen, you link fields to parameters using the MEMORY ID addition in the PARAMETERS or SELECT-OPTIONS statement. If you specify an SPA/GPA parameter ID when you declare a parameter or selection option, the corresponding input field is linked to that input field.
    On a screen, you link fields to parameters in the Screen Painter. When you define the field attributes of an input field, you can enter the name of an SPA/GPA parameter in the Parameter ID field in the screen attributes. The SET parameter and GET parameter checkboxes allow you to specify whether the field should be filled from the corresponding SPA/GPA parameter in the PBO event, and whether the SPA/GPA parameter should be filled with the value from the screen in the PAI event.
    When an input field is linked to an SPA/GPA parameter, it is initialized with the current value of the parameter each time the screen is displayed. This is the reason why fields on screens in the R/3 System often already contain values when you call them more than once.
    When you call programs, you can use SPA/GPA parameters with no additional programming overhead if, for example, you need to fill obligatory fields on the initial screen of the called program. The system simply transfers the values from the parameters into the input fields of the called program.
    However, you can control the contents of the parameters from your program by using the SET PARAMETER statement before the actual program call. This technique is particularly useful if you want to skip the initial screen of the called program and that screen contains obligatory fields.
    If you want to set SPA/GPA parameters before a program call, you need to know which parameters are linked to which fields on the initial screen. A simple way of doing this is to start the program that you want to call, place the cursor on the input fields, and choose F1 followed by Technical info. The Parameter ID field contains the name of the corresponding SPA/GPA parameter. Alternatively, you can look at the screen definition in the Screen Painter.
    The SPA/GPA parameter for the input field Company has the ID CAR. Use this method to find the IDs CON, DAY, and BOK for the other input fields.
    The following executable program is connected to the logical database F1S and calls an update transaction:
    REPORT BOOKINGS NO STANDARD PAGE HEADING.
    TABLES SBOOK.
    START-OF-SELECTION.
    WRITE: 'Select a booking',
    SKIP.
    GET SBOOK.
    WRITE: SBOOK-CARRID, SBOOK-CONNID,
    SBOOK-FLDATE, SBOOK-BOOKID.
    HIDE: SBOOK-CARRID, SBOOK-CONNID,
    SBOOK-FLDATE, SBOOK-BOOKID.
    AT LINE-SELECTION.
    SET PARAMETER ID: 'CAR' FIELD SBOOK-CARRID,
    'CON' FIELD SBOOK-CONNID,
    'DAY' FIELD SBOOK-FLDATE,
    'BOK' FIELD SBOOK-BOOKID.
    CALL TRANSACTION 'BOOK'.
    The basic list of the program shows fields from the database table SBOOK according to the user entries on the selection screen. These data are also stored in the HIDE areas of each line.
    Reward If useful.
    Regards,
    Chitra

  • Need help with videos!!! Please

    i need help! i have a 30G ipod video and my videos are being weird. They used to play on my ipod but now there is no picture or sound. it plays on itunes too so i dont understand. Also, my purchased music plays on itunes but skips past them on my ipod-they used to play on my ipod. PLEASE help me!

    Welcome to Apple Discussions!
    For Videos:
    So what are they doing? Are the videos showing up under "Videos" on the iPod? What happens when you try to play them? Have you tried these?
    Resetting iPod
    Restore the iPod
    For Purchased Music Skipping:
    Have you played the songs in iTunes for a few seconds? This will authorize them. Now sync your iPod. Do they play?
    If not, make sure everything is up to date on your computer and iPod..
    iTunes
    iPod Updater
    Updating iPod's Software
    If that doesn't work, in iTunes, go to advanced-->deauthorize computer. Now play the songs in iTunes. It will ask for your account information (from the iTunes Music Store). Enter that. Now play a few purchased songs for a few seconds. Sync your iPod. Do the songs work now?
    If they don't, try this...
    Deauthorize the computer. (Go to advanced-->deauthorize computer in iTunes)
    Create a new user in the system. (Start-->control panel-->user accounts-->create a new account)
    Download the free song of the week in the new user account. (First, log out of the current user and log in to the new user account. Then open iTunes and download the free song)
    Play the song in that username to authorize it.
    Restore the iPod in the New User account, sync just the Free song of the Week and see if it plays on the iPod.
    If it plays fine on the iPod when syncing with this user name (after you followed the above instructions), it would indicate a bad iTunes Library File. Post back for instructions on how to fix that.
    Now, if it still won't work (you followed the above instructions with the new user account) and the iPod still won't play the songs, then post back.
    btabz

  • I recently sold my iphone 4s back to at&t and bought a galaxy s5 but my brother still has an iphone and when he sends me a text it dosnt always go through and i really need help on what to do next please

    I recently sold my iphone 4s back to att and they whiped it clean and now i have a galaxy s5 and my brother still has the iphone but when he sends me texts they dont always go through and i need help on what to do next

    See if this helps:
    iMesssage to old phone
    If you move to another phone and forget to turn off iMessage then read “if you no longer have the device inhttp://support.apple.com/kb/HT5661  If you still cannot resolve it call Apple http://support.apple.com/kb/HE57
    To deactivate iMessage http://support.apple.com/kb/ts5185
    Read http://m.samsung.com/us/support/SupportOwnersFAQPopup.do?faq_id=FAQ00053450&fm_s eq=62995

  • Need help on flash animation 3.0 Please do help. thanks

    i am currently doing a project on actionscript 3.0 and i am having so much trouble with it. the e-book my teacher send us doesnt help, too many words and i dont understand he also wont teach us.
    I am trying to make a sound wave like transverse and longitudinal wave but i ait sure how to draw as all my group mates drawing are so 2D, compared to the 3D ones. i am trying to make the the wave move longitudinal and enter parameters into the flash.
    I also would really want to know if AS2.0 SWF file into a AS3.0 Flash is available. i cant find any codes on that.
    If anyone is willing to help me do i am willing to pay thats if ur in singapore, cause i really need help if not me and my groupmates are goners.
    Do add me on [email protected] or for skype u can search for me its kennethkong4. anyone leaving in singapore pls do contact me at 96209078. TYVM ppl.

    Hi Lito,
    Did you ever solve your problem?
    We have the same issue and I can't find the 6.10 installation CD on the SWDC either.
    Thanks,
    Darryl

  • Need to know these topics please ....,

    Hi
    i faced interview recently, there i was failed due to below questions in BO. Can anyone provide the outputs please.,
    1. what kind of limitations do we have whilst using BO on the top of BW/BI? million cells issue
    RKF issues
    MDX limitations
    Hierachy issues
    Info provider (ID) issues
    filters.
    can you explain about the above issues detailly., why those would become as a issue ..??
    2. is it good idea to do filters at Query level (BEX) or BO level?
    3. Can we create universe on the top of DSO?
    4. What kind of limitations do we have using infoset.
    5. How would you improve BO query performance?
    6. If you introduce new fields in the cube and there was a universe has already been created on
    it how would you refresh universe (align).
    7. Data issues between BI and BO.
    8. New features of BO etc.
    9. WEBi/DESKI differences.
    10. WEBI/Boxi schedular
    Apart above., can anyone send any interview questions and answers on BO please. especially universe and web i.
    waiting valuable inputs from you guys. please .,
    Thanks in advance.
    Regards
    swetha

    Hi swetha,
    1. These are the complete deski, webi differences
    [http://wiki.sdn.sap.com/wiki/display/BOBJ/ConversionfromDesktopIntelligencetoWebIntelligence#ConversionfromDesktopIntelligencetoWebIntelligence-DeskIfunctions]
    2. How would you improve BO query performance?
    At universe level by using loop resolving technique we have a chance to improve the performance and also using the aggregate tables.
    in report level removing data provider remove unneccery formales andveriables
    At universe level 3 ways we can improve the query performance.
    1. Using aggregation tables in scheme.
    2. Chnge the Array Fetch parameter.
    3. Using shot cut joins.
    4. Puting indexes on tables
    3.Can we create universe on the top of DSO? 
    You can build a universe directly on an InfoCube (but NOT on a DSO or InfoSet) without the Data Federator. Still this is not the recommended approach. Please review the section +SAP NetWeaver BW Queries as
    recommended data sources+ in the following document: http://help.sap.com/businessobject/product_guides/boexir31SP2/en/xi31_sp2_sap_olap_univ_en.pdf
    4.What kind of limitations do we have using infoset.
    A.  Base64 Optimization
    The Base64 optimization (see the Fast Infoset for Java Web Services Developer Pack v2.0 documentation) only applies to schema-defined (or WSDL-defined) elements. It does not apply to attribute values or element values, which are not defined in the schema (for example, those generated by the XWSS library). Moreover, this optimization is turned off when JAX-RPC handlers are defined.
    B.  XWSS Library Optimizations
    Certain optimizations in the XWSS library may not be available when Fast Infoset is turned on
    5. Hierarchie Limitations
     If number of expanded hierarchy levels is more than formula will become very lengthy and complicated.
     Used only for displaying two hierarchy levels at a time in report, can be increased for more number of levels but at the same time complexity will increase.
     This logic is specific to expanded hierarchy requirement only.
     Authorization concept as part of this logic is not covered in this above details.
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90ed9723-14ad-2d10-fc9d-910dc8dbc405?quicklink=index&overridelayout=true]
    6.Data issues between BI and BO
    Will any BI and BW products be combined? Yes. For OLAP Analysis, the capabilities of the BEx Analyzer and BO Voyager will be combined, code-named Pioneer, with a release year set for 2010.
    What other products can we expect? 2010 is also the year set for the release of NetWeaver Crystal Reports for Enterprise Reporting (companies can obviously use Crystal Reports now with BOu2019s integration tools). Polestar for NetWeaver, powered by the BIA, is expected in 2009.
    All the best,
    Praveen

  • Need help for off topic question...please.

    First off, I want to appologize for posting this here...but it seems that the forum it belongs too it not accepting any new postings. At least I don't see a post button at the top. So anyone who is knowledgeable and patient with me would be most appreaciative.
    I use both Safari and Netscape. Im not sure which app. is doing this but it is quite annoying. It seems as I browse using both apps., when I finally do get to my desktop...I see a bookmark file. For example (bookmarks-23.html). If I just ignore it, they accumulate. As you can see, this is bookmark number 23. I am not sure what app. is doing this and why it is doing it. What could even happen to cause this.
    Any help would be appreaciated.
    Thanks in advance.
    Eddy

    Hi Eddy
    I guess you mean the safari forum, right?
    The reason you're not seeing a post button, is cuz you're not actually viewing the forum itself, but a list of recent topics.
    Just above that list - look for the actual link to the Safari forum.
    now you mention it.... I guess it could seem like there's no post button, if you're not already familiar with the discussions site.
    continuing OT - Quit either one of your browsers & use the other; if you get a #24 & 25 bookmarks file, you'll know it's the browser you're using now that creates them.
    When you know that - I'd suggest a new question in the Safari forum

  • Need help overclocking on MSI X48C Platinum please

    hi all i have just installed a MSI X48C Platinum board today but the bios is a bit confussing for me as ive never had a overclocking mobo before
    i woud like to OC to 3GHZ to 3.5 GHZ if possible but need some explaining on how to do this and in what sections in the bios to achieve this please
    can anybody help me with this please?
    Vista X64 SP1
    Q6600 B3
    MSI X48C Platinum
    HD 4870
    OCZ 667MHZ 5300
    Samsung 20" 2032BW
    FSP Epsilon 600 W

    Quote from: Frankenputer on 24-September-08, 04:47:11
    PC Power & Cooling have a long reputation as being a high-end PSU manufacturer(also been doing it much longer).  If paying the extra £15.00 doesn't mean much, then go for the PC P&C. If the funds are tighter, get the Corsair.  I have the PC P&C Silencer 750.
    My guess Henry, is that kmufc77 was linking to either of these Silencer 750 PC P&C PSUs
    http://www.overclockers.co.uk/showproduct.php?prodid=CA-004-PP&groupid=701&catid=123&subcat=&name=PC%20Power%20&%20Cooling%20Silencer%20750%20Quad-Crossfire%20PCI-E%20750W%20Power%20Supply
    or
    http://www.overclockers.co.uk/showproduct.php?prodid=CA-001-PP&groupid=701&catid=123&subcat=&name=PC%20Power%20&%20Cooling%20Silencer%20750%20Quad-SLi%20PCI-E%20750W%20Power%20Supply
    The Silencer 610 would be more than enough for the 4870, but the 750 will give greater overhead and room for upgrades to more power hungry components or Crossfire.
    http://www.overclockers.co.uk/showproduct.php?prodid=CA-001-PP&groupid=701&catid=123&subcat=&name=PC%20Power%20&%20Cooling%20Silencer%20750%20Quad-SLi%20PCI-E%20750W%20Power%20Supply
    yes you are right i have ordered the Silencer 750 PC P&C PSUs but a black colour not red i payed the extra over the corsair 750W purely on the repitation of PC P&C PSUs. i hope i have made the right choice as i considering crossfire in the very near future

  • Need help!!!! Links missing??? Plugin???

    Guys/Gals
    Please help.
    I need your advice.
    A client provided me a document made in ID CS5. He saved it in CS3 so that I can open it (my version) and modify it. When I open it, it says it has 37 missing links (all images are missing).
    So I replied I needed him to package everything, or send me the images separately  in a folder.
    He replied he cannot package anymore in a newer version such as CS5, and that I need to download a plugin from the web, so that I can see the images.
    Does this make sens to you? What is this plugin? Is it true or is he BS me?
    Help!
    I need to get them an answer today!
    Regards
    Jack

    It does not make sense, perhaps he is confused or there is something else going on here.
    CS5 does indeed have the Package command, it is substantively unchanged from CS3.
    That said, if he says there is a plugin, perhaps he is using a 3rd party plugin that provides some other way to access links. Why not investigate the plugin he is recommending?

  • I need help with my ipods error 21 please help

    my ipod doesn't like to restore on my computer its a windows 7 and i have the latest itunes can somebody please help me the i

    Error 20, 21, 23, 26, 28, 29, 34, 36, 37, 40
    These errors typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    The "device may need service" means a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Need help on basic topics

    Hi Experts,
    I am new bee to HFM and just started working on it. I have some basic doubts, could you please someone help me on this.
    I have passed some ICP entries, but could not able to view eliminated amount in Plug a/c. There is no issue with entries or anyother problem with entries. I am only able to see, what I have entered (amount) in ICP transaction, aginst the entities. I think I am doing some error with POV setting, pls help me in detail how to arrange the POV to view the eliminated balance in plug a/c and adjusted amount after elimination.
    Please also help me on understanding the below tems.
    1. What is System Accounts?
    2. What is Performance Management?
    3. what is dynamic calculation?
    4. Can we use two different HFM applications for one POV?
    5. What are FDQM Reports?
    6. I want to use Average Rates and Closing Rates for some Balance Sheet a/c, how can I achieve this?
    7. Ownership doubt.
    Ex: Till March it was JV (50-50), then from it changed to Subsidiary (60-40), then how this will effect in Consolidation
    process?
    8. What is ODI Reports?
    Regards,
    Santhosh

    Hi ,
    please refer the below link.
    http://docs.oracle.com/cd/E10530_01/doc/epm.931/hfm_user.pdf
    also look into this as well and search for your particular topics.
    http://docs.oracle.com/cd/E12825_01/nav/portal_1.htm
    Thanks,
    KKT
    Please mark answers as helpful or correct for others to find easily

  • MOVED: need help overclocking on MSI X48C Platinum please

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=120153.0

    Quote from: Frankenputer on 24-September-08, 04:47:11
    PC Power & Cooling have a long reputation as being a high-end PSU manufacturer(also been doing it much longer).  If paying the extra £15.00 doesn't mean much, then go for the PC P&C. If the funds are tighter, get the Corsair.  I have the PC P&C Silencer 750.
    My guess Henry, is that kmufc77 was linking to either of these Silencer 750 PC P&C PSUs
    http://www.overclockers.co.uk/showproduct.php?prodid=CA-004-PP&groupid=701&catid=123&subcat=&name=PC%20Power%20&%20Cooling%20Silencer%20750%20Quad-Crossfire%20PCI-E%20750W%20Power%20Supply
    or
    http://www.overclockers.co.uk/showproduct.php?prodid=CA-001-PP&groupid=701&catid=123&subcat=&name=PC%20Power%20&%20Cooling%20Silencer%20750%20Quad-SLi%20PCI-E%20750W%20Power%20Supply
    The Silencer 610 would be more than enough for the 4870, but the 750 will give greater overhead and room for upgrades to more power hungry components or Crossfire.
    http://www.overclockers.co.uk/showproduct.php?prodid=CA-001-PP&groupid=701&catid=123&subcat=&name=PC%20Power%20&%20Cooling%20Silencer%20750%20Quad-SLi%20PCI-E%20750W%20Power%20Supply
    yes you are right i have ordered the Silencer 750 PC P&C PSUs but a black colour not red i payed the extra over the corsair 750W purely on the repitation of PC P&C PSUs. i hope i have made the right choice as i considering crossfire in the very near future

  • Need help setting up my d-link wireless router to my imac

    I need some help trying to set up my D-Link WBR 2310 wireless router to my iMac. I currently have Bell Sympatico high speed.
    The reason I want to set up the wireless router is because my girlfriend works from home sometimes with her office computer downstairs and needs a wireless connection (she has a PC). I tried to call D-Link, but they're useless.
    Anyways, any help would be greatly appreciated. It would be great to know what settings to change and as much step by step info as possible. I realize it's probably pretty simple to set up, but I'm fairly new to Macs and also to wireless.
    Thanks again

    Hello, 
    Connect the D-Link to the iMac by Ethernet.
    Open Safari (or Firefox)
    Navigate to http://192.168.1.1
    Enter your password (default user is Admin and password "admin" - change it!)
    Find the Wireless Security section and change the SSID to your own name i.e. "home network" .
    Set the Encryption setting to "WPA" and enter a password of your choice. This is the encryption key and is different to the router's admin password.
    Configure the WAN part of the router (which will vary depending on your ISP).
    Configure the DHCP to serve clients (should be a simple on/off).
    Disconnect the iMac
    Go to the iMac and turn on Airport on (on the menu bar).
    When the iMac finds your SSID select it and enter the encryption password.
    Check to allow Keychain to store that detail.
    Hope that helps
    mrtotes

  • I need help with ipod video...please and thank you

    Hi
    My Ipod is down! I've tried to go on the apple website to help me fix the problem but I think im not getting any progress.
    when i open my ipod, all i see is the little ipod with x's in its eyes ..."sad ipod" and..
    Whenever i connect the ipod to compt with the USB all i see is the battery sign with the thunder...ive tried waiting but no luck...
    I tried to reset it but its not working.
    I cant restore or update bc the updater wouldnt work
    When i go to itunes it would say no ipod connected but yet the ipod is on with the batery and thunder.. I know it has battery but why is it not working
    I tried it on another compt and still not working
    do u think its the usb?
    Please help
    thanks
    much love !!
    edit....
    whoops i realized its in the wrong topic
    SORRY and i dont know how to move it SORRY
      Windows XP  

    So wouldyou recommend that I update? It was made for use with an att sim but was unlocked for use with a tmobile sim... I just so happen to have att. So the phone being locked for att wouldn't be a bother for me. I've just heard of people getting sim card read errors after updating, so I was wondering if I should even bother.

Maybe you are looking for

  • PPTP Not Working on Brand New WRT54G2 w/Newest Firmware

    Subject of post says it all.  Have a VPN connection that works perfectly through an old Linksys router.  When I replaced it this weekend with the WRT54G2, all of a sudden the authentication portion of the VPN connection fails.  Yes, I can telnet to t

  • Showing universal work list when user clicks a button in webdynpro java

    Hi, I am developing webdynpro java application, when user clicks a button i want to display Universal worklist in the portal, if user is logged in then it directly shows in portal otherwise it should asks for username and password. Thanks, Madhu

  • Captures but won't export Anamorphic

    Hi.. I'm using FCP 4.5 in conjunction with a Sony Handycam. I'm shooting in the Cam's 16:9 aspect, and can successfully capture such clips, and edit them in FCP4.5, often in real time, even on a 1.42Ghz Mini! However, when I export the edited clip us

  • Jolt 1.2/Tuxedo 6.5

    I'm working on Tuxedo 6.5/Jolt 1.2 in a Websphere 3.02 environment. 1. Problem with Transaction and Session pools Our application retreives information from an Informix database through servlets. We've built a SessionPool in order to access our Tuxed

  • Need to call transaction from report

    Hi, I have to create BAPIs to call from webDynpro to realize the functionality of the transactions MI01/MI04 and MI07. I´m working in the SAP cable Solution environment. Do You know any BAPIs to use instead of calling the transactions? Maybe there ar