Stuts doubt urgent

am using <html:options> for populating the drop down but am getting the following error
__root cause__
javax.servlet.ServletException: javax.servlet.jsp.JspException: Cannot find bean under name collect
     org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
     org.apache.jsp.Solution_jsp._jspService(Solution_jsp.java:90)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
My code is
JSP
          <html:select property="issue">
          <html:options collection="collect" property="id" labelProperty="description"/>
          </html:select>
Form:
package base.src;
import java.util.ArrayList;
import org.apache.struts.action.ActionForm;
public class SolutionForm extends ActionForm
     private static final long serialVersionUID = 1L;
     private String issue;
     private ArrayList collect=null;
     public final String getIssue() {
          return issue;
     public final void setIssue(String typ) {
          this.issue = typ;
     public final ArrayList getCollect() {
          return collect;
     public final void setCollect(ArrayList coll) {
          this.collect =coll;
Action class:
package base.src;
import javax.servlet.http.HttpServletRequest;
//import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
//import java.sql.*;
import java.util.Collection;
//import java.util.ArrayList;
public class SolutionAction extends Action
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception
     SolutionServ obj=new SolutionServ();
     Collection collect=obj.getIssue();
request.setAttribute("collect",collect);
     SolutionForm form1=(SolutionForm)form;
     form1.setIssue("2");
     return(mapping.findForward("continue"));
}

deepa@22 wrote:
am using <html:options> for populating the drop down but am getting the following error
__root cause__
javax.servlet.ServletException: javax.servlet.jsp.JspException: Cannot find bean under name collect
     org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
     org.apache.jsp.Solution_jsp._jspService(Solution_jsp.java:90)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
My code is
JSP
          <html:select property="issue">
          <html:options collection="collect" property="id" labelProperty="description"/>
          </html:select>
Form:
package base.src;
import java.util.ArrayList;
import org.apache.struts.action.ActionForm;
public class SolutionForm extends ActionForm
     private static final long serialVersionUID = 1L;
     private String issue;
     private ArrayList collect=null;
     public final String getIssue() {
          return issue;
     public final void setIssue(String typ) {
          this.issue = typ;
     public final ArrayList getCollect() {
          return collect;
     public final void setCollect(ArrayList coll) {
          this.collect =coll;
Action class:
package base.src;
import javax.servlet.http.HttpServletRequest;
//import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
//import java.sql.*;
import java.util.Collection;
//import java.util.ArrayList;
public class SolutionAction extends Action
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception
     SolutionServ obj=new SolutionServ();
     Collection collect=obj.getIssue();
request.setAttribute("collect",collect);
     SolutionForm form1=(SolutionForm)form;
     form1.setIssue("2");
     return(mapping.findForward("continue"));
}What happens when you try with something like the one below
<html:select property="issue">
      <html:options name="formBeanName"  collection="collect"  property="id"  labelProperty="description"/>
</html:select> and please restructure your form bean something like the one below
package base.src;
import java.util.ArrayList;
import org.apache.struts.action.ActionForm;
public class SolutionForm extends ActionForm  {
      private static final long serialVersionUID = 1L;      
      private String issue = new String();
      private List collect = new ArrayList();
     public String getIssue() {
          return this.issue;
     public  void setIssue(String issue) {
          this.issue = issue;
     public List getCollect() {
          return collect;
     public  void setCollect(List collect) {
          this.collect = collect;
       /** make sure you overide respective Abstract Method like the validate method as we are extending ActionForm*/
}Hope that might help :)
REGARDS,
RaHuL

Similar Messages

  • Callable statement doubt-urgent

    hi all,i got a problem in callable statements.i know how to pass parameters to a procedure using a callable statement.but this time i need to pass a table name as a parameter.the problem is if i get that variable as a IN parameter in the procedure then how do you put that parameter in place of table name inside the procedure.heres a example,the pocedure is in oracle
    i am passing variable a from java
    create or replace procedure (a in varchar2)
    begin
    select * from <the parameter passed through a> where <condition>
    end;
    how can this be done.the select statement is given only as a example.the errors in the select are not emphasized here.the focus is on the table name.if there is any other way to do this do let me know.please reply fast.this is urgent.any kind of help is welcome.bye thiyagu.

    In some databases the SQL used in your stored procedure can reference 'variables' that contain the values to be used at statement execution time. This will be covered in your database's SQL reference. If this is not supported by your database you will have to perform a 'switch' based on the table name passed and select the SQL statement to be executed.

  • CS Doubts urgent

    Hello all,
    I have a problem in running a scenario of CS. My scenario the is a machinery which consists of components and warranty was for only some few sub components.
    Ex:
    Taking consideration into a Mobile phone, the company is giving warranty for only battery. I do i classify it?
    Is this the order to create and please suggest me the way to create. That will be very much helpful to me.
    1)Material creation
    2)characteristics and class assignment to material
    3)Creating contract and (assigning serial no to the line item in sales order at technical objects in extras tab)
    4)Taking reference of contract i will create sale order and deliver the material and billing it.
    5)After some period if the machine had got a problem we will create a service notification based upon the customer explanation.
    6) Technician will go to customer site and analyze the problem and prepare the quotation of the repaired part.
    7) After the confirmation from customer about quotation we will generate work order.
    8) Receipt of return material and raise of work completion order.
    9)Billing wrt order.
    While delivering how can we say that the warranty will starts on that day and warranty finishes on the particular day.
    Similarly, while taking the mobile phone example into consideration how can i get an msg that there is a "warranty for battery".
    Is there any functionality for creating BOM and assigning equipment for that.
    Please send the contact no so that i can contact you immediately.
    Kindly help me in solving the issue in a greater time.
    With Regards,
    C Chaitanya

    One of the definitions of insanity is repeatedly performing the same action expecting a different outcome. You've posted this question twice before, and it's been locked. You've been told:
    Please don't use -urgent- in you query.
    Use a proper subject.
    Don't ask for contact numbers.
    Read the rules before posting again.
    Thread locked. Again.

  • Doubt - urgent

    hi
    i have a doubt in java. do java have any classed to list the drives, files and folder in a GUI format.. as windows does. i know there are controls in VB for listing the drives, folders and file. is there any class in java of this sort
    charles

    Both Aldaris and Yogee have the correct answer but in different ways. Aldaris' answer will give you the listing although it ideally, should recurse through sub-directories. Yogee gives you a GUI component to choose or save files. A third alternative would be to use a JTree. There are numerous examples of trees containing a directory structure, on the web.
    Good luck.

  • GLT0 FIELD DOUBT - URGENT

    hi exports
    i want to take gl account balance GLT0 table?
    but i've some field month wise like HSL01 (apr), HSL02(may), HSL03(jun) like wise? i want to take credit, debit and balance how can i take wht is the prog. i want to take month wise ? how? my parameter company code, year and gl account no?
    pls help me urgent

    HI PRABHU
    IN THAT T.CODE FOLLOWING ERROR OCCURED NO LINE ITEM DISPLAY POSSIBLE FOR ACCOUNT 201207 COMPANY CODE?
    HOW CAN I TAKE

  • GLT0 TABLE DOUBT - URGENT

    hi exports
    i want to take gl account balance GLT0 table?
    but i've some field month wise like HSL01 (apr), HSL02(may), HSL03(jun) like wise? i want to take credit, debit and balance how can i take wht is the prog. i want to take month wise ? how? my parameter company code, year and gl account no?
    pls help me urgent

    Hi,
    use fm 'READ_SKC1A':
    select-options monat for bkpf-monat.
      CALL FUNCTION 'READ_SKC1A'
           EXPORTING
                XBUKRS         = KONTO-BUKRS
                XGJAHR         = JAHR
                XGSBER         = KONTO-GSBER
                XSAKNR         = KONTO-KSTAR
           IMPORTING
                XSKC1A         = SKC1A
           EXCEPTIONS
                KEY_INCOMPLETE = 1
                NOT_AUTHORIZED = 2
                NOT_FOUND      = 3
                OTHERS         = 4.
      IF SY-SUBRC = 0.
    *------ Umsatz    der Berichtsperiode in HW ermitteln -----------------
        ADD   SKC1A-UM01O THEN SKC1A-UM02O UNTIL SKC1A-UM16O
              GIVING WERTE-UMSATZ ACCORDING TO MONAT.
    endif.
    A.
    pls reward useful answers
    thank you!

  • BSVZ doubt (Urgent)

    Hi all
    I have created one workflow for solution manager. In that WF i created CHANGED event in SWEC For BUS2000116.
    My. Problem.
        I created a support message, after i want to change the status like (assigned or inprocess) in crmd_order T.code. But Whenever i change the status changed event can't triggured. I also configured in BSVZ for user events.
    anybody help me

    Hi karan
    I checked in SWEL t.code but not triggured. I changed only in status but event not triggered. But if i change any other like message processor or description, WF triggured. But if i change status only WF not started. i check in SWEL.
    I checked in SWETYPV.
    in that,
    Object  type - BUS2000116
    Event - Changed
    Receiver type - WS90000004
    Type linnkage - tick
    status - 0 error
    Why?

  • Doubts(urgent reply

    hi friends,
    ReportCaster
    Structured Adhoc reporting
    Dashboards
    Visual Discoverer
    please explain above things.
    Thanking u
    suneel.

    hi Suneel,
    Where did you come across these? We have the Report Designer (http://help.sap.com/saphelp_nw04s/helpdata/en/dd/cea14119eb9f09e10000000a155106/content.htm) and Visual Composer (http://help.sap.com/saphelp_nw70/helpdata/en/42/c2ba7f545e3116e10000000a1553f7/frameset.htm).
    Also go through this for Dashboards:
    Web Cockpit
    Hope this helps...

  • Garbagecollection doubts(urgent)

    I want the answer for this question ?
    question no : 1
    1.public class X (
    2. public object m () {
    3. object o = new float (3.14F);
    4. object [] oa = new object [1];
    5. oa[0]= o;
    6. o = null;
    7. return oa[0];
    8. }
    9. }
    When is the float object created in line 3, eligible for garbage collection?
    A. Just after line 5
    B. Just after line 6
    C. Just after line 7 (that is, as the method returns)
    D. Never in this method.
    please send the answers to the above question to my mail id [email protected]
    question no : 2
    Given:
    10. public Object m() {
    11. Object o = new Float(3.14F);
    12. Object [] oa = new Object[1];
    13. oa[0] = o;
    14. o = null;
    15. return oa[0];
    16. }
    When is the Float object, created in line 11, eligible for garbage collection?
    A. Just after line 13.
    B. Just after line 14.
    C. Never in this method.
    D. Just after line 15 (that is, as the method returns).
    please send the answers to the above question to my mail id [email protected]
    question no : 3
    1. class Bar { }
    1. class Test {
    2. Bar doBar() {
    3. Bar b = new Bar();
    4. return b;
    5. }
    6. public static void main (String args[]) {
    7. Test t = new Test();
    8. Bar newBar = t.doBar();
    9. System.out.println(�newBar�);
    10. newBar = new Bar();
    11. System.out.println(�finishing�);
    12. }
    13. }
    At what point is the Bar object, created on line 3, eligible for garbage collection?
    A. After line 8.
    B. After line 10.
    C. After line 4, when doBar() completes.
    D. After line 11, when main() completes.
    please send the answers to the above question to my mail id [email protected]
    question no : 4
    12. void start() {
    13. A a = new A();
    14. B b = new B();
    15. a.s(b);
    16. b = null;
    17. a = null;
    18. System.out.println(�start completed�);
    19. }
    When is the B object, created in line 14, eligible for garbage collection?
    A. After line 16.
    B. After line 17.
    C. After line 18 (when the methods ends).
    D. There is no way to be absolutely certain.
    E. The object is NOT eligible for garbage collection.
    please send the answers to the above question to my mail id [email protected]
    question no : 5
    1. class TestA {
    2. TestB b;
    3. TestA() {
    4. b = new TestB(this);
    5. }
    6. }
    7. class TestB {
    8. TestA a;
    9. TestB(TestA a) {
    10. this.a = a;
    11. }
    12. }
    13. class TestAll {
    14. public static void main (String args[]) {
    15. new TestAll().makeThings();
    16. // ...code continues on
    17. }
    18. void makeThings() {
    19. TestA test = new TestA();
    20. }
    21. }
    Which two statements are true after line 15, before main completes? (Choose two)
    A. Line 15 causes a stack overflow.
    B. An exception is thrown at runtime.
    C. The object referenced by a is eligible for garbage collection.
    D. The object referenced by b is eligible for garbage collection.
    E. The object referenced by a is not eligible for garbage collection.
    F. The object referenced by b is not eligible for garbage collection.
    please send the answers to the above question to my mail id [email protected]

    Hi All,
    All are not related to one single load.
    NO ODS concept here. Direct datatarget only.
    If I select <b>PSA then Data target :</b>
    It shows message :
    (0 records from 152)
          Data not received in PSA Table
          Diagnosis
          Data has not been updated in PSA Table
    Please anyone resolve my problem.
    Thanks,
    Sri.

  • Exception doubts (urgent)

    Question no 1 :
    Given:
    boolean bool = true;
    if(bool = false) {
    System.out.println("a");
    } else if (bool) {
    System.out.println("c");
    } else if (!bool) {
    System.out.println("c");
    } else {
    System.out.println("d");
    What is the result?
    A. a
    B. b
    C. c
    D. d
    E. Compilation fails.
    Question no 2:
    class Super {
    public int i = 0;
    public Super(String text) {
    i = 1;
    public class Sub extends Super {
    public Sub(String text) {
    i = 2;
    public static void main(String args[]) {
    Sub sub = new Sub("Hello");
    System.out.println(sub.i);
    What is the result?
    A. 0
    B. 1
    C. 2
    D. Compilation fails.
    Question no 3 :
    Given:
    try {
    int x = 0;
    int y = 5 / x;
    } catch (Exception e) {
    System.out.println("Exception");
    } catch (ArithmeticException ae) {
    System.out.println("Arithmetic Exception");
    System.out.println("finished");
    What is the result?
    A. finished
    B. Exception
    C. Compilation fails.
    D. Arithmetic Exception
    Question no 4 :
    public class SyncTest{
    public static void main(String[] args) {
    final StringBuffer s1= new StringBuffer();
    final StringBuffer s2= new StringBuffer();
    new Thread () {
    public void run() {
    synchronized(s1) {
    s2.append("A");
    synchronized(s2) {
    s2.append("B");
    System.out.print(s1);
    System.out.print(s2);
    }.start();
    new Thread() {
    public void run() {
    synchronized(s2) {
    s2.append("C");
    synchronized(s1) {
    s1.append("D");
    System.out.print(s2);
    System.out.print(s1);
    }.start();
    Which two statements are true? (Choose Two)
    A. The program prints "ABBCAD"
    B. The program prints "CDDACB"
    C. The program prints "ADCBADBC"
    D. The output is a non-deterministic point because of a possible deadlock condition.
    E. The output is dependent on the threading model of the system the program is
    running on.

    Bloody cross-poster
    http://forum.java.sun.com/thread.jspa?threadID=639843
    Do your homework yourself.

  • URGENT :::how to open the uploaded OpenOffice SpreadSheet in Windows

    Hi frnds,
    i have a doubt regarding opening a uploaded spreadsheet in windows and it is uploaded thro windows platform only .
    i uploaded a OpenOffice SpreadSheet (.sxc)in windows platform .now i want to download that file. But when I click that download link of that file .it is not opening ,in the particular correct xls(Spreadsheet) format.
    its opening that file with some mixing of junk values. i saved that file as .sxc format before uploading .
    But if i renamed that file as .xls extension means then i can easilly Upload and downloding also done properly.
    Its opening the file in Correct format .any one can you clarify this doubt Urgently and send me the code (java Script code)
    My Scritp code is:
    <SCRIPT type="text/javascript">
    var tempstr;
    function call_XLfun(S){
    tempstr=S;
    var theSpreadsheet = new ActiveXObject(\"Excel.Application\")
    var theBook = theSpreadsheet.Workbooks.Open(tempstr)
    theSpreadsheet.visible=true;
    </script>
    with thanx and especting quick reply,
    Ramesh P
    [email protected],bangalore
    98459 35822

    Java isn't javascript and javascipt isn't java.
    These two are different.
    You chose wrong forum to post.
    with thanx and especting quick replyI gave you a quick reply ....

  • Urgent: Doubt in coding a logic

    Hi Experts,
    I have a doubt in coding a logic . The bussiness requirement is that i have to capture a string of alphabets and check for particular alphabet in particular position and then process the rest of the logic.
    the logic is given below , can anyone suggest me coding for this logic .Its very urgent . points will be rewarded.
    Logic:
    If 1st letter is D then
        If 3rd letter of DPVERSION is:
            A --> Asia (like DPA0202)
            C --> EMEA (like DPC0111)
            L --> Latin America LA (like DPL0502)
            N --> North America NA (like DPN0408)
            W --> EMEA (like DPW0207)
            D then
                if 4th letter is:
                    A --> Asia (no example yet)
                    C --> EMEA (no example yet)
                    L --> Latin America LA (no example yet)
                    N --> North America NA (like DPDN01TH)
                    W --> EMEA (like DPDW09TH)
                End If
          End If
    Else if 1st letter is X then:
         If 2nd letter of DPVERSION is:
            A --> Asia (no example yet)
            C --> EMEA (XEHC_RTF)
            L --> Latin America LA (no example yet)
            N --> North America NA (XNFAB_RTF)
            W --> EMEA (no example yet)
        End If
    End If
    Thanks in advance
    Kumaran

    Hi, I think you can adopt offset logic.
    assign character value to a variable  like string+2(3) = char
    then use case statement
    case char
    when 'A'
    write ASIA
    when--
    End case.
    Like this u can approach . 
    Hope this helps
    Regards
    Pavan

  • Doubt in ORA_FFI(Its urgent)

    Hi,
    I've created a test.dll which contains caps func as follows:
    int caps()
         int * ptr=0x417;
         if (*ptr==64)
              return 1;
    else
    return 0;
    Then I called this func through ORA_FFI package..
    DECLARE
    dll_handle ORA_FFI.LIBHANDLETYPE;
    winexec_handle ORA_FFI.FUNCHANDLETYPE;
    vn_ret PLS_INTEGER;
    FUNCTION Runp( handle IN ORA_FFI.FUNCHANDLETYPE)
    RETURN PLS_INTEGER;
    PRAGMA INTERFACE(C, Runp, 11265);
    BEGIN
    break;
    dll_handle := ORA_FFI.REGISTER_LIBRARY(NULL,'test.dll');
    winexec_handle := ORA_FFI.REGISTER_FUNCTION(dll_handle,'caps');
    ORA_FFI.REGISTER_RETURN(winexec_handle,ORA_FFI.C_INT);
    vn_ret := Runp(winexec_handle);
    IF vn_ret = 2 THEN
    MESSAGE('Cannot find file ' );
    END IF;
    EXCEPTION WHEN OTHERS THEN
    FOR i IN 1..Tool_Err.NErrors LOOP
    message(Tool_Err.Message);
    Tool_Err.Pop;
    END LOOP;
    END;
    When I debug this code,It gives error as caps func not found in test.dll.
    But the only func in test.dll is caps..
    I'm using forms 6i in client server mode.
    I created test.dll using Microsoft visual c++ by creating new win32 Dynamic link library.
    One more doubt:
    How can I find functions in a already compiled DLL?
    Pls reply me..Its urgent..
    Adios..
    Prashanth Deshmukh

    Hi,
    refer these ,u will get some help
    Standard Buttons:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/webDynproABAP-ALVControllingStandard+Buttons&
    alv-pfstatus:
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_pfstatus.htm
    then how to capture that button click.
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_ucomm.htm
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_rowsel.htm

  • Big Doubt.. Help pls.. Urgent.. File to IDoc (Bypass)

    File to IDoc scenario( Bypass)-- Error ( Segment is missing) -- urgent pls.
    Hi Bhavesh and all,
    I done file to idoc scenario (Bypass)
    From the above thread i have hardcoded my XML file  by inserting BEGIN 
    and Segment = "1" in each of the new segment.
    Since it is a bypass scenario.. when it reach to production , the idoc -xml will come from one of the tool without having these BEGIN and SEGMENT = "1".
    Still XI will receive it??
    Because my doubt is i harcoded the XML file and finished my developement.
    Now iam getting the doubt that once they do testing in QA server..the XI will process it and not ?
    Can we able to achieve this even without BEGIN and SEGMENT = "1" ?
    or
    those fileds are mandatory?
    Pls suggest me .. its urgent.
    Regards
    Seema..

    Hi Seema,
    >> <i>Can we able to achieve this even without BEGIN and SEGMENT = "1" ?
    or
    those fileds are mandatory?</i>
       To post an idoc to R/3 system this fields are mandatory.
    >><i>From the above thread i have hardcoded my XML file by inserting BEGIN
    and Segment = "1" in each of the new segment.
    Since it is a bypass scenario.. when it reach to production , the idoc -xml will come from one of the tool without having these BEGIN and SEGMENT = "1".
    Still XI will receive it??</i>
       As you are just routing it...just XI will poll the file and sends data to the idoc ( as the source and target structure are same).
    Regards,
    Prasanthi.

  • Doubt using CastorMapping...Urgent.......

    hi guys....
    i'm new to castor. i have to generate the xml using namespace uri with attribute like..
    <pre:MyRequest xmlns:pre="http://...." type="MyList">
    <message>
    <mymessage/>
    </message>
    </pre:MyRequest>
    code of my castor xml
    <class name="ListRequest">
    <map-to xml="MyRequest" ns-uri="http:.." ns-prefix="pre" />
    <field name="type" type="java.lang.String">
    <bind-xml name="type" node="attribute"/>
    </field>
    <field name="message" type="Wrapper">
    <bind-xml name="message" node="element"/>
    </field>
    </class>
    when i run my java coding the xml has generated like as follows..
    <pre:MyRequest type="MyList" xmlns:pre="http://...." >
    <message>
    <mymessage/>
    </message>
    </pre:MyRequest>
    what my doubt is i the attribute of type should be come after the namespace.. how to do this.. plz give me ur valuable suggestion. its need very urgent.
    thanx in adv with reg
    DJ

    hi guys....
    i'm new to castor. i have to generate the xml using namespace uri with attribute like..
    <pre:MyRequest xmlns:pre="http://...." type="MyList">
    <message>
    <mymessage/>
    </message>
    </pre:MyRequest>
    code of my castor xml
    <class name="ListRequest">
    <map-to xml="MyRequest" ns-uri="http:.." ns-prefix="pre" />
    <field name="type" type="java.lang.String">
    <bind-xml name="type" node="attribute"/>
    </field>
    <field name="message" type="Wrapper">
    <bind-xml name="message" node="element"/>
    </field>
    </class>
    when i run my java coding the xml has generated like as follows..
    <pre:MyRequest type="MyList" xmlns:pre="http://...." >
    <message>
    <mymessage/>
    </message>
    </pre:MyRequest>
    what my doubt is i the attribute of type should be come after the namespace.. how to do this.. plz give me ur valuable suggestion. its need very urgent.
    thanx in adv with reg
    DJ

Maybe you are looking for

  • Slow transfer rate to time capsule - 2nd generation - mb pro 5ghz

    alright have time capsule with dual networks, macbook pro with n enabled connected to 5ghz network with full bars, yet while copying files to the time capsule, it seems slow 500kbs per second about 7 min to copy a 744mb file to time capsule (accordin

  • ITunes Re-Install on new hard drive

    I recently had to replace my hard drive and reinstall windows 7.  My itunes library and several playlists are still on my old hard drive which is now my "D" drive.  I reinstalled iTunes 10 and when I started iTunes I held down the ALT key and tried t

  • Idoc structure not displying in XPATH at Receiver Determination..!!! Urgent

    Hi All, Doing Idoc to File Scenerio, In the receiver determination, I need to select the XPATH from the Idoc structure and by based on the GLN number which is coming in one of the segment, I need to pass to different receivers. Problem here is Iam no

  • Can I store RTF file with image into CLOB?

    I have created a WORD template document with company logo heading and format. I have to replace the 'user name', 'date' etc. data every time before I insert into my database. Therefore I store the template doc as RTF format. 1. Can I insert this doc

  • FileVault 2 not starting

    I have a 4 year old MacPro with a 2TB Hard drive.  I did a clean install of OS 10.7 and then immediately attempted to encrypt the boot drive with FileVault 2.  A Key is generated and then the computer performs a restart like all my other Lion compute