Problems at discharge employees

Hi All,
I have an HR ABAP program to hire people and it works fine except for a couple of things.
The hiring action is successful but the percentage field on infotype 0001 under the organizational plan section is coming up as blank. My requirement is to default it to 100.00.
Manually, we can copy infotype 0000 and then save the record and the next screen (IT 0001 screen)allows us to enter the value for staffing percentage. To automate this process, I tried to do a BDC recording using PA30 to copy infotype 0000, infotype 0001 screen comes up but then the staffing field does not show up(it is hidden) therefore i cannot enter the percentage value. The BDC recording is supposed to bring up the same screens as the manual process but it is not and I have no clue why.
Please suggest a work around for this.

Cvetaev,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Forums Team
http://forums.novell.com

Similar Messages

  • Problem in Creating Employee as a supplier in backend by AP supplier

    Hi friends,
    Im facing issue in creating Employee as a supplier in backend through AP supplier interface, as im getting the below error like
    Employee_id is invalid and Employee info is invalidThis is the codings that i followed to perform that interface, but it didnt worked it seems.
    DECLARE
    L_VENDOR_REC_TYPE AP_VENDOR_PUB_PKG.R_VENDOR_REC_TYPE;
    L_SUP_SEQ number;
    L_MSG_COUNT NUMBER;
    L_MSG_DATA VARCHAR2 (4000) := '';
    L_RETURN_STATUS VARCHAR2 (1);
    L_VENDOR_ID AP_SUPPLIERS.VENDOR_ID%TYPE;
    L_PARTY_ID NUMBER;
    BEGIN
    SELECT AP_SUPPLIERS_INT_S.NEXTVAL INTO L_SUP_SEQ FROM DUAL;
    L_VENDOR_REC_TYPE.VENDOR_NAME := 'Terrence Schreiber';
    L_VENDOR_REC_TYPE.EMPLOYEE_ID := 18;
    -- L_VENDOR_REC_TYPE.segment1 := 18;
    L_VENDOR_REC_TYPE.VENDOR_TYPE_LOOKUP_CODE := 'EMPLOYEE';
    L_VENDOR_REC_TYPE.INVOICE_CURRENCY_CODE := 'INR';
    L_VENDOR_REC_TYPE.PAYMENT_CURRENCY_CODE := 'INR';
    L_VENDOR_REC_TYPE.TERMS_NAME := 'N30';
    L_VENDOR_REC_TYPE.VENDOR_INTERFACE_ID := L_SUP_SEQ;
    -- l_vendor_rec_type.party_id := 6487;
    AP_VENDOR_PUB_PKG.CREATE_VENDOR (
    P_API_VERSION => 1.0,
    P_INIT_MSG_LIST => FND_API.G_FALSE,
    P_COMMIT => FND_API.G_FALSE,
    P_VALIDATION_LEVEL => FND_API.G_VALID_LEVEL_FULL,
    X_RETURN_STATUS => L_RETURN_STATUS,
    X_MSG_COUNT => L_MSG_COUNT,
    X_MSG_DATA => L_MSG_DATA,
    P_VENDOR_REC => L_VENDOR_REC_TYPE,
    X_VENDOR_ID => L_VENDOR_ID,
    X_PARTY_ID => L_PARTY_ID
    commit;
    DBMS_OUTPUT.put_line ('Vendor Return Status ---> ' || L_RETURN_STATUS);
    DBMS_OUTPUT.put_line ('Vendor Message Count ---> ' || L_MSG_COUNT);
    DBMS_OUTPUT.put_line ('Vendor ID --->' || L_VENDOR_ID);
    DBMS_OUTPUT.put_line ('Party ID --->' || L_PARTY_ID);
    IF L_MSG_COUNT = 1
    THEN
    DBMS_OUTPUT.put_line ('Vendor Message Data ---> ' || L_MSG_DATA);
    ELSIF L_MSG_COUNT > 1
    THEN
    FOR I IN 1 .. L_MSG_COUNT
    LOOP
    DBMS_OUTPUT.put_line(I || '. '
    || SUBSTR (
    FND_MSG_PUB.GET (
    P_ENCODED => FND_API.G_FALSE
    1,
    255
    END LOOP;
    END IF;
    END;
    Also i referred for the above error in the metalink with the following ID, that also dint worked
    [ID 1400877.1
    [ID 977651.1 ]Can friends, anyone help me to solve this problem.
    Thanks
    Brgds,
    Mini

    Hi
    Navigation: Supplier > Entry > Create Supplier > Employee Name
    Responsibility: Payable Manager
    Regards
    Senthilkumar C
    Edited by: Senthilkumar Chellamuthu on Jul 24, 2012 3:16 PM

  • Problem in Automatic employee - vendor creation(PRAA)

    Hi Experts,
    Based on the Reference vendor company code Employee vendor need to be created. For single company code its working fine, But for multiple company code it is taking all the employees and checking employee  company code and reference vendor company code. Any one suggest me how to do for multiple company code.
    Thanks,
    Naveen.

    Hi,
    Issue has been solved with Employee number and company code input by adding company code in further selection....
    Thank You.
    Cheers,
    Naveen.

  • Facing problem in Fetching Employee details

    Hello All,
    i need to write a abap coding to fetch the employee details from the corresponding table,i worte a code but its is not fetching the details of the employess in to the output,am sending my code along with this thread its great if any body help me out in ths regard,thanks in advance...
    NAME        : Chandeep Singh
    DESCRIPTION : TO GENERATE SIMPLE REPORT USING HR ABAP
                   LOGICAl DATABASE- PNP .
    REPORT zchandeep_hr_prog_1
    LINE-SIZE 200 .
    *Database Table
    TABLES: pernr,           " Pernr structure for Logical database
    pa0001,           " Actions
    pa0002.           " Personnel Info
    *Infotypes
    INFOTYPES: 0001,         " Actions
               0002.         " personnel info
    *Variable Declaration
    DATA: form_nam LIKE p0001-ename,
          v_age(5) TYPE c,       "variable for calculating age in days
          v_ctr1 TYPE i VALUE 0, "counter
          v_ctr2 TYPE i VALUE 0, "counter
          var(5) TYPE c ,        " variable to store btrtl
          var1(5) TYPE c  .      " variable to store werks
    *Internal Table Decalartion
    DATA: BEGIN OF i_tab1 OCCURS 0,
           pernr LIKE pa0001-pernr,  "employee number
           ename LIKE pa0001-ename,  "employee name
           begda LIKE pa0002-begda,  "employee join date
           werks LIKE pa0001-werks,  "personnel area
           btrtl LIKE pa0001-btrtl,  "personnel sub area
           persg LIKE pa0001-persg,  "employee group
           persk LIKE pa0001-persk,  "employee sub-group
           plans LIKE pa0001-plans,  "position
           gbdat LIKE p0002-gbdat,   "date of birth
         END OF i_tab1.
    *START-OF-SELECTION
    START-OF-SELECTION .
    GET pernr .
      rp-provide-from-last p0001 space pn-begda pn-endda .   " Macro for IFT-0001
      rp-provide-from-last p0002 space pn-begda pn-endda .   " Macro for IFT-0002
    **--> Populate internal table
      MOVE p0001-pernr TO i_tab1-pernr .
      MOVE p0001-ename TO i_tab1-ename .
      MOVE p0002-begda TO i_tab1-begda .
      MOVE p0001-werks TO i_tab1-werks .
      MOVE p0001-btrtl TO i_tab1-btrtl .
      MOVE p0001-persg TO i_tab1-persg .
      MOVE p0001-persk TO i_tab1-persk .
      MOVE p0001-plans TO i_tab1-plans .
      MOVE p0002-gbdat TO i_tab1-gbdat .
    **--> Append data to internal table
      APPEND i_tab1 .
      CLEAR i_tab1 .                                       " Clear header I_TAB1******************************
    *END-OF-SELECTION
    END-OF-SELECTION.
    *****sorting the internal table on personnel area & personnel sub-area
      SORT i_tab1 BY werks btrtl.
    *TOP_OF_PAGE
      PERFORM top_of_page.
    *Output Display
    LOOP AT I_TAB1.
    *for calculating the age in days
      v_age = sy-datum - i_tab1-gbdat.
    *control break on Personal Sub Area
      LOOP.
        AT NEW pnpbtrtl .
          IF sy-tabix NE 1.
            FORMAT COLOR COL_NORMAL ON.
            WRITE:/5 'Total Number of Employees for personnel Sub-Area:',
            var  , 'is ',
            v_ctr1.
            CLEAR v_ctr1.
            FORMAT COLOR OFF.
          ENDIF.
        ENDAT .
      ENDLOOP.
    **Control Break on personnel Area
      LOOP.
        AT NEW pnpwerks.
          IF sy-tabix NE 1.
            FORMAT COLOR COL_TOTAL ON.
            WRITE:/5 'Total Number of Employees for Personal Area: ',
             var1 ,'is    ', v_ctr2. "color col_total.        CLEAR V_CTR2.
            SKIP 1.
            FORMAT COLOR OFF.
          ENDIF.
        ENDAT .
        WRITE:/5
        i_tab1-pernr,   "personnel number
      16 i_tab1-ename,   "emp name
      47 i_tab1-begda,   "join date
      60  v_age,         "age in days
      74  i_tab1-werks,  "P area
      84  i_tab1-btrtl,  "P sub Area
      94  i_tab1-persg,  "emp group
      104  i_tab1-persk, "emp sub group
      114  i_tab1-plans. "position
        v_ctr1 = v_ctr1 + 1.
        v_ctr2 = v_ctr2 + 1.
        var = i_tab1-btrtl .
        var1 = i_tab1-werks .
      ENDLOOP.
    *&      Form  top_of_page
          Header Output
    FORM top_of_page.
      FORMAT COLOR COL_HEADING ON.
      WRITE:/5 'Employee',
            16 'Employee',
            47 'Join Date',
            62 'Age',
            74 'Personal',
            84 'Personal',
            94 'Employee',
            104 'Employee',
            114 'Position ',
          /5 'Number',
          16 'Name',
          60 '(In Days)',
          74 'Area',
          84 'Sub-Area',
          94 'Group',
          104 'Sub-Group'.
      FORMAT COLOR OFF.
      SKIP 1.
    ENDFORM.                    " top_of_page

    After tables pernr.
    write this code :
       GET PERNR.
    and check the program
    Regards,
    Srinivas

  • Problems with viewing employees table in database

    Can any help me to be able to view all the tables in database: Employees, countries and so on?
    I think it is due inability to login as hr user.
    Thanks,
    Peter

    Peter,
    You will need to give us more information:
    Oracle Version?
    Platform?
    Interface you are trying to log in from? (SQL*Plus or iSQL*Plus?)
    Error messages?
    Steps you took to produce the error?
    The HR user will have been set up with a default password, if it is set up at all. Did you install the database? Did you unlock the HR user?
    This chapter might help you figure out if the HR schema is installed:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96539/installa.htm
    Alison

  • Interesting Problem - Static Discharge to MBP Wakes Another Computer

    This is on my brother's 2009 13" MacBook Pro. It is on a surge protector plugged into a wall socket that also has a second surge protector plugged into it, which a Dell uses. That is, the second surge protector is plugged into a different port on the wall socket, not the first surge protector.
    The room has a furry carpet, and someone seeking to use the MBP will often build up an uneven charge walking on the carpet to the computer. When someone touches the Mac and feels the shock, even a small one, the Dell wakes up! It doesn't do this if they're on different wall outlets. Just in case, I tested and found that this only does it when the MBP is plugged in (otherwise, it would be scary). But it does it whether or not the MBP is turned on, and the MBP itself doesn't wake up from this, only the Dell.
    So the static discharge travels BACKWARDS through the MacBook Pro charging cable, through the transformer, through a surge protector, into the wall, and then back again through the second surge protector to the Dell. Unless I'm missing something. I've heard of this happening with a lamp, but that doesn't have an AC to DC transformer. Is this bad?
    P.S. Yes we ground ourselves before we touch it now.

    Hello,
    I know that it has been a while since you posted, but I am curious as to what you eneded up doing. I hope you are still alive. Maybe post the question on reddit and an electrician will answer.
    Gabe

  • Problem when replicating employees using ALE

    Hi All
    We are using the CRM 7.0. we are integrating the CRM with the ERP HCM (HR) i have assigned an internal number range for the organizational units creation and and external number range for the employees creations as I want to have the same employee number in both systems CRM and ERP . When I am trying to send employee data I got error that the number range grouping has external number assignment, and I should enter the number
    Note the employee number range in the ERP is also external as the business requirements
    When I changed the number range grouping in table  T77S0 to an internal number range the employees are replicated
    But I need to have the same number for the employees on both systems
    Thanks in advance
    Jacopo
    Edited by: CRM on Nov 11, 2009 3:44 PM

    i used this lnk
    Re: External Number Ranges in HR - CRM Integration

  • How to fix a problem with the discharge rate of the battery in the iPhone

    Hi I have a question namely how to fix the problem of discharging the battery in the iPhone 4 with ios7.1

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • Record Working Time task merging multiple employees into a single task

    Hi Everyone,
    I'm going to check our configuration again to see if this is standard behaviour, config, or a problem with EHP 3's version of record working time.
    So if employee A submits to manager A 1 task is created.  Then when employee B submits to manager A we were expecting 2 tasks.  However, we've been noticing manager A is getting 1 task with several line times. 
    We are ok with it merging tasks for employee A over multiple weeks.  That is ideal actually.
    The problem is that employee B's task should be separate.
    Is there a quick fix?
    Thanks,
    Doug Robbins

    I did try 31000007 and noticed the same behavior.  Are you saying I should use an older version of the task to get back to grouped by employee number and not merging everything? 
    Well this causing us issues for a few reasons. The main one we developed a work around because we had to make sure emails were not being sent to 1 person for all the employees with their data.  That would cause obvious security concerns. 
    But when forward tasks out managers want to be able to forward a specific employee's requests and not all of them.  If some customers want this it should be a configurable option.  To allow companies that want 1 single task or companies that want 1 task/employee/week.
    This is inconsistent with the other portal applications.  It would be nice if Germany picked 1 way of doing things or provided more configuration options.  I'm hoping that OSS gives us something because merging everything into a single task for all employees is not the behaviour we want or expected.
    I always appreciate your input because you have been very helpful as I learn about portal.
    Thanks,
    Doug R
    Thanks you

  • How to Displaying Employee Photo in ESS Who's Who via Reverse Proxy?

    Dear Gurus,
    I have a bit of problem to displaying employee's photo in ESS Who's Who via Reverse Proxy.
    In my landscape, end-users are only able to reach the Reverse Proxy server, not the actual SAP server itself.
    In Who's Who, when displaying the employee's info, the URI for the photo is generated using the actual SAP server name.
    Illustration:
    - the URI we expect: https://portal.domain.com/sap/bc/contentserver?.....
    - the URI we get: http://r3server.domain.com/sap/bc/contentserver?....
    Does anyone know where/how I can set the URL (hostname and protocol part) to refer to my reverse proxy?
    Or is it because SAP is using an absolute path rather than the relative one?
    How do we go about it?
    Thanks in advance.

    Dear Barinbhai,
    How are you? We are fine at here!!!
    Following URL generated thru Portal
    System generated : http://p30app06.ril.com:8000/sap/bc/contentserver/430?get&pVersion=0046&contRep=7N&docId=4D2155EB6C32545BE10000000A42163F&accessMode=r&authId=CN%3DQ10&expiration=20110215052004&secKey=MIIBkwYJKoZIhvcNAQcCoIIBhDCCAYACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGCAV8wggFbAgEBMBMwDjEMMAoGA1UEAxMDUTEwAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xMTAyMTQwNTIwMDRaMCMGCSqGSIb3DQEJBDEWBBTJCER2r9%2BifbQPOtCqJdAoJ99NTzCBpgYFKw4DAhswgZwCQQCJ%2FPuWmHE5m%2Bd1vtX464doAJIsN2SmIpBAUe7jLGtmAD7F6ElSWOtC6uMuXUPisyKr3lRQ6IOC1ZhVPsnnXJsZAhUAtGAwyGWTqdJdd7nwrXKA7T%2B3GVcCQBUQxMBImvHdAsIyF3DmBtPwHcPpyCyBbJ737ivcuw2qjdJeGttSqR8GGuPn0DmzF36%2BUSnLRxZVNPn6nUbnPx0ELjAsAhR7G1vGjngjoll50RhWKcDlBTvVKgIUZ1NlQXMe61LXcqsTGsz7r28Kzh0%3D
    Photo opening directly on following URL:::
    Desired URL : http://ess.ril.com/sap/bc/contentserver/430?get&pVersion=0046&contRep=7N&docId=4D2155EB6C32545BE10000000A42163F&accessMode=r&authId=CN%3DQ10&expiration=20110215052004&secKey=MIIBkwYJKoZIhvcNAQcCoIIBhDCCAYACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGCAV8wggFbAgEBMBMwDjEMMAoGA1UEAxMDUTEwAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xMTAyMTQwNTIwMDRaMCMGCSqGSIb3DQEJBDEWBBTJCER2r9%2BifbQPOtCqJdAoJ99NTzCBpgYFKw4DAhswgZwCQQCJ%2FPuWmHE5m%2Bd1vtX464doAJIsN2SmIpBAUe7jLGtmAD7F6ElSWOtC6uMuXUPisyKr3lRQ6IOC1ZhVPsnnXJsZAhUAtGAwyGWTqdJdd7nwrXKA7T%2B3GVcCQBUQxMBImvHdAsIyF3DmBtPwHcPpyCyBbJ737ivcuw2qjdJeGttSqR8GGuPn0DmzF36%2BUSnLRxZVNPn6nUbnPx0ELjAsAhR7G1vGjngjoll50RhWKcDlBTvVKgIUZ1NlQXMe61LXcqsTGsz7r28Kzh0%3D
    Pls sugget..
    Hitesh Khatri
    SAP -HR
    RIL - Navi Mumbai....

  • ESS: Employee Self Services,  Hrxssce_Service_Appl_Path does not exist

    Hi,
    I am having real problems implementing the employee self services in a Portal environment. It is located on a NW 7.0 JavaAddin with SP 15.
    I followed the configuration guides on help.sap.com and rechecked all settings. I could also find some threads here in SDN-community but nothing helped so far.
    My components in the server are SAP_ESS 600 SP13 and BP_ERP5ESS 1.0 SP13 . The different xss components are of version 600.
    The error I get is always after a click on a specific function:
    com.sap.dictionary.runtime.DdException: Type com.sap.pcuigp.xssutils.pernr.model.grpinfo.types.Hrxssce_Service_Appl_Path does not exist
    The default trace of the server node shows this error message:
    sap.com/ess~cod/ChangeOwnDataApplication#com.sap.tc.webdynpro.services.exceptions.TypeNotFoundException: type com.sap.pcuigp.xssutils.pernr.model.grpinfo.types.Hrxssce_Service_Appl_Path could not be loaded: com.sap.dictionary.runtime.DdException: Type com.sap.pcuigp.xssutils.pernr.model.grpinfo.types.Hrxssce_Service_Appl_Path does not exist
    The only thing that I can imagine is that I used a wrong version. Is there a source where I can read about the correct releases for the correct SP-Stacks?
    Does anyone have other Ideas or hints?
    Thanks in advance,
    André

    Hi Guys
    As per note 1303362 check
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/HOWTOGETRIDOFSPSTACKMISMATCHISSUES
    To ensure you are using corresponding versions and SP levels
    I can't see any problem with SAP_ESS 600 SP13 and BP_ERP5ESS 1.0 SP13  - however are these installed on the same Portal ?
    are you also using SAP_HR and EA_HR version 600 in the ECC system (as recommended) - did you implement Netweaver EHP1 in ECC or Portal (not recommended for ERP 6.0)
    A common reason for this issue is XSS versions are not corresponding version to SAP_HR and EA_HR - this includes component PCUI_GP which should be at version 600 for SAP_ESS 600 useage
    Best wishes
    Stuart

  • Employee Delta data xchange between CRM and HR system-ALE

    Hi SDN team,
    We have integrated SAP R/3 HR 4.6c with SAP CRM 5.2 using ALE integration layer .
    Background : We have downloaded few Employees and Positions from SAP HR system into SAP CRM system using ALE . We observe that the delta changes made the Employees data in SAP HR is flowing into SAP CRM system after running the Report “RBDMIDOC” ( with message type “HRMD_ABA”) .
    Problem
    After the Employees are downloaded from SAP HR into CRM system , we want to make some small changes like address , Gender , etc to the BP data . We observe that the delta changes made in CRM  do not flow back to SAP HR system .
    What is the reason ? Is there workaround for the backward delta replication to work ?
    Please get back . Points will be awarded for the right answer.
    Regards
    Ritvij

    Hello Eddie,
    I suggest that you also post this query in the SAP HR forum.
    Best Regards, Adil

  • Add Employee Button missing in 'My Employees'

    Hello,
    I am facing a problem with My Employees iview in T&E. We maintained same roles for all users. However, for some users, we can see 'Add Employee' Button, for some, we can't see this.
    These are the following steps we checked.
    - In PA30, every user is linked with a personnel number.
    - Backend (ECC) roles are same for every user.
    - Frontend (Portal) roles are same for every user. (I know portal settings can't restrict the Web Dynpro ABAP buttons).
    Please suggest me a solution/documentation/check points to troubleshoot this issue. I checked SDN and Google, but without any luck.
    Appreciate your help.
    Thanks,
    Raj Peddisetty
    Edited by: Raj on Jun 15, 2010 9:02 AM

    Hi,
    This may be authorization issue. After performing the scenario from portal execute the transaction SU53 in SAP backend for that user and check is any authorization is missing. You can also activate trace (ST01) in backend for that user and then perform the activity, check is any authorization is missing.
    If everything is fine than please ask ABAPer to debugg the code. They will surely be able to identify in which case the button is appearing and in which case it is missing.
    Thanks & Regards,
    Sandip Biswas.

  • Team calendar on ESS shows no data for employee

    Hi ,
    We are converting to webdynpro leave request from old ITS leave req.
    when I click on the team calendar from an employee ID , I dont see any data of the team with in the same org. unit. It shows me a blank table.
    From a manager view, I get a graphics rendering problem , which of course, I think can be resolved.
    But can somebody help me to understand the problem from the employee side. why is it not displaying any data of the same org. unit members.
    Appreciate a quick response on this.
    Thanks

    In Table: V_PTREQ_TEAM check for options of <b>mode</b> and <b><b>Group of Organization view</b>, <b>group</b> entries. I would use,
    mode: T Team view mode
    Group of Org view: ESS_LEA_EE
    Group: Adhoc.
    Please try other permutations too.
    Please add score, if this helps.

  • Pre-order points missing and pre-ordering problems at the store level.

    Hi
    During the week of July 6th-July 12 there was an ad for pre-ordering certain movies and getting 100 bonus points for each movie.  On July 12th I pre ordered Rio 2, The Amazing Spiderman 2, and Transformers:AOE (Steelbook edition).  The employee was able to successfully pre-order Rio 2 using the provided in store pre order card but had difficultly pre ordering Spiderman 2 and Transformers.  Rio 2 and Spiderman 2 had set release dates while at that time Transformers did NOT have a release date until recently.  These pre-orders were done in three different transactions. 
    Picking up Rio 2 on 7/15 was not a problem.  The employee did an exchange in the system.  The 100 bonus points never posted.
    The Amazing Spiderman 2 had a lot of problems.  The employee thought I already bought it and picked it up on 7/12 when I went to pick it up on 8/19 (the release date).  At the time of the pre order purchase, there was no announcement of the BB exclusive Magno pack for the same price as the regular blu ray release.  Again the employee did a return/rebuy.  This employee also stated that the employee who processed the pre-orders Spiderman and Transformers did it incorrectly since it looks like she did it as a normal transaction instead of a pre-order.  The points have yet to be posted.
    Transformers: AOE (Steelbook edition) now has an official release date of 9/30.  My question is will the system allow for employee to process the pre-order pick up since it is outside of the 45 day window?  I am hoping it won't be but seeing how the employees have been processing pre-orders incorrectly when picking them up I expect problems when doing so. 
    I have also noticed a price drop for transformers (6760435) from the time I pre-ordered it on 7/12.  Will the employees be able to adjust the price and give me the difference?
    Not all stores carry the pre-order cards making this a difficult process for everyone (it takes me on average 30 minutes to pick up 1 pre-order instead of in and out within 5 mins like usual) because someone didn't do it correctly the first time.  So my question is, how should employees process a pre-order if there is NO Pre-Order card in store??  I would love to continue to pre-order at best buy, but am getting tired of having employees screw up my pre-order.

     Hello ITDEFX101,
    Pre-ordering your movies during these 100 My Best Buy™ Bonus Point promotions is a great way to ensure that you are able to get your hands on some great movies as soon as possible after release, while simultaneously earning extra points. It is regrettable to hear that your pre-order experience with Rio 2 and The Amazing Spiderman 2 were not as smooth as we strive for these processes to be, and in the end, you state you didn’t even get the bonus points you expected.
    Using the information you registered with the forum, I was able to review your pre-orders for all three movies, as well as your My Best Buy™ account. Sadly, it does appear that there may have been some issues with your pre-orders, and I would like to address these with you privately, especially concerning your pre-order for Transformers: Age of Extinction. I am sending you a private message, which you may view once you’ve signed into the forum and clicked the envelope icon in the top right corner of the page.
    Sincerely, 
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for