Displaying file name for open Acrobat files

Is there a way to copy and paste the URL for an open pdf file in Acrobat? We currently open the file in MS Word and copy the file link from the web toolbar display.
Thanks for the help!
Ken

Thanks for the quick response. Is that a hard thing to do? We haven't done much with Java Script.
Ken

Similar Messages

  • Table name for opening and closing stock

    Hi gurus,
    i want table name for opening and closing stock .  How to calculate this opening and closing stock in report.
    Murali.

    Murali,
    Check out in OINM, which maintains all the details of the stock transactions..
    Hope it might help you..
    Regards
    Gattu

  • Table name for opening stock value

    Hi,
    Can some body tell me the table name & the field name for opening stock value,
    (This is when you pass the date through LSMW at initial stage and it gets sits in which table)
    For ex. MB5B
    rgds
    Sonu

    There are many stock tables in SAP.
    if you load unrestricted use stock with value, then the quantity is going to MARD, quantity and value to MBEW.
    if material is batch managed, then stock per batch is going to MCHB, but still MARD and MBEW are updated.
    if you load non-valuated stock (material type UNBW), then only MARD is updated, no MBEW entry.
    and much more cases for consignment, sales order stock etc etc.
    If you try to find the values more than a month after the upload, and your materials had movements, then the old stock quantity at period closing is transfered to the history tables MARDH, MBEWH.
    If you load in the beginning of a month, then SAP calculates the opening stock by using the end of period stock and add/subs the material movements.Then you will not find the opening stock as a single number in any table.

  • Is "ipad Air retina display" another name for "ipad Air 2"?

    Is "ipad Air retina display" another name for "ipad Air 2"?

    I guess you could call it that if you wanted to but the iPad Air 2 is known by the name "iPad Air 2". The name "iPad with Retina Display" was first given to what is now known as the iPad 3rd generation which now goes by the name "iPad 3rd generation". Same goes for the IPad 4th generation.

  • Window name for Adobe Acrobat 9.0

    Hi Guys,
    What is the window name of Adobe 9.0?
    For Adobe 7.0 we are using "AdobeAcrobat" as the classname in the method as hWndAcrobat = FindWindow( _T("AdobeAcrobat") ,NULL );
    For Adobe 8.0 we are using "AcrobatSDIWindow" as the classname in the method as hWndAcrobat = FindWindow( _T("AcrobatSDIWindow") ,NULL );
    Is there something different in the case of Acrobat 9.0?
    Please guide me.
    Thanks and Regards,
    Nethaji

    Thanks for your response.
    We need to bring acrobat password dialog in front of all the opened windows and more over my application supports both acrobat 8.0 and 7.0,so we dont want to disturb the existing implementation thats y we need the class name for Acrobat 9.0.
    Please do the needful.

  • How to display custom names for attributes in JSP pages

    I would like to use custom names for my attributes in Struts JSP table headers.
    For example, if the database table named "Country" has a column CNT_ID and BC4J wizard mapped it into an Entity Object's attribute "CntId" I would like to display it as "Country ID" in my JSP table header.
    Now, I suppose the place to try this is probably in DataEditComponent.jsp, DataQueryComponent.jsp etc., and probably has smthg to do with jbo:AttributeIterate, but I still can't figure how to achieve this...
    I use JDev 9.0.3

    Kresimir,
    It's not clear from your posting whether you've worked out how to do what you want with control hints, so just in case, here's how:
    - In the navigator, select your entity object or your view object
    - In the structure pane, double-click the attribute you want to edit (CntId)
    - In the attribute editor, select the control hints page
    - In the Label Text field, type the text you want to use for your label (Country). Click OK.
    Hope this helps
    Blaise

  • Table name for open delivery document and open billing document.

    Can any body tell me what are the table names where we can get the the open delivery document numbers and open billing document numbers?

    HI
    Table S066 (Open orders)
    S067(Open deliveries and billing)
    Those 2 tables helpful only to know the credit exposure not for open deliveries and open billings document numbers
    Solution: Mr.Prakash Already suggested table and field names
    Regards,
    Prasanna

  • Dynamic File name for Open Hub file

    Hi All,
    I wanted to create a .csv file using open hub destination. I wanted the name of the file to be dynamic based on month. for example in jan I wanted it as 01.Dump for January and 02.Dump for february.
    is is possible at all to do that.I wanted to save the file in the application server. There should not be any manual intervention the process.
    Thanks in advance.
    Regds
    Raghu

    Hi
    We have take month from the first record that we read.
    Our requirement is to take one months data and give it in a file with a file name having the corresponding month.
    In the code mentioned below MOC_CODE is the field that is used for this purpose.
    Hope it helps.
    Regards,
    Raghu
    code:
    #!/bin/sh
    Script to dump file.
    Parameters.
    $1 Division name to extract from the data file.
    It re-arranges the columns.
    It replaces values in strings.
    Parameters.
    DATA_FILE_NAME="data_file.csv"
    HEADER_FILE_NAME="header_file.csv"
    DIVISION_NAME="$1"
    Re-arrange header file columns.
    Transpose rows to columns comma separated.
    HEADER_ROW=`cat "$
    Re-arrange header columns.
    Re-direct the output to a temporary file.
    " | tr '\n' ',' | sed 's/,$//g'`
    echo "$" | awk 'BEGIN { FS = ","; OFS = "," } { print $2, $3, $1, $4, $5, $6, $7 }' > "$.$.tmp"
    Prepare awk program.
    Re-arrange data file columns.
    Replace UNI in 6th column with UNIT and Replace TON in 6th column with TONS.
    Filter division rows.
    AWK_PROGRAM="BEGIN { FS = \",\"; OFS = \",\"; TVAL = 0 } \$5 ~ /$/ { sub( \"UNI\", \"UNIT\", \$6 ); sub( \"TON\", \"TONS\", \$6 ); print \$2, \$3, \$1, \$4, \$5, \$6, \$7; TVAL = TVAL + \$7 } END { printf \"$ Total Value: %f\", TVAL 2> \"$$Re-direct the program to a temporary program file.Control.ctl\" }"
    echo "$" > "$.awk"
    Execute the data file formatting command.
    awk -f "$.awk" "$" > "$.$
    Get generation date.
    Get moc code from data file.
    .tmp"
    GENERATION_TIME=`date +"%Y%m%d_%H%M%S"`
    MOC_CODE=`head -1 $ | awk -F, '{ print $3 }'`
    Prepare dump file.
    DUMP_FILE_NAME="$_$_$_$"
    cat "$.$.tmp" "$.$.tmp" > "$
    Remove temporary files.
    FTP dump file to remote server.
    FTP.
    rm *.tmp
    REMOTE_SERVER="<replace with server ip address>"
    REMOTE_USER="xxxx"
    REMOTE_PWD="xxxx"
    ftp -n "$" << EOF
         quote USER "$"
         quote PASS "$"
         ascii
         put "$"
         bye
    EOF
    Exit.
    exit 0

  • Table name for open PO commitment Value

    Hi Expert,
    Please provide the Table name where I can get the (open PO commitment value from Project).
    BR,
    Morshed Alam

    Table is COOI :Commitments Management: Line Items, but you have to pass the Object no. of the object to get the commitment.
    Better approach is to use the std. report CJI5 - Commitment line item..
    With Regards
    Nitin P.

  • Anybody know how to just display month-name for a date?

    Hi, just displaying the month name seems not be among the available date formats. In the Inspector, under Date/Time formats, "April-08" is the closest available format. D'oh!

    philonius,
    You may have to resort to the CHOOSE function,
    =CHOOSE(MONTH(Date),"January","February", ... ,"November","December")
    pw

  • Table name for Open purchase requisition / Purchase Order Number's

    Hi,
    I want to delete some Asset Number's. When i m deleting those, system give a error message You cannot delete. Open purchase requisition exists..
    From where i can found those Purchase Requisition / Purchase Order Number's. Is there any table, where i can found these numbers.
    Regards..

    hi,
    In the SAP Order Transactions ME21N, ME22N and ME23N, you can select by purchase requisitions in the document overview (selection variant -purchase requisitions).If you do so, it is possible to select explicitly by open and released purchase requisitions...
    OR
    In Transaction MEPO, in the document overview you can select by purchase requisitions. Here you can select only open purchase requisitions and execute...
    Regards
    Priyanka.P

  • Display Technical Names for al users

    Hi
    My requirement is: Every user should able to see SAP Technical Names after he/she login. What is the global parameter we need setup and where? Normally individual user can setup by selecting Extras -> Settings --> Technical Names On
    Thank you,
    Mohan

    Hi,
    those settings are stored in table AGR_DATEU where ID = 'BROWSER_OPT' and UNAME is user name. I don't know about any global parameter. There are two FMs PRGN_SET_BROWSER_OPTIONS_USER and PRGN_GET_BROWSER_OPTIONS_USER which you can use to write a report which will set this parameter to all users.
    Cheers

  • Add Fields from table ADRC (Fields Name 1 to 4) for Open Item Processing

    Hi SAP Expert:
    Our client requires vendor/customer name to be displayed in the open item processing line layout for transaction code f-58, so they can double check if the vendor name is complete as intended. 
    We intend to add fields from table ADRC instead of REGUH since the characters in maintaining vendor/customer name is 40 characters and REGUH - ZNME1s are only 35 characters. 
    We have managed to add fields from ADRC and change the SAPDF05X program and were able to display the names in open item layout, except that the program seems to "automatically" create a generic table which only carries 30 characters of the vendor/customer name.  The source table should be RFOPS_DK but the program automatically looks up from table RFOPS_GEN for the particular fields - Name 1 to 4.  Is there a way to "instruct" the program to use RFOPS_DK instead of RFOPS_GEN?
    Hope this will merit somebody's attention... Thanks !!!

    Thanks,  i have assigned the layout via o7v3,  it is the program that i have a problem with,  actually another program that we change is the program MF05BFPO where it generates data to be displayed in the FBZ4 screen,  though we add a field with 40 characters (ADRC Name 1 to 4)  what the program dispalys is a 30 character Name1 to 4 from structure RFOPS_GEN. 
    My question is can i extend/change the structure RFOP_GEN to 40 characters,  is there any SAP standard program that will aftected if i do so?  thank very much...
    Lorena

  • Technical names for drop down values through webui

    Hi All, I have ECC 6.0 (SAPKH61705) transactions being launched in CRM 7.0 (SAPKU71305) through the transaction launcher. We are able to display technical names for values in ECC through the gui, and in CRM in both the gui and webui. Is it possible to display the technical names for ECC through the webui? Apologies if this is not the correct forum, I was not sure where to post. For further clarification of the issue, I hope these screen shots assist: ECC gui with 'display technical names' activated: qui - tech names on.jpg CRM webUI with 'display technical names' activated in both ECC and CRM: webui - tech names not visible.jpg Assistance appreciated.

    Hi Amy,
    Yes, it's possible.
    You can achieve it by coding. Instead of passing only the description to your drop down values, we can send technical name and description simultaneously to your drop down value. That's it.
    BR,
    RAM.

  • Displaying File Name for Photo and Video Clips in Premiere Elements 10

    I am using Premier Elements 10 on a Windows 7 Pro desktop computer to create
    a project consisting of 128 jpg photo and mp4 video clips.  Before creating
    the project I created a short file name for each clip describing its
    content.  I've added menu tags at locations which separate the project into
    discrete segments.  I've selected a disc menu which utilizes the menu tags I
    created.  I previewed the project and I'm satisfied that the DVD disc I
    intend to create will display everything I want except for one thing.  I
    have spent several hours trying to find out how to have each displayed clip
    include the file name (without extension) somewhere near the edge of each
    window as it is opened in the finished production.  I sure would appreciate
    some help with the steps needed to accomplish this.

    Welcome to the forum.
    This can most easily be accomplished by adding a Title (maybe from a Lower-Thirds Title Template), above each Clip/Still Image.
    I would create one such Title, and manually add the "File Name" in the location desired. Then, place that on a higher Video Track, above the Clip/Still. Then, just use the Duplicate Title function, to create a new Title, with the Text and Style, per the first - edit the Text for each, as required.
    I know of no automated method to grab the Clip's/Still's File Name, and add that to a Title, as PrE does not support any scripting.
    Good luck,
    Hunt

Maybe you are looking for

  • Video chat not working in enjoy 10 (skype and ym)

    i just bought enjoy 10 for my wife. i'm working in another country. when they are using skype or ym the video chat is not working. my daughter said that a message about compatibility is showing. can someone help me on this. Thanks. 

  • How do I save a series of web URLs as PDFs?

    Twice a year I have to go to the same websites to visit specific URLs and then create a pdf of each page visited. I'd like to do this with Automator but cannot find any "create PDF from URL" actions or any ideas of how to do this some other way. Can

  • Web service response processing inside a BPM

    Hi Experts, Please can you let me know if it is possible to achieve the following inside a BPM: u2022     Once you getting the web service  SOAP response, determine if itu2019s a SOAP fault or a normal web service response. u2022     If itu2019s a SO

  • I preferred the icons before iOS 7.0.4

    The icons on the iOS 7.0.4 seem like a de-volution. Before they had depth and 3D effect, now they are flat with cartoon colors. Why Apple ? Why did you do that?

  • Aluminum keyboard pairing issues

    I was recently given a friend's bluetooth aluminum keyboard and when I tried to pair it with my Vista laptop, it finds the keyboard and then when I enter the passkey it fails, every time. Thinking this was a windows issues I repeated the process with