Status PAGE in q-notification

hello everybody
I just got a system status in a q-notification that says "PAGE".
Anybody know what that status means and when it is set?
Thanks a lot in advance
Anja

Status 'PAGE' is set when you use 'paging/communucation' function at notification or order.
This function is used to send immediate note to responsible person using SAP office.
Regards
Luke

Similar Messages

  • Getting Error after changing the recalculation date in retropay status page

    We run Retro-Notifications Report (Enhanced) - PDF and one record came with the recalculation date as 01-JUL-2009 ( Hiredate). We want his retro should be calculate from 12-Jan-2010. When we are changing the recalculation date of this employee in HRMS Super User -> View-> Retropay Status page it is giving a error like that.
    Error :
    You cannot update to this recalculation date for the assignment because it contains one or more elements with an earlier recalculation date. Please choose an assignment recalculation date that is the same as, or earlier than, the recalculation date of all the individual elements.
    Please suggest in this case.
    We are using Oracle 12.0.6.

    Entry or hiring date
    This is date which is being posted to FI so it will not allow to change the old data
    Even if you try to do so the retro will start from this date and will trow errors
    Reward points

  • Internet Printing Services - Printer "Device Status Page Error". Please Help.

    I am getting Device Status Page Error :
    We are unable to generate the device status page for the selected printer. Please contact your system administrator for more information.

    Hi,
    What’s the OS version of your server? If it’s Windows Server 2003, please try to refer to the following article to see if it could help.
    "Device Status Page Error" error message when your printer tries to display a status notification message
    http://support.microsoft.com/kb/884552
    Best Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • How to Implement the Search page for Workflow Notifications?

    Hi All,
    I want to implement the new Search page for Workflow Notifications. Search page containing Company, Paygroup, Source, Initiator, Supplier Name, From date & To date fields. These fields(Poplist & Calendar) are getting the values from different tables and these fields are not in WF_NOTIFICATIONS table only Initiator & dates are there. After selecting the values in all fields or one field based upon these values I want to display the all Workflow Notifications ( Those are satisfy the search criteria only not all ) in Advance Worklist Table RN in the Notifications page. Is it possible to create the Search page based upon the above scenario if Yes Let me know how to implement this search page for Workflow. Page was designed but how to get the sortlisted Notifications and how to pass these values to next page?
    Thanks in advance.
    Edited by: user635152 on Nov 13, 2008 10:53 AM

    Hi Guru,
    I crete the Search page having 5 poplists and select the values from dropdown list and click GO button it serch the records and displays that records in ResultsTable in same page.
    My case, Search page is running fine if I select the values and click GO button page is refreshed without errors but I am unable to displays the records in ResultsTable.
    What I am missing?
    My Select Stmt:
    SELECT * FROM      
    (select wn.nid notification_id
    ,ou.name company
              ,I.PAY_GROUP_LOOKUP_CODE paygroup
              ,'AP' source
              ,pf.full_name initiator
              ,pv.vendor_name supplier_name
              ,I.GL_DATE FROM_TO_DATE
    from ap_invoices_all i
    , po_vendors pv
         , hr_operating_units ou
         , per_all_people_f pf     
         , FND_USER FU
    , (SELECT trim(substr(substr(substr(WN.subject,(instr(WN.subject,'Invoice ') + 8),100),1,100),
    1,instr(substr(substr(WN.subject,(instr(WN.subject,'Invoice ') + 8),100),1,100),' for'))) inv_no
    ,notification_id nid
    FROM WF_NOTIFICATIONS WN
    WHERE WN.MESSAGE_TYPE = 'APINV'
    AND WN.STATUS NOT IN ('CANCELED','CLOSED')) wn
    where i.vendor_id = pv.vendor_id
    and i.invoice_num = wn.inv_no
    and i.WFAPPROVAL_STATUS = 'REQUIRED'
    and pv.vendor_name = nvl(:vendor_name,pv.vendor_name)
    and i.org_id = OU.organization_id
    AND OU.name like nvl(:company_name,name)
    and i.pay_group_lookup_code = nvl(:pay_group,i.pay_group_lookup_code)
    and exists (select ad.invoice_id
    from ap_invoice_distributions_all ad
    where ad.invoice_id = i.invoice_id
    and ad.accounting_date between nvl(:from_date,ad.accounting_date)
                                       and nvl(:to_date,ad.accounting_date))
    and 'AP' = nvl(:source,'AP')
         and i.created_by = fu.user_id
         AND fu.EMPLOYEE_ID = pf.person_id
         AND pf.full_name like nvl(:initiator, pf.full_name)
    UNION ALL
              select po_num.nid notification_id
              ,ou.name company
              ,ps.PAY_GROUP_LOOKUP_CODE paygroup
              ,'PO' source
              ,pf.full_name initiator
              ,pv.vendor_name supplier_name
              ,P.CREATION_DATE FROM_TO_DATE
         from po_headers_all p
         ,po_vendors pv
              ,po_vendor_sites_all ps
              ,hr_operating_units ou
              ,per_all_people_f pf
         ,(select trim(substr(wn.subject,24,instr(wn.subject,' for')-24)) po_no, notification_id nid
              FROM WF_NOTIFICATIONS WN
         WHERE WN.MESSAGE_TYPE = 'POAPPRV'
         AND WN.STATUS NOT IN ('CANCELED','CLOSED')
         and wn.subject like 'Standard Purchase Order%') po_num
         where p.SEGMENT1 = po_num.po_no
         and p.vendor_id = pv.vendor_id
         and p.org_id in(select organization_id
         from hr_operating_units
         where name like nvl(:company_name,name))
         and pv.vendor_name = nvl(:vendor_name,pv.vendor_name)
         and p.AUTHORIZATION_STATUS = 'IN PROCESS'
         and p.CANCEL_FLAG = 'N'
         and 'PO' = nvl(:source,'PO')
         and p.agent_id = pf.person_id
         and pf.full_name like nvl(:initiator, pf.full_name)
         and pv.vendor_id = ps.vendor_id
         and ps.org_id = ou.organization_id
         and ou.name like nvl(:company_name,name)
    and ps.PAY_GROUP_LOOKUP_CODE = nvl(:pay_group,ps.PAY_GROUP_LOOKUP_CODE)
         and trunc(p.creation_date) between nvl(:from_date,trunc(p.creation_date)) and nvl(:to_date,trunc(p.creation_date))
    In CO PFR Code:
    if (pageContext.getParameter("Go") != null)
    OAQueryUtils.checkSelectiveSearchCriteria(pageContext, webBean);
         String COMPANY = pageContext.getParameter("COMPANY");
    String PAYGROUP = pageContext.getParameter("PAYGROUP");
    String SOURCE = pageContext.getParameter("SOURCE");
    String INITIATOR = pageContext.getParameter("INITIATOR");
    String SUPPLIER_NAME = pageContext.getParameter("SUPPLIER_NAME");
    Boolean executeQuery = BooleanUtils.getBoolean(false);
    Serializable[] parameters = { COMPANY, PAYGROUP, SOURCE, INITIATOR, SUPPLIER_NAME, executeQuery};
    Class[] paramTypes = { String.class, String.class, String.class, String.class, String.class, Boolean.class };
    am.invokeMethod("initSearch", parameters, paramTypes);
    OAAdvancedTableBean table = (OAAdvancedTableBean)webBean.findChildRecursive("ResultsTable");
    table.queryData(pageContext, false);
    AM invoke Method():
    public void initSearch(String company,
    String paygroup,
    String source,
    String initiator,
    String supplier_name,
    Boolean executeQuery)
    WorklistFindVOImpl vo = getWorklistFindVO1();
    if (vo == null)
    MessageToken[] tokens = { new MessageToken("OBJECT_NAME", "WorklistFindVO1") };
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", tokens);
    vo.initQuery(company, paygroup, source, initiator, supplier_name, executeQuery);
    VO Code:
    public void initQuery(String company,
    String paygroup,
    String source,
    String initiator,
    String supplier_name,
    Boolean executeQuery)
    StringBuffer whereClause = new StringBuffer(500);
    Vector parameters = new Vector(5);
    int clauseCount = 0;
    int bindCount = 0;
    setWhereClauseParams(null); // Always reset
    if ((company != null))
    String companyname = null;
    try
    companyname = new String(company);
    catch(Exception e) {}
    whereClause.append("COMPANY= :COMPANY");
    whereClause.append(++bindCount);
    parameters.addElement(company);
    clauseCount++;
    if ((paygroup != null) && (!("".equals(paygroup))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("PAYGROUP = :PAYGROUP");
    whereClause.append(++bindCount);
    parameters.addElement(paygroup);
    clauseCount++;
    if ((source != null) && (!("".equals(source))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("SOURCE = :SOURCE");
    whereClause.append(++bindCount);
    parameters.addElement(source);
    clauseCount++;
    if ((initiator != null) && (!("".equals(initiator))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("INITIATOR = :INITIATOR");
    whereClause.append(++bindCount);
    parameters.addElement(initiator);
    clauseCount++;
    if ((supplier_name != null) && (!("".equals(supplier_name))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("SUPPLIER_NAME = :SUPPLIER_NAME");
    whereClause.append(++bindCount);
    parameters.addElement(supplier_name);
    clauseCount++;
    setWhereClause(whereClause.toString());
    if (bindCount > 0)
    Object[] params = new Object[bindCount];
    parameters.copyInto(params);
    setWhereClauseParams(params);
    if ((executeQuery != null) && (executeQuery.booleanValue()))
    executeQuery();
    } // end initQuery()
    Please let me know what I did mistake in my code?
    I am unable to find it what I missing and there is no errors but no records displayed in Results Table.
    Please it's urgent.
    Thanks
    Nag.
    Edited by: user635152 on Nov 19, 2008 4:43 PM

  • Status page in X3000 no longer showing any data.

    Using the latest 1.0.05 firmware on X3000
    Status page perpetually shows "Connecting" even though I'm connected.
    It no longer shows data such as the Internet IP address, Gateway etc.
    Only DNS IP addresses are shown.

    Hi, 
    Try to turn off your X3000 for around 60secs then check again. If it's doing the same issue after doing a powercycle, you may have to perform a hard reset then reconfigure your router.
    If everyone needs to believe in something, I believe I'll have another beer..

  • I have a HP PSC 2210 all-in-one. Can I print a status page that shows count of pages printed?

    I said everything in the subject except, if there is a status page printing capability how do I do it,

    Hi there,
    This article should cover the issue you are experiencing. Give the steps outlined a shot and let us know if it helps.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Please restore e-mail or at least give us some real information.  Tech support is almost smug in their response for additional information.  The iCloud status page has said the same thing since yesterday.  A real dis-service.  My business depends on this!

    Please restore e-mail or at least give us some real information.  Tech support is almost smug in their response for additional information.  The iCloud status page has said the same thing since yesterday.  A real dis-service.  My business depends on this!  Any one have any suggestions not being offerd by tech support or Apple?  Anything at all?

    mdjb wrote:
    I just lost a big opportunity to get a new client because of this!!   almost 24 hours now without any email service. I was one of the original.mac customers.  I am over this time to move on. It is an inferior product.
    My sympathy, but, this is what you agreed to when you chose to use a free system: (From terms of service agreement, iCloud)
    APPLE DOES NOT GUARANTEE, REPRESENT, OR WARRANT THAT YOUR USE OF THE SERVICE WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU AGREE THAT FROM TIME TO TIME APPLE MAY REMOVE THE SERVICE FOR INDEFINITE PERIODS OF TIME, OR CANCEL THE SERVICE IN ACCORDANCE WITH THE TERMS OF THIS AGREEMENT.
    And this is no different from any other free service I'm afraid. Pay for your mail, then you have the right to expect service.

  • ThinkPad W520: Parts Wrongly Listed in and/or Missing from Lenovo Order Status Page

    I ordered a configured ThinkPad W520 off Lenovo.com for USD1500 yesterday.  Later when I went back to check my order status, to my surprise some parts were either shown up incorrectly or simply missing.
    For example my ThinkPad W520 includes (but not limited to) these parts:
    Parts missing from Lenovo Order Status page:
    UltraNav with TrackPoint & touchpad
    Express Card Slot & 4 in 1 Card Reader
    Question: Where are they? Why missing?
    Parts shown incorrectly on Lenovo Order Status page:
    I've ordered: 15.6" FHD (1920 x 1080) LED Backlit Anti-Glare Display, Mobile Broadband Ready
    Lenovo Order Status page shows: SBB 15.6FHD (1900 X 1080) LED
    Question: Why 1900 instead of 1920? What gives?
    To be on the safe, I tried hard to match each of the parts consisting my ThinkPad W520. So far the above are my concerns. I know many of you are long-time Lenovo patrons. I'd appreciate your patience look through the below complete lists and advise if Lenovo indeed have received my order correctly.
    Thank you very much!
    [B][U]The ThinkPad W520 I've order: [/U][/B]
    Part Number: 4270CTO
    ThinkPad W520 - 1 Yr Depot Topseller Warranty
    Processor: Intel Core i7-2720QM Processor (2.20GHz, 6MB L3)
    Operating system: ThinkPad PC DOS License
    Operating system language: PC DOS 2000 License
    Display type: 15.6" FHD ([B][COLOR="SeaGreen"]1920 x 1080[/COLOR][/B]) LED Backlit Anti-Glare Display, Mobile Broadband Ready
    System graphics: NVIDIA Quadro 2000M Graphics with 2GB DDR3 Memory
    Total memory: 4 GB DDR3 - 1333MHz (1 DIMM)
    Keyboard: Keyboard US English
    Pointing device: [B][COLOR="SeaGreen"]UltraNav with TrackPoint & touchpad[/COLOR][/B]
    Camera: 720p Camera
    Storage subsystem: Internal RAID - Not Enabled
    Hard drive: 320 GB Hard Disk Drive, 7200rpm
    Optical device: DVD Recordable
    System expansion slots: [B][COLOR="SeaGreen"]Express Card Slot & 4 in 1 Card Reader[/COLOR][/B]
    Battery: 9 cell Li-Ion Battery - 55++
    Power cord: Country Pack North America with Line cord & 170W AC adapter
    Bluetooth: Bluetooth 3.0
    Integrated WiFi wireless LAN adapters: Intel Centrino Ultimate-N 6300 (3x3 AGN)
    Integrated mobile broadband: Integrated Mobile Broadband - Upgradable
    Language pack: Language Pack US English
    [B][U]ThinkPad W520 shown under Lenovo Order Status:[/U][/B]
    4270CT       CONFIGURED SYSTEM
    0A68541       SBB ICI7-2720QM                        
    27R1799       VBB PC DOS LICENSE                        
    39T7676       SBB DOS 2000 FLYER - NO                        
    0A68535       SBB 15.6FHD ([B][COLOR="Red"]1900 X 1080[/COLOR][/B]) LED                        
    0A68894       SBB NVQ2000M GR                        
    45M4572       VBB 4GBPC3-10600DDR3 1333SODMM                        
    45M4839       SBB KEYBOARDUS ENGLISH                        
    0A68527       VBB NO FINGERPRINT READER                        
    0A68558       SBB 720P HD CAM INT MICR                        
    0A69620       SBB I RAID-NOT EN                        
    0A68552       SBB 320GB HDD7200RPM                        
    0A71939       SBB DVDRECORDABLE                        
    0A68529       VBB ECS+4IN1CR                        
    45M4816       SBB 9CELLLI-ION BATTERY                        
    0A68904       SBB CPNAMLC+ 170W AC AD                        
    0A68261       SBB BLUETOOTH 3.0                        
    45M4804       SBB IN.CENT.ULTIMATE-N 6300                        
    44C7950       SBB INT WRLSSWDAREANTWRK UPGR                        
    0A68564       SBB LANG PCK US E

    you are right, this is very silly! ")
    W520 4270CTO i7-2820QM Quadro2000M 1920x1080 Display 16GB RAM 2x240GB Intel 510 SSDs (RAID 0) - BIOS 1.42 - PCMark7:4,568
    Samsung Series 9 15-inch NP900X4C-A03US - PCMark7: 4674

  • WRT54G2 - IP address not correct in status page

    I recently bought a new WRT54G2 (firmware 1.0.01), and it's been working fine for a couple of months.  However, recently I've been unable to connect via Remote Admin, and also I've been unable to use my FTP client, so I checked the status page, and here's what it shows for my IP:
    Current Time:Fri, Jul 17 2009 15:27:51
    MAC Address:00:23:69:36:A7:5F
    Router Name:WRT54G2
    Host Name:
    Domain Name:hsd1.il.comcast.net.
    Login Type:Automatic Configuration - DHCP
    IP Address:10.1.10.10
    Subnet Mask:255.255.255.0
    Default Gateway:10.1.10.1
    DNS 1:10.1.10.1
    This is NOT my IP address, and seems to me like the router has reset to a default value.  Anybody know why this would happen?  My internet connection is working fine, as well as my internal network, but I just can't get my FTP client to work, or connect remotely to my computer.

    A few ideas/questions...
    First suggestion is to get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, boot holding down CMD+s, then when the prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    This will assure that the filesystem, Permissions, etc are OK, it'll clear caches nicely too.
    Then get Little Snitch...
    http://www.obdev.at/products/littlesnitch/index.html
    So we can make sure nothing is gong out that we don't want.
    Do you anything about "Thomson"?
    If it's files you wish to try to delete to fix, these are the frequent offenders...
    /Library/Preferences/com.apple.sharing.firewall.plist
    /Users/nnnnLibrary/Preferences/com.apple.internetconnect.plist
    /Library/Preferences/SystemConfiguration/preferences.plist
    /Library/Preferences/SystemConfiguration/NetworkInterfaces.plist
    Reboot required, and set up Sharing and Networks again.
    Does...
    http://127.0.0.1
    Get you to your machine's Web page?

  • Cube Status Page

    I need to create a cube status page and need ideas. I thought I would post this and see maybe if someone has an idea.
    Details:
    Everynight, we start running batch and all our Essbase users are logged out of the cubes. We run batch through out the night. Our cubes become available the following day around 8:00 AM. I need to create a .NET/website that will show the status of the batch as cubes become unavailable/available. For example, I would like to list the names of our cubes, their status(avail/not avail), timestamp of when it became available, and most importantly ETA(Expected Time Arrival). I would like to create this page on a SharePoint site. We have about 25 Essbase cubes and are on version 9.3x. We have both ASO and BSO cubes. The servers we use are UNIX.
    In conclusion, my goal is to create a site for cube availability status page and display the above fields(cube name, status, enable time, ETA, etc.,). Does anyone have an idea on how to accomplish this especially the ETA?
    Thanks,

    Hi,
    ETA Expected Time Arrival, for this you need to calculate how much of time the transaction would take ( when i say transaction , it means Load or calc process).If they are new cubes, which have been run so far , then you need to simulate calculation to estimate calculation time(refer chapter 55 :'optimizing calculations').If you have been running cubes ,then you know already by now how much time the cubes have been taking.
    Just pay attention to the following things:
    1. How many cubes have been run simultaneously
    ex: If yoru XYZ cube when run around 2 PM is taking 30 minutes for its processing.We cannot conclude that it would take 30 minuts irrespective of anything. The XYZ cube ,when being processes , there miht be other cubes which are simultaneously being processed ( which would impact the processor and RAM sharing..and other resources).
    2. Take care also of the specific cubes run as per your batch to conclude the ETA , when different cubes are run simulataneouly ,again ,basis the cubes nature it might take time .
    3. For any specific month/quarter ,for any particuar cube , the data to be loaded is more ( might be because of some business reason) , do factor in that point . It might happen one in a quarter of year.
    For now , i see these points on the top of my head .
    Out of curiousity, is it a requirement for your operational comfort or any other reason.
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • Is there a sync status page?

    Is there an "about:sync" status page displaying information such as
    - number of devices active on the account
    - when each device was last synced

    You can go to about:sync-tabs to see a list of other devices that have tab sync enabled.

  • Task Status in PM/CS Notification

    Need to get Task Status in PM/CS Notification.Is there any FM or table for reading the task status?
    Tcode IW52, in Tasks Tab, need to know for  'STATUS'. ....not User Status

    aufk-aufnr = notif / cs order number
    aufk-objnr = jest-objnr 
    jest-stat is your status... if you need test for this status TJ02-istat = jest-stat  ,  TJ02 - text30 is the text of the status.

  • Don't understand how Apple's 'status' page works

    There are literally thousands of users complaining about Facetime being broken over the last eight days.
    Apple's only response seems to be "update your software".
    However, many iOS 7 users are also complaining about broken Facetime, even AFTER updating.
    So, the question is - what does Apple's status-page actually represent, since it lists Facetime as being green and regular.
    Confused...

    Well then, if that's the official statment - i.e. iOS 6 users who DON'T want to upgrade at this time to iOS 7, well, Facetime will no longer be available to you.
    Their quote: "If you're using iOS 7.0.4 or later or iOS 6.1.6, this issue doesn't affect you."
    I don't think iOS 6.1.6 was ever made available for iPad users, was it?
    If I am interpreting that correctly, I imagine my spouse and I will begin to look for a comptetitors brand of tablet,
    since we really don't like iOS 7 very much, mainly because with our iPad 2 and 3, the update really slows the ipad down significantly.  Those with iPad 4's and up will be fine.
    My iPad 3 is 16 months old.  Paid nearly $700 for it.  16 months old, and I can't run the OS I purchased (if it came with iOS 7, I may not have actually bought it).  $700 obsolete in 16 months.
    Sad, but if that's the case, not much iOS 6 users can do.

  • Show workflow visualization on status page" not available

    Hi, i'm trying to publish my sharepoint designer workflow to SharePoint, but it wont give me the option to select "show workflow visualization on status page", its just greyed out. If i use the beta version of SharePoint Designer (on a different server),
    it works fine, but it wont let me select it in RTM version. Has anybody else seen this problem? If so did you manage to figure something out?
    Thanks!
    Treasa

    Clayton,
    We are deploying a new SharePoint 2010 Enterprise solution. I wanted to verify with you..in order to use the workflow visualization feature we need to have a copy of Visio 2010 Premium?
    Thanks, Trey
    What call is being made on Form Load, and is it not being called when the form is initially opened?  I ask this, because you say the error only pops up when opening an existing form (not new forms).  Also, is that Form Load web service call using
    custom code?SharePoint Architect || Microsoft MVP ||
    My Blog
    Planet Technologies ||
    SharePoint Task Force

  • No BT broadband status page

    The BT broadband status page at http://help.btinternet.com/yahoo/help/servicestatus/ has been unavailable for at least the last 24 hours. My offspring has an internet outage in Welwyn Garden City and I can't even see what the broadband status is.
    Is there another URL for broadband status or is this some acknowledged problem?

    Seems to be working now but you can also check here.
    http://usertools.plus.net/exchanges/

Maybe you are looking for

  • ITunes doesn't open when iPod Touch is connected

    I have iTunes 8.0. When I connect the iPod touch, nothing happens. If I manually open iTunes, it begins to backup and sync. I have the box checked on the summary page for the iPod Touch that says "Open iTunes when this iPod is connected". I already t

  • Adding page headers and footers to Numbers 3.0 document

    I have not found any way to add page headers or footers to a Numbers 3.0 spreadsheet document.  Searching online help file did not yield solution.  Anyone have any ideas?

  • Location of imported a Financial Report ?

    I imported a Financial Report in the HFM 9.3 workspace but I cannot find it. I was never prompted for a location to import to. Where does an imported Financial report go ? We are using HFM 9.3.1

  • APPCS5.5 Clip Marker Sync Question

    Very simple scenario: Within Adobe Premiere Pro CS5.5, I inport (1) single video, minus audio. I then import (1) audio track, completely not associated with the audioless video clip. (For sake of this scenario, (1)video of gun shot - no sound, (1)aud

  • Outbound Idoc creation after Purchase Order Creation via Trading contract

    Hi All, Below is my requirement- Purchase Order Will be created automatically through trading contract. I need to pass some details about the purchase order created to the external system through IDOCS. ie this idoc should get triggered whenever a Pu