Problem in passing arabic words into url as parameters

I have a website where everyhting is in arabic.I am having a problem with search page only on Firefox (everything works correctly on IE,safari,google chrome)
For example i search for فيروز keyword. This is the inital link that opens after i hit search button.
http://www.neelwafurat.com/locate.aspx?mode=2&search=singer1&entry=فيروز
Now on forefox when i press the next button or any page number to see the results it doesnt show them and it gives me that there are no results.However there are results compared to other browsers.
From code i get the keyword value like this
entry = Request("entry")
I noticed on debug that this فيروز word became ظپظٹط±ظˆط²
when i pressed next page even though it didnt chnage on 1st run of the page (on page1) and of course my search will search for the new word.
Is there anything missing i need to add to firefox or i need to change in my code?

That page is send as Arabic (Windows-1256) and it works if the data is send as such, but not if encodeURIComponent() is used as Firefox does.
*http://www.neelwafurat.com/locate.aspx?search=title&entry=%D9%81%D9%8A%D8%B1%D9%88%D8%B2&Mode=2&Page=2&orderby=rdate&dir=desc
*http://www.neelwafurat.com/locate.aspx?search=title&entry=%dd%ed%d1%e6%d2&Mode=2&Page=2&orderby=rdate&dir=desc
You can try to ask advice at the mozillaZine Web Development/Standards Evangelism forum.<br />
The helpers at that forum are more knowledgeable about web development issues.<br />
You need to register at the mozillaZine forum site in order to post at that forum.
See http://forums.mozillazine.org/viewforum.php?f=25

