Open Po & PR number?

Hi Frds ..
how to find the open po and pr?
i want to display the open PO and PR number and qty.
Kindly give me table name and field of its.
Its Urgent..
Thanks
Pari

See the sample code for the open PO's based on Vendor
and do accordingly
*& Report ZMM_PO_REPORT
REPORT ZMM_PO_REPORT message-Id yb
NO STANDARD PAGE HEADING
LINE-COUNT 60(1)
LINE-SIZE 230.
D A T A B A S E T A B L E S D E C L A R A T I O N
TABLES: lfa1, " Vendor Master
t161, " PO Doc Types
t024, " Purchase Groups
ekko. " PO Header
T Y P E S D E C L A R A T I O N S
Purchase Orders Main Structure
TYPES: BEGIN OF s_po,
ebeln TYPE ebeln, " PO No.
ebelp TYPE ebelp, " PO Item
bstyp TYPE bstyp, " PO Category
bukrs TYPE bukrs, " Company Code
bsart TYPE bbsrt, " PO Type
lifnr TYPE lifnr, " Vendor No
ekgrp TYPE bkgrp, " Purchase Group
waers TYPE waers, " Currency
bedat TYPE etbdt, " PO Date
txz01 TYPE txz01, " Material Text
werks TYPE ewerk, " Plant
lgort TYPE lgort_d, " Storage Location
matkl TYPE matkl, " Material Group
menge TYPE bamng, " PR Quantity
meins TYPE bamei, " UOM
bprme TYPE bbprm, " Price Unit
netpr TYPE netpr, " Net price
peinh TYPE peinh, " Price Unit UOM
pstyp TYPE pstyp, " Item Category
knttp TYPE knttp, " Account Assignment Category
END OF s_po.
Purchase Orders History Structure
TYPES: BEGIN OF s_account,
ebeln TYPE ebeln, " PO No.
ebelp TYPE ebelp, " PO Item
gjahr TYPE mjahr, " Fiscal Year
belnr TYPE mblnr, " PO Invoice No
menge TYPE menge_d, " PR Quantity
wrbtr TYPE wrbtr, " Price in Local Currency
dmbtr TYPE dmbtr, " Price in Foreign Currency
waers TYPE waers, " Currency
shkzg TYPE shkzg, " Dr/Cr Indicator
END OF s_account.
Purchase Orders History Structure(Item Sum)
TYPES: BEGIN OF s_inv_sum,
ebeln TYPE ebeln, " PO No.
ebelp TYPE ebelp, " PO Item
menge TYPE menge_d, " PR Quantity
wrbtr TYPE wrbtr, " Price in Foreign Currency
waers TYPE waers, " Currency
END OF s_inv_sum.
Purchase Orders Main Structure
TYPES: BEGIN OF s_rep,
lifnr TYPE lifnr, " Vendor No
ebeln TYPE ebeln, " PO No.
ebelp TYPE ebelp, " PO Item
bstyp TYPE bstyp, " PO Category
bsart TYPE bbsrt, " PO Type
ekgrp TYPE bkgrp, " Purchase Group
waers TYPE waers, " Currency
bedat TYPE etbdt, " PO Date
txz01 TYPE txz01, " Material Text
werks TYPE ewerk, " Plant
lgort TYPE lgort_d, " Storage Location
matkl TYPE matkl, " Material Group
menge TYPE bamng, " PR Quantity
meins TYPE bamei, " UOM
bprme TYPE bbprm, " Price Unit
netpr TYPE netpr, " Net price
peinh TYPE peinh, " Price Unit UOM
pstyp TYPE pstyp, " Item Category
knttp TYPE knttp, " Account Assignment Category
name1 TYPE name1, " Plant
orewr TYPE netpr, " To be Invoiced Price
curr TYPE waers, " Inv Doc Currency
END OF s_rep.
D A T A D E C L A R A T I O N S
DATA: gv_title1 TYPE sylisel, " Report title
gv_dial. " Color flag
C O N S T A N T S D E C L A R A T I O N S
CONSTANTS: c_x VALUE 'X', " Flag X
c_h VALUE 'H', " Debit
c_vgabe TYPE vgabe VALUE '2'. " Transaction Type
I N T E R N A L T A B L E S D E C L A R A T I O N S
DATA: i_po TYPE STANDARD TABLE OF s_po WITH HEADER LINE,
" Purchase Order
i_inv TYPE STANDARD TABLE OF s_inv_sum WITH HEADER LINE,
" PO Invoice Values
i_rep TYPE STANDARD TABLE OF s_rep WITH HEADER LINE,
" PO Invoice Values
i_ekbe TYPE STANDARD TABLE OF s_account WITH HEADER LINE.
" PO Invoice Values
S E L E C T I O N S C R E E N *
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECT-OPTIONS: s_lifnr FOR lfa1-lifnr MATCHCODE OBJECT kred,
s_ebeln FOR ekko-ebeln MATCHCODE OBJECT mekk,
s_bsart FOR t161-bsart,
s_ekgrp FOR t024-ekgrp,
s_bedat FOR ekko-bedat.
SELECTION-SCREEN END OF BLOCK b1.
I N I T I A L I Z A T I O N *
INITIALIZATION.
A T S E L E C T I O N - S C R E E N *
AT SELECTION-SCREEN.
Validate the screen fields
PERFORM validate_screen.
S T A R T - O F - S E L E C T I O N *
START-OF-SELECTION.
Fetch main data
PERFORM fetch_data.
T O P - O F - P A G E *
TOP-OF-PAGE.
Header of the List
PERFORM header.
E N D - O F - P A G E *
Footer
END-OF-PAGE.
ULINE.
E N D - O F - S E L E C T I O N *
END-OF-SELECTION.
Display the Report Output data
PERFORM display_data.
At Line-Selection
AT LINE-SELECTION.
When double clicked on EBELN display the details of Purchase Doc
PERFORM line_sel.
*& Form validate_screen
Validation of Selection Screen fields
FORM validate_screen .
Validation of Vendor Number
CLEAR lfa1-lifnr.
IF NOT s_lifnr[] IS INITIAL.
SELECT lifnr UP TO 1 ROWS
INTO lfa1-lifnr
FROM lfa1
WHERE lifnr IN s_lifnr.
ENDSELECT.
IF sy-subrc 0.
MESSAGE e000 WITH 'Invalid Vendor'(002).
ENDIF.
ENDIF.
Validation of PO Number
CLEAR ekko-ebeln.
IF NOT s_ebeln[] IS INITIAL.
SELECT ebeln UP TO 1 ROWS
INTO ekko-ebeln
FROM ekko
WHERE ebeln IN s_ebeln.
ENDSELECT.
IF sy-subrc 0.
MESSAGE e000 WITH 'Invalid Document Number'(003).
ENDIF.
ENDIF.
Validation of PO Document Type
CLEAR t161-bsart.
IF NOT s_bsart[] IS INITIAL.
SELECT bsart UP TO 1 ROWS
INTO t161-bsart
FROM t161
WHERE bsart IN s_bsart.
ENDSELECT.
IF sy-subrc 0.
MESSAGE e000 WITH 'Invalid Purchase Document Type'(004).
ENDIF.
ENDIF.
Validation of Purchasing Group
CLEAR t024-ekgrp.
IF NOT s_ekgrp[] IS INITIAL.
SELECT ekgrp UP TO 1 ROWS
INTO t024-ekgrp
FROM t024
WHERE ekgrp IN s_ekgrp.
ENDSELECT.
IF sy-subrc 0.
MESSAGE e000 WITH 'Invalid Purchasing Group'(005).
ENDIF.
ENDIF.
ENDFORM. " validate_screen
*& Form fetch_data
Fetching the PO related data from Database Tables
FORM fetch_data .
CLEAR i_po.
REFRESH i_po.
SELECT a~ebeln " PO No.
b~ebelp " PO Item
a~bstyp " PO Category
a~bukrs " Company Code
a~bsart " PO Type
a~lifnr " Vendor No
a~ekgrp " Purchase Group
a~waers " Currency
a~bedat " PO Date
b~txz01 " Material Text
b~werks " Plant
b~lgort " Storage Location
b~matkl " Material Group
b~menge " PR Quantity
b~meins " UOM
b~bprme " Price Unit
b~netpr " Net price
b~peinh " Price Unit UOM
b~pstyp " Item Category
b~knttp " Account Assignment Category
INTO TABLE i_po
FROM ekko AS a JOIN ekpo AS b
ON a~ebeln = b~ebeln
WHERE a~ebeln IN s_ebeln AND
a~lifnr IN s_lifnr AND
a~ekgrp IN s_ekgrp AND
a~bsart IN s_bsart AND
a~bedat IN s_bedat.
SORT i_po BY ebeln ebelp.
break-point.
IF NOT i_po[] IS INITIAL.
Fetch the PO History/Invoice Details from EKBE Table
CLEAR i_ekbe.
REFRESH i_ekbe.
SELECT ebeln " PO No.
ebelp " PO Item
gjahr " Fiscal Year
belnr " PO Invoice No
menge " PR Quantity
wrbtr " Price in Local Currency
dmbtr " Price in Foreign Currency
waers " Currency
shkzg " Dr/Cr Indicator
INTO TABLE i_ekbe
FROM ekbe
FOR ALL ENTRIES IN i_po
WHERE ebeln = i_po-ebeln AND
ebelp = i_po-ebelp AND
vgabe = c_vgabe.
IF sy-subrc = 0.
SORT i_ekbe BY ebeln ebelp.
LOOP AT i_ekbe.
IF i_ekbe-shkzg = c_h.
i_ekbe-wrbtr = i_ekbe-wrbtr * -1.
ENDIF.
MODIFY i_ekbe.
ENDLOOP.
break-point.
Sum up the Item wise Invoice totals
LOOP AT i_ekbe.
AT END OF ebelp.
READ TABLE i_ekbe INDEX sy-tabix.
SUM.
MOVE-CORRESPONDING i_ekbe TO i_inv.
APPEND i_inv.
ENDAT.
CLEAR i_inv.
ENDLOOP.
SORT i_inv BY ebeln ebelp.
break-point.
ENDIF.
ENDIF.
Move the Vendor Name and Invoice Values to I_rep Internal Table
LOOP AT i_po.
MOVE-CORRESPONDING i_po TO i_rep.
CLEAR i_inv.
READ TABLE i_inv WITH KEY ebeln = i_po-ebeln
ebelp = i_po-ebelp.
IF sy-subrc = 0.
i_rep-orewr = ( i_po-menge - i_inv-menge ) * i_po-netpr.
i_rep-curr = i_inv-waers.
ELSE.
i_rep-orewr = i_po-menge * i_po-netpr.
i_rep-curr = i_po-waers.
ENDIF.
break-point.
Get the Vendor Name
CLEAR lfa1-name1.
SELECT SINGLE name1 FROM lfa1 INTO lfa1-name1
WHERE lifnr = i_po-lifnr.
IF sy-subrc = 0.
i_rep-name1 = lfa1-name1.
ENDIF.
APPEND i_rep.
CLEAR i_rep.
break-point.
ENDLOOP.
SORT i_rep BY lifnr ebeln ebelp.
DELETE i_rep WHERE orewr LE 0.
break-point.
ENDFORM. " fetch_data
*& Form display_data
Display the Report Output data
FORM display_data .
DATA: lv_flag, " New Flag
lv_rec TYPE i. " No of Records
CLEAR lv_rec.
IF i_rep[] IS INITIAL.
MESSAGE e000 WITH 'No Data found'(022).
ELSE.
LOOP AT i_rep.
Toggle Color
PERFORM toggle_color.
IF lv_flag space.
NEW-LINE.
ENDIF.
At New Purchase Document
AT NEW ebeln.
WRITE:/1 sy-vline, 2(10) i_rep-ebeln INTENSIFIED OFF.
lv_flag = c_x.
lv_rec = lv_rec + 1.
ENDAT.
WRITE: 1 sy-vline,
12 sy-vline,13(4) i_rep-bsart,
17 sy-vline,18(10) i_rep-lifnr,
28 sy-vline,29(35) i_rep-name1,
64 sy-vline,65(4) i_rep-ekgrp,
69 sy-vline,70(10) i_rep-bedat,
80 sy-vline,81(5) i_rep-ebelp,
86 sy-vline,87(40) i_rep-txz01,
127 sy-vline,128(9) i_rep-matkl,
137 sy-vline,138(1) i_rep-pstyp,
139 sy-vline,140(1) i_rep-knttp,
141 sy-vline,142(4) i_rep-werks,
146 sy-vline,147(4) i_rep-lgort,
151 sy-vline,152(13) i_rep-menge UNIT i_rep-meins,
165 sy-vline,166(3) i_rep-meins,
169 sy-vline,170(15) i_rep-netpr CURRENCY i_rep-waers,
185 sy-vline,186(4) i_rep-waers,
190 sy-vline,191(5) i_rep-peinh,
196 sy-vline,197(4) i_rep-bprme,
201 sy-vline,202(15) i_rep-orewr CURRENCY i_rep-curr,
217 sy-vline,218(4) i_rep-curr,
222 sy-vline,223(7) i_rep-bstyp centered,
230 sy-vline.
NEW-LINE.
hide: i_rep-ebeln.
ENDLOOP.
ULINE.
FORMAT COLOR OFF.
WRITE : /2 'Total Number of Purchasing Documents:'(025) COLOR 3,
lv_rec COLOR 3.
ENDIF.
ENDFORM. " display_data
*& Form header
Write the Report Header
FORM header .
FORMAT RESET.
header
WRITE:/1(230) 'LIST OF PURCHASE DOCUMENTS PER VENDOR'(006) CENTERED.
SKIP.
FORMAT COLOR COL_HEADING.
ULINE.
WRITE:/1 sy-vline,2(10) 'Pur.Doc.No'(006) CENTERED,
12 sy-vline,13(4) 'Type'(007),
17 sy-vline,18(10) 'Vendor'(008) CENTERED,
28 sy-vline,29(35) 'Name'(009) CENTERED,
64 sy-vline,65(4) 'PGrp'(010) CENTERED,
69 sy-vline,70(10) 'Doc.Date'(012) CENTERED,
80 sy-vline,81(5) 'Item'(011),
86 sy-vline,87(40) 'Material Short Text'(024) CENTERED,
127 sy-vline,128(9) 'Mat.Group'(013),
137 sy-vline,138(1) 'I',
139 sy-vline,140(1) 'A',
141 sy-vline,142(4) 'Plnt'(014),
146 sy-vline,147(4) 'SLoc'(015),
151 sy-vline,152(13) 'Quantity'(016) CENTERED,
165 sy-vline,166(3) 'UoM'(017),
169 sy-vline,170(15) 'Net Value'(018) CENTERED,
185 sy-vline,186(4) 'Curr'(019),
190 sy-vline,191(5) 'Per'(020),
196 sy-vline,197(4) 'Unit'(021),
201 sy-vline,202(15) 'To be Invoiced'(023) CENTERED,
217 sy-vline,218(4) 'Curr'(019),
222 sy-vline,223(7) 'Doc.Cat'(026),
230 sy-vline.
ULINE.
ENDFORM. " header
*& Form toggle_color
This routine alters the color of the records in the list
FORM toggle_color.
IF gv_dial = space.
FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
gv_dial = c_x.
ELSE.
FORMAT COLOR 1 INTENSIFIED OFF.
CLEAR gv_dial.
ENDIF.
ENDFORM. " toggle_color
*& Form LINE_SEL
*When double clicked on EBELN field display the details of Purchase Doc
FORM line_sel.
CASE sy-lsind.
WHEN '1'.
DATA: lv_field(20),
lv_value(10),
lv_bstyp like i_rep-bstyp.
clear: lv_bstyp,lv_value, lv_field.
GET CURSOR FIELD lv_field VALUE lv_value.
IF lv_field = 'I_REP-EBELN'.
IF NOT lv_value IS INITIAL.
READ LINE sy-index FIELD VALUE i_rep-bstyp
INTO lv_bstyp.
READ CURRENT LINE FIELD VALUE i_rep-bstyp INTO lv_bstyp.
if lv_bstyp = 'F'.
SET PARAMETER ID 'BES' FIELD lv_value.
CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
elseif ( lv_bstyp = 'K' or lv_bstyp = 'L' ).
SET PARAMETER ID 'VRT' FIELD lv_value.
CALL TRANSACTION 'ME33' AND SKIP FIRST SCREEN.
elseif lv_bstyp = 'A'.
SET PARAMETER ID 'ANF' FIELD lv_value.
CALL TRANSACTION 'ME43' AND SKIP FIRST SCREEN.
endif.
ENDIF.
ENDIF.
ENDCASE.
ENDFORM. " line_sel{code]
Reward points if useful.

