Freight amount payment to some other member

Hello Experts,
I have A/P invoice of amount 1600 and Freight amount 500, Total = 2100.
As Vendor has been credited with total values i.e. 2100, and 1600 and 500 to other two accounts respectively.
can we make a payment for freight amount i.e 500 to some other VENDOR. Lets say transprot company ?
Help Required,
Thanks & Best Regards,
Shazad Nazir.

To link freight costs to items, you would need to use a landed costs document. You would then  create an AP Invoice to the 3rd party vendor for the freight.

Similar Messages

  • Can i use some other company's locked iphone? or can i get official unlock from apple? cause i had iphone but it got water damage and don't want to pay crazy amount of money to get brand new...

    can i use some other company's locked iphone? or can i get official unlock from apple? cause i had iphone but it got water damage and don't want to pay crazy amount of money to get brand new...
    and i m getting locked phone from my family memeber for free. but he's with some other carrier. so can i get official unlock for that phone. please help me with this.
    thank you

    Only the original cellular provider can authorize unlocking. You will need to contact them to determine if they offer unlocking and if the phone qualifies.

  • Excise duty and freight amount not capture

    Dear All,
    Stock transfer between two plants (MFG to SALES)
    I have assigned Excise and freight condition in RM2000 pricing schema and done the
    stock transfer(VL10B,VF01,J1IIN) from one plant to another plant, But at the time of MIGO
    at receiving plant accounting entry are happening based on the VPRS price (Inv. FG Cr at
    supplying plant and Inv Dr at receiving plant), ED and freight amount are not adding
    in the material price at the time of MIGO.We are using pricing procedure at the time of
    delivery for billing.Plz advice whot wrong is there.
    regards,
    SPS

    Hi
    Can u pls chk in your pricing procedure weather the stastics chk box is ticked for the respective condition type.
    If so pls remove and try again.
    Vijay

  • Vendor open line item amount payment in app through different house banks

    Hi,
    Kindly Help me.
    Our client requirment is vendor open line item amount payment in app through using different house banks is it possible.
    Please let me known
    Thanks & Regards
    Ramu

    Hi
    Generally , you can assign a default house bank and account id in the vendor master record. During execution of  Automatc payment program  this house bank will be used ( provided your APP configuration via FBZP and APP parameters are in line ). However, you can change the default house bank at the document line item level to a different house bank and this would be checked with house bank configuration via FBZP ( and your APP parameters ) and payment made via the preferred house bank .
    You may also change the house bank while editing the Automatic payment proposal through a re-allocation of house bank .
    Hope this helps.
    Regards
    VidhyaDhar

  • Freight  Amount not shown in Target Documents

    Hi ,
    I have created a Purchase order with Freight Charges , But when i m copying the PO to Targets Documents(i.e GRPO, Invoice) then Freight amount is Not appeared . Pls suggest what to do  in this case .
    Regards
    Raman Preet singh

    Hi raman.sap 
    Check this
    Administration -> General -> Setup ->Freight - Setup Window
    Drawing Method Specify the required calculation method of the freight per row. The calculation method you select becomes evident when you copy rows from a base document to a target document. The options are:
    None u2013 No freight will be copied to target document.
    Quantity u2013 The amount is divided into the item quantity and each unit carries the same amount of freight.
    Total u2013 SAP Business One calculates which part of the document total or row total is copied to the target document. It then adds the relative amount of the document or row freight to that target document.
    All u2013 Copies all the freight to the target document.

  • Use a Java Script variable's value in some other  jsp ....how?

    Please help me.................
    <%@ page import="java.util.*" %>
    <%@ page language = "java" import="java.sql.*,javax.servlet.*,javax.servlet.http.*,java.util.*" session = "true" %>
    <HTML>
    <HEAD>
    <TITLE>Create Employee</TITLE>
    </HEAD>
    <BODY>
    <%
         Connection conn = null;
         Statement stmt = null;
         ResultSet rs = null;
         try {
              Class.forName("com.mysql.jdbc.Driver");
    conn = DriverManager.getConnection("jdbc:mysql://10.203.143.55:3306/bdaymgr" ,"root","mysql");
              stmt = conn.createStatement();
              rs = stmt.executeQuery("Select emp_id,emp_name From employee_info ");
              System.out.println("rs " + rs);
    %>
    <script language="JavaScript">
         function OnSubmitForm(){
         var box = document.form2.UserList;
         var where_to = box.options[box.options.selectedIndex].value;
         if(where_to =="")
    {document.write("Please select something");}
         else {Dont know what to do here }
         </script>
    </script>
    <center>
    <FORM NAME = "form2" onSubmit="OnSubmitForm();">
    <table>
    <TR>
         <TD width="11%">User ID : </TD>
         <TD width="180%"><select name="UserList" size="1">
         <option>-- Select A User ID --<option>
         <% while (rs.next()) {
         %>
         <option value='<%= rs.getString("EMP_ID")%>' ><%=rs.getString("EMP_ID") %></option>
         <% } %>
         </select>
         <input type="hidden" name="score" value="">
         <INPUT TYPE="SUBMIT" name="Submit" VALUE="Submit">
         </TD></TR>
    </TABLE>
    </FORM>
    </Center>
    <%
              stmt.close();
                   rs.close();
              catch(Exception e){
                   System.out.println("Error : "+ e);
                   response.sendRedirect("errorcreateSession.jsp");
    %>
    </BODY>
    </HTML>
    As u can see i have extracted emp_id from the employee_info table and populated it in my drop down list
    In the javascript i have used a variable "where_to" which keeps track of what the user has selected in the drop down list
    I want to use this value of "where_to" in some other other jsp(say Admin.jsp) to carry out an insert query
    how can i retrieve this value of "where_to" from Admin.jsp so that i can carry out my insert query
    Thanx in advance i certainly hope that u will help me

    I made these changes in my Guest.jsp page(as u mentioned):
    <FORM NAME = "form2" onSubmit="return OnSubmitForm();" action="Admin.jsp">
    <select name="UserList" size="1">
         <option>-- Select A User ID --<option>
    </select>
         <INPUT TYPE="SUBMIT" name="Submit" VALUE="Submit">
    <script language="JavaScript">
         function OnSubmitForm(){
         var box = document.form2.UserList;
         var where_to = box.options[box.options.selectedIndex].value;
         if(where_to =="")
    document.write("Please select something");
    return false;
    else
    return true;
    </script>
    Now have a look at my Admin.jsp page:
    <%@ page import="java.util.*" %>
    <%@ page language = "java" import="java.sql.*,javax.servlet.*,javax.servlet.http.*,java.util.*" session = "true" %>
    <HTML>
    <HEAD>
    <TITLE>Create Employee</TITLE>
    </HEAD>
    <BODY>
    <%
         Connection conn = null;
         Statement stmt = null;
         ResultSet rs = null;
         PreparedStatement ps = null;
         try {
              Class.forName("com.mysql.jdbc.Driver");
    conn = DriverManager.getConnection("jdbc:mysql://10.203.143.55:3306/bdaymgr" ,"root","mysql");
              String s=request.getParameter("UserList");
              String m=request.getParameter("month");
              String y=request.getParameter("year");
              String a=request.getParameter("amount");
              String sql="insert into contribution_info values(?,?,?,?)";
              ps=conn.prepareStatement(sql);
              ps.setString(1,s);
              ps.setString(2,m);
              ps.setString(3,y);
              ps.setString(4,a);
              ps.executeUpdate();
              System.out.print("Values Entered");
              %>
    <center>
    <FORM NAME = "form3" action="canBeAnyPage.jsp">
    Month :<br><input type=\"text\" name="month"><br>
    Year :<br><input type=\"text\" name="year"><br>
    Amount Paid :<br><input type=\"text\" name="amount"><br>
    <INPUT TYPE="SUBMIT" name="Submit" VALUE="Submit">
    </FORM>
    </center>
    <% stmt.close();
                   rs.close();
              catch(SQLException e){
                   System.out.println("Error : "+ e);
                   //response.sendRedirect("errorcreateSession.jsp");
    %>
    </BODY>
    </HTML>
    I dont know why but when i select one of the emp_id from the drop down list and press submit it does not show anything
    I can see the value of "UserList" in the url which is correct
    Probably there is some problem in my Admin.jsp page
    Please find time to have a look at my code
    Help would be really appreciated
    thanx

  • Logo displaying in productin but not displaying in some other user

    Hello experts,
    I developed payment advice sheet using scripts and transported to production successfully.In production also the output is dispalying correct but some other user (clnt uses different user in that only logo is not displaying) remaining output is correct.
    But only logo is not displaying.But in production logo is displaying.What is the problem?
    please help me in this?

    Please clarify your posting...
    In production, the logo displays correctly for all but one user?
    Or, did you mean that in the production instance, the logo is correct, but in other SAP instance(s), such as training, etc., the logo does not appear? 
    If the second case, check to see that transport completed in all target instances.
    If the first case, sorry, no ideas about what would cause that.

  • How To Add Freight Amount in Invoice Before the Invoice is Posted Through SDK

    Dear All,
    I have a requirement in SAP B1 9.0 where the user want to add the freight amount in the freight window based on an udf value automatically .
    So if there is an possibility of adding the freight amount based on an udf calculated value though SDK before the Invoice get added in the Database.
    Please suggest if this is possible through SDK or any work around for this scenario in SAP.
    Thanks & Regards,
    Amit

    Hi Amit,
    Here is a way to do it via UIAPI:
    Setting a Freight by the UI API ?
    If you need to do it via DIAPI, have a look here:
    How to update amount in freight column(INV3) of A|RInvoice through SDK
    DI Copy AP(AP Invoice) from PO(Purchase Order)
    Populating Freight Charges on Sales Order
    Freight in A/R Invoice
    Hope it helps.
    Thanks & Regards
    Ankit Chauhan

  • Freight amount by percentage - FMS

    Dear experts,
    there is a requirement from my client saying that their vendors will say the freight in percentage only. so every time the user puts the PO he needs to calculate manually for the freight and enter it.
    Is there any way that we can write an FMS query for this. like, if we create an UDF in the document freight charges and enter the percentage in that. so that the amount field can be populated based on the percentage entered.
    Please help me.
    thanks and regards,
    Yeshwanth Prakash

    Hi Yeshwant
    Directly it is not possible to calculate the Freight based on the percent you define on the Freight Screen UDF. The reason being that FMS is applicable on the Active Screen only. When you open the Freight Screen the PO screen is Inactive thus not triggering the FMS, hence the error.
    Still if you want this option then you can ask the developers to write a simple code to calculate the freight amount based on the UDF percentage.
    For this purpose there is another work around which is mentioned below. But here the problem is that you cannot do it on the Total PO value but will be based on the Line Total.
    FIrst of all you enable the Freight 1, Freight 1  (LC) in the Form Settings for Purchase Order Screen. Once this is done then you create a UDF for capturing the Percentage that your vendor mentions. Write a FMS in the Freight 1 (LC) field to calculate the amount based on the Percent and Row Level Amount.
    Hope it helps.
    Regards
    Rohan S. Kamble.

  • Excise duty & Freight amount

    Dear All,
    Stock transfer between two plants (MFG to SALES)
    I have assigned Excise and freight condition in RM2000 pricing schema and done the
    stock transfer(VL10B,VF01,J1IIN) from one plant to another plant, But at the time of MIGO
    at receiving plant accounting entry are happening based on the VPRS price (Inv. FG Cr at
    supplying plant and Inv Dr at receiving plant), ED and freight amount are not adding
    in the material price at the time of MIGO.We are using pricing procedure at the time of
    delivery for billing.Plz advice whot wrong is there.
    regards,
    SPS

    Have you got solution for this?
    I am also looking for the same.. Can you please help me?

  • Fixed Freight Amount During GR

    HI Gurus,
    I want Freight Amount getting posted fully at the time of GR eventhough there is change in GR quantity.
    Case:1
    PO quantity = 100
    Freight in PO = 10 (Fixed)
    GR quantity = 90
    Freight in GR = 10.
    In other way, Total Freight Amount should be posted during first GR itself. Here we are not expecting 2nd GR.
    I am able to change Freight Amount in LIV, but postings goes to price difference a/c. We dont want this.
    As of now Freight amount is getting apportioned based on GR quantity. How to achieve this

    hi
    check the frhi condition (tick for header condition)
    using this for header level u can give  freightt for all items at once
    add this in ur pricing and then try po and add value of freight in header levelk condition
    conclusion u can give freight on total items
    if ur freight is fixed for a vendor and material then give the amount in inforecord
    regards
    kunal
    Edited by: kunal ingale on Sep 5, 2008 11:09 AM

  • Discount amount should not be from total amount + freight amount while pay

    How can I set up the system so that unplanned costs goes to fright account ( which I think is working fine) at the invoice level but also the discount amount while paying is not taken out from the amount +freight amount. We need to pay so that discount amount comes out from only amunt-freight amount.
    Please help
    Thanks
    Ritu

    Dear All,
    Any BTE is available for my req.
    In validation  what will the steps i have to follow.
    Do suggest

  • Freight amount during GRN

    Dear Gurus,
    Material's order unit and pricing unit is in PC and freight amount needs to be in Rs/KG(on the unit of KG), as the vendor will take the freight as per the actual weight of the material, same will come to know during weighing at the time of GRN and during the creation of PO conversion factor is not fixed between material pricing unit(PC) and freight unit(KG).
    I thought of giving the freight amount in the freight condition type along with the conversion factor , but now client is saying conversion faco
    so how to pay the actual freight amount to the vendor.
    Thanks & Regards
    Nitin Chhabra

    Hi ,
    Since there is no planned cost here , freight condition can be ignored.
    During MIRO enter the actual cost manually on G/L Account section with actual Value and Freight GL account.
    Thanks,
    sudhakar

  • Actual Freight Amount

    pls tell me how i can check the freight amount which was booked for import material in po?
    tell me any table name for get it
    Regards
    Rekha sharma

    You  need to look in table  EKBZ  ,  there you will need to select the Freight condition type ,  the table will give you details about the Freight Value  booked at GR  and IR .  If your  Import freight condition type is different then this  should be sufficient , but if you  have same freight condition for  Domestic and import, then you will have to distinguish  either  by PO  Numbering or by vendor  numbering.

  • Freight amount is not available in A/R Downpayment Invoice

    We need to raise a A/R Downpaymen Invoice for a consigment along with the frieght. The goods are excisable. For Freight amount only VAT charges are to be applicable.
    The feature of adding Freight Charges is available in other A/R documents. However, the same feature is not available in A/R Downpayment Request & A/R Downpayment Invoice transaction.
    Request to kindly provide a solution for the same.

    I too think that this is something that is needed.
    If you take a series of downpayments to the balance of a sales order including the freight (which is additional expenses and so could include something like custom shipping from the supplier), and then convert the sales order to an invoice, then the balance on the invoice will be the freight amount and the last downpayment will show has having an Open amount of the same value.  I'm not sure how you can now reconcile this.

Maybe you are looking for

  • Excel Import of Dates while in Manual Task Mode

    It appears that I cannot do an Excel import into start/finish fields for a task that is set to manual mode.  Is this true, or am I overlooking something? This is annoying.  I am having to import into the temporary fields of start1/finish1, then copy

  • Sync Web Service - BPM with 2 sync proxy calls error.

    Hi. Have a sync web service going into a BPM. In the BPM there ar 2 sync calls towards a system making a credit check. The answer is responded to the web service. In our QA system the solution works perfect. I transported the solution to production a

  • Transporting an application from one server to another

    Would like to find out what's the best practice for transporting/migrating a forms/workflow application from one LC-ES server to another. This is the process that I know of: 1) export the application (create an LCA file) 2) import the LCA to the 2nd

  • Deleting imovie files after export

    Can I delete my imovie folders for movies that i have finished and exported to a .mov file? The folders with the original imovie files are huge (17 gig on average) and I need the drive space. To make dvd's in the future do I only need the idvd projec

  • Catalogue Import/Export - An Idea?

    If this feature already exists I will slope away in embarrassment..... At the moment I have a mirror of my desktop catalogue on my laptop. If using the laptop in the field I may add images to various folders, and when returning home I have tended to