Similar Messages

  • Problems with pasting arabic text into indesign

    HI,
    I am trying to cut and paste arabic text from Word 2007 to indesign ( ENGLISH) CS4
    this is the text from word
    This is the text when i paste it into indesign
    They look completely different!
    No clue why
    I have installed the arabic keyboard onto the computer
    I have installed the arabic font from adobe
    I have installed the script to switch text from left to right --right to left (I found that script here
    http://indesignsecrets.com/free-script-for-hebrew-or-arabic-text-in-regular-version-of-ind esign.php)
    but I am getting the same problem
    any suggestions!!
    thanks

    Pre-CS4 I would either change the glyph order and the individual glyphs by hand -- for *extremely* short string only --, or simply print the original file (which is usually Word) to a PDF and place that as an image.
    Jongware's method is the best easy way to achieve this (placing the PDF file, I mean - manually hunting for medial glyphs is something I'd only suggest for those who have some demonstrated familiarity with the script in question). If your client insists that you not use a placed PDF for complex-script languages ("The Arabic is a picture, and I can't change the color of the text! Please send me something editable.") and you have no ME tools, you can open up that PDF, save out an EPS file, and in the "Settings" button in Acrobat you can find the "convert all fonts to outlines," save, open up the EPS in AI, copy the handily outlined AR text, and paste that into InDesign. It doesn't work perfectly, but it will do in a pinch.

  • Problem pasting text from Word into Mail

    When I compose text in Word and paste it into Mail, paragraphs are separated by spaces that weren't in the original Word document and I have to do a lot of work to get rid of them. If I compose or paste the text in TextEdit and then copy the message into Mail, there's no problem. Is there a fix so I can just compose my messages in Word and then transfer them into Mail?

    Edwin Bernbaum wrote:
    It happens when I use past and match style as well. Any other ideas?
    Last month I started a message thread on what may be the same issue:
    http://discussions.apple.com/message.jspa?messageID=11083007
    There's a mention there of the Mail menu option Format -> Make Plain Text, which may help you.
    I filed a "bug report" with Apple (http://www.apple.com/feedback/macosx.html) about quirky spacing in Mail messages and the lack of any editing feature to control such spacing. Maybe you'd want to do the same.

  • Urgent!!!! - Problem in storing encrypte word into SQL Server database

    Hi,
    I want to encrypt a word using DES algorithm and store in the database.I am using Microsoft SQL Server 2000 database. I have tried giving the datatype as varchar,binary etc. but i am not able to store a byte array.Here is my code. Plz help me to store the encrypted word in the database.
    import javax.crypto.Cipher;
       import javax.crypto.BadPaddingException;
       import javax.crypto.IllegalBlockSizeException;
       import javax.crypto.KeyGenerator;
       import java.security.Key;
       import java.security.InvalidKeyException;
       import java.io.*;
       import java.sql.*;
       public class PwdEnc {
            private static String algorithm = "DESede";
            private static Key key = null;
            private static Cipher cipher = null;
            private static void setUp() throws Exception {
                key = KeyGenerator.getInstance(algorithm).generateKey();
                cipher = Cipher.getInstance(algorithm);
            public static void main(String[] args)
               throws Exception {
                setUp();
                byte[] encryptionBytes = null;
                String input = "akshatha34";
                encryptionBytes = encrypt(input);
                try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection con=DriverManager.getConnection("jdbc:odbc:SQLDB1","sa","projguru");
                   Statement st=con.createStatement();
                   System.out.println(encryptionBytes);
              //     String s1="Insert into tblLogin values("+encryptionBytes+","+encryptionBytes+")";
                   String s1="Insert into tblLogin values("+encryptionBytes+")";
                   System.out.println(s1);
                   int rs=st.executeUpdate(s1);
                   if(rs>=1)
                   System.out.println("inserted");
                   else
                   System.out.println("failed");
              }catch(Exception e){
                   System.out.println(e);
                   for(int i=0;i<encryptionBytes.length;i++)
                        System.out.println(encryptionBytes);
                   System.out.println(encryptionBytes);
    private static byte[] encrypt(String input)
    throws InvalidKeyException,
    BadPaddingException,
    IllegalBlockSizeException {
    cipher.init(Cipher.ENCRYPT_MODE, key);
    byte[] inputBytes = input.getBytes();
    return cipher.doFinal(inputBytes);
    thanks,
    Akshatha

    Try using a Prepared statement and setBytes;
    PreparedStatment insert = con.prepareStatement("Insert into tblLogin values(?)");
    insert.setBytes(1, encryptionBytes);
    insert.executeUpdate();

  • Encoding problem in call-back to hook URL (post parameters)

    Hello all,
    I'm encountering a character encoding problem while retrieving the content of the shopping basket from one of our provider.
    After the POST request is made by the provider to our system using the hook url, when debbuging I can see that some special characters are represented with the sign '#' (after the call the ITS_IMPORT_CONTEXT).
    In our case using the parameter http_content_charset with various values, including UTF-8, did not change the result.
    Inspecting the HTTP traffic has highlighted the following: the encoding received from the provider is related to UTF-8, but while we are expecting the hexadecimal values, we are receiving the "Unicode code points", which are not recognized by our SAP system. For more details look at the UTF-8 encoding table found here and compare the values under column "Unicode code point" with the one under column "UTF-8 (hex.)".
    As an example, for the character 'é', we are receiving the value "%E9" (the code point) instead of receiving the the hexa value : "%C3%A9".
    Do you have any idee if this can be corrected on our side or if the provider must addapt the way it's sending the POST parameters?
    Many thanks in advance for you help.
    Best regards,
    Jerome.

    Hi Jason,
    Indeed I had contacted the provider and informed them about the encoding problem and the fact that passing the parameter http_content_charset had no effect on the sent back encoding.
    They have taken into account my request and have changed the encoding used during the request to the HOOK_URL.
    Thanks to all of your for your help.
    Regards,
    Jerome.

  • Passing range-value into a parameter of a subreport

    Hello all
    I've a problem with passing a formula into a parameter of the subreport.
    I'm using a SAP BW query with a data range parameter. So I have to provide a range value first for executing this query.
    I'd like to execute the query with a data range between the last two weeks. For this purpose if created a formula with following code:
    [dateadd('d',-14,currentdate),currentdate]
    This means, the result is an array. And exactly this is the problem. Because Crystal Reports doesn't support an array as a result of a formula.
    Is there an other possibility for passing the array/data range to the parameter in the subreport?
    I'm using Crystal Reports for enterprise (v.14.0.2).
    Kind regards,
    Greg

    Thanks, kglad. I was wondering about that. I thought that
    putting a variable data type of :Number would have made it a
    number, but I never got an error in the debugger so I thought it
    was ok. I traced the data type and figured out it was actually a
    string and changed the line like follows which turned the string to
    an integer and made it work:
    var image01ClosedPosition:Number =
    parseInt(RootNode1.attributes.imageChangeX);

  • How can i do to read arabic words in ipad smart office?

    I need the solution for my problem about reading arabic words in smart office in my ipad2

    Please use the camera icon to post a screenshot of what you are seeing so we can get some idea of what your "problem" is?
    Most likely you will have to try a different app if smart office is not reading things correct?  What format are your documents that you need to read in?

  • Problem while passing url's for URLRequest() class as parameter in Flash

    Hi all,
         I am calling java servlets from flash using the following code[below is a sample Flash code for calling a java servlet in Flash which I am using]:
    ...bla ...bla
    String url_String="http://localhost:8080/servlet/getViews";
    var req:URLRequest = new URLRequest(url_String);
    ...bla ...bla
    In this case, the servlet is called/working fine only in my system where the flash application is deployed & not working when I execute the application in different system using the "IPAddress" of my system.
    So, What changes I need to make in above Flash code in order to call the same servlet successfully from my system and as well as from other systems?
    (OR)
    Is there any need to pass the servlet-url's relative instead of absolute?
    If so,
    How can we pass relative-path of url's in Flash? &&
    Can anyone explain me with an example?
    Atlast, Can anyone tell me how to change my above code to pass the url 'relative' rather than 'absolute'?
    If I pass the url relatively, does my issue gets resolved?
    If, Please, can anyone help me by giving solution to my problem... [Or] else, to either of my queries or both...
    Thanks in advance...
    I am waiting for your replies...
    Srihari.Ch

    Did you read the ActionScript 3.0 documentation I linked to in my last post?
    var request:URLRequest = new URLRequest("XMLFile.xml");
    Example of using absolute URL:
    var request:URLRequest = new URLRequest("http://localhost:8080/servlet/getViews");
    Example of using relative URL:
    var request:URLRequest = new URLRequest("servlet/getViews");
    If the server port (8080) needs to be specified, you could declare a variable for the server URL and use it as a parameter.
    var serverURL:String = "http://localhost:8080/";
    var request:URLRequest = new URLRequest(serverURL + "servlet/getView");

  • Problem in passing url

    Hi Everyone,
    I have a issue in my application. I would be glad if any could help me with this.
    I have a couple of parameters on my main page which the user can select and then click on the link below to open a report filtering on the basis of the parameters chosen. The link(displayed dummy below) would look like this...
    http://myapplication.com/discover/viewer?cn=a_123&eul=eul_abcd&.........¶m1=Applications¶m2=Tools & Others
    Here param 2 value is "Tools & Others" but since there is '&' in the link it is passing just Tools into the next page ignoring & Others.... and so the report doesnt open up correctly. If there is no '&' in the parameters selected, then the link opens up correctly.
    I hope I am clear on my problem.... Please Help!
    Thanks,

    Hi Scott,
    Thanks for the solution, it works.... wonder why I didnt think of it before :)
    Thanks again!

  • When using Edit Find, I can only type 3 or 4 letters in the Find bar before the letters start disappearing. If I copy/paste a word into the Find bar all the letters will be there. Has anyone else had this problem?

    The Find bar opens OK with Edit/Find. I start typing in a word there but it will only allow 3 letters before they disappear and my next keystroke appears. I can copy/paste a whole word or string of words into the Find bar and all the letters remain.
    == This happened ==
    Every time Firefox opened
    == about a month ago

    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Problem passing Session variable as URL parameter?

    Hi,
    I am trying to create a multiple page entry form using
    coldfusion session. But I am having some problem when passing the
    session variable to url parameter. For test purpose I have created
    the following code:
    <cfif Not IsDefined("SESSION.AE")>
    <!--- If structure undefined, create/initialize it
    --->
    <cfset SESSION.AE = StructNew()>
    <!--- Represent current form srep; start at one --->
    <cfset SESSION.AE.StepNum = 1>
    </cfif>
    <cfif IsDefined("Form.GoBack")>
    <cfset SESSION.AE.StepNum = #url.StepNum# - 1>
    <cfelseif IsDefined("Form.Next")>
    <cfset SESSION.AE.StepNum = #url.StepNum# + 1>
    </cfif>
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    </head>
    <body>
    <form method="post"
    action="/AE/try.cfm?StepNum=#SESSION.AE.StepNum#">
    <input type="submit" name="GoBack" value="Back">
    <input type="submit" name="Next" value="Next">
    </form>
    </body>
    </html>
    When run it I get the following error:
    The value "" cannot be converted to a number
    The error occurred in C:\CFusionMX\wwwroot\AE\try.cfm: line
    11
    9 : <cfset SESSION.AE.StepNum = #url.StepNum# - 1>
    10 : <cfelseif IsDefined("Form.Next")>
    11 : <cfset SESSION.AE.StepNum = #url.StepNum# + 1>
    12 : <!---<cfset SESSION.AE.StepNum = #url.StepNum# +
    1>--->
    13 : </cfif>
    I couldn't figure out where is the problem. Any help is
    really appreciated.
    Thanks in advance.

    You are mixing up your gets and posts aren't you?
    You have your form method set to post which creates form
    variables not
    url variables. So when you try to use the url variable to set
    your
    session it does not exist.
    Change your SESSION.AE.StepNum = #url.StepNum# to
    Session.AE.StepNum =
    form.StepNum, note there is no need for the #'s.
    OR
    change your form method="post" to form method="get"
    Nagelia wrote:
    > Hi,
    >
    > I am trying to create a multiple page entry form using
    coldfusion session. But
    > I am having some problem when passing the session
    counter to url parameter. For
    > test purpose I have created the following code:
    >
    > <cfif Not IsDefined("SESSION.AE")>
    > <!--- If structure undefined, create/initialize it
    --->
    > <cfset SESSION.AE = StructNew()>
    > <!--- Represent current form srep; start at one
    --->
    > <cfset SESSION.AE.StepNum = 1>
    > </cfif>
    > <cfif IsDefined("Form.GoBack")>
    > <cfset SESSION.AE.StepNum = #url.StepNum# - 1>
    > <cfelseif IsDefined("Form.Next")>
    > <cfset SESSION.AE.StepNum = #url.StepNum# + 1>
    > </cfif>
    >
    > <html>
    > <head>
    > <title>Untitled Document</title>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    > </head>
    > <body>
    > <form method="post"
    action="/AE/try.cfm?StepNum=#SESSION.AE.StepNum#">
    > <input type="submit" name="GoBack" value="Back">
    > <input type="submit" name="Next" value="Next">
    > </form>
    > </body>
    > </html>
    >
    > When run it I get the following error:
    >
    > The value "" cannot be converted to a number
    >
    >
    > The error occurred in C:\CFusionMX\wwwroot\AE\try.cfm:
    line 11
    >
    > 9 : <cfset SESSION.AE.StepNum = #url.StepNum# - 1>
    > 10 : <cfelseif IsDefined("Form.Next")>
    > 11 : <cfset SESSION.AE.StepNum = #url.StepNum# +
    1>
    > 12 : <!---<cfset SESSION.AE.StepNum =
    #url.StepNum# + 1>--->
    > 13 : </cfif>
    >
    > I couldn't figure out where is the problem. Any help is
    really appreciated.
    >
    > Thanks in advance.
    >
    >
    >
    >

  • Excel problem StarStarStarStarStar Written by MA from Dubai  i have problem in excel when i write Arabic or i receive any excel file contain Arabic word it come like letters it do not come like word my Microsoft office is 2011 what i can do

    excel problem
    i have problem in excel when i write Arabic or i receive any excel file contain Arabic word it come like letters   it do not come like word
    my Microsoft office is 2011
    what i can do

    MS Office for Mac does not really support Arabic.  But you may just have a font problem.  Disconnected letters means a Windows font is being used.  Change the font to a Mac font like Geeza Pro.
    For better Arabic support, try OpenOffice.

  • Arabic words not displaying correct in flex 4

    Hello All,
    Please find the attached image with this post.
    Arabic words are not displaying completely/correctly. I have makred it with red line, you can see that in the attached image.
    <s:TextArea text="{_str}"  width="100%"
                    height="100%"
                    fontSize="50"
    />
    _str  is the String variable which contains  the Arabic text.
    Awaiting for prompt response.

    Hello Robin,
    Thanks for your example, but still problem is not solved.
    I have attached image by the name Robin_Example.JPG of your example, you can also noticed (underlined in red color) that your example contains the same problem as I am having.
    Here I am pasting the whole code and also sending my arabic text file (TopFirst.txt), for your reference so it will be easy for you to run the application:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application 
    xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="
    library://ns.adobe.com/flex/spark" xmlns:mx="
    library://ns.adobe.com/flex/halo" minWidth="
    1024" minHeight="768"creationComplete="init()"
    xmlns:controls="
    flashx.textLayout.controls.*">
    <s:layout >
    <s:VerticalLayout/>
    </s:layout>
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    <s:HTTPService id="httpServiceObj" url="TopFirst.txt"result="handleResult(event)"
    fault="handleFault(event)"
    resultFormat="
    text"/>
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    import mx.controls.Alert; 
    import mx.rpc.events.FaultEvent; 
    import mx.rpc.events.ResultEvent; 
    Bindable] 
    private var _str:String; 
    private function init():void{httpServiceObj.send();
    private function handleResult(event:ResultEvent):void{_str = event.result
    as String;}
    private function handleFault(event:FaultEvent):void{Alert.show(
    "fault is = " + event.fault.faultString);}
    ]]>
    </fx:Script>
    <s:TextArea text="{_str}" width="
    100%" height="
    100%" fontSize="
    50"locale="
    ar"fontFamily="
    Arial"direction="
    rtl"/></s:Application>
    Now it should be easy for you to understand my problem, as we both have the same code which is not working for arabic.
    Thanks for being so supportive.
    Awaiting for prompt response.
    Regards.

  • Problem while passing parameter from report to report.

    Hi
    I'm using forms and reports 10g, hava a problem while passing the parameter from reports to report.
    i'm using srw.set_hyperlink to call report from report.
    i have created a key value in the cgicmd.dat file called
    faccre802005-2006: report=faccre80 destype=cache desformat=pdf userid=<userid/passwd@cs> server=<servername>
    Now in the format trigger i'm using this key value
    function BTN_DEBITFormatTrigger return boolean is
    temp varchar2(5000);
    IP_ADDRESS VARCHAR2(50);
    SERVER_NAME VARCHAR2(10);
    L_ACCT_CODE VARCHAR2(14);
    begin
    SELECT MAST_INT_DESC,MAST_USER_PGM_ID INTO IP_ADDRESS,SERVER_NAME FROM MAST_INT_INFO WHERE MAST_INT_ID='VISHWA';
    temp := IP_ADDRESS||'?faccre80'||:P_FIN_YEAR||'+server='||server_name;
    temp :=temp ||'+'||'P_PREVIOUS_CODE='''||:ACCT_CODE||''''||'+'||'P_COMPANY_CODE='''||:P_COMPANY_CODE||'''';
    temp :=temp ||'+'|| 'P_FROM_DATE='''||TO_CHAR(:P_FROM_DATE,'DD-MON-RRRR')||''''||'+'|| 'P_TO_DATE='''||TO_CHAR(:P_TO_DATE,'DD-MON-RRRR')||''''||'+'||'P_TRUST_CODE='''|| :P_TRUST_CODE||'''';
    temp :=temp ||'+'|| 'P_UNIT_CODE='''||:P_UNIT_CODE||''''||'+'||' P_FIN_YEAR='''||:P_FIN_YEAR||'''';
    temp :=temp ||'+'|| 'P_LEVEL='''||:P_LEVEL||''''||'+'||'P_HEADER='''||replace(:P_HEADER,' ','%20')||''''||'+'||'P_FORMAT='''||:P_FORMAT||'''';
    SRW.Set_Hyperlink(temp);
    END;
    return (TRUE);
    end;
    Report is coming but not the expected result because parmaeters are not coming from first report to second report.
    If i dont use cgicmd file userid and password are displyed in the URL.
    Pl tell me how to pass parameter from one report to another.
    thanks and regards

    Hi
    I got the solution.
    I forgot to add %* at end of the KEY value.

  • Page 404 Error when passing Session values through URL

    The current application I'm working on is a 'Targeted Email Communications' application. Bascially, employees at the school at which I'm employed can go in and select services to recieve outage notification emails on.
    The problem I'm discussing in this post has to do with our so called 'Notification Summary Screen.' This screen is basically a report region which displays all outage notifications issued by this application. In the left-most column of this report, I have an edit button that when clicked, redirects the user to the 'Create / Update / Send Screen' with the primary key values passed through the URL. When this happens, all other page items query their values based on the NOTIF_ID passed in through the URL. All of this works fine.
    The problem is, on the Notification Summary Screen, I also have a button labeled 'Create a new notification.' This button redirects the user to the same page as before, except now all of the values are NULL because this outage notification has not yet been created. The problem is, when I try and do this - I get a page 404 not found error. I'm pretty sure it's because my application is getting confused because earlier all of the values were passed in through a URL. For the 'Create New' button, I clear the page cache for this page - and it still does nothing. I am at a loss for what to do here because I keep getting the error.
    Here's the code for the URL button found in the report query in the 'Notification Summary Screen' :
    ('<a href='
              || 'f?p=&APP_ID.:2:&SESSION.::&DEBUG.::'
              || 'P2_NOTIF_ID,P2_NOTIF_SEQ,P2_INFO_TYPE:'
              || a.notif_id ||','|| b.notif_seq || ',' || 'Update'
              || '>'
              || '<img src="#APP_IMAGES#EditButton.gif" />'
              || '</a>') as "edit",** NOTE, I took out the double quotes after href and before the closing right karat brackets because for some reason the code in the URL wouldn't display...weird.... **
    The NOTIF_ID value is the primary key identifier for each outage notification. Additionally, the NOTIF_SEQ value is the sequence number for each (because each notification could have multiple updates). The INFO_TYPE value just references whether this is 'Initial', 'Updated', or 'Closing' information.
    Any suggestions would be much appreciated.
    Eric
    Edited by: user11685190 on Nov 6, 2009 1:12 PM
    Edited by: user11685190 on Nov 6, 2009 1:13 PM
    Edited by: user11685190 on Nov 6, 2009 1:14 PM

    Hey you guys,
    Thanks for your responses. I actually just started working for this academic institution, and have to finish a probationary period before I have access to their VPN (5 Months). Therefore, I cannot access my workspace, nor will they allow me to export my application because it's considered their intellectual property. I believe it may be the &DEBUG portion of it.
    Though I cannot state the exact URL the error states, I can tell you that if I go into application builder to the page in question and try and run it before the page that links to it, I get the error. However, when I use the link everything works fine. When I use the 'Create New' button to link to the page with no values passed, I get the error again. I work again on Monday and will have more information then.
    Thanks again!
    Eric

Maybe you are looking for

  • Short Dump while INSERTING to a DB Z table

    There is one report that we are running in production. Earlier it was taking about 2hrs to run and now it's taking about 14-15 hours to run after we applied the Support Pack. I must agree that the report is not well written by the previous developers

  • Calendar-event mail sent twice

    Hello, A strange behavior (bug?) happen on my installation of COMMS6 U1. When a user modify an event on his calendar a notification is sent to him (as i want) but a second mail is also sent (see the CC: header) to a non-defined user : "FQDN_of_my_ims

  • I have loads of music in iTunes. Just brought a mac..where is music?

    I have used a pc and already have an iTunes account with loads of music on it I have moved abroad and brought a mac. When I open iTunes I was expecting all my music to be there? Do I need to import it somehow? I have read lots of posts where people h

  • F110 - Program RFFOEDI1

    Do I need to create a variant in SE38 for Program RFFOEDI1 when configuring ACH Payments? We have set up OBPM4. We are generating ACH and also updating Check register for statistical purpose.

  • 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