How to save attachment with 'Automatic Save' set to False

Hi,
Can someone please clarify for me how I should code for making sure that the attachment is saved (when 'Automatic Save' set to False) . The Developer's guide states that
"...in the processformRequest method of the controller object, you need to capture the event of this submit button and call commit() explicitly."
I assume that by "this submit button" the button located on the product page is meant (the page from which attachments page is invoked). In this case my question is - which event to I need to capture for this button? If I am already commiting changes when the user clicks the Apply button on the product page (not on the attachments page) then I thought no additional commit is required anywhere? Is this correct? My problem is that with 'Automatic Save' set to False the attachment is not being saved.
Thank you.
Anatoliy

Rumkumar,
Thank you for the clarification. Let me ask you please - by calling commit you mean issuing 'transaction().commit()"? The thing is that I AM doing that - I issue commit once I click submitButton on the product page, all changes are saved except the attachements - but the attachment is not saved. Do you have an idea what the problem might be? Of course if I set 'Automatic Save' property on the Attachment item to 'True' then I am fine. I appreciate your feedback.
Thanks,
Anatoliy

Similar Messages

  • How does one ensure an automatic save function every 5 mins for any document you are working on. Yesterday I erased a doc I was on and had to rework from the start.

    How does one ensure an automatic save function every 5 mins for any document you are working on. Yesterday I erased a doc I was on and had to rework from the start.

    Well I understand that auto save is already present and saving your doc every 5 mins. But then why do you think, this did not happen yesterday in the following case?? I wrote one page of a long document and wanted to format it before proceeding. I selected the part to be formatted and instead erased it. I could not find that page again. I had to rewrite the matter.

  • Download SAP Report in Spreadsheet Format with automatic Save As selection

    Hi All,
    I'm using an Excel sheet that links up to SAP to grab some data off of QE03. Due to the nature of my data, I have to save the data into Excel/Spreadsheet format (aka this button )
    BUT, when you click that button it stops the script for a "Save As" screen, since it isn't a part of SAP. Since I have a macro immediately after the save that cuts the data, I need this to be fully automated and uninterrupted.
    Here is the script I have in excel:
    Dim SapGuiAuto
    Dim Apps
    Dim Connection
    Dim session
    Dim WScript
    Sub Master()
            With Sheets("Graphs")
            Call SAP
            Call QE03
            End With
    End Sub
    Sub SAP()
    If Not IsObject(Apps) Then
       Set SapGuiAuto = GetObject("SAPGUI")
       Set Apps = SapGuiAuto.GetScriptingEngine
    End If
    If Not IsObject(Connection) Then
       Set Connection = Apps.Children(0)
    End If
    If Not IsObject(session) Then
       Set session = Connection.Children(0)
    End If
    If IsObject(WScript) Then
       WScript.ConnectObject session, "on"
       WScript.ConnectObject Application, "on"
    End If
    End Sub
    Sub QE03()
    session.findById("wnd[0]").maximize
    session.findById("wnd[0]/tbar[0]/okcd").Text = "/nqe03"
    session.findById("wnd[0]").sendVKey 0
    session.findById("wnd[0]").sendVKey 4
    session.findById("wnd[1]/usr/tabsG_SELONETABSTRIP/tabpTAB005/ssubSUBSCR_PRESEL:SAPLSDH4:0220/sub:SAPLSDH4:0220/ctxtG_SELFLD_TAB-LOW[1,24]").Text = "123456"
    session.findById("wnd[1]/usr/tabsG_SELONETABSTRIP/tabpTAB005/ssubSUBSCR_PRESEL:SAPLSDH4:0220/sub:SAPLSDH4:0220/ctxtG_SELFLD_TAB-LOW[1,24]").SetFocus
    session.findById("wnd[1]/usr/tabsG_SELONETABSTRIP/tabpTAB005/ssubSUBSCR_PRESEL:SAPLSDH4:0220/sub:SAPLSDH4:0220/ctxtG_SELFLD_TAB-LOW[1,24]").caretPosition = 8
    session.findById("wnd[1]").sendVKey 0
    session.findById("wnd[1]/usr/lbl[1,1]").SetFocus
    session.findById("wnd[1]/usr/lbl[1,1]").caretPosition = 8
    session.findById("wnd[1]").sendVKey 2
    session.findById("wnd[1]/usr/lbl[1,3]").SetFocus
    session.findById("wnd[1]/usr/lbl[1,3]").caretPosition = 7
    session.findById("wnd[1]").sendVKey 2
    session.findById("wnd[0]/usr/ctxtQAQEE-VORNR").Text = "1234"
    session.findById("wnd[0]/usr/ctxtQAQEE-VORNR").SetFocus
    session.findById("wnd[0]/usr/ctxtQAQEE-VORNR").caretPosition = 4
    session.findById("wnd[0]").sendVKey 0
    session.findById("wnd[0]/mbar/menu[1]/menu[0]/menu[0]").Select
    session.findById("wnd[0]/tbar[1]/btn[40]").press
    session.findById("wnd[1]/tbar[0]/btn[8]").press
    session.findById("wnd[1]/tbar[0]/btn[37]").press
    End Sub
    I get stuck right at the last line, "session.findById("wnd[1]/tbar[0]/btn[37]").press" which opens the Save As dialog box. I've seen some similar topics around here, but I am honestly not too savvy at scripting and this is an Excel specific model, so does anyone have any advice?

    Hi,
    Why are you trying to use  that button?
    It's much easier to use simple its called "Local file" u can grab it by shortcut CTRL+SHIFT+f9...
    Another option is to use SAP functions:: put "%PC" to command field then enter, and you will get the window with option to save data in excel.
    Please find below some examples to download data to excel:
    'For STANDARD T-CODES like MB52
    'export to excel button
    Session.FindById("wnd[0]/tbar[1]/btn[45]").Press
    Session.FindById("wnd[1]/usr/subSUBSCREEN_STEPLOOP:SAPLSPO5:0150/sub:SAPLSPO5:0150/radSPOPLI-SELFLAG[1,0]").Select
    Session.FindById("wnd[1]/tbar[0]/btn[0]").Press
    Uname = CreateObject("WScript.Network").UserName
    Session.FindById("wnd[1]/usr/ctxtDY_PATH").Text = "C:\Users\" & uname & "\Desktop\"
    Session.FindById("wnd[1]/usr/ctxtDY_FILENAME").Text = "TEMP.xls"
    'rewrite
    Session.FindById("wnd[1]/tbar[0]/btn[11]").Press
    OPTION WITH "%PC"
    'save to TEMP
    session.findById("wnd[0]/tbar[0]/okcd").Text = "%pc"
    session.findById("wnd[0]").sendVKey 0
    session.findById("wnd[1]/usr/subSUBSCREEN_STEPLOOP:SAPLSPO5:0150/sub:SAPLSPO5:0150/radSPOPLI-SELFLAG[1,0]").Select
    session.findById("wnd[1]/tbar[0]/btn[0]").press
    session.findById("wnd[1]/usr/ctxtDY_PATH").Text = "C:\Users\" & Uname & "\Desktop\"
    session.findById("wnd[1]/usr/ctxtDY_FILENAME").Text = "TEMP.xls"
    session.findById("wnd[1]/tbar[0]/btn[11]").press
    Best,

  • I accidentally set my Downloads to automatically open the files, and now it doesn't save them at all, except in my temporary files. How do I reset the Automatic Download setting?

    I remember back in Firefox 3.6 you could go into about:config and reset the automatic setting for downloads, but that particular option has either been renamed or isn't there anymore.

    Go to the Firefox/'''Tools''' menu, click on '''Options''' and go to the''' Applications''' panel where you can change the action for different content types, to "Save File" or "Always ask" instead of opening the file in a particular application or plugin. See [[Managing file types]].

  • How do I turn off automatic save? Or How do I revert to an earlier version of my file?

    I just installed Lion. I use numbers, and I wish to revert to an earlier saved version of my numbers file, as I lost data (blank sheet this morning) last night. I did not close the file overnight, but did this morning in an effort to open an earlier version of the file. How do I open an earlier version of my numbers file? Can I do this only if I make continual "running" backups of the file, or is there a way that Lion saves an earlier version a la Time Machine. Thanks much. Vince

    Click the triangle next to the proxy icon and select Browse All Versions:

  • How to avoid attachment with mail code

    Hi ,
    I have written a code for sending e-mail notification .Code is working fine as e-mail is triggered as expected but when mail is recieved an attachment comes along with it named attzurlm.dat. Plz provide pointers how to remove this attachment .
    PFB the code
    public String sendEmail( List<String> recipientList, String subject, String message , String from,String cc,String logoPath,Logger LOGGER) {
    try{
    functionName="sendEmail()";
    //Set the host smtp address
    Properties props = new Properties();
    Utils util=new Utils();
    //Fetching values from lookup
    tcLookupOperationsIntf lookupIntf = Platform.getService(tcLookupOperationsIntf.class);
    String smtpHost=util.getLookUpValueByKey("LookUp.EmailInfo","CG_EMAIL_SERVER",lookupIntf,LOGGER);
    LOGGER.debug(functionName+ " SMTP Host Name :"+smtpHost);
    props.put("mail.smtp.host", smtpHost);
    props.put("mail.smtp.auth", "false");
    // create some properties and get the default Session
    Session session = Session.getDefaultInstance(props, null);
    //session.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session);
    //Check if cc is required
    if (cc.length() != 0) {
    InternetAddress ccAddress = new InternetAddress(cc);
    msg.setRecipient(RecipientType.CC, ccAddress);
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    InternetAddress[] addressTo = new InternetAddress[recipientList.size()];
    for (int iCountMail = 0; iCountMail < recipientList.size(); iCountMail++)
    addressTo[iCountMail] = new InternetAddress(recipientList.get(iCountMail));
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    // Setting the Subject and Content Type
    msg.setSubject(subject);
    msg.setText(message);
    MimeMultipart multipart = new MimeMultipart("related");
    // first part (the html)
    BodyPart messageBodyPart = new MimeBodyPart();
    String htmlText = "<br>"+ message + "<BR><BR><P align=\"left\">" + "<br><img src=\"cid:image\"><br><br>" + "</P>";
    messageBodyPart.setContent(htmlText, "text/html");
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    DataSource fds=null;
    try{
    fds= new FileDataSource(logoPath);
    }catch(Exception exe){
    LOGGER.debug("Function:+ sendEmial :logofile path is missing"+logoPath);
    messageBodyPart.setDataHandler(new DataHandler(fds));
    messageBodyPart.setHeader("Content-ID", "<image>");
    multipart.addBodyPart(messageBodyPart);
    // put everything together
    msg.setContent(multipart);
    Transport.send(msg);
    LOGGER.info("Email sent to recipient :"+recipientList);
    }catch(MessagingException msgExc){
    LOGGER.error(functionName+" Error occurred while sending email:"+msgExc);
    msgExc.printStackTrace();
    return "ERROR";
    }catch(Exception exception){
    LOGGER.error(functionName+" Error occurred while sending email:"+exception);
    exception.printStackTrace();
    return "ERROR";
    return "SUCCESS";
    }

    Code Goes as below in curley braces :
    public String sendEmail( List<String> recipientList, String subject, String message , String from,String cc,String logoPath,Logger LOGGER)     {
            try{
                 functionName="sendEmail()";
                 //Set the host smtp address
                 Properties props = new Properties();
                 Utils util=new Utils();
                 tcLookupOperationsIntf lookupIntf = Platform.getService(tcLookupOperationsIntf.class);
                 String smtpHost=util.getLookUpValueByKey("CG.LookUp.EmailInfo","EMAIL_SERVER",lookupIntf,LOGGER);
                 LOGGER.debug(functionName+ " SMTP Host Name :"+smtpHost);
                 props.put("mail.smtp.host", smtpHost);
                 props.put("mail.smtp.auth", "false");
                // create some properties and get the default Session
                Session session = Session.getDefaultInstance(props, null);
                //session.setDebug(debug);
                // create a message
                Message msg = new MimeMessage(session);
                //Check if cc is required
                if (cc.length() != 0) {
                    InternetAddress ccAddress = new InternetAddress(cc);
                    msg.setRecipient(RecipientType.CC, ccAddress);
                // set the from and to address
                InternetAddress addressFrom = new InternetAddress(from);
                msg.setFrom(addressFrom);
                InternetAddress[] addressTo = new InternetAddress[recipientList.size()];
                for (int iCountMail = 0; iCountMail < recipientList.size(); iCountMail++)
                    addressTo[iCountMail] = new InternetAddress(recipientList.get(iCountMail));
                msg.setRecipients(Message.RecipientType.TO, addressTo);
                // Setting the Subject and Content Type
                msg.setSubject(subject);
                msg.setText(message);
                MimeMultipart multipart = new MimeMultipart("related");
             // first part (the html)
                BodyPart messageBodyPart = new MimeBodyPart();
                String htmlText = "<br>"+ message + "<BR><BR><P align=\"left\">" + "<br><img src=\"cid:image\"><br><br>" + "</P>";
                messageBodyPart.setContent(htmlText, "text/html");
                multipart.addBodyPart(messageBodyPart);
                messageBodyPart = new MimeBodyPart();
                DataSource fds=null;
                try{
                    fds= new FileDataSource(logoPath);
                }catch(Exception exe){
                    LOGGER.debug("Function:+ sendEmial :logofile path is missing"+logoPath);
                messageBodyPart.setDataHandler(new DataHandler(fds));
                messageBodyPart.setHeader("Content-ID", "<image>");
                multipart.addBodyPart(messageBodyPart);
                // put everything together
                msg.setContent(multipart);
                Transport.send(msg);
                LOGGER.info("Email sent to recipient :"+recipientList);
            }catch(MessagingException msgExc){
                 LOGGER.error(functionName+" Error occurred while sending email:"+msgExc);
                 msgExc.printStackTrace();
                 return "ERROR";
            }catch(Exception exception){
                LOGGER.error(functionName+" Error occurred while sending email:"+exception);
                 exception.printStackTrace();
                 return "ERROR";
            return "SUCCESS";

  • How does family users (with multiple devices) set-up email in iCloud?

    Husband and wife, two iPhones, an iMac, and a Macbook pro.  How do you set-up email in iCloud?  We want two @icloud.com addresses and would prefer two separate calenders.  We could share an address book.

    It is always good practice to have separate logins if more than one person is using a computer. This allows to have separate e-mail accounts, calendars etc. and share only required information.
    iCloud services are part of OS X Mountain Lion, therefore you would loose comfort as well as part of functionality if you need to switch/reconfigure iCloud accounts every time you need to access your personal information.

  • How can I automatically save as a jpg layer groups?(layer group jpg)

    Has created a 10 layer groups in Photoshop (there are multiple layers in the group layer.)
    10 Photoshop layer groups
    I try to save the JPG file to 10.
    How can I batch or automatically save?

    Just so you are aware, jpg does not support layers. However there is a script actually two scripts that can take the layers and create individual files.
    File>Scripts>Layer Comp to Files
    File>Scripts>Export Layers to Files
    The former requires you to use layer comps which is a way of creating sets of layers to create a comp. The latter is just as it says.
    But as I said anything saved as a jpg will be a single layer with no transparency.
    Psd and tiff are the only two that should be used for multiple layers and transparency. There are other formats that support transparency, but is not the scope of this thread. At least for now.

  • How can I get iMovie to automatically save to my external hard drive?

    I am trying to use my external hard drive for iMovie because my movies were cramping up my hard drive. I already moved them and that worked fine. The only problem is that I don't know how to get iMovie to automatically save to the hard drive now. I don't want to have to keep moving the files from my movies folder to the hard drive.

    Do this on the import screen. Look toward the bottom.

  • How to email photo with image number

    How do you attach the image number below the photo when emailing? Before I upgraded, iphoto attached it automatically.

    First set iPhoto to use Mail in emailing photos (in the iPhoto/General preference pane). Then select your photos and use the Share ➙ Mail option. The following window will pop up:
    Check the items you want tio display under the photos in the email window and use the Compose Message button. This is what you'll get in the Mail  window:
    OT

  • Newbie to attachment with JAX-RPC

    Hi,
    I am new to Web Services. I am developing a web services using oracle technology. I use JDeveloper 10g to create my web services using stateless Java class. Everything are so simple with clicking here and there to generate my WSDL file, web service stub and so on. Oracle use their own servlet as shown below.
    <servlet-name>MyWebService1</servlet-name>
    <servlet-class>oracle.j2ee.ws.StatelessJavaRpcWebService</servlet-class>I had created my interface and implements (Hello.java & HelloImpl.java respectively). Having a method public String sayHello(String param).
    Now, I want to send a attachment (or more than one) to the client using JAX-RPC. My problem now is don't-know-where-to-start. I have gone through a few example but most of the examples are so misleading. I understand that the endpoint of a web services is from servlet. Am I suppose to start my coding to attach the document(*.doc, *.pdf, and so on) to the SOAP object in my Hello.java or HelloImpl.java? Correct me if I am wrong.
    Anyone out there has a sample code of how-to send attachment with JAX-RPC with step-by-step (especially using oracle jdeveloper 10g if exist) article, if any?
    Please help, I am lost. Thanks in advance.
    regards,
    yientau

    Hi,
    I am new to Web Services. I am developing a web services using oracle technology. I use JDeveloper 10g to create my web services using stateless Java class. Everything are so simple with clicking here and there to generate my WSDL file, web service stub and so on. Oracle use their own servlet as shown below.
    <servlet-name>MyWebService1</servlet-name>
    <servlet-class>oracle.j2ee.ws.StatelessJavaRpcWebService</servlet-class>I had created my interface and implements (Hello.java & HelloImpl.java respectively). Having a method public String sayHello(String param).
    Now, I want to send a attachment (or more than one) to the client using JAX-RPC. My problem now is don't-know-where-to-start. I have gone through a few example but most of the examples are so misleading. I understand that the endpoint of a web services is from servlet. Am I suppose to start my coding to attach the document(*.doc, *.pdf, and so on) to the SOAP object in my Hello.java or HelloImpl.java? Correct me if I am wrong.
    Anyone out there has a sample code of how-to send attachment with JAX-RPC with step-by-step (especially using oracle jdeveloper 10g if exist) article, if any?
    Please help, I am lost. Thanks in advance.
    regards,
    yientau

  • How do I set downloads to automatically save instead of prompting me to open them?

    I recently reset Firefox. Before whenever I downloaded a file, it automatically prompted me if I wanted to open the file or save it to my computer, with saving it to my computer preselected. This was fine because I almost never want to open these downloads automatically, and I like all my downloads to go into my downloads folder on a separate drive with much more space (not the temp folder on C:\). The option "do this automatically for files like this from now on" was useful for the rare file type that I would want to open automatically (usually because it's a very small music file or something).
    Now every time I download virtually any file type, the prompt comes up with 'open the file' preselected, and "do this automatically for files like this from now on" greyed out. As a result, on more than one occasion, I have mistakenly clicked ok and opened huge files automatically after downloading (which has resulted in them popping open even hours later and playing automatically once the download finished). I'd like to be able to select "save it to my computer" and have it do this automatically, but that option is greyed out.
    The help available seems to suggest going into options>Applications and changing the action for the appropriate content type, but:
    (a) not all the content types I download are listed, i.e. .mov, .mpeg, .rar, etc.
    (b) changing the action for the content types I do have (.wmv and compressed/zipped folder only) has done absolutely nothing.
    I'm still prompted for each and every file I download, still preselected to open the file, with the "do this automatically for files like this from now on" still greyed out.
    I'd like to change it to the way I had before, or at the very least automatically set all downloads to save into my downloads folder.

    You can automatically save downloads without seeing the Open/Save/Cancel dialog in the Options:
    orange Firefox button (or Tools menu) > Options > General > "Saves files to"
    However, I can't think of a way to have the Open/Save/Cancel dialog always default to Save. I think mine suggests whatever I did last for the same type of content, but I haven't paid close attention.
    I'm out of time to address the problem with "do this automatically" but there is one suggestion for why it could be grayed out in this article: [[Change what Firefox does when you click on or download a file]].
    Is it possible you had a download-related extension before? To compare settings and extensions, please retain the Old Firefox Data folder on your desktop. Aside from checking the extensions in there, it would be interesting to run a text file comparison on your currently active prefs.js file and your old one in that folder.

  • How do I set Adobe Acrobat X to automatically save PDFs to be compatible to versions 9 or higher?

    I want to automatically save to a reduced PDF size rather than having to go through File > Save As > Reduce Size PDF.  Can I set something up in preferences?  Thanks.

    Its not the way the versions go.
    Version go from version 1.3(Acrobat 4)  to 1.7 (acrobat 8)
    and yes depending upon what version you use it can save some bandwidth (file size) 1.7 makes the smallest most compact files plus the most up to date features are supported.
    about 75% of user around the word still use 1.5 version (Acrobat 6)  seem to be most compatible with the Internet.

  • How do i get the "open with" option back for pdfs after accidentally hitting the save option which now automatically saves any pdf?

    Normally when I click on a pdf I would get an option to "Open With" or Save. I usually just opened pdfs first. I accidentally clicked on the Save option in this dialog box and now when I click on any pdf it automatically asks me where I want to save it. I want to get the "open With" option back, because I don't necessarily want to save a copy of every pdf.

    Mountain Lion was released in 2012, so I suppose there might be advice in old threads or on the Apple forums if you don't get a response here right away.

  • How do I save as with Numbers 2.1 Lion version

    ok so I've been a user for about 6 months. Moved to Lion OS X and now the "Save as" option is missing. So if I have a spreadsheet that I want to keep but modify and call something else aka using the "save as" how do I now do this?

    NO, NO and NO !
    Save a version doesn't give the ability to change a name. It doesn't open a dialog. This is why there is no ellipsis at the end of the menu item.
    It allow us to save the changes applied to a document in the hidden folder folder
    “.DocumentRevisions-V100” which exists at the root level of every volume connected to a machine running Lion.
    Save… allow us to save a document which was never saved before. The ellipsis means that the feature open a dialog.
    Duplicate create a replicate of the current document giving it a default name based of the name of the original minus the extension (.numbers). On a French system a replicate of azerty.numbers is named azerty - copie.
    One more time the, good old rule apply : no ellipsis = no dialog.
    If you don't believe me,
    create a doc and save it as azerty.numbers.
    Type B2 in cell B2
    Save a Version
    remove the contents of the cell B2
    Save a Version
    Type OK in the cell B2
    Close the document
    Re open it.
    The doc will contain OK in the cell B2 and, if you look at the versions available you will see at least one with OK in B2,
    one with nothing in B2
    one with B2 in B2
    If you have an external device, HD or memory stick, copy the document to the external device then open it.
    It will contain OK in B2 but will no longer have access to the versions.
    Saving a version saves nothing in the doc itself.
    What save datas in a doc are :
    the initial Save which create the file on disk
    the automatic autosaves
    the close action which in fact execute three tasks:
    (1) save the document
    (2) save a version matching the last state
    (3) close the doc.
    I put 'save the document' at 1st position but honestly I don't know if the system save the file before saving the late version or if it save the late version before saving the file.
    I will try to describe every cases
    (A) open an existing document
    trigger Save a Version
    you will not be able to give a new name.
    (B) open an existing document
    trigger Duplicate.
    you will get a window entitled oldname - copy
    look at the file menu, there is no "Save a Version" item but a "Save…" one
    Trigger "Save…" This time you may edit the name and the location.
    After that, you will be allowed to trigger Save a Version for both documents but this will add nothing to the docs themselves.
    It's really important that it behave this way.
    (a) it would be a bit annoying to send a file to a correspondant with the different intermediate versions embedded.
    (b) Apple failed to deliver the required tools but I built a set of three scripts giving up the ability to extract the versions, even if the main document is corrupted. This way, assuming that you worked during two hours on a doc saving a version every ten minutes, and that two days after Numbers prove to be unable to re-open its own creation (not a rare behavior).
    With my script, you will be able to extract the different versions stored in “.DocumentRevisions-V100”
    Maybe the more recent will be unreadable but the one before will be readable so you will recover quite all your document.
    More, as I never got explanations of the scheme corrupting the files (except when two users try to work simultaneously on a document stored on a network) it's not impossible to have a corrupted main document and a correct 'late version" in the “.DocumentRevisions-V100” folder.
    Yvan KOENIG (VALLAURIS, France) jeudi 3 novembre 2011 22:18:31
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

Maybe you are looking for

  • How can I fix the "This is not a test user account, please create a new account in the sandbox environment" error?

    Hi there everyone, Recently I tried to make an in-app purchase, I'm not sure whether the app is relevant or not but it was for Tapped Out, however, after trying to make the purchase I received an error message saying "Sign-In Required, tap continue t

  • How Do I Unlock the full potential of my NVIDIA card

    I have a macbook pro with Nvidia 256mb. The original advert before I purchased says that it was divided into two parts and that you could unlock the potential of the second part if you needed more power. Could someone please clue me in on how to do t

  • Regading Including Text in Smart forms

    Hi gurus, In vf02 they are giving some text . that text is going and saving in STXL table. I want to include this text in smart form. After choosing include text in General attributes. I am giving text object is vbbk Text id is time language en but i

  • SPP 4.4 on DB2 connection problems and missing documentation

    HI all, i'm trying to install a SPP server using DB2 version 9.7.4 but i'm having a lot of connection problems. It seems that we are missing some "addendum documentation" on this kind of cofiguration. Anyone has this kind of doc? Thx Enrico

  • Web based Auto dialer in java

    Hi, I have assigned the work that implementation of "web based auto dialer in java". The problem is I have a button on the web page . when I click on that button . I have to call to particular number (fixed number). I have search a lot . I didn't get