Cannot use the same PO number as a Purged PO ....

Hello:
The users want to use the same PO number as a PO that has been cancelled and purged from the system.
But when they enter the PO number, it gives them an error that the PO number must be unique.
What is the reason for this functionality ?
Yesh

Hello:
We are on Release 12.0.6 using Buyer Work Center.
When I purge a PO it removes all the records from PO_HEADER, PO_LINES, etc and puts it in a PO_HISTORY_POS_ALL table .....I do not see the PO in the PO_HEADER_ARCHIVE tables.
The question is that once a PO is purged, why can't I go and use the purged PO number for another new PO..... since the user is using manual PO numbering scheme, they want to control the PO numbers and they feel that a purged PO number should be available to them for new PO.
Yesh

Similar Messages

  • Can I use the same trip number for several travelers?

    Hi everybody.
    This is my question... We need (in travel expenses) to use any field in order to group (add) several trips made for several travelers (in same dates).
    Expl: several travelers made the same trip (with different receipts and costs). We need to create a "supra-level" group (which could help our user to summarize, authorize, etc).
    I have made some tests changing the trip number assignment (in trip schema) to external one. The system seems not to have any problem if I assign the same trip number to several travelers (please, could you tell me if this is correct?).
    I´m not sure this could be the best solution, because I have one question... If I have travel request and travel expenses... can I assign external range numbers to the travel request? (how can I do it?).
    Please, could you tell me something about this? (if this is not correct, could you tell me if it´s possible to create a new field to do this?)
    Thanks!!!!!!

    Hi,
    As mentionned in an earlier response, you cannot assign the same trip number to multiple employees.
    If you are looking to group together similar claims based on the type of travel which was done, you can always use any of the following fields which can be made 'available' on the entry screen.  That is the 'Activity Type' or the 'Trip Type Specific' or the 'Trip Type Enterprise'.  By creating categories of types of travel, you can then use these values as selection parameters in your reports to isolate specific costs related to specific activities.
    For example, you know that many employees will be traveling for a specific conference and you want to be able to report on the total cost of that conference, you could create an Activity Type and ask employees to complete the field with the appropriate value when completing the claim.  Then you could create a report on that Activity Type only.
    Another option would be to use Internal Orders.  Create an internal order, have the employees assign their costs to the IO and then run a CO - IO report.
    Depending on how 'permanent' your employee groupings are, you could also use some fields on Infotype 17 to assign different employees to different employee groupings.  These employee grouping values are also available as selection parameters in the reports and can allow you to isolate groupings of individuals. 
    It all depends where you want to create the grouping....
    Hope this helps you somewhat...
    Regards,
    Roxanne Dore
    Travel & FI Consultant

  • Lock the plant so that other user cannot use the same plant.

    Hi Gurus!
    I ahve this small report which shows the pro-rate factor . In this report I need to block the plant or lock it(a soft) lock witha  message that some other user is using the plant so that other cannot use the same plant to post.Following is the report and if soemone can help me out would be very kind enough.I ahve added teh code where validation of plant is doen , so it must be somewhere here the locking should be done as per my thinking . Kindly suggest please.
    *&      Form  get_pro_factor
    *       get pro rate factor from the given
    *       combination of plant/sloc/mat#/period
    form get_pro_factor .
      select single zpr_factor zpr_disp_factor zpr_pipe_net zpr_pipe_gross
      from zprfactor
      into (zprfactor-zpr_factor, zprfactor-zpr_disp_factor,
            zprfactor-zpr_pipe_net, zprfactor-zpr_pipe_gross)
      where zpr_werks = p_werks    and
            zpr_lgort = p_lgort    and
            zpr_matnr = p_matnr    and
            zpr_mjahr = p_mjahr    and
            zpr_monat = p_monat.
      v_subrc = sy-subrc.
      if zprfactor-zpr_factor = 0.
        if c_wp = p_lgort+0(2).
          zprfactor-zpr_factor = 1. " Don C added this routine
        endif.
      endif.
      if zprfactor-zpr_disp_factor is initial.
        if not zprfactor-zpr_pipe_gross is initial.
          zprfactor-zpr_disp_factor = zprfactor-zpr_pipe_net / zprfactor-zpr_pipe_gross.
        endif.
        if zprfactor-zpr_disp_factor is initial.
          zprfactor-zpr_disp_factor = 1.
        endif.
      endif.
    endform.                    " get_pro_factor
    *&      Form  valid_plant
    *       validate whether plant entered in selection screen
    *       exists in database or not
    form valid_plant .
      if not ( p_werks is initial and
                 p_lgort is initial and
                 p_matnr is initial and
                 p_mjahr is initial and
                 p_monat is initial ).
        select single werks from t001w into t001w-werks
               where werks = p_werks.
        if sy-subrc ne 0.
          message e048(zmm) with p_werks.
        endif.
      endif.
    endform.                    " valid_plant
    *&      Form  FIND_MATKL
    form find_matkl .
      select single matkl into v_matkl from mara where matnr = p_matnr.
    endform.                    " FIND_MATKL
    *&      Form  UPDATE_ZPRFACTOR
    form update_zprfactor using p_flag.                         "DEVK903224
      call function 'ENQUEUE_E_TABLEE'
        exporting
          mode_rstable   = c_e
          tabname        = 'ZPRFACTOR'
        exceptions
          foreign_lock   = 1
          system_failure = 2
          others         = 3.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      else.
        select single * from zprfactor where zpr_werks = p_werks
                                       and   zpr_lgort = p_lgort
                                       and   zpr_matnr = p_matnr
                                       and   zpr_monat = p_monat
                                       and   zpr_mjahr = p_mjahr.
        if sy-subrc = 0.
          zprfactor-zpr_rate_flag = p_flag.                     "DEVK903224
          update zprfactor.
        endif.
      endif.
      call function 'DEQUEUE_E_TABLEE'
        exporting
          mode_rstable = c_e
          tabname      = 'ZPRFACTOR'.
    Thanks
    Aarav

    call function 'ENQUEUE_E_TABLEE'
        exporting
          mode_rstable   = c_e
          tabname        = 'ZPRFACTOR'
        exceptions
          foreign_lock   = 1
          system_failure = 2
          others         = 3.
    ENQUEUE_E_TABLEE   } E_TABLEE is the name of the lock object, it starts with character "E".

  • How Many Times Can I Use The Same Serial Number For Adobe Creative Suite 4?

    I have design standard and was told I can use the same serial number on multiple computers. How many time can I use it? And say I install it on the maximum number of computers, but get a new computer, can I uninstall it on one of the old computers and use it on the new one? And can I use the programs on both computers simultaneously or do I have to use them one at a time?

    Fred Tech wrote:
    Broadly speaking, it depends on the type of license you have.
    Specifically, if you have a single license then officially, you should only install it once on one computer.
    Practically, (unless it has changed with CS4) you maybe able to install it on more then one computer, BUT can only run one instance of the software at a time. You can not run more then one instance of the software concurrently; i.e. you can't run Dreamweaver on Computer 1 and Photoshop on Computer 2. That would be two instances, and is not permitted.
    This is my understanding. I am happy to be corrected if I am wrong
    Fred
    Sorry Fred you are wrong.
    If you have a single license you can install it on as many computers as you like. you can only activate the suite on two computers at anyone time. Work and Home or as many of us do it Desktop and Laptop. You can not use the computers simultaneously. You only have 20 activation/deactivations so use them wisely. Student versions only have one activation. You can not break up the suite installs the suite is considered one application.

  • Using the same serial number on two devices, for Adobe Creative Suite 6 Master Collection

    I already have Adobe Creative Suite 6 Master Collection (student version) installed on my personal home computer, but I'm looking into buying a laptop, will I be able to install the same programs and use the same serial number on my laptop as well as it being on my personal home computer, or would I have to buy separate software for my laptop?

    Fininif you can install Creative Suite 6 on up to two computers for your use.

  • Can I use the same serial number for mac and pc?

    My problem is that my mac is falling apart and I don't know how long it's still working - can be hours or can be months. I'm not sure if my next computer is mac or PC, so I'd like to know if the same serial number can be used with both mac and PC? I have understod that I can delete the program from my old computer and then use the same serial number in my next computer (Is it working that way?). So if I now buy a lisence for mac, can I use the same lisence later with PC?

    Riisar for retail copies of the software you would need to complete the process detailed in Order an Adobe product platform swap or language swap.

  • Can I use the same serial number for windows and mac?

    Hi
    I brought the Adobe Creative Suite 6 DesignandWeb Premium for windows and have been using fine on my PC. I now want to by a MAC laptop - can I use the same serial number and just go online for the MAC version download?

    Swap Windows <-> Mac http://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.htm l

  • I want to install lightroom previously installed on a macbook on a new macbook. I get an error message when I try to use the same serial number. How can I install lightroom on my new mac?

    i want to install lightroom previously installed on a macbook on a new macbook. I get an error message when I try to use the same serial number. How can I install lightroom on my new mac?

    Oliver,
    Are you getting activation errors? As Ned stated , it is easier to troubleshoot if we have the specific type of error and error detail that you are getting.
    Here is some help on activation if this is the issue:
    https://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    Pattie

  • Clusters cannot use the same multicast address

    Hello All,
    Found following error while starting of managed server in weblogic.
    error***
    <Aug 22, 2012 4:40:57 AM GMT-06:00> <Error> <Cluster> <BEA-000166> <Some other c
    luster in this domain is configured to use the same multicast address as OIM_CLU
    STER. Clusters cannot use the same multicast address.>
    error***
    I have three managed server and two cluster.
    CLUSTER NAME >> MANAGED SERVERS IN CLUSTER
    OIM_CLUSTER >> admin server and oim_server1
    SOA_CLUSTER >> SOA_SERVER1.
    I am starting servers through cammand prompt. In cammand prompt i see above error.
    How can i correct the above error ?
    Thanks in advance,
    Manohar

    Change the multicast address: http://docs.oracle.com/cd/E21764_01/apirefs.1111/e13952/pagehelp/Corecoreclusterclusterconfigmulticasttitle.html
    "The multicast address used by cluster members to communicate with each other.
    The valid range is from from 224.0.0.0 to 239.255.255.255. The default value used by WebLogic Server is 239.192.0.0. You should avoid using multicast addresses in the range x.0.0.1
    This address should be unique to this cluster and should not be shared by other applications."
    Some general information on clusters: http://docs.oracle.com/cd/E21764_01/apirefs.1111/e13952/pagehelp/Corecoreclustercreateclusterpagetitle.html

  • I had an iphone 4s and it worked nice with facetime and imessage using my phone number but  it was stolen on December so I buy a new iphone 4s using the same cellphone number  but now imessage and facetime does not work with my number, it only works with

    I had an iphone 4s and it worked nice with facetime and imessage using my phone number but  it was stolen on December so I buy a new iphone 4s using the same cellphone number  but now imessage and facetime does not work with my number, it only works with my apple ID.   Please Help me I speak Spanish so  if my English is not ok  I´m sorry about it.
    Do you think that apple has to   reset in their database of the old serial number attached with my phone number and that’s why I can´t activate imessage and facetime with my number in the new iphone 4s?? 

    I understand all of this Meg; that is why I bought an Iphone; but never expected my phone not even give a at least a 24 or even 12 hours....I work 12 hour shifts and also would expect to have to charge each night but not twice a day or more.  I am not always somewhere I can charge my phone.
    Your points are true; however it doesn't help me......

  • I recently bought  Lightroom and installed on one of my computes. I wanted to instal the program on another computer I have, using the same serial number I already bought and I'm not alowed as it says that the SN is not valid. What shall I do?

    I recently bought  Lightroom and installed on one of my computes. I wanted to instal the program on another computer I have, using the same serial number I already bought and I'm not alowed as it says that the SN is not valid. What shall I do?

    It is possible that you downloaded the Creative Cloud trial of Lightroom. The perpetual license key will not work. Uninstall the version on the second computer, this will not interfere with your catalog, preferences and personal files.
    Download the appropriate version from the link below and install, your license key will be accepted and everything will be fine.
    Product updates

  • I bought the student and teacher version of CS5 extended for windows. Can I download the Mac version to my new  apple computer  and use the same serial number after removing phtoshop from my PC?

    i bought the student and teacher version of CS5 extended for windows. Can I download the Mac version to my new  apple computer  and use the same serial number after removing phtoshop from my PC?

    Can I download the Mac version to my new  apple computer  and use the same serial number after removing phtoshop from my PC?
    Short answer: not for CS5.
    Platform swaps are available but only for CS6
    Order product | Platform, language swap

  • Upon upgrading to CC from CS6 suite, use the same serial number?

    Upon upgrading to this new Cloud, I was told I could continue to use my existing CS6 suite side by side with the new CC. But then I was told they use the same serial number, how is this possible?

    Please ask the question in the Creative Suites (http://forums.adobe.com/community/creativesuites ) or Creative Cloud (http://forums.adobe.com/community/creative_cloud) forums.

  • I have bought lightroom 5 and loaded it onto my lap top but i want to buy a new lap top will i be able to load the same software onto my new laptop using the same serial number

    Can I use the light room 5 software I have bought to install it on my new laptop using the same serial number as before

    Yes, the Lightroom license key is single user/owner.
    It can be installed on two computers at the same time with one in use at any point in time.
    Mac & or PC.
    There is no deactivate process just uninstall from one and install on another as many times that is necessary.
    The link below gives a detailed procedural procedure.
    http://www.lightroomqueen.com/how-move-lightroom-to-new-computer/

  • I will be upgrading from Windows XP, service pack 3, to Windows 7 Ultimate. Will I be able to use the same serial number for CS5 I am currently using on Windows XP on Windows 7 Ultimate? THANKS

    I will be upgrading from Windows XP, service pack 3, to Windows 7 Ultimate. Will I be able to use the same serial number for CS5 I am currently using on Windows XP on Windows 7 Ultimate? THANKS

    You should be able to. Just deactivate your copy of CS5 on your old computer. Open one of the applications and choose Help > Deactivate.
    Use your original install discs or a backup of your install file to install on the new computer. Or download here:
    Other downloads

Maybe you are looking for

  • G4 Will not Boot Up after Quick Time 7.1.6 Upgrade

    I upgraded the most recent Quicktime update last night and opted for System Shutdown afterward. This morning the machine will not boot up. It goes to the Apple and the swirling circle for up to a half hour - still no luck. Any ideas? iMac G4   Mac OS

  • Message Monitor Missing Messages in Adapter Engine

    All, I had over 200 messages in my adapter engine but recently I only see 115 for the same period.   Additionally, all of the 850 (PO) inbound messages are gone.   I see them in the Integration Engine but not in the Adapter Engine anymore.     I need

  • Nokia N8 photo browser, Messaging problem

    Hey guys. Recently I got a problem with my nokia N8. The photos I captures recently are not in the photo browser, but they are saved on my phone because I can find them using file manager app. Also the new texts I receive are not in my inbox.  Any he

  • HT204266 problem with payment method!!

    i am purchasing an app from appstore and when i fill my billing details it says "your payment method is not correct",even if its correct..i am selecting VISA as my method and error is coming every time..how do i purchase this app now??

  • Solaris does not see second cpu

    I have put together the following system: Asus A7M266-D mobo 2 - Athlon MP 1.6+ cpus 2 - 512 MB DDR PC2100 Maxtor 60 gb hd Matrox G450 agp video mpstat shows only cpu 0. Any thoughts on how to get both cpus running? Allen