Htmlb:fileupload

Hi Gurus,
In my custom BSP I'm using Htmlb element fileupload in the following way..
<htmlb:fileUpload id          = "myFile"
                          accept      = "true"
                          size        = "50" />
I'm able to select only a single file when I browse for files. How should I acheive seleting multiple files ?
Thank you
Sreesanth

Hello Sreesanth,
If you want ot upload more than one file, use <htmlb:fileUpload> that many times.
Rgds,
Jothi.P
**reward and close the thread if useful.

Similar Messages

  • Com.sapportals.htmlb.FileUpload;

    Hi Experts,
    I am building this file upload utility.
    Following is my code"
    package com.xyz.ws.di;
    import java.io.Serializable;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import com.sapportals.htmlb.event.Event;
    import com.sapportals.htmlb.rendering.IPageContext;
    import com.sapportals.htmlb.rendering.PageContextFactory;
    import com.sapportals.htmlb.FileUpload;
    import com.sapportals.portal.prt.component.*;
    import com.sapportals.wcm.repository.AccessDeniedException;
    import com.sapportals.wcm.repository.Content;
    import com.sapportals.wcm.repository.ICollection;
    import com.sapportals.wcm.repository.IResource;
    import com.sapportals.wcm.repository.NotSupportedException;
    import com.sapportals.wcm.repository.ResourceContext;
    import com.sapportals.wcm.repository.ResourceException;
    import com.sapportals.wcm.repository.ResourceFactory;
    import com.sapportals.wcm.util.uri.RID;
    import com.sapportals.portal.security.usermanagement.IUser;
    public class FileUpload implements Serializable{
             protected IPortalComponentRequest request;
              protected IPortalComponentResponse response;
              protected IPortalComponentSession session;
              protected IPortalComponentContext context;
              protected IPortalComponentProfile profile;
              protected String userId;
              protected String fileName;
              private DAO DAO = null;
              private final static int INITIAL_STATE = 0;   
              private final static int ERROR_STATE = 1; 
              private int state = INITIAL_STATE;
              public void uploadUtility(IPortalComponentRequest request, IPortalComponentResponse response)
                   String mimetype;
                   String resourceName;
                   String repository;
                   FileInputStream sourceFileInput = null;
                   session = request.getComponentSession();
                   DAO = new DAO();
                   DAO = (DAO)session.getValue("DAO");
                   IUser epUser=DAO.getEpUser();
                   System.err.println("berry + Getting Iuser from inside UploadUtility SAI  " + epUser);
              /*     IWDClientUser wdUser = WDClientUser.getCurrentUser();
                   IUser user = wdUser.wdUser.getSAPUser(); */
              //     IUser epUser=(IUser)request.getUser().getUser();
                   System.err.println("epUser - " + epUser);
                   ResourceContext ctx = new ResourceContext(epUser);
                   repository = "/Folder1/new";
                   RID rid=RID.getRID(repository);
                   System.err.println("getting RID :- " + rid);
                   IPageContext context = PageContextFactory.createPageContext(request,response);
              //     PageContext context = PageContextFactory.createPageContext(request, response);
                   Event event=context.getCurrentEvent();
                   if(null!=event)
                        String event_name=event.getAction();
                        if(null!=event_name && event_name.trim().equalsIgnoreCase("upload_file"))
                              FileUpload fileUpload = (FileUpload)context.getComponentForId("fileupload");
                                  if(null !=fileUpload && null!=fileUpload.getFile())
                                            mimetype = fileUpload.getFile().getContentType();
                                            resourceName = fileUpload.getFile().getFileName();
                                            System.err.println("resourceName inside fileUploadUtility :- " + resourceName);
                                            //sourceFileInput = new FileInputStream(fileUpload.getFile().getFile().getAbsolutePath());
                                            fileName = resourceName;
                                            System.err.println("filename :- " + fileName);
                                            try {
                                                 sourceFileInput = new FileInputStream(fileUpload.getFile().getFile().getAbsolutePath());
                                            } catch (FileNotFoundException fnf) {
                                                 state = ERROR_STATE;
                                                 System.err.print("FileNotFoundException Occured " + fnf.toString());
                                            Content content = new Content(sourceFileInput, mimetype, -1L);
                                            IResource resource = null;
                                            try {
                                                 resource =(IResource) (ResourceFactory.getInstance().getResource(rid, ctx));
                                            } catch (ResourceException resexp) {
                                                 state = ERROR_STATE;
                                                 System.err.print("Resource Exception Occured for IResource" + resexp.toString());      
                                            ICollection aCollection=(ICollection)resource;
                                            //IResource newResource = aCollection.createResource(resourceName, null, content);
                                            try {
                                                 IResource newResource = (IResource) aCollection.createResource(resourceName, null, content);
                                            } catch (NotSupportedException e2) {
                                                 state = ERROR_STATE;
                                                 System.err.print("Not Supported Exception Occured" + e2.toString());
                                            } catch (AccessDeniedException e2) {
                                                 state = ERROR_STATE;
                                                 System.err.print("Access Denied Exception Occured" + e2.toString());
                                            } catch (ResourceException e2) {
                                                 state = ERROR_STATE;
                                                 System.err.print("Resource Exception Occured for ICollection" + e2.toString());      
                                            }//end of catch
                             }//end of innermost if
                   }//end of 2nd if
              }//end of 1st If
              DAO.setFileName(fileName);
              DAO.setState(state);
              session.putValue("DAO", DAO);
           }// end of uploadUtil
    I am getting a complie error in my NWDS at the following line:
    FileUpload fileUpload = (FileUpload)context.getComponentForId("fileupload");
    The error is : Cannot cast from component to FileUpload.
    Also, I am getting an error on the following Import statement:
    import com.sapportals.htmlb.FileUpload;
    The error is : The import import com.sapportals.htmlb.FileUpload conflicts with a type defined in the same file.
    Any Idea why this would be happening?
    Thanks
    S.B

    import com.sapportals.htmlb.FileUpload;
    is conflicting with the class name. Both are same.
    Change the class name.
    Thread closed.

  • Maximum file size using htmlb:fileUpload

    Hello Gurus,
    in a bsp application we are using htmlb:fileUpload. It was possible to upload a 43 MB file without problem. But our maximum file size is about 220 MB. We made a test with a 190 MB file. After we hit the post button, the browser disconnects immediately (without timedelay) with the message: page cannot be displayed.
    for me it looks like we hit some restriction.
    any idears how to manage the 220 MB file in the browser beside splitting it into smaller files would be greatly appreciated.
    thx a lot in advance and regards from
    Michael

    Hello again,
    could it be this parameter which is for the limitation responsible ?
    icm/HTTP/max_request_size_KB   = 102400
    thx and best regards from Michael

  • htmlb:fileUpload in BSP

    Hi,
    Iam uploading an Excel file from the local PC using the <htmlb:fileUpload>
    I wanted to read this uploaded file and create a document with the data in the cells on the excel. When iam trying to read i get the data in numbers.
    any ideas to read the uploaded file.
    Thanks,
    Shailaja

    Hi Shailaja
    please try CL_HTMLB_MANAGER=>GET_DATA. For BSP related question you should search in the Business Server Pages (BSP).
    Regards
    Gregor

  • Htmlb:fileUpload = page connot be displayed

    I just tried to use a this item:
    <htmlb:fileUpload id="att_upload" size = "50" />
    However, as soon as I instert that item into my BSP page and try to start it (F8), i get an "page connot be displayed" error in the browser. does anybody know how to use that (or another similar) item?
    thx

    Hi Daniel,
    please try the following:
    open your browser, click on Tool -> Internet Options
    and then on the tabstrip 'Advanced'. Uncheck both entries starting with "Show friendly". Try to start your BSP again. You will get a more technical error message. This can be helpful in finding the error.
    Regards,
    Rainer

  • htmlb:fileupload goes into infinite loop

    Hello all,
    We use the tag <htmlb:fileupload> in our bsp page. Now if the user enters a file name directly, ie:without using the browse button the user simply enters a filename, say 'Resume.doc' in the input field and hits the save button on the page, then the system is going into an infinite loop and the system hangs, the users cannot proceed further and they need to restart the browser all over again(it is not necessary that the file must exist in the system, the user just types in a file name and performs the save action). This is a cause of concern for some of our customers, they expect that we should provide a meaningful message to the user and the processing should end. Is this a known issue in BSPs ?? Can anyone suggest me how to get rid of this problem ?
    Thanks and Best Regards,
    Viqar Ali.

    Hello All,
    I use the following code in my bsp:
    <phtmlb:matrix width="100%" >
      <phtmlb:matrixCell row = "1"
                         col = "1" />
        <phtmlb:formLayout design           = "HEADING_ONLY_SOLID"
                           customizationKey = "<%= controller->context %>" >
        <%-- Upload --%>
        <phtmlb:formLayoutItem label    = "<%= controller->file_label %>"
                               idOfItem = "upload" >
          <htmlb:fileUpload id   = "upload"
                            size = "30" />
        </phtmlb:formLayoutItem>
    Everything works fine if the user selects a file using the browse button to select a file. Instead if the user enters a file name directly, then the system runs into an infinite loop. I have put a breakpoint in DO_HANDLE_DATA & DO_REQUEST of the controller class. However the control doesnt come till this point also and i cannot even debug anything. The breakpoints are hit if the user selects the file using the browse button. If anyone has a similar scenario working correctly in their application pls update me with the code.
    Thanks and Best Regards,
    Viqar Ali.

  • Set default file for htmlb:fileUpload ?

    I use htmlb:fileUpload to let the user select a file from the file system.
    Is it possible to write a start value into the textbox??
    For example, I'd like to write "C:\Windows\text.txt" into the inputField when the page is first shown.

    <i>> I'd like to write "C:\Windows\text.txt"</i>
    In short words: this is not allowed because it is not secure.
    Nobody but user itself can changer something in the file upload control.
    Consider the example
    <fileupload default="C:\Windows\passwords.etc">
    and autosubmit

  • How to hide htmlb fileUpload

    Hi all,
    If i have not authorization to upload a file then  i need to hide the element htmlb fileUpload . How can i do it?. Thanks in advance.
    Gab.

    Hi Gab,
    check this link
    upload file via BSP
    cheers,
    Bhavana

  • }HTMLB FileUpload - Javascript

    Hi SDN,
    I am using
    <hbj:fileUpload id="myfileupload"   />
    in my jsp. I wanted to process the file that is to be uploaded in my javascript. There is no 'jsObjectNeeded'  attribute for the fileUpload UI element. How can I achieve this with SAP not supporting JS for this UI...any other round about way???
    Please let me know...
    Thanks & Regards,
    p188071

    Check this might hlep u
    Thread
    http://www.sapdesignguild.org/resources/htmlb_guidance/fileupload_dev.html
    PDF
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8a41cee4-0601-0010-5fb3-d8e704f88817?overridelayout=true
    Thanks

  • Problems with htmlb:fileUpload

    Hi, I am trying to implement a JSPDynPage which uses the
    fileUpload-Tag. In most cases it works fine but sometimes I can select a file but the next button click (onWork) event is not send to the server.
      <hbj:form id="myForm" encodingType="multipart/form-data">
      <hbj:formLayoutCell id="cf_fimport_2" align="center"  valign="TOP" width="175">
         <hbj:fileUpload id="upload" size="30" accept="plain/text"/>
      </hbj:formLayoutCell>
    and the button is defined
    <hbj:formLayoutCell id="cf_fimport_5" align="right" paddingRight="7">
      <hbj:button id="bpreview" text='doWork' design="STANDARD" disabled="false"
    onClick="work"/>
    </hbj:formLayoutCell>
    The page is refreshed but no action is done.
    Any idea?
    Is there a bit more documentation about the fileUpload-Tag ?
    Environment:
    Windows XP
    SAP EP6 SP4 Sneak Preview
    IE 6.0
    Regards
    Edmund

    Dear Edmund.
    I've exactly the same problem.
    In details:
    Prerequisites:
    1) there is <hbj:fileUpload ...> tag on the jsp.
    2) The form is declared as <hbj:form id="....." encodingType="multipart/form-data">
    3) There is defined button with handled event e.g. "onButtonClicked"
    4) The user will insert any file to the tag
    Behavior:
    1) The request does NOT consist ANY components. ( I can see in the log )
    2) The method "onButtonClicked" is NOT called.
    3) Randomly - there is onInitialization() method called.
    As it was mentioned by You, the older versions of portal works with the hbj:fileUpload correctly.
    I will be very pleased with someone explaining the problem.
    Regards Best
    Marek
    P.S.Very interesting fact: when <the hbj:fileUpload> is empty the request is sent properly - with all the components.

  • Htmlb:fileUpload: change "browse" button to another language

    I have a simple fileUpload Tag that shows a inputField and a "Browse" Button. In my Browser-Settings, the language is German, so instead of "Browse", there should be something in German.
    Can I change that word somehow?

    Hi Daniel,
    A very good hack has been found out for the same. Look at this weblog...
    /people/dagfinn.parnas/blog/2004/08/15/inputfile-how-to-hide-the-plain-browse-button
    I am sure you can find a way out from this and please let us know, your approach as well
    Regards,
    Subramanian V.

  • htmlb:fileUpload - Upload any type file to an R/3 Server using BSP?

    Hi All,
    Can anyone help me with the subject mentioned problem? I went through the following thread, but Thomas's reply was not clear enough to me- [File Inputfield - ABAP functions to store files?|File Inputfield - ABAP functions to store files?]
    Thanks in advance.
    Regards
    Gladson

    John,
    You are looking for File -XI-RFC scenario right, please follow the below weblog
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit
    If you need more details, reply!!!!
    Best regards,
    raj.

  • FileUpload problem

    Hello all,
    I'm using the FileUpload component in a JSPDynPage but it does not seem to work for me. The problem is a lot like the one Patrick O'Neill asked about. I used the HTMLB example but for some strange reason variable fu remains NULL. Please have a look at my code and explain to me what the problem is. The JSP contains a file upload component and a button to start the upload event.
    This is the java code I used (testprogram):
    import com.sapportals.htmlb.enum.ButtonDesign;
    import com.sapportals.htmlb.event.Event;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent;
    import com.sapportals.portal.prt.component.IPortalComponentContext;
    import com.sapportals.portal.prt.component.IPortalComponentProfile;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    // for htmlb upload
    import java.io.File;
    import com.sapportals.htmlb.rendering.IFileParam;
    import com.sapportals.htmlb.FileUpload;
    // for debugging
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    import com.sapportals.portal.prt.logger.ILogger;
    import com.sapportals.portal.prt.logger.Level;
    import bean.FileUploadBean;
    public class FileUploadExample extends PageProcessorComponent {
        public DynPage getPage() {
            return new RealJSPDynPage();
        public class RealJSPDynPage extends JSPDynPage {
              FileUploadBean myBean;
              private ILogger defaultLogger = PortalRuntime.getLogger();
            public RealJSPDynPage() {
            public void doInitialization() {
                   // Get the request, context and profile from portal platform
                    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
                    IPortalComponentContext myContext = request.getComponentContext();
                    IPortalComponentProfile myProfile = myContext.getProfile();
                   defaultLogger.setActive(true);
                   defaultLogger.setLevel(Level.ALL);
                    // Initialization of bean
                    FileUploadBean myBean = new FileUploadBean();
                    setBeanFromProfile(myProfile, myBean);
                    // Put the bean into the application context
                    myContext.putValue("myBeanName", myBean);
            public void doProcessAfterInput() throws PageException {
                   // Get the request, context and profile from portal platform
                    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
                    IPortalComponentContext myContext = request.getComponentContext();
                    IPortalComponentProfile myProfile = myContext.getProfile();
                    // Get the bean from application context
                    myBean = (FileUploadBean) myContext.getValue("myBeanName");
                    setBeanFromProfile(myProfile, myBean);
             public void doProcessBeforeOutput() throws PageException {
                        setJspName("fileupload.jsp");
              public void onClick(Event event) throws PageException {
                   myBean.setText("I was clicked");
                 String ivSelectedFileName;
                   FileUpload fu = (FileUpload) this.getComponentByName("myfileupload");
                   // debug info message, other option is: severe
                   defaultLogger.info(this, "Hello this is a test");
                   if (fu == null) {
                        // error
                        defaultLogger.severe(this, "strange error");
    //       this is the temporary file
                   if (fu != null) {
    //       Output to the console to see size and UI.
                      System.out.println(fu.getSize());
                      System.out.println(fu.getUI());
                      defaultLogger.info(this, String.valueOf(fu.getSize()));
                      defaultLogger.info(this, fu.getUI());
    //       Get file parameters and write it to the console
                      IFileParam fileParam = fu.getFile();
                      System.out.println(fileParam);
    //       Get the temporary file name
                      File f = fileParam.getFile();
                      String fileName = fileParam.getFileName();
                      defaultLogger.info(this, fileName);
    //       Get the selected file name and write ti to the console
                      ivSelectedFileName = fu.getFile().getSelectedFileName();
                      System.out.println("selected filename: "+ivSelectedFileName);
                      defaultLogger.info(this, "selected filename: "+ivSelectedFileName);
              private void setBeanFromProfile(IPortalComponentProfile myProfile, FileUploadBean myBean) {
                        // FileUpload properties
                        myBean.setSize(myProfile.getProperty("size"));
                        myBean.setMaxLength(myProfile.getProperty("maxLength"));
                        myBean.setAccept(myProfile.getProperty("accept"));
                        // Button properties
                        myBean.setDisabled(myProfile.getProperty("disabled"));
                         myBean.setDesign(ButtonDesign.getEnumByString(myProfile.getProperty("design")));
                         myBean.setEncode(myProfile.getProperty("encode"));
                         myBean.setText(myProfile.getProperty("text"));
                         myBean.setTooltip(myProfile.getProperty("tooltip"));
                         myBean.setWidth(myProfile.getProperty("width"));
    This is the JSP:
    <%--- FileUpload.jsp --%>
    <%@ taglib uri= "tagLib" prefix="hbj" %>
    <%--- Get the Bean named myBeanName from the application context --%>
    <jsp:useBean id="myBeanName" scope="application" class="bean.FileUploadBean" />
    <hbj:content id="myContext" >
      <hbj:page title="Template for a portal component">
       <hbj:form id="myFormId" encodingType="multipart/form-data">
         <hbj:fileUpload
                      id="myFileUpload"
                      size="<%=myBeanName.getSize() %>"
                      maxLength="<%=myBeanName.getMaxLength() %>"
                      accept="<%=myBeanName.getAccept()%>">
         </hbj:fileUpload>
         <hbj:button
              id="MyButton"
              text="<%=myBeanName.getText() %>"
              width="<%=myBeanName.getWidth() %>"
              tooltip="<%=myBeanName.getTooltip() %>"
              onClick="click"
              design="<%=myBeanName.getDesign().getStringValue() %>"
              disabled="<%=myBeanName.isDisabled() %>"
              encode="<%=myBeanName.isEncode() %>">
         </hbj:button>
       </hbj:form>
      </hbj:page>
    </hbj:content>
    The Bean:
    package bean;
    import com.sapportals.htmlb.enum.ButtonDesign;
    public class FileUploadBean
         // FileUpload
         public String size;
         public String maxLength;
         public String accept;
         public String getSize() {
              return size;
         public void setSize(String size) {
              this.size = size;
         public String getMaxLength() {
              return maxLength;
         public void setMaxLength(String maxLength) {
              this.maxLength = maxLength;
         public String getAccept() {
              return accept;
         public void setAccept(String accept) {
              this.accept = accept;
         // Button
         public String disabled;
         public ButtonDesign design;
         public String encode;
         public String text;
         public String tooltip;
         public String width;
         // constructor
    //     public ButtonBean() {
         public String isDisabled() {
              return disabled;
         public void setDisabled(String disabled) {
              this.disabled = disabled;
         public ButtonDesign getDesign() {
              return design;
         public void setDesign(ButtonDesign design) {
              this.design = design;
         public String isEncode() {
              return encode;
         public void setEncode(String encode) {
              this.encode = encode;
         public String getText() {
              return text;
         public void setText(String text) {
              this.text = text;
         public String getTooltip() {
              return tooltip;
         public void setTooltip(String tooltip) {
              this.tooltip = tooltip;
         public String getWidth() {
              return width;
         public void setWidth(String width) {
              this.width = width;
    and the Portalapp.xml
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="startup" value="true"/>
        <property name="SharingReference" value="htmlb"/>
      </application-config>
      <components>
        <component name="FileUpload">
          <component-config>
            <property name="ClassName" value="FileUploadExample"/>
            <property name="SecurityZone" value="com.sap.portal.pdk/low_safety"/>
          </component-config>
          <component-profile>
            <property name="maxLength" value="125000">
              <property name="personalization" value="dialog"/>
            </property>
            <property name="accept" value="Accept">
              <property name="personalization" value="dialog"/>
            </property>
            <property name="size" value="50">
              <property name="personalization" value="dialog"/>
            </property>
            <property name="width" value="250">
              <property name="personalization" value="dialog"/>
              <property name="type" value="number"/>
            </property>
            <property name="disabled" value="FALSE">
              <property name="personalization" value="dialog"/>
              <property name="type" value="boolean"/>
            </property>
            <property name="encode" value="True">
              <property name="personalization" value="dialog"/>
              <property name="type" value="boolean"/>
            </property>
            <property name="tooltip" value="Initial Tooltip">
              <property name="personalization" value="dialog"/>
            </property>
            <property name="text" value="Initial Button Text">
              <property name="personalization" value="dialog"/>
            </property>
            <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
            <property name="design" value="STANDARD">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[STANDARD,SMALL,EMPHASIZED]"/>
            </property>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>

    Hi Raymond,
    within your JSP, you have given the ID "myFileUpload" whereas within your coding you try to retrieve a component with ID "myfileupload". That's all so far.
    Some additinal hints:
    When referring to another thread, please give the link; in this case, you talked about Problem with FileUpload component
    If you give (non) working examples, please reduce them to an absolute minimum, so that they show what they should show, but nothing more. This does not only hold on SDN but for all bug tracking systems. People get ill from reading 1000 lines of code where 10 would do
    And for formatting on SDN, you can use [ code ] and [/ code ] (without spaces), makes life easier too.
    And don't forget to press the yellow star button on helping answers...
    So far for today
    Hope it helps
    Detlev

  • Size in InputField size in FileUpload

    Does anybody know why a htmlb:InputField with size="20" is much smaller that a htmlb:fileupload with size="20"?
    <htmlb:inputField id = "att" size = "20"/>    
    <htmlb:fileUpload id = "upl" size = "20" onUpload = "HdlUp"/>

    Yes I know you can just put an integer value.
    What I mean is the the CSS style and the HTML elements that lay behind the BSP Elements most likely have a difference in length due to the differences I mentioned.
    The attribute just applies to the output that is created and that is just HTML with CSS and different HTML elements take by defeault px or pt <--- which we don't see - it's interpreted by the browser or modified by the CSS styles applied to the HTML element.

  • Htmlb:file_upload

    Hi all,
    I am using htmlb:fileUpload for uploading file in my BSP application.
    But this is allowing me to enter any filename (just that it has to be a fully qualified name) even if that file doesnot exist in the presentation server.
    e.g I am entering C:\abc.txt.This file is not existent in my server. Still uploading is done.How can I keep a check on whether this file actually exists ,before uploading ?Please suggest.
    Regards,
    Ananya

    Hi Ananya,
    I hope you understand that this is not OSS, people here take their time and effort to help each other.
    A minimum courtesy of a reply to the posts you created saying that the suggestions given by others were helpful / useless, etc is expected. (leave alone the points)
    check these threads of yours
    separating file name and path
    regarding BDS
    Regards
    Raja

Maybe you are looking for

  • Intel iMac randomly relaunching Finder. RAM problem?

    Several months ago I bought a new 3.06 GHz Intel iMac with 2GB of RAM. I also bought CS4 so I maxed out my RAM at 4GB with a 2x2GB RAM kit from Other World Computing. I've noticed in the lately that everything will suddenly hang, the Dock won't appea

  • Using Delete in Merge Statement

    As merge statement inserts and updates the target data related to the source data but what if the target table contains some additional rows. I mean now both the target table and source tables are not the same. How to do it ?

  • Alignment problem in sending an attachment file as a mail

    Hi,   My requirement is to send a mail where i have the data in an internal table. the .txt attachment file is sent properly no problem in that. But the text inside the file is not alligned properly. For eg if i have 5 records in the internal table w

  • Help what does this  mean ERROR ITMS-9000: "OEBPS/package.opf(23)

      Hi All - I am getting this error message - ERROR ITMS-9000: "OEBPS/package.opf(23): element "guide" not allowed here; expected the element end-tag or element "item"" at Book (MZItmspBookPackage) - when I try to upload my epub to the Apple bookstore

  • Lock box autocash -write offs

    We are using Lockbox autocash process. The process is for autocash to write off discounts less than $25. This is working fine if the amount is a debit, however if the amount is a credit autocash is setting the amount back on the customer account. ple