Program to mark modification change !!

Hey guys
does anyone have a sample report which puts a mod in the end of an abap editor line.
<u>The Context</u>
Most of the times when we modify a program we put some kind of an identifiaction mark there to mark our changes so that when we do a version compare we know what changes have been made and who has made those changes. I rembr I came across such a program somewhre but I am having trouble reproducing it. It had a selection screen where you put the program name and the no of lines in select options and the id you want to mark ur changes with and VOILA it used to mark the changes for you ! was very neat.
Any help from the Good old abap champs?
Rgds
Sameer

Hi
Check the below program in SE38.
RSDDS_AGGREGATES_MAINTAIN
give the info objects and execute it in back ground.
http://www.erphowtos.com/guides-a-tutorials/doc_view/1042-sap-bw-hierarchy-attribute-changerun-management.html
Regards,
Venkatesh

Similar Messages

  • After printing files are marked as changed. how to disable that?

    Hi.
    After I print a file, the file is marked as changed (the red ball has a dot)
    I don't want that. It is annoying when you print a lot, and after a day of work on my Apple I don't want to walk through all those open files.
    Is there a fix or a terminal hack for that?
    Thanks
    Marius

    I'm making some progress on creating an icon on the desktop in which you can drop a file & print multiple copies of the file. Let me know if you are interested in this & will write up more documentation & ease the restrictions.
    The following is an Applescript. Use the script editor to save.
    (*  print multiple copies of the document when a file is dropped on the printer icon.
       Input:  A print job to the selected printer. Change as needed these variables:
          printerName : "copy30"
          printerCopies : 5
       Output:  Print the number of copies.  Log like information is keep in the file /debugLog.txt
       setup
       = Create a new printer via:
         blue apple > system preferences > print & fax
         pick the print tab & click on the + sysmbol 
         You need to create another instance of you printer, so you can drop a file on the icon to
         printe mulitple copies.
       = You need read access to the folder /var/spool/cups
         Macintosh-HD -> Applications -> Utilities -> Terminal
         sudo chmod o+rx /var/spool/cups
         The sudo command will ask for your administration password. No characters will appear when typing your password. Press return when done typing.
         Unfortunately, boot the system erase this change.  You need to enter this command after every boot
         where you want to print multiple copies.
        = use the .scpt extension on the script when saving. for example: selectiveChangePrint.scpt
        = Place this script in:
           /Library/Script/Folder Action Scripts
        = Add this folder action to 
           /var/spool/cups
          Navigate to /var/spool/cups.  Right click on this folder.  Click on Configure folder actions. Pick this
          script.
       Restriction: 
       = The screen may blink/pause as the folder action starts.
       = A system boot will change back the permissions on /var/spool/cups
       = Some applications, such as MS Word, so not support drop printing.     
    Author: rccharles
       Copyright 2010 rccharles
       GNU General Public License 
        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published by
        the Free Software Foundation,  version 3
        This program is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        GNU General Public License for more details.
        For a copy of the GNU General Public License see <http://www.gnu.org/licenses/>.
    property printerName : "copy30"
    property printerCopies : 5
    (* When run from the script editor, code starts here. *)
    on run
       log "  --- Starting on " & ((current date) as string) & " --- "
       -- thePath points to the folder in which to create the debug log.
       global thePath, firstRunning
       (* Use the path to clause to create a generalized  path statements *)
       set thePath to (path to startup disk as string)
       set firstRunning to "do not run"
       -- debug("Starting in on run")
       -- set thePrintFile to (choose file)
       --try
       set thePrintFile to "Macintosh-HD:private:var:spool:cups:d01065-001"
       set thePrintFile to thePrintFile as alias
       --end try
       log thePrintFile
       --  set dropped_items to {"Users:mac:Desktop:Youpi Key.plist"}
       set faked_dropped_items to {thePrintFile}
       common(faked_dropped_items)
       log "almost done..."
    end run
    (* Starts here when a folder action causes a file to be dropped on this script. *)
    on adding folder items to this_folder after receiving dropped_items
       log "  --- Starting on " & ((current date) as string) & " --- "
       -- thePath points to the folder in which to create the debug log.
       global thePath, firstRunning
       (* Use the path to clause to create a generalized  path statements *)
       set thePath to (path to startup disk as string)
       set firstRunning to ""
       debug("Starting in on adding folder items. The count of dropped_items is " & (count of dropped_items))
       common(dropped_items)
    end adding folder items to
    on common(dropped_items_passed)
       log dropped_items_passed
       log "the count of dropped_items_passed is " & (count of dropped_items_passed)
       -- debug("start common.  ")
       if (count of dropped_items_passed) is greater than 20 then
          debug("To many files.  Must of just granted permission to folder /var/spool/cups  ")
          return
       end if
       repeat with dropped_item_ref in dropped_items_passed
          set logLine to "dropped file is " & dropped_item_ref
          set logLine to logLine & "  on " & ((current date) as string) & return
          debug(logLine)
          -- more debug info.
          set posix_path to POSIX path of dropped_item_ref
          set posix_path to quoted form of posix_path
          set the_query to "ls -lF " & posix_path
          set ls_result to do shell script the_query
          debug("for the_quiery = " & the_query)
          debug(ls_result)
          -- display dialog "dropped files is " & dropped_item_ref
          tell application "Finder" to set namedFile to name of dropped_item_ref
          log "namedFile = " & namedFile
          -- split up the file name. example: d01051-001  data file; spool file 1051
          set spoolType to character 1 of namedFile
          set spoolNumber to item 1 of textToList(namedFile, "-")
          log "spoolType=" & spoolType
          log "spoolNumber=" & spoolNumber
          set spoolNumber to (characters 2 thru (count of spoolNumber) of spoolNumber) as string
          set spoolNumber to (spoolNumber as integer) as string
          debug("spoolType=" & spoolType & " spoolNumber=" & spoolNumber)
          if spoolType is equal to "d" then
             set fromlpstat to do shell script "lpstat -o copy30 | sed 's/-/ /' | awk '{print $2}'"
             debug("from lpstat -o copy30 with sed & awk ")
             debug(fromlpstat)
             if fromlpstat contains spoolNumber then
                debug("  ------ new print copy of 30 copies printer ----------" & spoolNumber)
                set fromlp to do shell script "lp  -i " & spoolNumber & " -H hold"
                set fromlp to do shell script "lp  -i " & spoolNumber & " -n " & printerCopies
                set fromlp to do shell script "lp  -i " & spoolNumber & " -H resume"
                debug("result of lp = " & fromlp)
             end if
             debug(" onto the next entry if any ")
          end if
       end repeat
       -- lpstat -o copy30
       set fromlpstat to do shell script "lpstat -o copy30"
       debug("from lpstat -o copy30.")
       debug(fromlpstat)
       debug("End of common.  ")
    end common
    on appendToFile(fileId, theData)
       local theSize, writeWhere
       set theSize to (get eof fileId)
       set writeWhere to theSize + 1 as integer
       write theData to fileId starting at writeWhere
    end appendToFile
    -- based on log by James Reynolds, 12.18.2000, University of Utah
    on debug(theMessage)
       global thePath, firstRunning
       local theSize, startupDiskName, pathToLog, fileReference
       -- If invoked from script edit skip creating log file.  Want to rely on log statement 
       if firstRunning is equal to "do not run" then
          log theMessage
          return
       end if
       set pathToLog to (thePath & "debugLog.txt")
       try
          set fileReference to (open for access file pathToLog ¬
             with write permission)
          log "firstRunning = " & firstRunning
          set theSize to (get eof fileReference)
          if firstRunning = "" then
             set theSize to (get eof fileReference)
             log "theSize = " & theSize
             if theSize is equal to 0 then
                appendToFile(fileReference, "New log created on " & ((current date) as string) & " " & return)
             end if
             appendToFile(fileReference, "   --- debug on " & ((current date) as string) & "   --- " & return)
             set firstRunning to "running"
          end if
          appendToFile(fileReference, theMessage & return)
          close access fileReference
          tell application "Finder"
             set the creator type of the file pathToLog ¬
                to "R*ch"
          end tell
       on error mes
          try
             log "  We got an error when writing to  " & mes
             close access fileReference
          end try
       end try
    end debug
    -- textToList was found here:
    -- http://macscripter.net/viewtopic.php?id=15423
    on textToList(thisText, delim)
       set resultList to {}
       set {tid, my text item delimiters} to {my text item delimiters, delim}
       try
          set resultList to every text item of thisText
          set my text item delimiters to tid
       on error
          set my text item delimiters to tid
       end try
       return resultList
    end textToList
    Robert

  • Opening ReaderX causes "This program wants to make changes to your computer" warning.

    I'm using Windows7.
    Previous Adobe Reader versions worked fine on this computer; and when I first updated to Adobe Reader X it seemed to run correctly, until recently. Now everytime I try to open a .pdf file or the Reader X application, the screen goes black briefly and a "User Account Control" warning box pops-up with the message, "This program wants to make changes to your computer."
    I have uninstalled Reader X, downloaded new install file from Adobe.com and re-installed the program, but it still does this everytime. I've designated Reader as the default program for .pdf files.
    Can anyone tell me what's causing this to happen and/or what I can do to remedy the problem?

    I am having the same problem! 
    Ever since I installed the latest update to Adobe Reader 10.1.3 (around the end of March) AR brings up the "Do you want to allow the following program to make changes..." whenever I open the reader.  NO OTHER applications do this except those that really need this permission.
    I have not changed any UACs and in reading Pat's suggestion on changing the UACs above, I would only want to make changes if they could apply only to the Adobe Reader program.
    It seems to me that something in the recent update changed Reader to cause this alert.
    I sure would like to get AR to run like it used to.
    Thx for your help.

  • Did an adobe update this morning then several of my programs now marked as acrobate files and will not open

    did an adobe update this morning then several of my programs now marked as acrobate files and will not open so i uninstalled acrobat reader and tried reinstalling it several times using google, google chrome and internet explorer and still getting the same problem please advise

    Hi Greg ,
    Could you please provide me the details of the Acrobat version and updates?
    Try uninstalling it with the help of cleaner tool once again and try to install it back from the following link .
    https://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
    Here is the link for Cleaner Tool .
    http://labs.adobe.com/downloads/acrobatcleaner.html
    Disable all the third party software before installing it .
    Regards
    Sukrit Dhingra

  • When i open my Canon RAW-files with preview or transfer them to another program using preview they change to color despite the fact that they where all shot in B/W... How to change this?

    When i open my Canon RAW-files with preview or transfer them to another program using preview they change to color despite the fact that they where all shot in B/W... How to change this?

    I shoot only RAW - no JPEG-files except those visualizing the files on my memorycard or computer. I think i have to refine my question;
    1. I know there is possible to make B/W HDR-images.
    2. I know the best HDR images are based on RAW-files.
    3. When i transfer the images in question to a HDR software they change, so when i view them in the software (either Preview or the HDR software) they are suddenly viewed (and processed) in color.
    4. This never happend on my PC so i know it has to do  with either Finder or Preview.
    5. Do i have to make all my B/W HDR-images on the PC or is it a way for me to change how Finder/Preview show/alter my images?

  • Short dump error in program SAPMV50A after modification

    Dear gurus
    i have done some modification in vl02n through Badi and it is working fine in Development server.
    when i transport it to quality server and test it
    it giving a short dump in vl02n while vl01n is working perfectly fine and showing my modification too..
    below is the error mentioned
    Database error text........: "Unsupported database type in parameter/column
        (168)."
       Internal call code.........: "[RSQL/READ/LIKP ]"
       Please check the entries in the system log (Transaction SM21).
       If the error occures in a non-modified SAP program, you may be able t
       find an interim solution in an SAP Note.
       If you have access to SAP Notes, carry out a search with the followin
       keywords:
       "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
       "SAPMV50A" or "MV50AFDB"
       "LIKP_SELECT"
       If you cannot solve the problem yourself and want to send an error
       notification to SAP, include the following information:
    Please help
    Regards
    Saad Nisar

    i have created two append structure in standard tables of LIKP & LIPS which are activated and so as LIKP and LIPS
    my Badi is also activated and my customized program is also activated.
    While making outbound delivery in Quality server it works fine but when i want to make changes in that created delivery it throws dump error
    short text
       SQL error in the database when accessing a table.
    issing RAISING Clause in Interface
       Program                                 SAPMV50A
       Include                                 MV50AFDB
       Row                                     14
       Module type                             (FORM)
       Module Name                             LIKP_SELECT
    rigger Location of Exception
       Program                                 SAPMV50A
       Include                                 MV50AFDB
       Row                                     20
       Module type                             (FORM)
       Module Name                             LIKP_SELECT

  • How can I make my program run faster ? (changing colour indicators quicker)

    Hi everyone, I have a program with 100 indicator colour backgrounds that change according to 100 temperatures. A case structure (with 100 cases) sets the background colours one after the other and runs in a while loop with no timing (as fast as possible). The temperatures are loaded up from an array that is initialized at the beginning of the program. The idea is to have an overall view of the change of temperatures (just by looking at the change of colours). Everything works fine except that it doesn’t run fast enough... The change of colours is not smooth at all ... you can really see the increments. It works fine with 20 temperatures for instance. 1) Would anybody have a solution to improve this? I was wondering if Labview perhaps actualises all of the values each time one changes (just like with the excel cells: an option that you can desactivate and make things run quicker when you use a macro) which would make a big loss of time....  
    There is no data saving this is just a post treatment program. So My my program isn't doing anything else.
     2) I have attached a screen print of a problem a faced when making up the VI I attached. Why can’t I wire directly to the Index Array that is in the For Loop in my VI… I had to go throw a shift register to make up the example. When going back to my original program I couldn’t use the index array a second time (screen shot). Thanks a lot for any help, Regards, User  
    Solved!
    Go to Solution.
    Attachments:
    Forum question.vi ‏13 KB
    forum.JPG ‏50 KB

    Here's a possible solution:
    Ton
    Message Edited by TCPlomp on 11-03-2010 11:16 AM
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!
    Attachments:
    Forum question.png ‏23 KB

  • Process chain program variant will not change from yellow...

    Hello,
    <b>Problem:</b>
    I have a process chain that has two branches with 3 process chain variants on each leg in a parallel configuration.  The process chain variants run different program variants.  I am using variant object called "ABAP Program with Success/Failure " which can have a yellow, green, or red status and has status arrows that can be either red or green that connect to other process chain variants.  The program executed with these variants is a customized BPS UPC_BUNDLE_EXECUTE program.  When I run this PC the first variant on each leg usually hangs indefinitley on the yellow status.  In the Backg tab log (double click PC variant in Log View) I can see the various SQL code that was ran.  The last line of the log is an SQL-END:...  Sometimes it will get past the first 2 varaints and hang on the next set of 2.  Other times it will just hang on the last variant of one leg.  It is very sporadic.
    <b>What I have observed and tried:</b>
    If I check my SM51 for the server the chain is running on I can see that the program in question is not running.  If I run the same program through SE38 that runs via a PC variant it runs sucessfully in an appropriate amount of time.  If I kill the process that has been running indefinitley through SM51 the process chain variant will go from a yellow status to a red as expected.
    I changed they way I ran the programs from running in parallel in 2 legs to running all of them in one leg serially.  That did not work.  At least one program variant will hang on the yellow status.
    I replaced all the variants using "ABAP Program with Success/Failure" to "ABAP Program" which has a red/green status but no red or green arrows, but black coming out of the variant forcing it to move down the chain on a sucess or failure.  The process chain variants also hung in the yellow status using the "ABAP Program" variant. 
    I have tried starting the process chain using both "Direct Scheduling" with "Immediate" and "After Event."  I have also kicked it off using "Start Using Meta Chain or API" so it was functioning as a sub process chain. Programs were still yellow in every case without changing to red or green. 
    I created new process chain variants for every single program/variant that I am using.  Still no luck.
    I have tried removing the chain from the schedule and re-activating and re-running and still no luck. 
    Thanks in advance,
    Gary Martins

    bump

  • Keyboard punctuation marks suddenly changed

    I&m a little baffled. When I was using my iPad with the wireless keyboard this morning I was typing along with problems but after a jont in my backpack the punctuatiion marks that correspond to the number no longer match.
    2 should be a quotation marks but comes up as @
    6 should be the emporers and but now comes up as ^
    7 should be an apostrophe but comes up &
    8 should be a bracket but comes up *
    9 should start the bracket but now (
    Other punctuation marks around the keyboard are also switched around. I didn&t turn off the Bluetooth setting when I put it in my bag, so I&m guessing that some combinations of keys switched the layout.
    At the bottom to either side of the space bar are keys I can press to change the language but there&s no way I&ve found to revert it back to the layout I used before. Any suggestions?
    thanks
    sws

    Good mooring to you both. I tried both your suggestions and neither worked, so I opted for the easy way out; I took out the batteries, wated ten minutes and put them back in. That did work. I can kick myself for not thinking of that sooner. Still, I did learn a bit about setting the keyboard layout, so that you all for taking the time to write me back.
    Cheers,

  • Crop Marks have changed since CS

    Hi all,
    I am coming from the stone age (Illustrator CS) and the use of crop marks in CS5.5 is tripping me up.   I used to be able to drag a box around some art, change the box to crop marks and export to a .jpg that would be cropped to those marks.   Now it seems that creating crop or trim marks don't work that way any more.  What am I doing wrong?   Thanks.

    Yes, it now provides multiple artboards. Harken:
    • You've got an artboard with art on it
    • As in previous versions, you draw a rectangle above the part you're going to export
    • While this rectangle is selected, go to Object > Artboards > Convert to artboard.
    • Make sure that this new artboard is the current artboard, go to File > Export and export as a .jpg using the Use artboard option in the Export dialog
    If you're going to export through the Save for Web dialog, then make sure to turn on the Use artboard option that is available somewhere in that dialog.

  • HELP IN KEITHLEY output source PROGRAM!(how to change GPIB to serial port)

    As the topic suggest,can anyone help me in changing from GBIP to serial port?The file is found inside the .lib that i attached.
    filename:2400 swI Linear Stair MeasV - LED.vi
    thanks!
    Attachments:
    KEITHLEY PROGRAM.zip ‏434 KB

    zzz(yawn)!!!!!!  I did not expect people to help me COMPLETE my work;i was just seeking advice on small portion of that program.Isn't what forum is used for?For posting questions and seeking advice from professonals and those willing to help?If you're just idling around here and doing stupid things just to show that you're an active forum user,i would think that you're a pathetic fool that have no life.Please seriously re-consider your words CAREFULLY next time before you post stupid things.Thanks=D
    PS:btw i did try out the program;if not how can i ask a question?You expect the question to just pop out of my brain without thinking?and thanks the person for giving me INVALUABLE advice(the person before that lame "nyc aka joker") as it did worked,and i'm still trying out the test.Thanks for it again=D

  • Windows keeps asking if I want to allow the program to make a change even though cc 2014 is installed.

    Just installed CC 2014. It shows in my Start menu with the install shield.  Whenever I attempt to open CC 2014, I get a dialogue box asking if I want to allow the program to make changes to the computer.  I have uninstalled and reinstalled and can't get it to go away.

    This would only happen if you never installed it with sufficient administrative privileges and the user permissions are not set correctly. therefore reinstall it as admin.
    Mylenium

  • Program work before, without change but now web service get 400 bad request

    i wrote a program to get data by java, using axis library, but recently, the program cannot access the data.
    And it return a 400 bad request.
    i tried to cap the header and context send out,result as below,
    Content-Type=text/xml; charset=UTF-8
    SOAPAction="document/urn:crmondemand/ws/user/10/2004:UserQueryPage"
    User-Agent=Axis2
    Host=(server address)
    Transfer-Encoding=chunked
    context
    <?xml version="1.0" encoding="UTF-8" ?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
    <ns2:UserWS_UserQueryPage_Input xmlns:ns2="urn:crmondemand/ws/user/10/2004">
    <ns2:UseChildAnd>false</ns2:UseChildAnd>
    <ns2:PageSize>100</ns2:PageSize>
    <ListOfUser xmlns="urn:/crmondemand/xml/user">
    <User>
    <UserId />
    <Alias />
    <EMailAddr />
    <FirstName />
    <LastName />
    </User>
    </ListOfUser>
    <ns2:StartRowNum>0</ns2:StartRowNum>
    </ns2:UserWS_UserQueryPage_Input>
    </soapenv:Body>
    </soapenv:Envelope>
    other http request information cap:
    getAuthType= null
    getCharacterEncoding= UTF-8
    getContentLength= -1
    getContentType= text/xml; charset=UTF-8
    getCookies= null
    getLocale= zh_HK
    getMethod= POST
    getPathInfo= null
    getProtocol= HTTP/1.1
    getQueryString= null
    getRemoteUser= null
    getRequestURI= /Integration
    getRequestURL= http://(server address and port)/Integration (https for real case, but to cap using http)
    getServletPath= /Integration
    getUserPrincipal= null
    i cannot find out the reason to make the program not work, as i have not change any code and library
    Edited by: user6642894 on 2009/3/23 上午 1:24
    Edited by: paddy_yeung on 2009/3/23 下午 8:33

    Check the security mode, it should be “TransportCredentialOnly” and the clientCredentialType “NTLM” as shown in the blog post
    http://blogs.msdn.com/b/kaevans/archive/2009/03/10/calling-sharepoint-lists-web-service-using-wcf.aspx
    The other option is to add the service as
    Web Reference and not as Service Reference.
    In your ‘Add Service Reference’ window, click on ‘Advanced’ and choose ‘Add Web Reference’ – I prefer this for ASMX web services which makes it much easier.

  • Photoshop Photography Program  - How can I change my credit card information?

    I need to change my credit card info to new card.
    I've done everything according to instruction and it brought me to page of
    Photoshop Photography Program
    I clicked on "Manage Plan", but it not giving me option  "Edit Payment Deatails" .
    How can I change my credit card info than?

    Hi,
    Please clear the cookies and browsing history and re-login into your account in a different browser.
    Please check the below link for steps to update your card information,
    url: Manage your membership and payments | Creative Cloud

  • When were the video game trade-in program terms and conditions changed?

    I ask because the T&C on this page( http://www.bestbuy.com/site/null/null/pcmcat257100050022.c?id=pcmcat257100050022#howitworks&h=488 ) now say that the trade-in program is limited to one copy of a particular title per person per year. It WAS three per title per system per person per year.
    But I know that some stores made up their own limits as allowed by corporate and already had the 1 per title per platform. Yet now it is listed as one copy of a title within a year. I guess corporate doesn't think that people may own multiple systems and have the same games across those systems.
    Not only that but the new(to me anyway) T&C say that people are limited to 50 games in a year. Honestly, some of us go through multiple games just in a single month. Not only that but some people may now be trying to purge their PS3/360/Wii collections in order to grab a PS4/Xbox One/Wii U and may easily go over that 50 title limit.
    One thing I want to know. Is the system set up to alert the cashier doing the trade-ins that a user has previously traded in their limit of a title or will something pop up to alert the cashier doing the trade-in transaction that there is a hard and fast limit of 50 per year now? Or are we required to keep a spreadsheet of everything we own and everything we've traded in prior and/or may trade in in the future?
    it just seems like corporate is desperately trying to kill off the gaming and game trade-in portions of the business as fast as they can. Between jacking up the Gamer's Club Unlocked to $60 a year and REQUIRING people to buy in for TWO years to now this change in limits to the trade-in portion of the program.
    For those who are like me and do trade-in games fairly often to Best Buy and may have not read it as of yet, here's the revised T&C(item 12 on the FAQ page, which looks like it was a hastily added item since #13 isn't even in the right location on the page):
    Best Buy T&C:
    Can I trade-in more than one item at a time? Are there any limits?For Video Games, you are limited to no more than one copy of a title within a year, or more than 50 games total in a year. If you have more you are considered a Volume Seller and the prices offered on the website, as well as any bonuses or promotions, may not apply. Contact trade-in customer service for a custom quote (1-888-602-6963).Persons or companies intending to trade-in six or more items of substantially similar products (like mobile phones, or laptops) are considered Volume Sellers and the prices offered on the website or in store, as well as any bonuses or promotions, may not apply. Contact trade-in customer service for a custom quote (1-888-602-6963). Do not bring your products to a Best Buy store as our stores are setup to only handle individual consumer transactions.

    Hello CheapestGamer,
    This change is new information to me as well.  While I am not aware of the date the change was established, you can expect to have your game limits based on a 365 day rolling calendar.  If you were to trade in 20 games by the 15th of this month, you would be able to trade in another 30 until January 15, 2015.  The same goes for individual title rule.
    While the system may recognize if an item has already been traded in prior to a current trade-in attempt, it is still possible that the transaction will go through.  Violating the trade-in restrictions, even if the system does not catch it at the time, can result in trade-in bans.
    I will try to find out if any trades done prior to the change are not currently counted toward your yearly trade limits, but unless anything different is said you should expect that current rules apply and if 27 trades were completed at the end of December,  then 23 are remaining until the end of this next December.
    Thank you for participating in Best Buy's trade in program.  I trust that the program can continue to help you keep your game library fresh as new games are released.
    Regards,
    Mike|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • Condition specified in expression 2 is not working as expected

    I have an application variable that I'm setting in a page-level computation. It is conditional: it should only be (re) set when :request is not Delete, and when the application item is either null, or when a specific string is NOT contained in the ap

  • [closed]mysqli is missing

    Hi, I have searched google and the forums and tried the different solutions and nothing seems to fix it. I have been through the Arch LAMP top to bottom twice. phpmyadmin shows this when run: The mysqli extension is missing. Please check your PHP con

  • Best way to download mp3?

    What's the best way to download an mp3 from a Web page that's not part of a podcast subscription using iTunes 7.0.2? I can download from my Web browser and then import into iTunes, but that's two steps. I can select Import or Add File to Library and

  • Confirmation on BrowseBean.clickSpace method

    Hi All, I am working on customizing an Alfresco page browse.jsp. And i have been finding it very difficult to pass parameters from the jsp to my Backing bean.After analysing a few f:param tags in the browse.jsp page i stumbled upon line no 271 <a:act

  • Org.apache.xerces.parsers.SAXParser

    After compiling ,while trying to run my program is giving on the console window. "org.apache.xerces.parsers.SAXParser" instead of what it is supposed to do . i am using java 1.4.2 and xerces 2.7.1 Can Anyone point what is the problem with this. thank