Excluding Additional Charges Paid from Party Dues

Hello
There is a requirement where a special charge has been paid during invoicing. this has to be added in invoice or GRN. The amount will not be in the party's account due but should be included in item valuation as cost.
To explain in detail -
A/P Invoice amount Rs 100 (payable by the vendor)
plus inter-state Entry Tax of Rs 10  - This party wiill not pay. (But this has be considered in Item Valuation)
How to incorporate this scenario. If it is added as Freight then it is adding with total bill amount and becoming payable by party.
Thanks and Regards
Indrajit

Hi Indrajit,
Have you tried Landed Cost function?
Thanks,
Gordon

Similar Messages

  • I cannot download an app from the app store, it keeps loading until it says "You have already purchased this app so it will be downloaded no at  no additional charge", and then it prompt for password and I input it after which nothing happens.

    I cannot download an app from the app store, it keeps loading until it says "You have already purchased this app so it will be downloaded no at  no additional charge", and then it prompt for password and I input it after which nothing happens.
    I know my icloud has record of my installing this app before, but that was the first install that was failed during that time some other apps also keeps loading without respond whey they updated itself, and this app didn't install before I restart the device. But I don't see this app on my device after I restarted the device so it should have been installed on my device. It seems icloud has created some kind of dead loop that makes it not able to get the correct status about this app on my device.
    I have no problem install this app on my other device (iPad) with the same account, but just fail on my iPhone. And it just fine installing other apps...... What happened !!?? @@
    Please help !!! 

    Someone help! I dont know how to do this and please put the words into an easy way to understand because im young...

  • I tried to install the Watch ABC (a free app) on my iPad from the AppStore. It would not download. I attempted to install it a second time, and got the message "You've already purchased this, so it will downloaded now at no additional charge." Any advice?

    I tried to install the Watch ABC (a free app) on my iPad from the AppStore. It would not download. I attempted to install it a second time, and got the message "You've already purchased this, so it will downloaded now at no additional charge." Any advice? This is a fee app so I do not understand the message referencing a purchased app. I get the cloud symbol, but it will not download. I closed the App Store app and restarted my iPad, but to no avail. Any assistance would be greatly appreciated.

    You are aware that there the app may have downloaded and been placed on the second screen.  Not the main one.  Can you swipe to the right to see if it is there?

  • HT1918 Additional charge when I purchase from Itunes store??

    Hi, I recently purchased an audiobook for $11.95 via my Iphone.  When the charge finally came through on my bank account there was an additional charge of $2.11? What is this for? I am not far from calling my bank and opening a dispute again Itunes.  Please help!

    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • Interactive report: Can I exclude a particular column from single row view?

    Hi -- I posted on this yesterday (Possible to exclude interactive report column from single row display?
    a bit anxious for suggestions, I guess!
    I've added a column with edit-link functionality to my interactive report query (that is, the link
    is not attached to the database data... it's an additional column and shows an icon). It's also
    in addition to the default single row view link. (We need both.)
    Unfortunately, the Edit link column shows up in the single row view. I've pared it down as much
    as I can: the label is empty, and the null value shows as "-". But an extra row with "-" is pretty
    ugly. Is there a way to always, completely exclude this column from the single row view?
    I know I could put the edit link on a data column, but:
    1) I want the link to always be to the left of the data (and the user can re-order columns)
    2) when the user doesn't have edit privileges, the link will need to be disabled or just not
    be displayed, and I think that would be a problem if the link were on the data. (true?)
    Thanks,
    Carol

    Please disregard this thread, and the one it refers back to. I see a flaw in the design of what I was attempting to do! Creating the link for Editing as a column means the user could inadvertently not display it, or move it, or... any number of problematic scenarios.
    Thanks,
    Carol

  • Writing additional charges in Order

    Hi,
    I have to write additional charges in the Dialog Order (139) in relation to weight.
    Some facts affecting the proceeding:
    1)
    The weight have to be sumed up iterative. So it is not possible to work with Formatted Search and I have to work over the UI.
    Steps I finished already:
    1)
    Activating the devilery-costs in the settings of Order. The Form "dumps" is available over a linked button.
    The column 3 is the column that takes the amount and sends his value to the textbox additional charges.
    2)
    A program that reads all the values I need to determine the value of costs out of a UDT
    the following steps I tried:
    1)writing in the matrix of dumps
    this.form = null;
    this.form = this.sboConnection.getSBOApplication().Forms.GetFormByTypeAndCount(3007,1); //formType = 3007
    this.matrix = (Matrix)this.form.Items.Item("3").Specific;
    this.editText = (EditText)this.matrix.Columns.Item("3").Cells.Item("1").Specific;
    this.editText.Value = amount;
    problem: the program drops out when I try to initialize the form
    2)writing to the textbox additional charges in form Order
    this.form = this.sboConnection.getSBOApplication().Forms.GetFormByTypeAndCount(139,1);
    this.editText = (EditText)this.form.Items.Item("89").Specific;
    this.editText.String = amount;
    problem: I cannot set the value, I because the item disabled. When I try to enable it the program drops out.
    The table for the charges is OEXD. But the only value that affects the corresponding cell or textbox is fixed amount.
    The Order- Dialog gets it, when it is loading.
    Maybe somebody has a hint for me.
    I will appreciate it.
    Marc

    From my point of view, i would suggest to use the DI-API,
    access the Document-Object (and the Document-Objects
    child, the DocumentsAdditionalExpenses-Object) after
    the order is saved.
    But I suppose you would like to add the Additional Expenses before the order is saved,
    so the user who wants to save the order can see the additional costs
    and decide whether to save or not?
    According to the Manual, Additional Expenses must be defined.
    (Administration-> System Initialization-> Document Settings, General Tab->
    Define Expenses button)
    By DI-API, use the AdditionalExpenses-Object, in VB6 something like
    Dim objAddExp As AdditionalExpenses
    Set objAddExp = vCmp.GetBusinessObject(oAdditionalExpenses)
    '// set needed properties here
    objAddExp.Add
    1)
    "UI-API-Clicking" Item 91 will open the Expenses Window
    with type 3007 (I think thats what you do at the moment).
    Hm, you get the handle to the window GetFormByTypeAndCount..
    > problem: the program drops out when I try to initialize the form
    What do you mean with: the program drops? When you call GetFormByTypeAndCount?
    Maybe you are to early with GetFormByTypeAndCount and should Sleep() and DoEvents or
    something until the form is loaded?
    Personally I would try to store the "new" Expenses value somewhere,
    react on the FORM_OPEN, fill the remembered value to the matrix
    and UI-press Item 1.
    This way you don't need to have a reference from the order form to the expenses form
    or the other way arround, the expenses form is modal, anyway.
    2)
    According to the UI-API manual, you can't enable system items.
    Message was edited by: Frank Moebius

  • Message no. TPM_TRAC1209 (Charge / Tax from 30.10.2009 was fixed (test run)

    Good morning people.
    We are having the following issue when running T-code TBB1.
    We created 2 additional movements for Money Market products. If we DON´T include these 2 movements in Money Market contract and then run TBB1 we don´t have any issue, but whenever we use these 2 additional movements we get the following message:
    Charge / Tax from 30.10.2009 was fixed (test run)
    Message no. TPM_TRAC1209
    This message prevents the accounting document creation.
    Have anybody already passed throuhg this situation?
    Any help is appreciated.
    Best Regards,
    Volnei Luiz.

    Hi,
    Please check whether it is just an information message.  Generally these kinds of messaged are information messages only.
    If you defined withholding taxes and all then check whether you have defined the corresponding accounts properly.
    Also remove the test run and check.
    Please specify what kind of movements you have defined.
    Regards,
    Ravi

  • Additional Charges for transportation.

    We use transportation management for our shipments to and from the DC and within stores.
    There is a new requirement to add some additional charges to the some of the shipments. I am trying to understand what is the best way to implement this.
    During the winter months, for some of the transportation there is additional changes such as heated transportation so there will be heat charges added to the normal transportation rates in the cost document. This could be a fixed value or percentage charge.
    I am thinking of creating new special processing indicatior and making them same as the existing ones but with the added heat charge.
    Is that the best option or is there another way.
    I am really looking for a solution for this...

    Thanks for the reply Mike.
    I would like to propose different options to the client.
    I am thinking setting up as condition (through TK11/TK12 for the combination of Porg, service agent and special processing indicator) is required as they dont want to add this in each document all the time. So I was thinking of creating a new special processing indicator, setting up the conditions for then and just adding this to the stages in the shipment doc.
    I like the idea of making this come up for a certain date or period. How can you make that happen?
    Is there any other option other than the conditions/special processing indicator. Like I said for some forwarders this is % based and for some it is fixed value for a certain KM.

  • Is there any additional charges texting a person in Canada if I have unlimited texting?

    Hey everyone,
    I have a phone plan with unlimited texting, and I feel if I contact Verizon they're just gonna give me a super confusing answer. I was wondering if it cost any extra money to text a person's phone in Canada if I live in the United States (Wisconsin) and I have unlimited texting. Some results on this site say no, other's say yes.
    I just want a clear, clean cut answer of "Yes, it will cost extra to text a Canadian person if you live in the US and have unlimited texting." or "No, it won't cost extra to text a Canadian person if you live in the US and have unlimited texting."
    Thanks!
    Hunter

        pugsarecool,
    Help has arrived! What exact plan do you currently have? Is it a Nationwide or More Everything share plan?
    In most cases, text messages sent from the United States to Canada are covered at no additional charge as long as you have the unlimited text message plan.
    EfrainM_VZW
    Follow us on Twitter @VZWSupport

  • HT201263 My I phone 5 got hot actually very hot.. Boiling hot and then the battery charge went from 100 to 50 and within a minute was shut down and never on again...I bought the phone from the apple store in manhattan new York I bout the unlocked phone

    My I phone 5 got very hot actually boiling hot although it was not exposed to any external heat ...it was fully charged and within 10 minutes it was half charged 50% and within one minute it was shut down ... Tried re charging through the computer and through the power but no response the phone is totally black... Tried connecting to I tunes and no response.. The thing  is that I bought the I phone 5 on the 23 rd December 2012 from Manhattan new York and I live in Qatar and there is no service centre in qatar .. I am now without a phone although I paid 706$ and that's a big amount .. I am disappointed .. I bought an original phone from the original apple store and I ended up with a product that didn't survive for a month.. What quality assurance do the apple have on their products...I need help here

    I appreciate the fast reply.
    Well, I checked the iphone and the battery charged going from the bolt to the plug in the upper right hand corner very quickly. On my other cell phones, charging took a REAL long time.
    Again, is this normal? I unplugged the iphone from the charger and I am going to monitor the battery power today. I find it odd that the battery would work on standby for 4 days without recharging the battery and then start doing something wacky. Any thoughts?

  • Additional charges in contract billing

    Hi friends,
    We have a scenario where a billing is done with reference to a value contract.So the target value is given in the contract and accordingly with sap standard when a billing is done the invoiced value is deducted from the target value.
    Now during billing at times we have to charge some additional charges to the customer based on the requirement for ex: detention charges/mobilization charges etc. But this charge is also getting deducted from the contract vaule which in our case cant be finalized and added to contract value during creation of contracts as these charges are variables and not constant charges.
    So please suggest that these charges should not get added to the contract value in turn reducing the contract value when billing is done.
    Thanks
    AJ

    hello Friends,
    Any Suggestions?otherwise i have to close this issue
    AJ

  • Additional Charge on CC different than Receipt

    Hello.
    I recently made a purchase from BestBuy.com. I received an email confirmation with the total amount of the purchase, as I expected it to be. But then, when I looked at my credit card statement, I saw the expected charges AND another charge of a smaller amount. When I called customer service, they couldn't explain why there was an additional charge, they just kept saying that it was part of the cost of the item that for some reason wasn't included in the original charge. When I kept saying I had an email confirmation that said otherwise, the customer service manager was befuddled. He was unable to find the email confirmation that Best Buy sent me, and he declined my suggestion that I forward him the email that I had in my inbox. At the end of the day, I was on the phone for almost an hour and he was unable to help me. I was going to dispute the additional charge thru my bank, but wanted to at least reach out one more time to Best Buy to see if there is anyone who could help me. I can give you all my order details upon request. Thank you.
    Sincerely,
    James [removed per forum guidelines]

    Hello James,
    As I typed that I unconsciously read it in my head with a British accent, which made me feel like I was someone from MI6 addressing James Bond. In all seriousness, I am sorry to hear of your possible charge discrepancy with your recent BestBuy.com order. Any confusion you may have experienced is totally understandable. I would be glad to look into this for you further.
    Typically, the only time you may see the price you were charged differ from what your order confirmation email showed, is if the sale price of your item dropped before at the time it shipped or when you picked up the item in store. More information on this can be found here.
    In order for me to research this for you more, I have sent you a private message to obtain some information regarding your order. To check your private messages, click on the envelope in the upper right-hand corner while you are logged into the forums.
    Best regards,
    JD|Social Media Specialist | Best Buy® Corporate
     Private Message

  • My order have a status: "Payment action required: We are unable to obtain an authorization for the credit card you provided. Please contact your card issuing bank. Please update your payment method to continue with this order". But i paid from AmEx.

    My order have a status: "Payment action required: We are unable to obtain an authorization for the credit card you provided. Please contact your card issuing bank. Please update your payment method to continue with this order". But i paid from AmEx. And my money blocked when i see it in internet banking.

    Have yuo contacted AmEx? From what you describe it seems like AmEx is blocking the charge.
    You can contact iTunes if you want by:
    Contact iTunes

  • Is there an additional charge to use Skype

    Is there an additional charge to use Skype?

    Skype charges for some calls which you pay for in advance.
    If you use cellular data, it will be subtracted from your monthly allowance and if you use more than your allowance, you will be charged for overages. Verizon does not charge you for the use of Skype, but it does charge you for the use of cellular data in the form of overages if you use more than your monthly allowance.

  • HT204088 how to remove charge card from account

    How do I remove a charge card from my account

    If you only want the free apps, take a look here:
    http://support.apple.com/kb/HT2534
    Read the steps carefully as the order in which you follow them is  critical. Note that you can do this only when creating a new Apple ID. You cannot use an existing ID. 
    You will of course not be able to get anything other than the free apps without entering in some sort of payment method (credit card, prepaid iTunes card, gift certificate, etc.)
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

Maybe you are looking for

  • InDesign crashes on export to IDML. Both Mac and Windows

    Hello, We are working on a book. Now that we've started indexing, we've run into a nasty bug that corrupts our file and causes InDesign to crash. We saw suggestions to export the file to IDML and then reopen in InDesign. We've done that several times

  • Character display problem on Podcast page

    None of the characters are displaying correctly when I go to the Podcast homepage thru ITunes. I get a bunch of '|'s instead. I looked at my language settings and it is set correctly to "English". What could be the problem?   Windows XP  

  • CR2 files from Canon EOS 7D

    I am attempting to download pictures from my Canon EOS 7D and it will download only 2 of the 111 I hae on the memory card and claims the ramining 109 are in an incompatible CR2 format.  The two pictures it is downloading are also in the same CR2 file

  • List of supported nVidia cards (Premiere Pro CS6)

    Hi all-- I can't seem to locate the latest list of supported nVidia cards.  (For Mercury engine) The only list I could find contains no 6-series nVidia cards!  That can't be right! Can someone point to the latest list?

  • How can I turn off the sticky window palettes?

    It drives me crazy when all of my tool/window palettes stick together and collapse - how do I turn this feature off?