What exactly is an ebay final value fee?

Is ebay final value fee the final price the item sold for which is transacted into yoyr account? Or what is it exactly, im having trouble finding a definite answer

You can often list for free on ebay up to a certain amount of items and as long as you don't choose any optional upgrades. BUT when your item sells you pay ebay 10% of the final value fee. eg if your item sells for £20 then you pay ebay £2. Your fees go into your ebay invoice which you can view in your "my ebay > account" and you are billed for it x1 per month. Normally your fees are deducted automatically via paypal. Then when your buyer pays you also pay paypal and you can view all fees at the bottom of both ebay and paypal pages.       *********************************** I give up my time to help you so a thank you or kudos would be cool.
Marking one of my replies as a solution would be appreciated if I sorted your problem. 

Similar Messages

  • Dumb Question - what exactly does "Static" mean

    What exactly does static variables and methods? What are they for?
    I know "final" means once you set it that's it..but what does static mean?

    There is also a static block use for initialising static variables.
    If you look in c:\j2sdk1.4.???\src.zip you will find the source to the libraries.
    from com/sun/image/codec/jpeg/JPEGTable
    public class JPEGQTable {
         /** The number of coefficients in a DCT block */
         private static final byte QTABLESIZE = 64;
          * This is the sample luminance quantization table given in the
          * JPEG spec section K.1, expressed in zigzag order. The spec says
          * that the values given produce "good" quality, and when divided
          * by 2, "very good" quality.
         public static final JPEGQTable StdLuminance = new JPEGQTable();
         static {
              int [] lumVals = {
                   16,   11,  12,  14,  12,  10,  16,  14,
                   13,   14,  18,  17,  16,  19,  24,  40,
                   26,   24,  22,  22,  24,  49,  35,  37,
                   29,   40,  58,  51,  61,  60,  57,  51,
                   56,   55,  64,  72,  92,  78,  64,  68,
                   87,   69,  55,  56,  80, 109,  81,  87,
                   95,   98, 103, 104, 103,  62,  77, 113,
                   121, 112, 100, 120,  92, 101, 103,  99
              StdLuminance.quantval = lumVals;
         }

  • What exactly is happening in the code mentioned?????

    Hi all,
    I want to know the working of the below code:
    The below code is the WHEN_BUTTON_PRESSED Trigger for the ENTER_QUERY (Push Button):
    DECLARE
      IT_ID1 ITEM;
      IT_ID2 ITEM;
      IT_ID3 ITEM;
    BEGIN
      IT_ID1 := FIND_ITEM('BUTTON.EN_QUERY');
      IT_ID2 := FIND_ITEM('BUTTON.CA_QUERY');
      IT_ID3 := FIND_ITEM('BUTTON.EX_QUERY');
      SET_ITEM_PROPERTY(IT_ID3,ENABLED,PROPERTY_TRUE);
      if :system.mode<>'ENTER-QUERY' THEN
       set_item_property (it_id1,label,'CANCEL QUERY');
       GO_BLOCK(GET_APPLICATION_PROPERTY(CURRENT_FORM_NAME));
       CLEAR_BLOCK(NO_VALIDATE);
       ENTER_QUERY;
      set_item_property (it_id1,label,'ENTER QUERY');
      ELSE
      EXIT_FORM;
      END IF;
    END;
    Can You please tell me what exactly is happening in the above code?
    I want to know the working of it. Help me plz.
    Thank You.
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    Oracle Forms 6i.

    what does if :system.mode<>'ENTER-QUERY' THEN mean??
    SYSTEM.MODE indicates whether the form is in Normal, Enter Query, or Fetch Processing mode. The value is always a character string.
    and what does GO_BLOCK(GET_APPLICATION_PROPERTY(CURRENT_FORM_NAME)); do?
    GET_APPLICATION_PROPERTY Returns information about the current Oracle Forms application. CURRENT_FORM_NAME Returns the name of the current form as indicated by the form module Name property.
    GO_BLOCK navigates to an indicated block. If the target block is non-enterable, an error occurs.
    As per the code, After i press the button, the label ENTER QUERY should become CANCEL QUERY, (that is when system is in ENTER_QUERY mode) .
    So when in the system is in ENTER_QUERY mode, it must display CANCEL QUERY, Right??
    in your post, you also said..
    The below code is the WHEN_BUTTON_PRESSED Trigger for the ENTER_QUERY (Push Button):
    We see 3 button in your code. How can we know which one is ENTER_QUERY button. Your code says...
    ENTER_QUERY;
      set_item_property (it_id1,label,'ENTER QUERY');
    So, it says.. BUTTON.EN_QUERY label will be ENTER QUERY
    Then why the code, (if :system.mode<>'ENTER-QUERY' THEN set_item_property (it_id1,label,'CANCEL QUERY');) ?? which says if system mode is not equal to ENTER_QUERY,
    then it tells to display CANCEL QUERY.
    it says.. BUTTON.EN_QUERY label will be CANCEL QUERY

  • What is the use of initial value in a database table?

    Hi can anyone help me in knowing what is the use of initial value which is present besides primary key while creating a table?

    Initial Value:
    Indicator that NOT NULL is forced for this field
    Use
    Select this flag if a field to be inserted in the database is to be filled with initial values. The initial value used depends on the data type of the field.
    Please note that fields in the database for which the this flag is not set can also be filled with initial values.
    When you create a table, all fields of the table can be defined as NOT NULL and filled with an initial value. The same applies when converting the table. Only when new fields are added or inserted, are these filled with initial values. An exception is key fields. These are always filled automatically with initial values.
    Restrictions and notes:
    The initial value cannot be set for fields of data types LCHR, LRAW, and RAW. If the field length is greater than 32, the initial flag cannot be set for fields of data type NUMC.
    If a new field is inserted in the table and the initial flag is set, the complete table is scanned on activation and an UPDATE is made to the new field. This can be very time-consuming.
    If the initial flag is set for an included structure, this means that the attributes from the structure are transferred. That is, exactly those fields which are marked as initial in the definition have this attribute in the table as well.
    hope it helps,
    Saipriya

  • What exactly is InheritableThreadLocal Storage, and how exactly do I use it

    What exactly is InheritableThreadLocal Storage, and how exactly do I use it?

    What exactly is InheritableThreadLocal Storage, andI have only seen one previous use of ThreadLocal objects and it was somewhere on http://www.javaworld.com on a solution to the Java double-checked locking problem.
    Roughly speaking, previously to Java1.2 you had two variable-type choices in Java. The first is a static variable that is the same across ALL instances of a class. The second was an instance variable, that is can be different in EVERY instance of a class. Java 1.2 introduced the ThreadLocal variable-type. If a variable type is ThreadLocal, then every running Thread may see a different value for the variable - essentially it is a Map of Threads to values.
    InheritableThreadLocal is finely different from ThreadLocal. They are almost identical excepting that if one Thread is spawned from another (ie. it is a "child" thread) then the value of the InheritableThreadLocal variable will be the same in the child Thread as the parent Thread.
    As to when it could be used, I'm not so sure (other than the no-brainer "when you want a variable to have different values in different Threads"). I'd be interested to hear about any instances where someone has used a variable such as this.
    how exactly do I use it?Carefully

  • What is meaning of  top % 100 values in condition

    hi ,
    i have exact meaning of   top %  100 values in conditions.
    here when ever i ran report it will come out put different values.
    the output comes interms of 6000 records.
    Regards,
    Murali

    Murali what Bhanu mentioned will work as thus...
    Assume that you get 3 records......
    Vendor| Sales
    V1 | 100
    V2|200
    V3|300
    Assume that you have got the query output as above where it sorts on the order of Vendor - but then if you want the same to sort on a KEYFIGURE - Sales - then if you apply this condition you would get
    V3|300
    V2|200
    V1|100
    Arun
    Hope it helps....

  • What exactly is token validation?

    Hi All,
    We're using jdev 10.1.2, adf bc's and jsps. A user keeps using the back button and so sporadically gets the error 'row currency has changed since user interface was rendered'. Having researched it on this site, I've found that this is due to token validation.
    Can someone please define what exactly is token validation and is it ok to turn it off?
    Many thanks,
    Liz.

    Token validation is the mechanism that's used to detect back button presses.
    Basically as the user navigates through pages by communicating to the server, the ADF engine allocates each page pushed back to the user a unique token value. Each time the user requests a new page, the previous token is given back to the server. The server checks the token it received against the token it passed out, and if they match the user hasn't used the back button. If they don't match, it occurs because when user navigates to page A they get token X, then they navigate to page B they get token Y, and next they press back button which returns to the browser's cached version of page A with token X. Next the user does a real submit back to the server and token X is passed back. The server was expecting token Y so it throws the row currency error you're seeing.
    It is not advisable to turn it off, but instead instruct your users not to use the back button. A common technique to stop this occuring is to launch the app in a browser window that doesn't have the associated toolbar.
    Hope this helps.
    CM.

  • How to See FM (RFFMS007)? What exactly is it?

    How to see FM (RFFMS007) in the system?
    What exactly is it?
    How do we use the tables in SAP?
    How to look for tables in FI and FM? What are the uses? How do we see the contents of the tables?

    Hello,
    Please check all Utility programs in Public Sector Management (PSM-FM)
    1.  General utility programs
         RFFMMONI (Monitor using PSM settings). This report displays the most important Customizing settings for the update of Funds Management (FM area, OFUP, settings for the update profile). The report also displays customer-specific update profiles that differ from the standard profile that is delivered by SAP.
         RFFMS007 (Activate/Deactivate Document Analysis in Funds Management).
         RFFMS008 (document analysis).
         RFFMS009 (analysis of FM account assignments in posted documents)
    2.  Special utility programs
         a) Former budgeting
            BPINDAN2_NEW (AVC: Determining the Index for Assignable Element)
            RFFMBUM1 (Display Inconsistency: Total Overall Vals/Annual Vals / Doc.Numbers). This program checks whether the overall values and the annual values correspond with the total of the relevant
            documents.
            RFFMBUM2 (Sum of Period Values <> Annual Values). This program determines inconsistencies between annual values and period values.
            RFFMBUM3 (Budgeting Data without Corresponding Master Data). This program determines inconsistencies on the database.
            RFFMBUM5 (Budget/Release Consistency Check). This program checks in the database whether the release amount exceeds the budget amount.
            RFFMBUM6 (Inconsistencies between Budget Structure and Master Data). You can use this program to determine inconsistencies between the budget structure tables and the master data tables.
            RFFMBUM7 (Display Inconsistency: Total Overall Vals/Annual Vals / Doc.Numbers). This program checks whether the total of the line items corresponds with the overall budget of the relevant record       for the overall values or the annual values of a specific budget type or budget subtype.
            RFFMBUM8 (Display Inconsistency: Total Overall Vals/Annual Vals / Doc.Numbers). This program checks whether the overall budget record for overall values or annual values corresponds with the
            total of the relevant line items of a specific budget type or budget subtype.
            b) Fiscal year change
               RFFMCFM1 (Closing operations monitor). You can use this report to display an overview of the settings that are relevant for the closing operations.
               RFFMCCF_DISPLAY You can use this report to display documents concerning the fiscal year change.
            c) Account derivation
               You can use transaction FMDERIVE to activate the trace. You can reproduce the account derivation during posting as a result.
            d) Payment selection (RFFMS200)
               RFFMS200_TRACE (Trace for Payment Selection Analysis). You can use this check program to analyze a complete clearing lot without debugging the payment selection program or without having to    search for the relevant information in the system.
               FAGL_SHOW_SPLIT Simulation of the document splitting using expert  mode -> this is relevant for online payment update.
            e) Federal Government
               RFMFGRCN_RP1 Reconciliation Analysis Report
        3.  Matching programs
            RFFMRC04 (for matching line items and the totals record). This report analyzes differences between line items and totals records in Funds Management. If derivations were corrected in the update run,  you must set up the availability control (transaction FMBV) again because this control is based on the totals records.
            RFFMRC01 (for matching actual data). This report checks at line item level whether the selected FI documents are updated in Funds Management.
            RFFMRC07 (for payment matching). You can use this report to match the account movements on the bank accounts and the bank clearing accounts of financial accounting with the data in Funds Management and vice versa.
            RFFMRC21 (for the reconciliation of earmarked funds). You can use this report to reconcile documents such as funds reservations, funds precommitments, funds commitments, funds blocking and forecasts of revenue. If the program determines inconsistencies, you can use transaction FMN5N (program RFFMRP03N) to correct the relevant FM commitments.
            RFFMRP07 (for rebuilding sales orders in FM). This program posts selected sales orders and rebuilds the relevant data of the open items in Funds Management.
    To understand FM itself (which means all the component/module/area) please check the following menu in help.sap.com
    SAP ERP Central Component -> Financials -> Public Sector Management ->
    Funds Management
    There you will find a lot of information related this component that is integrated with FI, CO, MM, SD, PM and so on.
    Best Regards,
    Vanessa.

  • What exactly is "other" in the AppleTV capacity bar

    Hi all,
    If I click on the AppleTV device in itunes, I notice it has the following categories in the capacity bar:
    * video
    * audio
    * photos
    * other
    * free space
    What exactly is included in the "other" category? I assume that podcasts may be in there. The reason I ask is that my "other" category seems to be growing (currently 4.56Gb out of 32.85Gb capacity, which is significant). Is there anything I can do to control the size of this?
    Many thanks in advance.

    Likely the case. You have to remember podcasts are provided by 3rd parties and by there very nature some podcasts are amateur productions or are not necessarily aimed at itunes specifically. There is a chance that some podcasts, whilst playing just fine, don't actually meet the specs from the tv prospective and as such even when completely downloaded don't properly get moved to the appropriate category.
    I've just downloaded the 'Hidden Universe' podcasts, I watched the 'other' category increase in size as more of the podcast downloaded, once complete the 'other' reset to its original value and 'video' increased appropriately.

  • What exactly is balance in Oracle Payroll. Can someone give an example pls

    Hi
    I am a newbie to Oracle Payroll. Could some one xplain what exactly is balance in Oracle Payroll. Can someone give an example pls. Is there any link which would be useful to clearly explain this.

    Results of Payroll run get accumulated in the Balances. The accumulation happens according to the dimension like ASGRUN holds the value of current payroll run, ASGYTD holds the cumulative value for the current financial year and gets reset at the beginning of the next financial year, ASGQTD holds the cumulative value for the current quarter and gets reset at the beginning of the next quarter etc.
    You can see the values of the balances for different dimension after running the payroll.
    View -> Assignment Process Results -> Balances.

  • What exactly is contained in "Components Level" output of Harmonic distortion Analyzer VI?

    The Components Level output of the Harmonic Distortion Analyzer VI is described in the help file:
    "components level contains the array of amplitudes of the measured harmonics in volts if the signal in is in volts. The array index is the harmonic number including 0 (DC), 1 (fundamental), 2 (second harmonic),... n (nth harmonic), up to and including the highest harmonic."
    However, why is there more than one measurement of each harmonic included in the array? Specifically, probing the wire says it's a 1D array of clusters with one element each, the clusters are 1D array of doubles.
    So, multiple double values are associate with each harmonic. What exactly do these values signify? Creating an indicator on the wire (as below, "component levels" - the indicator is right off the hamonic analyzer, not the bit below it with the index array/unbundle stuff) shows four of the numbers in the array. Sometimes the fourth or even third are greyed out, meaning that the array varies in size from one iteration of my while loop to the next.
    I would think that at the least, magnitude and phase would be included, but experimentation with a source that has 60Hz, plus a harmonic (7th, or 15th, etc) at -20 degrees doesnt' correlate with the data. I don't see "-20" or the radian equivilant at all.
    Any ideas or a pointer to more detailed information than the help file?

    Hi Xooch,
    I'm not sure that I totally understand what you're asking about.  When I went to recreate this, I used both a cluster indicator and a double array that had been indexed and unbundled from the original output.  
    What do you mean by "multiple double values"? I only saw one value for each harmonic, so I'd like to clarify that.
    I'd also like to clarify what types of values are being passed into the function and how many channels are being used.  I think these answers may be helpful in finding out what's going on with the cluster greying out some of the values.  I'd also like to verify that these values are being greyed out while the VI is running through different iterations of the loop as opposed to when the program has stopped and restarted.
    Thanks,
    -Dave C
    Applications Engineer
    National Instruments

  • Sync - merge - what EXACTLY do these terms mean?

    Howdy. I recently plunged into the iPhone world & I'm LOVING IT!!!!!!
    So, what exactly does SYNC & MERGE mean? what will be the final results?
    with my iPod shuffle, I'm able to "auto fill" from a folder of pre-selected podcasts in iTunes. After listening to the iPod for awhile, I reconnect the iPod to iTunes (on the computer) & the podcasts in iTunes are updated as with actions taken on the iPod. for example, iTunes on the computer will indicate wether or not I listened to these particular podcasts on the iPod or not, & will also remember where I left off. So it seems that the iPod updates iTunes on the computer.
    But, ... this does NOT seem to be the same with the iPhone. It seems like when I plug in my iPhone to the computer & "sync", iTunes isn't updated as to what I already watched on the iPhone, like the iPod did. In order to update iTunes with what i already watched on the iPhone, I need to manually delete the vidcasts from the iTunes on the computer, which seems like a step back from my little iPod shuffle.
    ALSO: if I change contact information on my iPhone, will this updated info be lost when I connect the iPhone to the Computer?
    So what exactly does SYNC & MERG mean?
    It seems that the iPhone reacts differently for different media. I'm very confused & I wish there was a place to understand all this without the generic "sync" word being used without explanation. does sync mean replace, update, ... ????
    I've been searching around the net for this info for awhile, but all I find is these terms, without sufficient information as to what exactly MERGE & SYNC actually do.
    Can someone suggest some place that explains this in the detail I'm looking for?
    Thanks so much.
    Jesse Luke

    Under the Podcasts tab for your iPhone sync preferences, there are various options. I have sync all unplayed episodes of selected podcasts to be transferred to my iPhone. If I listen to an podcast on my iPhone in it's entirety, the podcast will be removed from my iPhone when syncing with iTunes.
    The iPhone includes a sync process - some of the data included with the sync process is a one way transfer process only from your computer to your iPhone such as iTunes music, and the same for selected photos to be transferred from your computer to your iPhone.
    The sync process for contact info, calendar events, and Safari bookmarks with the supported applications on your computer is a bidirectional or true sync process. When syncing an iPhone for contact info the first time with a supported application on your computer that includes contact info, you will be provided a merge prompt if your iPhone includes any contact info that was manually entered in your iPhone's address book. This will merge the contact info between the two. After the first sync or merge for this data, it will be a bidirectional or true sync process. Change info for a contact on your iPhone, and the info will be changed for the contact info with the supported address book on your computer when followed by a sync, and vice-versa. Add a new contact with the supported address book on your computer, and the new contact will be transferred to your iPhone's address book during the next sync, and vice versa. The same applies to calendar events when syncing with a supported calendar app on your computer.

  • What exactly is the Verizon CD for

    We received a CD when we signed up for DSL. I am just wondering exactly what the purpose of this disk is?

    I got a CD when I first signed up for DSL. 
    It's software that walks you through the process of setting up your DSL link. 
    First, it walks you through putting supplied filters in line with all your regular telephone equipment.  This section uses video to make the whole process crystal clear even to a complete neophyte.  Verizon seems to have put in quite a bit of effort to try to get most new customers through this stage without having to call tech support.
    The second stage involves plugging the DSL router into the rhe PC via an ethernet cable,  into the phone line via a phone patchcord, and into AC power.  These cables are supplied.  This stage also uses video.
    The next stage is a line test.  The video is very limited during this stage.  The test extends to the modem that's built into the DSL router, the phone line itself, the modem at Verizon's end,  and the internet gateway also at Verizon's end.  It logs into the gateway using some kind of all purpose account, with a username like "newDSLUser"  (I forget the exact username).
    The final stage involves setting up the user parameters like the accountname and password assigned to this user for internet access, and access to a home page supplied by one of Verizon's partners.  My CD often flamed out in the middle of this stage, but no matter.  It got far enough so I could use the service. 
    The video is OK in this stage, but it's a little less simplified that than the first stage.  Perhaps setting up an account is just more abstract than plugging in a filter.  Or perhaps they have ot keep changing it over time to stay in sync with their service.
    Overall, it's a good intro to DSL, and most users should be able to get up and running with it without calling a tech.
    You may have a different version of the CD.  Your mileage may vary.

  • What exactly Implementation project means ?

    I am having very limited knowledge on Implementation project!
    I know EWM Module as i am doing automation testing. i just wanted to know what exactly EWM implementation project means? what are the steps involved?

    Hello Manjunath
    A project implementation for EWM requires definitions regarding structure of warehouse, in order to customize it based on a business blueprint. Then you start to change the system and test system behaviour. You must perform tests and finally move solution to production (this is a short resume of ASAP methodology).
    Best regards
    Carlos Díaz

  • What exactly 'PAYLOAD' Means???

    What exactly 'PAYLOAD' means.??? Please help me with simple examples and in context of BPM process.

    Hi
    I hope the earlier links from Sudipto should give you an idea. In simple terms, in context to a BPEL or BPM Process, I would treat Payload as the Input data that each user/service in that Process will Work On. Means they want enter or modify that data.
    Simple Example: Vacation Request BPM Process. As an Employee, I want to go on Vacation and this has to be approved say by 4 people above me (I am the lowest last employee in the company). They can either Approve or Reject. Approve will go forward, and Reject will go in back direction.
    Me Employee -> Team Lead -> Project Manager -> Manager -> Supervisor.
    The payload is simply the data or the information that each user sees. In this case its a Vacation Request, so the data will be like
    Vacation Start Date
    Vacation End Date:
    Reason For Vacation
    Emergency Contact.
    We do need final response back from the superiors after final approval. And that can be like Approved or Rejected with Reasons.
    Since this is a process, everything is a XML. And the Payload will look like this: You will define a .XSD Schema that produces a xml like shown below.
    <vacation>
    <vacation_request>
          <st_date></st_date> --- of type Date
          <end_date></end_date> --- of type Date
          <reason></reason> --- of type String
          <contact_phone></contact_phone> --- of type number
    </vacation_request>
    <vacation_response>
          <outcome></outcome> --- of type string - Approve or Reject
          <reason></reason> --- of type string - Reason why vacation request is rejected like there is a production deployment next week etc etc.
    </vacation_response>
    </vacation>If you take a Ordering system, it will have lot of XSD elements like above to show product detail, line items, discounts, shipping address, credit card details etc etc.
    I hope this should give you an idea.
    Thanks
    Ravi Jegga

Maybe you are looking for