How to change the Charge Account in Requsitions Generated by Min-Max

Hi
I want to change the default account coming in all requsitions which are generated in result of a min-max report.
please help.
thanks
Malik Asif Joyia

What is your costing method?
If it is average, the account comes from the organization and not from subinventory and you cannot change the account if the destination is inventory.
If it is standard, you can have the account from subinventory, but again you cannot change it if the destination is inventory.
Why do you want to change account if you are receiving into inventory?
And Min-Max Planning is to replenish the inventory hence I would assume it is not expense destination.
Thanks
Nagamohan

Similar Messages

  • How to change the reconciliation account in customer master record?

    hi friends,
    i created customer master with wrong reconsiliation account in XD01. i failed when i am trying to change that reconsiliation account in XD02. it was suppressed. how to change the reconcilition account in customer master data?

    Hi,
    Go to this path: Spro>Financial Accounting>Account Receivable & Account Payable>Customer Accounts>Master Data>Preparations for Creating Customer Master Data>Define Account Groups with Screen Layout (Customers)
    Double Click on Your Group, Then Click on Company code Data under Field Status, Then Double click on Account Management, That screen you will find the Reconcilation Account, Select Requred Entry.
    now it will coming Customer master.
    It's useful assigne points as a way to say Thanks
    Regards
    gvr

  • Can we change the charge account in the PO once it is "approved, reserved "

    Dear All,
    Can any one clarify me the below doubt.
    Can we change the charge account in the PO once it is “approved, reserved “status? If No then is it possible to update the account form the back end?
    Note: We are using the 11.5.10.2 version and we have enabled the encumbrance for PO.
    Please let me know?
    Regards,
    Kevin.

    HI,
    Double click on the screen Number in whcih Table control is placed.
    Then Select the ELEMENT List Tab->place the cursor on the Table control and select the Atributes button in the Application toolbar.

  • How to change the Reconciliation Account of a Customer.

    Hi Everybody,
    I went through few posts from users regarding the change of Reconciliation Account in Customer Master, but nowhere the complete process of change of Reconciliation Account is explained. Can anyone throw some light on this and tell  the complete procedure of changing the Reconciliation Account in the customer Master.
    Thanks.

    Dear Himanshu,
    There is no specific process of changing the reconciliation account in customer master because it is not recommended and when you change the reconciliation account in the customer master then system will stop you at all. If you want to change then please follow steps mentioned below.
    1. Clear all the open of the customer whose reconciliation account you want to change. If open item exists and you change then this balance will lie forever in the trial balance which Accounting Standard will not allow.
    2. Once the customer balance does not exist then you can change reconciliation account.
    Another way to do is
    1. You create a copy of the customer you want to change the reconciliation account, put the new reconciliation account in the copied customer.
    2. Then you transfer all posting to the new customer so customer with old reconciliation account will be nil.
    If your profit center functionality is active and document splitting is not active with profit center characteristics then please avoid the second alternative
    Regards,
    Chintan Joshi.

  • I want to change the iCloud account on my iPad from mine to my wife's

    BUT I get a message saying that if I delete my account it will remove all data from iCloud! Which is not what I want as I want to continue to use my iCloud on my iPhone and remotely.
    There is no option in settings for changing the iCloud account, so it looks like you need to delete the one you have in there and set up a new one .

    My problem is that when I try to delete (and change) my iCloud account on my iPhone, it wants to delete all the data from my iPhone, which is something I don't want.

  • How to change the apple account used in the Mac.

    How can I change my previous App-store I.D for a new one in macbook. beacause i can't do any updates while having the old account that i totally lost.
    i know I shloud delete the apps and downloaad them again using the new account. but the problem is i want to update the software OS x ! so what i should do ?

    mohammed Anaam wrote:
    ... but the problem is i want to update the software OS x ! so what i should do ?
    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    Apple ID FAQs  >  http://support.apple.com/kb/HT5622

  • How to Change the PDF's that are generated once the Payment run completes

    Hello All,
    After the Payment run completes, it creates a bank file, and check registry etc.  Our system also creates a PDF which is sent out to the vendors via email.  I need to make some changes to this PDF that is being generated.  Where can I do this?  The pdf sits in the Business Workplace.   Any ideas?
    Thanks,
    Rashad

    It is not possible to change the PDF manually.
    You need to change the form assigned for payment advice in FBZP settings.
    However, these settings are uniform and across all the vendors.
    You cannot put different rules for different vendors.
    Regards,
    Ravi

  • How to change the merge condition in OWB generated code

    Hi,
    This is regarding the OWB generated code for cubes. We required to change the ON condition of MERGE statement. OWB merge the records on the basis of dimension keys only. Is there any ways to provide the customised merge condition or is it possible to add a measure of the cube to be used in ON condition of the merge?

    Hi,
    cant´t you customize the generated Code in the Database?
    I know that owb has the trait to do the following:
    If you create a Mapping, etc. the generated Code will be deployed as PL/SQL Package in the Database Schema.
    Now you can edit the Code as Schema User right in the Database.
    Don´t edit it in the Metadata, only in the Databse.
    If you run now any Process in OWB, he´ll execute your edited Code,
    ´cause he just takes whats still there. :-)
    It´s not realy clean, but in most Times that works.
    LoneWolf

  • How to change the name of function module ,generated by SMARTFORMS

    Dear All,
    As you all know, SMARTFORMS generates one function module.
    The default name is somewhat like    /1BCDWB/SF00000099
    instead of, i want to give some specific user defined name.
    how to do???

    Hi,
    I think its not possible to give it a user defined name, but you can assign it to a variable and use that variable name instead.
    Please see the code below
    Data: V_FMNAME type RS38L_FNAM.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
                 EXPORTING
                   formname                 = 'ZSMARTFORM'
                  VARIANT                  = ' '
                  DIRECT_CALL              = ' '
                IMPORTING
                  FM_NAME                  =  V_FMNAME
                EXCEPTIONS
                  NO_FORM                  = 1
                  NO_FUNCTION_MODULE       = 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.
               ENDIF.
              CALL FUNCTION V_FMNAME
               EXPORTING
                ARCHIVE_INDEX              =
                ARCHIVE_INDEX_TAB          =
                ARCHIVE_PARAMETERS         =
                CONTROL_PARAMETERS         =
                MAIL_APPL_OBJ              =
                MAIL_RECIPIENT             =
                MAIL_SENDER                =
                OUTPUT_OPTIONS             =
                USER_SETTINGS              = 'X'
                  wa_itab1                   = wa_itab1
                  wa_itab2                   = wa_itab2
                  wa_itab3                   = wa_itab3
                  wa_itab4                   = wa_itab4
                IMPORTING
                DOCUMENT_OUTPUT_INFO       =
                JOB_OUTPUT_INFO            =
                JOB_OUTPUT_OPTIONS         =
                TABLES
                  i_itab1                    =  i_itab1
                  i_itab2                    =  i_itab2
                  i_itab4                    =  i_itab4
                  i_itab3                    =  i_itab3
              EXCEPTIONS
                FORMATTING_ERROR           = 1
                INTERNAL_ERROR             = 2
                SEND_ERROR                 = 3
                USER_CANCELED              = 4
                OTHERS                     = 5
              IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
              ENDIF.
    Regards,
    Manish

  • How do i change the icloud account on my iphone to a different existing account

    I have a business iPhone 5S on which the iTunes account is associated with the Apple ID I signed up for using my business e-mail. I signed in to iCloud with a personal Apple ID account to get some of my personal music onto the device. I have been trying to find out how to change the iCloud account to my business Apple ID. I'd like to be able to switch back and forth if I want. I have read several posts that advise deleting the iCloud account, but I still have personal devices I would like to continue to use with this Apple ID and iCloud account. The extent of the deletion is not addressed.
    If I use the delete account under iCloud, does that delete it from the device, or does it delete it permanently? Tried adding my business email to the iCloud account, but it won't let me because it is associated with another Apple ID (duh). Am I stuck here?
    iPhone 5S, iOS 8.1 - just updated.
    The only option under iCloud is "Sign Out"

    Deleting an iCloud account only deletes it from the Device, not from iCloud.  In iOS 8, the name of this setting changed to "Sign Out" as that is a better reflection of what actually happens.  Your iCloud data remains on the server, available to devices still signed into the account, but the device you sign out of the account on is disconnected from the account, and as a result, the iCloud data from that account is removed from the device.  It will redownload to the device should you sign back into the account.
    The only issue you'll run into when you switch between accounts is with my photo stream photos older than 30 days.  When you delete (or sign out of) and account, your photo stream photos are deleted along with the other data from the account in question.  However, unlike other data which remains on the server and can redownload to your device when you sign back in, my photo stream photos only remain in iCloud for 30 days.  When you sign back in, you will only get back my photo stream photos added in the last 30 days (as older photos are no longer in iCloud to redownload).  Like other account data, any my photo stream photos on your other devices signed into the account are unaffected by this.  If you want to keep older my photo stream photos on your device as you change iCloud accounts, save them to your camera roll before deleting (signing out of) the account.

  • How to change the email of the existing nokia acco...

    I have forgotten the password of my existing nokia account password...and can't open the email which is associated with that account because I have forgotten that password too...how to change the existing account email id as I couldn't use the nokia music subscription because of this

    If you have included a verified phone number, you can reset the password of your nokia account by entering your registered mobile number on the Forgot Password site. Once you have reset the password and access your Nokia account, you can now change the primary/associated e-mail address.
    go to account.nokia.com>Sign in account>Personal Information>E-mail address>Edit>Input your password and email address (new email address)> Add. 
    To make it your primary email, under E-mail, click on Edit , select the new email address as your primary email and click on Set as primary.

  • Anybody know how to change your MSDN account phone number?

    The phone number used when my MSDN account was established is no long a valid (non-working) number.  I want to start using the MSDN Azure benefit but to activate it requires it to send you a text or get a call at the phone number on you account.  I've
    search all over my profile and can change my email address, time zone, country, language, yada, yada, yada, but nowhere have I found a way to change the phone number.
    Does anyone know where to go or how to change the MSDN account phone number?
    Eternally grateful,
    Frustrated in Phoenix
     

    Pretty sure what you're looking for F-I-Ph is at https://account.microsoft.com.  I see a "phones" tab on my version of that page. 
    Thanks,
    Mike
    MSDN and TechNet Subscriptions Support
    Did Microsoft call you out of the blue about your computer?
    No, they didn't.

  • Change the vendor account

    I had made GR, but posted wrong entries, instead of doing one vendor account & i had made in other vendors account, this lot is passed by quality also that means it UD is also done.
    how to change the vendor account.
    Thanks and Regards

    Hi,
    Please reverse the GR and then delete the line item from PO.
    Create New PO with correct vendor code and then make GR.
    Once PO is saved you cant change the vendor account no. in PO.
    Regards,
    Umesh

  • Hello, small question, how to change the bank details my account is on? keep on charging the old card nr of a friend ;-(

    hello, small question, how to change the bank details my account is on? keep on charging the old card nr of a friend ;-(

    Go to iTunes, click on your Apple ID (right top iTunes' corner), enter your paswword if requested and edit the details you want

  • How do I change the itunes account on my computer?

    How do I change the itunes account on my computer?  I let my ex keep my Apple ID as he had purchased a large amount of music, so he uses it on his Iphone and computer, and I started a new account on my Iphone, and I'd like to use that one on my computer, but I can't figure out how to log out of my old Apple ID and use the new one.

    If the desired iTunes library is in a different Mac OS X user account, choose to log out from the Apple menu and then log in.
    If the desired iTunes library is in the same Mac OS X user account, launch iTunes with the Option key held down and specify it.
    (108965)

Maybe you are looking for

  • How can i have '&' in EXECUTE IMMEDIATE statement?

    I have PL/SQL procedure, where i will be inserting data to a table. Data which i am inserting is having a '&' value in it. If i use the below statement for insert then sqlplus is prompting for the value '&' like a substitution value while compile thi

  • Error 'The application id or shortname (-1) you entered does not exist.'

    Hello, When I run the OA page it opens without any errors,but I delegate to Other page for insert record it showing following Error , Please help me to resolve this error. oracle.apps.fnd.framework.OAException: The application id or shortname (-1) yo

  • Site showing deleted items in IE. I need to get rid of it. please help

    My website http://www.greenpwwhh.com/crossword_main_page.html is showing ghost items on the right side of the site which was deleted but still shows in IE, even though firefox doesn't have it. the codes for the page are: <!DOCTYPE html PUBLIC "-//W3C

  • A Problem With Muvo V200 !!

    Hi everybody, I've bought a Muvo V200 GB, and it works well , less one thing: When the blue light is activated I feel a very "high-pitched" sound, and it's very unpleasant. Can somebody tell me if there is a firmware that fix that problem ? I've trie

  • Semi-New Mac owner need help please!

    I have had my Mac for a couple months now and I haven't experimented with all the applications yet, when I tried to open iChat all that it does is the little light underneath it turned on and nothing popped up. I don't know if I need to download anyt