Similar Messages

  • I'm using acrobat pro in my project after debuging the project and after opening a certain number of PDF files I receive the message: the maximum number of files opened has been reached, you have to close some files to continu.even doing that, I steel rec

    I'm using acrobat pro in my project after debuging the project and after opening a certain number of PDF files I receive the message: the maximum number of files opened has been reached, you have to close some files to continu.even doing that, I steel receive the same message.Some one can tel what to do please? Thanks

    Hi Memalyn
    Essentially, the bare issue is that you have a 500GB hard drive with only 10GB free. That is not sufficient to run the system properly. The two options you have are to move/remove files to another location, or to install a larger hard drive (eg 2TB). Drive space has nothing to do with SMC firmware, and usually large media files are to blame.
    My first recommendation is this: download and run the free OmniDiskSweeper. This will identify the exact size of all your folders - you can drill down into the subfolders and figure out where your largest culprits are. For example, you might find that your Pictures folder contains both an iPhoto Library and copies that you've brought in from a camera but are outside the iPhoto Library structure. Or perhaps you have a lot of purchased video content in iTunes.
    If you find files that you KNOW you do not need, you can delete them. Don't delete them just because you have a backup, since if the backup fails, you will lose all your copies.
    Don't worry about "cleaners" for now - they don't save much space and can actually cause problems. Deal with the large file situation first and see how you get on.
    Let us know what you find out, and if you manage to get your space back.
    Matt

  • When I click on the itunes email it opens an infinite number of windows.

    When I click on the itunes email it opens an infinite number of windows.

    choose ff for the default browser, and the problem will be solved

  • When opening microsoft word on mac it automatically opens a huge number of my word files and I have to wait for it to open them all then when i try to close them down it freezes and I 'force quit' and on reopening the same thing repeats

    When opening microsoft word on mac it automatically opens a huge number of my word files and I have to wait for it to open them all then when i try to close them down it freezes and I 'force quit' and on reopening the same thing repeatsI have to wait for it to open them all then when i try to close them down it freezes and I 'force quit' and on reopening the same thing repeats

    One thing to try/check - in System Preferences, General.  Check the box "Close windows..."

  • Cash Open Items - Cheque Number

    Hello,
    Does anyone know if cheque number can be added to Cash Open Items Report? Or any other reports can show Outstanding Outgoing Cheque Numbers?
    Thanks,
    Carol

    Hello Terry,
    For the test purpose, I joined (Not combined) two data sources and used Company and My Bank field to join the data source. (Used Left Outer Join as a Join Type.).
    Here is the screenshot
    To be honest, I am not sure,what difference it will have when you join data source and when you combine data source.
    Found a link which explains the differnce between Join and combine data sources : 10 Tips for Reports and Data Sources in SAP Business ByDesign
    Now since you are combining data source, I guess system is mapping Payee name with the Offset Customer / Supplier ID, Void date with the clearing date, and my bank with My bank, Company With Company (Check book register with Cash Ledger account Line items) and as per my understanding, this does not look the correct mapping for the obvious reasons.
    you can try with the Joined data source and that should work. From what I understand the reason why you don't see the proper data is because of the combined data source and mapping of the fields.
    I am not the expert in the reports area so I might be wrong with my understanding of difference between joined and combined data source.
    Let me know if you need my help with the Joined data source. As I have already tried /created Joined data source and reort for the data source. I can provide you that details. Result would be similar to what you see in my Previous comments. (if that is what you are looking for).
    You can reach out to me via email.
    And If this solves the issue, May be we can close this thread.
    Cheers,
    Harshal

  • Instead of CS6 a trial version opens, saying serial number incorrect?

    This morning I wanted to start my CS6 Photoshop. Instead of opening a trial version opens. After searching on the internet for a solution I deactivated Photoshop as recommended, restarted it and wanted to sign in. However, it says my serial number is not valid anymore! After checking my product (CD, purchase receipt and online) it is still correct. I purchased CS6 last year in December 2012. Searching this community I noticed there are more people with this same problem today. What is wrong? What must I do?

    First ther is a pop-up saying that my free trial has ended. Unfortunately I can't make a screenshot of it, because it doesn't pop up anymore. After that I get this screenshot.

  • I cannot access my folders and when I click on Finder, it says "the application Finder cannot be opened" then a number 10810. HELP!

    After shutting down and rebooting, I find I have no folders on display on the desktop and when I click on the Finder icon, a message comes up that says "the application Finder cannot be opened" followed by the number 10810. HELP!

    You could do it by cloning.  I have read OSX installations of a single version can be machine specific too, so even if this were a Tiger compatible drive a clone might not work.  I haven't seen anybody actually state a specific case where they had problems on a machine compatible with the OS version because of this though.  The last  case I can recall of system specific installations was back in OS7 days with system enablers.   I have moved Tiger between machines by moving the drive with no problems, but the machines were pretty similar models (both Quicksilver, just a year difference production model).

  • Opening the Serial Number Selection window

    Hello,
    I have designed a custom form using screen painter, which saves data to a UDT. I want the Serial Number Selection dialog to open when i click on the add button of my user form.
    How can it be done?

    Hi Rohan,
    Check the below threads, they may help u with some work around.
    Invoking Serial / Batch Number Selection System Form
    UI: Referencing serial number selection form
    Serial Number for UDO Screen
    Hope it helps,
    Vasu Natari.
    Edited by: vasu natari on Nov 19, 2009 11:04 AM

  • Sudden trouble opening Indesign - serial number rejected

    Hi there,
    This is rather desperate. I turned on my work computer today and went to open InDesign (CS4 on PC) and it wouldn't open like usual, we've had this product and have been using it for some years. It has now prompted me with:
    1. I'd like to use this product as a trial
    2. Enter your serial number
    This has never happened before. So, I found our box and entered our serial number and it wouldn't accept it.....???
    Really frustrating as I need to use it and am on a  deadline.
    Any help would be really great!

    Try using System Restore to go back a day or two.

  • Webform that opens with auto number

    I need a web form that opens with a 5 digit number auto assigned. Each new form will increase by one  digit. When submitted it sends to mysql db. All connections between form and mysql have been made and are working. Just have not  figured out how to open form with auto number. Any help would be appreciated.

    The problem with your plan is that everytime a user, spambot or any other person or bot opens your form, a number gets generated. This might be an argument for generating the number outside the database, using even a simple text file to store the numbers as they accumulate.The alternative would be to use  an auto_increment primary key in the database to generate the number. The problem with that approach is that your database will fill up with empty records that contain just the primary key.
    I think that the best solution is to simply not do what you are trying to do. I think it's a bad plan.
    If you were to use the database method, as soon as the page opens, run an insert query on the database to simply generate the number, then call the number from the database using either:
    id = mysql_insert_id(); ----with the original, bad mysql connection
    $dbh->lastInsertId()  ----with a PDO connection
    Then, after the form is filled out, use an update query with a where clause as so:
    update mytable set name = '$name'  (etc., etc.) WHERE id = '$id'
    As already pointed out, using this method, your table will populate with many rows that contain just the key number because many users and spambots that open the form will not complete it, or your validation will reject them, but you could run a trigger on your database to purge these empty records automatically, or, if you don't know how to create a trgger, you can run a query that simply says:
    DELETE from mytable WHERE somefield IS NULL AND timestamp > currenttime + 5 hours
    (the above the the query logic, not the actual finished query. You wouldn't want to delete all empty records because you may delete some where the user is still filling out the form, that's why you would give it a few hours between creation time and delete time.)
    So if you used the text file method, you would use the PHP fopen function to open the file, check for the last created number, add the next number to the list, and echo that number on your form. You would run this script at the top of your page.
    But I would really think hard about whether you really need to generate the number before the filled out form is submitted. Maybe you do, but avoid it if you can.

  • How to find opener window page number

    Hi All,
    I have 2 pages. From page 1, I am opening page 2 as a popup. I want to find the opener page number, because the same page 2 is called form different pages.
    Please let me know is there any $x_ variable I can use instead of writing some code. I appreciate your help.
    Regards

    Thanks a lot Jari,
    Some reason it is not working,
    when I alert I am getting following output
    alert(' page no => '+ opener.$x("pFlowStepId"));
    output is
    page no => [object]
    Do you have doc list all these variables?
    I have one more question to same popup.
    I have window.doSubmit('DO'); after that I am doing to refresh parent page and close the window. But the do submit is taking some time and my parent pages is not refreshing the changes because of that ( it seems commit is taking some time).
    I there any way I can force timeout my logic looks like this
    window.doSubmit('DO');
    var w=self.setTimeout('',25000);
    do_parent_refresh();
    var w2=self.setTimeout('',25000);
    window.close;
    The problem is the timer is not working. If I have alert('') everything is working fine. Please help me.
    Regards
    Edited by: james. on Aug 1, 2011 8:33 AM

  • "Open With" - can number of apps be limited in list?

    Any way to limit the number of applications that appear in the popup list when using the contextual menu item "Open With"? (It's not that I have duplicates showing.)
    And... to be clear... this is not a "Get Info" > Open With question so as to bind a file type to a specific application, but just whether the list number can be reduced.
    This has been bothering me for years, but since occasionally when the system is (apparently) searching for all of the most cryptic of apps that could possibly open a file the Finder does a SPOD and then the Finder crashes... I thought I'd finally post this question.
    I've taken the time (over the years) to rebuild LaunchServices (via Onyx in my case) and trash cache files (via LeopardCacheCleaner)(i.e. com.apple.LaunchServices-0140.csstore and com.apple.LaunchServices-014nnn.csstore) but still the number of apps is problematic.
    I even opened the LaunchServices preference files and looked at them in TextWrangler, but I don't see how the list can be limited to say... only 10 apps appearing.
    Again... it is not that I'm showing duplicates, it's just that there are a lot of apps that I would never even remotely consider using to open a specific file.
    And I've also read this thread...
    http://discussions.apple.com/thread.jspa?threadID=2514597&tstart=60
    ...as well as others.
    Any suggestions?
    Thanks.
    Message was edited by: RonL

    *Launch Services* builds the list of applications that can open a particular file type from information that the applications provide. If an application indicates it can open the file type then it is listed. Once the application is registered, the system doesn't need to search the applications, it just looks at the LS database - rebuilding the database can clean up some issues, but apparently you have already done that.

  • Adobe Reader could not open (title and number of Adobe digital Editions EPUB book)because it is eith

    I've tried downloading digital books from both my public library and from the Adobe site. iI always get the above message.
    previously i downloaded aone with no trouble. So i know I have the correct software on my computer.

    Michael,
    I don't understand.
    Previously the Adobe Digital Editions software I installed on my computer
    did open an EPUB book.
    Now I get this Adobe Reader error message.
    What gives?
    Thanks,
    jim

  • How can I get FireFox 4 to be able to handle a number of videos open in a number of tabs. FireFox 3.6 could handle this but Fire Fox 4 , no chance. Please advise. Kind Regards.

    On Windows XP.
    I watch videos on CNBC and on FireFox 3.6 I use to right click and open up videos in new tabs and there was no problem, they also only started when I clicked on the tab to view the video which was good because it meant I did not have to go through and pause them. But FFox 4 can not handle multi vids in multi tabs, or at least mine can not . Please advise what I can do to fix this. Kind Regards.
    It was a job to get the trouble shoot info as FFox all woking very slow and jumpy.

    Firefox tarballs from Mozilla Org use prefs within Firefox for updates. The "toggle" for not automatically updating - '''app.update.enabled''' and where to look for updates - '''app.update.url'''. The first needs to be '''''false''''' and the second could be a '''''null''''' string, do an update can't be found.
    ''I use both prefs to keep Firefox from updating by itself. I install each new version of Firefox as it is released, and keep the older versions around for reference purposes. Those prefs are the same since Firefox 1.5 came out.''
    The versions of Firefox that are part of an operating system installation usually are that OS's own build of Firefox, and don't use the same update setup as Mozilla uses, in most cases. I am not familiar with Cent OS, but Ubuntu and Debian look for Firefox updates and from their own program repository servers outside of Firefox - as with the tarballs from Mozilla.

  • Aperture upgrade won't open with serial number

    I have a retail license for aperture version 2.1 with the serial numbers on the jacket for the cd. Several times after upgrades the new version will ask for my name and serial number. The latest upgrade to 3.4.5 tells me that my serial number is invalid. Any suggestions?

    Thank you so much for your reply but I want to apologize for wasting your time with this question. I was making a "rookie" mistake by using my cd jacket information from version 2.1. After reading your reply I looked further into my cd's and found the version 3.0 cd with the info I needed on the jacket. The correct serial number works fine with the upgrade.

Maybe you are looking for