External components / forms / Paypal

I have a simple question hopefully. I'd like to create a link in an htmldb app to a payment system. I am looking at Paypal where a button can be copied and pasted to a web site but this fails on my page for some reason. The code supplied is just a form & I have copied this below. I am just placing this as it is within a region in my app (appid 19585 page 3)
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="emailaddress">
<input type="hidden" name="item_name" value="£5 topup">
<input type="hidden" name="amount" value="5.00">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="lc" value="GB">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>

You CANNOT put a form inside a form in HTML. HTML DB opens it's own form (view source). Yours needs to be outside of this form (before or after).
I haven't done this, but if it were me, I would write some javascript to set the form elements in this form with values from your HTML DB items, then look into posting this form asyncronously with XmlHttpRequest or put it in a hidden iFrame and post it with JavaScript. You can then call doSubmit('MAKE_PAYMENT') which will post your html db form as usual.
No matter what you do, you can't nest forms, so fix that first.
Tyler

Similar Messages

  • Display WCF exception detail in OOTB external list form submission

    Hi,
    I need a solution for the below scenario.
    Scenario:
    SharePoint OOTB external list consumes WCF service for CRUD operation.
    When some exception happened during add/update operation using OOTB forms, External list form needs to capture and display error message and form should not be closed
    Anandhan.S Remember to 'mark or propose as answer' or 'vote as helpful' as appropriate.

    Hi,
    Here is a blog for your reference:
    Show exception details on the client side for WCF RESTful endpoints
    http://sadomovalex.blogspot.kr/2011/06/show-exception-details-on-client-side.html
    We can also customize the item forms and call the WCF service using Ajax, then catch the exception in client side using JavaScript.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Paid events booking form Paypal standard redirect url error message

    Hi I have set up a paid booking form using the events module using Paypal standard.
    It works fine in that the paymentvia paypal is received sucessfully and the booking shows up in bc admin,
    the problem occurs after payment is made via paypal, paypal redirects to the business catalyst website but displays in red :
    ERROR: An unknown error occurred. This is most likely due to the merchant profile not being set up correctly. Please contact your system administrator for help.

    Paayplal Standard and any other non seamless payment gateway do not work as options for forms.
    Only seamless payment gateways will function correctly on forms for booking or custom forms you create. Paypal standard will only work as an option withing the eCommerce aspect of BC.

  • External candidate - Form of address

    Hi
    Under Administrator tab - Recruiter page - Enter external application - in form of address. where to maintain this value. Pls. suggest.

    Hi,
    The form of address field in E-Recruiting is taken from the business partner settings, so you have to adjust them in V_TSAD3.
    Regards
    Nicole

  • Height form paypal

    After some years form the creation of my internet site I have
    decided to correct a little paging problem that i left unresolved
    for a lot of time (one time it wasn't so important...).
    The site is created in xhtml e css and the problem is to
    equalize the length of the page (pratically the height) for all the
    browser, to better manage the space for the advertising banner.
    I have tried to divide the page in variuos div setting the
    various heights with height and min-height but I can't make it
    uniform for a problem of the paypal cart code, I think.
    I have tried to insert the central column in a table setting
    the height of the td but the problem stay.
    For better understaning the problem I inserted an adsense
    banner on the right: if you open the page with firefox and then
    with explorer you will see that the end of this banner finish next
    to a different text line in the central column, and this make me
    difficult to manage the space in the bottom.
    If you can help me to get, pace after pace, an optimal
    solution fully compatible with all the browser, that doesn't use
    hack and is validated in Wc3, I would be very grateful to you.
    This is the address of a sample page:
    http://www.idee-regalo.biz/regalo-animali.html
    Thank you all.
    You have never see
    gift for
    him like these? (
    originelle geschenke on
    german)
    http://
    http://

    Fix your validation errors first -
    http://validator.w3.org/unicorn/check?ucn_uri=dooziejank.com%2FDeer%2520in%2520The%2520Hea dlights.html&ucn_lang=en&ucn_task=conformance#
    For example, you have no </head> tag....
    And it's a very bad idea to use spaces in your filenames for the web
    Deer in The Headlights.html

  • What is the best practice to incorporate a custom external swf form?

    I have been working creating a fla file that loads several swfs and random background images. However, I have a custom form that I want to implement and I am having a problem figuring out how to do so. I want to have it work like an inner popup where it blurs and unblurs the background image (like the schedule from hbo.com).
    Here's my setup:
    FLA file contains-
    UILoader for swf section
    UILoader for random background image
    Lets say I load a section called home.swf into the section loader. Within the home.swf I have a button for someone to call up the form.swf. Is it possible for the form to blur the random background image when loaded then unblur it when it's done? If so how would you recommend I go about programming it. **I also have no idea how to unload it.

    you can apply a blur filter to your background image after converting it to an object (like a movieclip).

  • Best Pratice of Error Handling calling multiple external components

    I have used EJBs in my question, but it applies to any component/service that is exposed.
    If I have EJB1 calling EJB2, what is the standard approach to handling an error received from EJB2? Does EJB1 simply pass it back or wrap its own error around it?
    I use the term error to include exceptions & all information that would be used for debugging & used by the caller.
    If we allow the errors from EJB2 to be returned to the caller of EJB1, then the caller of EJB1 must be aware of those errors.
    If EJB1 wraps the errors from EJB1, then the caller of EJB1 only needs to know about errors returned from EJB1.
    This can be extended a little and EJB1 calls multiple ejbs. Some of EJBs may be external EJBs or have the possibility of returning an error from a 3rd party tool.
    What should be returned if EJB3 can return the same error as say EJB4? If (for some reason) the caller needs to know exactly when the problem occurred it would imply that additional information needs to be attached to the original error.
    What would be a 'best practice' approach to returning the errors to the original caller?

    I have used EJBs in my question, but it applies to
    any component/service that is exposed.
    If I have EJB1 calling EJB2, what is the standard
    approach to handling an error received from EJB2?It depends on the context.
    Does EJB1 simply pass it back or wrap its own error
    r around it?
    I use the term error to include exceptions & all
    information that would be used for debugging & used
    by the caller.
    If we allow the errors from EJB2 to be returned to
    the caller of EJB1, then the caller of EJB1 must be
    aware of those errors.
    If EJB1 wraps the errors from EJB1, then the caller
    of EJB1 only needs to know about errors returned from
    EJB1.
    Caller?
    EJBs are in a layer. For application programming layers will seldom return errors (plural) to other layers.
    Within a layer handling depends on the context.

  • I am trying to acesss a Windows NT external drive form an old computer and it says I can read only how do I change permissions

    I have an external hard drive that was used to copy all my old files from an old Windows 7 computer.  I need to copy some of the files but it says the disk is read only and I don't seem to be able to change the permissions no matter what I try any suggestions?

    You should be able to copy files from a read-only volume. Are the files themselves protected? Are you trying to change the permissions on the files because you can't read them, or because you can't modify them?
    What format is the volume?
    If it is NTFS, that is expected behavior. OS X Mountain Lion (like its predecessors) contains code to read files in NTFS volumes, but not to write anything (like permissions) inside NFTS volumes. You need to purchase third-party software to make changes to NTFS volumes.

  • Referencing External components

    I have two files in my project:
    Project/main.mxml
    Project/com/layout.mxml
    (Main is an application and layout is a itemRenderer inside a
    HorizontalList container.)
    How do I resize the layout.mxml VBox height relative to the
    Main.mxml container height from inside of Main.mxml?
    Flex won't let me assign an ID to the root container of
    layout.mxml, and trying to reference it through com.layout.height
    gives me a "Call to a possibly undefined method through a reference
    with static type Class" error.
    I tried setting the height of layout.mxml using
    parentApplication.id.height, which worked until I updated the
    height of main.mxml and the layout.mxml remained unchanged. Flex
    mentioned the height not being bindable. What a pain.
    Hopefully this simple question has a simple answer.
    Thanks!

    I have two horizontal lists stacked vertically on top of each
    other with a bar between them for resizing their respective
    heights. The default is 50% / 50%, but I figure some people might
    want to see more of the top section, or vice versa.
    Inside of the top horizontal list I am using an itemRenderer
    to parse an XML file into pretty columns of data. Problem is that
    the itemRenderer VBox doesn't update when you resize the horizontal
    lists, so it gets cropped instead of scaling. Because I am using
    justified text, it appears as though I have to use fixed heights
    instead of percentages.
    This is the resize function inside of the main.mxml
    application:
    if (globals.resize == true) {
    box1.height = contentMouseY - resizer.height / 2;
    I would like to add one more line to resize the content that
    goes inside of box1 (layout.mxml) if possible. I'm just not sure
    how to call properties from other mxml files. Especially when I
    can't assign an ID to the root container.
    Something like:
    if (globals.resize == true) {
    box1.height = contentMouseY - resizer.height / 2;
    layout.height = box1.height;
    If I set the height inside the layout.mxml file to
    height="{parentApplication.box1.height}" it doesn't update when I
    resize the boxes.
    Perhaps I could add an event inside the application that goes
    off during a resize and a listener in the layout to pick up the
    changes as the user moves their mouse, but it seems like there
    should be a simple / elegant way of doing it within one
    function.

  • Issue with External Form Repost in Testing Environment

    Please help!
    We are attempting to add an Eloqua repost to our webform on https://www.2checkout.com/signup. We are a payment processor and therefore, our customer admin area, of which this page is a part, must maintain various compliance standards. With this in mind, we are testing the repost in our test environment, which sits on https://va.test.2checkout.com. I've double-checked and our eloqua tracking scripts are picking up these pages.
    When we run the repost, the line of code to get the GUID - 
    elqQ.push(['elqGetCustomerGUID']);
    is erroring. I've attached a screenshot.
    For reference, we're using the code illustrated in Thomas Reyto's Topliner's post: http://topliners.eloqua.com/community/do_it/blog/2012/04/17/how-to-repost-an-externally-hosted-form-to-eloqua.
    Any assistance in determining the issue would be most appreciated! As mentioned, we really want to get this working in the test environment before we push it live, as it could break our sign up process otherwise.
    Thank you Topliners!

    Jennifer Comisford the JavaScript snippet to include elqcfg.min.js on your page?  The waituntilCustomerGuidIsRetrieved function is defined in the elqcfg.min.js tracking script.  From the error it looks like your page has not loaded the file correctly.
    <script type="text/javascript">
        var _elqQ = _elqQ || [];
        _elqQ.push(['elqSetSiteId', '#########']);
        _elqQ.push(['elqTrackPageView']);
        (function () {
            function async_load() {
                var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true;
                s.src = '//img.en25.com/i/elqCfg.min.js';
                var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
            if (window.addEventListener) window.addEventListener('DOMContentLoaded', async_load, false);
            else if (window.attachEvent) window.attachEvent('onload', async_load);
    </script>

  • CIN:External number to ARE1 Form

    HI Experts
    We have maintained external number range for ARE1 document for object J_1IARE1 but during creation of ARE1 or change mode where should i enter external ARE1 Form number (Official Number).
    In change mode the form number field is visible in nonmodifiable mode.
    During posting i am getting error related to Form number.

    Hai Mangesh bhosale     ,
    The thread may give some more details regarding the Number ranges in ARE1 document
    ARE1 number range object
    Still further query please post
    Regards,
    Mani

  • Creating custom correspondence forms for external confirmations

    Hi gurus,
    could you please share your experience, what is the possible solution to create custom external correspondence forms -  confirmations for Business partners or modify the template,  like the one pre-delivered by SAP - F_TR_CONFIRM_ALL.
    my client need confirmations for those financial transactions:
    u2022     Fixed interest bonds;
    u2022     Variable interest bonds;
    u2022     Repos;
    u2022     Interest rate swaps (IRS);
    u2022     Securities lending;
    u2022     Deposits.
    Thanks for your input.
    Rgds,
    Renatas

    Hi,
    The correspondence function provided by SAP is freely definable, and can be assigned with any other custom made forms as well. You may need to develop a new form script by copying existing standard form and make changes as per your specific requirment and assign the same at spro--correspondence area against respective transaction activity.
    Please note, while developing new forms, and if those are assigned for automatic print processing, any inconsitency in the form may lead to runtime error while creating transactions (FTR_CREATE).
    Regards
    Prasad AV

  • I want the Definitaion fo  Class and its Components  in ABAP . With Example

    Gowri

    <b>Classes</b>
    Classes are templates for objects. Conversely, you can say that the type of
    an object is the same as its class. A class is an abstract description of an object. You could say that it is a set of instructions for building an object. The attributes
    of objects are defined by the components of the class, which describe the
    state and behavior of objects.
    <b>
    Local and Global Classes</b>
    Classes in ABAP Objects can be declared either globally or locally. You define global classes and interfaces in the Class Builder (Transaction SE24) in the
    ABAP Workbench. They are stored centrally in class pools in the class library
    in the R/3 Repository. All of the ABAP programs in an R/3 System can access the global classes. Local classes are defined within an ABAP program. Local classes and interfaces can only be used in the program in which they are defined. When you use a class in an ABAP program, the system first searches for a local class with the specified name. If it does not find one, it then looks for a global class. Apart from the visibility question, there is no difference between using a global class and using a local class.
    There is, however, a significant difference in the way that local and global classes are designed. If you are defining a local class that is only used in a single program, it is usually sufficient to define the outwardly visible components so that it fits into that program. Global classes, on the other hand, must be able to be used anywhere. This means that certain restrictions apply when you define the interface of a global class, since the system must be able to guarantee that any program using an object of a global class can recognize the data type of each interface parameter.
    The following sections describe how to define local classes and interfaces in an ABAP program. For information about how to define local classes and interfaces, refer to the  Class Builder section of the ABAP Workbench Tools documentation.
    <b>Defining Local Classes</b>
    Local classes consist of ABAP source code, enclosed in the ABAP statements CLASS ... ENDCLASS. A complete class definition consists of a declaration part and, if required, an implementation part. The declaration part of a class <class> is a statement block:
    CLASS <class> DEFINITION.
    ENDCLASS.
    It contains the declaration for all components (attributes, methods, events) of the class. When you define local classes, the declaration part belongs to the global program data. You should therefore place it at the beginning of the program.
    If you declare methods in the declaration part of a class, you must also write an implementation part for it. This consists of a further statement block:
    CLASS <class> IMPLEMENTATION.
    ENDCLASS.
    The implementation part of a class contains the implementation of all methods of the class. The implementation part of a local class is a processing block. Subsequent coding that is not itself part of a processing block is therefore not accessible.
    <b>Structure of a Class</b>
    <u>The following statements define the structure of a class:</u>
    A class contains components
    Each component is assigned to a visibility section
    Classes implement methods
    The following sections describe the structure of classes in more detail.
    <b>Class Components</b>
    The components of a class make up its contents. All components are declared in the declaration part of the class. The components define the attributes of the objects in a class. When you define the class, each component is assigned to one of the three visibility sections, which define the external interface of the class. All of the components of a class are visible within the class. All components are in the same namespace. This means that all components of the class must have names that are unique within the class.
    There are two kinds of components in a class - those that exist separately for each object in the class, and those that exist only once for the whole class, regardless of the number of instances. Instance-specific components are known as instance components. Components that are not instance-specific are called static components.
    In ABAP Objects, classes can define the following components. Since all components that you can declare in classes can also be declared in interfaces, the following descriptions apply equally to interfaces.
    <b>Attributes</b>
    Attributes are internal data fields within a class that can have any ABAP data type. The state of an object is determined by the contents of its attributes. One kind of attribute is the reference variable. Reference variables allow you to create and address objects. Reference variables can be defined in classes, allowing you to access objects from within a class.
    <b>Instance Attributes</b>
    The contents of instance attributes define the instance-specific state of an object. You declare them using the DATA statement.
    <b>Static Attributes</b>
    The contents of static attributes define the state of the class that is valid for all instances of the class. Static attributes exist once for each class. You declare them using the CLASS-DATA statement. They are accessible for the entire runtime of the class.
    All of the objects in a class can access its static attributes. If you change a static attribute in an object, the change is visible in all other objects in the class.
    <b>Methods</b>
    Methods are internal procedures in a class that define the behavior of an object. They can access all of the attributes of a class. This allows them to change the data content of an object. They also have a parameter interface, with which users can supply them with values when calling them, and receive values back from them The private attributes of a class can only be changed by methods in the same class.
    The definition and parameter interface of a method is similar to that of function modules. You define a method <met> in the definition part of a class and implement it in the implementation part using the following processing block:
    METHOD <meth>.
    ENDMETHOD.
    You can declare local data types and objects in methods in the same way as in other ABAP procedures (subroutines and function modules). You call methods using the CALL METHOD statement.
    <b>Instance Methods</b>
    You declare instance methods using the METHODS statement. They can access all of the attributes of a class, and can trigger all of the events of the class.
    <b>Static Methods</b>
    You declare static methods using the CLASS-METHODS statement. They can only access static attributes and trigger static events.
    <b>Special Methods</b>
    As well as normal methods, which you call using CALL METHOD, there are two special methods called CONSTRUCTOR and CLASS_CONSTRUCTOR, which are automatically called when you create an object (CONSTRUCTOR) or when you first access the components of a class (CLASS_CONSTRUCTOR).
    <b>Events</b>
    Objects or classes can use events to trigger event handler methods in other objects or classes. In a normal method call, one method can be called by any number of users. When an event is triggered, any number of event handler methods can be called. The link between the trigger and the handler is not established until runtime. In a normal method call, the calling program determines the methods that it wants to call. These methods must exist. With events, the handler determines the events to which it wants to react. There does not have to be a handler method registered for every event.
    The events of a class can be triggered in the methods of the same class using the RAISE EVENT statement. You can declare a method of the same or a different class as an event handler method for the event <evt> of class <class> using the addition FOR EVENT <evt> OF <class>.
    Events have a similar parameter interface to methods, but only have output parameters. These parameters are passed by the trigger (RAISE EVENT statement) to the event handler method, which receives them as input parameters.
    The link between trigger and handler is established dynamically in a program using the SET HANDLER statement. The trigger and handlers can be objects or classes, depending on whether you have instance or static events and event handler methods. When an event is triggered, the corresponding event handler methods are executed in all registered handling classes.
    <b>Instance Events</b>
    You declare instance events using the EVENTS statement. An instance event can only be triggered in an instance method.
    <b>Static Events</b>
    You declare static events using the CLASS-EVENTS statement. All methods (instance and static methods) can trigger static events. Static events are the only type of event that can be triggered in a static method.
    <u>See also Triggering and Handling Events.</u>
    <b>Types</b>
    You can define your own ABAP data types within a class using the TYPES statement. Types are not instance-specific, and exist once only for all of the objects in a class.
    <b>Constants</b>
    Constants are special static attributes. You set their values when you declare them, and they can then no longer be changed. You declare them using the CONSTANTS statement. Constants are not instance-specific, and exist once only for all of the objects in a class.
    <b>Visibility Sections</b>
    You can divide the declaration part of a class into up to three visibility areas:
    CLASS <class> DEFINITION.
      PUBLIC SECTION.
      PROTECTED SECTION.
      PRIVATE SECTION.
    ENDCLASS.
    These areas define the external visibility of the class components, that is, the interface between the class and its users. Each component of a class must be assigned to one of the visibility sections.
    <b>Public Section</b>
    All of the components declared in the public section are accessible to all users of the class, and to the methods of the class and any classes that inherit from it. The public components of the class form the interface between the class and its users.
    <b>
    Protected Section</b>
    All of the components declared in the protected section are accessible to all methods of the class and of classes that inherit from it. Protected components form a special interface between a class and its subclasses. Since inheritance is not active in Release 4.5B, the protected section currently has the same effect as the private section.
    <b>Private Section</b>
    Components that you declare in the private section are only visible in the methods of the same class. The private components are not part of the external interface of the class.
    <b>Encapsulation</b>
    The three visibility areas are the basis for one of the important features of object orientation - encapsulation. When you define a class, you should take great care in designing the public components, and try to declare as few public components as possible. The public components of global classes may not be changed once you have released the class.
    For example, public attributes are visible externally, and form a part of the interface between an object and its users. If you want to encapsulate the state of an object fully, you cannot declare any public attributes. As well as defining the visibility of an attribute, you can also protect it from changes using the READ-ONLY addition.
    "Example  :
    CLASS C_COUNTER DEFINITION.
      PUBLIC SECTION.
        METHODS: SET_COUNTER IMPORTING VALUE(SET_VALUE) TYPE I,
                 INCREMENT_COUNTER,
                 GET_COUNTER EXPORTING VALUE(GET_VALUE) TYPE I.
      PRIVATE SECTION.
        DATA COUNT TYPE I.
    ENDCLASS.
    CLASS C_COUNTER IMPLEMENTATION.
      METHOD SET_COUNTER.
        COUNT = SET_VALUE.
      ENDMETHOD.
      METHOD INCREMENT_COUNTER.
        ADD 1 TO COUNT.
      ENDMETHOD.
      METHOD GET_COUNTER.
        GET_VALUE = COUNT.
      ENDMETHOD.
    ENDCLASS.
    The class C_COUNTER contains three public methods - SET_COUNTER, INCREMENT_COUNTER, and GET_COUNTER. Each of these works with the private integer field COUNT. Two of the methods have input and output parameters. These form the data interface of the class. The field COUNT is not outwardly visible.
    Reward   points  if it is usefull...
    Girish

  • How do I transfer existing ipod playlists that includes my own CD songs from a former computer to a newly authorized computer that ONLY has the iTunes songs I purchased appearing in my library without losing my ipod FULL song lists?

    Worried if I sync, I'll loose all the songs on existing ipod that don't appear in new library.  I backed up my former FULL itunes library (purchased songs and my own CD's I burned into library) from old computer to an external hardrive so I have the music files.  Is there a way I can load from external drive former itunes library directly into new itunes library?  THANKS!!!

    I just had to do this very thing.  I'm sure there are other ways but IMO the easiest is to haven the old computer set up on the same network as the new computer then turn on home sharing on both computers and move the old library into the NEW computer.  if the old computer is not available anymore you can plug in the external drive and go into itunes and under the file tab there is an option to add to library by file or folder  I f your library is big this can be a tedious process.  Good Lucl

  • What are the ODM components available in SNC?

    Hi experts,
    Could you please explain on
    1. what are the ODM components available with SNC an their use?
    2. Settings that required to activate/generate/regenerate ODM?
    Thanks in advance and eagerly looking for your great words.
    Regards
    Vinoth

    Hi Rohan
    The following are the order components available with SNC
    1HDR,1KNB,1NOT,1PAC,1PRA,1PRC,1PRT,1SCN 1SUB 1PRT 1SCN 1SUB 1TST 2IT2 2IT3 2NOT 2PRA 4NOT 4SDL 4TST 7MP1 7MP2 7MP3 7REF 7RQT BWHG BWIG BWLG DLH1 DLI1 DLI2 DLI3 DLI4 DLI5 DLI6 DLI8 DRIT DRSL FTD1 FTDH FTU1 FTUH HEXC HHU1 HHU2 HHU3 HHU4 HMSG HPRT HSTT HTRA ICAR IEXC IPRD ISTO ISTT IVH1 IVI1 IVI2 KNBR OECN OECP OEHD OEIL OEIR
    OEIT OESL PIHD PIND  PIOR RWAA RWAT RWCG  RWCP RWDS RWFA  RWGN RWHN RWIB RWIN RWIR RWIV RWLC RWNS RWOH RWOI RWOP RWP1 RWP2  RWPA RWPG RWPH RWPN RWPP RWPR  RWPV RWPW  RWRC RWRS  RWSN RWTS  SCNR
    TLBH
    Depending on the data you exchange between the two systems, you need to activate the necessary components.
    These components form the basic framework where the data in your order document gets stored in the respective components
    For example:A double-level order document, use the components 1HDR (header) and 2IT2 (item). For a triple-level order document, use 1HDR (header), 2IT3 (item) and 4SDL (schedule line).
    As mentioned by Nikhil and Sandeep, the above notes help you, in activating the necessary ODM's
    Kindly read the help document available is SAP IMG for further understanding.
    Best Regards
    Vinod

Maybe you are looking for

  • Satellite C660 - need help with fresh Win7 installation

    After a problem with my SatC 660 i decided to Nuke the hard drive and do a fresh install using a W7 32 Bit disk created from the web ( there is a free library of Windows 7 iso images (Sorry forgot name). So i had the disk in and the disk drive which

  • Busy buffer wait

    Hi I am getting huge buffer busy waits events on my database and its increasing following is the result of query on my database(9.2.0.8.0) SQL> select event,total_waits from v$system_event where event in ('free buffer waits','buffer busy waits') 2 ;

  • Can you make custom clothing for 3d Models?

    Hello, I am new to Photoshop CS5 Extended and mostly bought the program for making textures for 3d clothing since it has a bridge from DAZ to Photoshop which I hope will make my work go faster. I have been using DAZ and Poser for a while now and have

  • Color printing From Acrobat PRO 9.0

    I am trying to print in color from acrobat pro 9.0 but i get only black & prints. I found out from previous post that i have to diable the color management. I can change it from File->print->advanced->color management  but I am not abe to save it. do

  • MobileMe Galleries created in Aperture are syncing with iPhoto

    I used to use iPhoto, but switched to Aperture 3.  Now when I create a MobileMe Gallery, the photos publish to the site but don't show up in the Aperture library under MobileMe.  When I log in to the Mobileme site, I check the settings for the galler