Access Sequence Field not recognized in the Account Determination

Hi All,
we have created a new table for the account determination access sequence we are using as default.
the new table contains the field MVGR2 (VBAP) which we added to the KOMPCV structure as ZZMVGR2.
this goes fine in the sales order, however this is no longer recognized during billing. the field has no value in the Account determination analysis, hence there is no GL account determined for that.
can anyone help?

My guess is: you will have to modify the copy control routine, and populate the value of the new field accordingly.
This routine needs to be assigned to the item category in copy control configuration (VTFL).
Needless to say, the existing routine should be copied and then modified.
Regards,
Aroop

Similar Messages

  • My email gets bounced into an eternal loop in the outbox and says that my iCloud and me account are not recognized by the server? I've tried setting up another account and it says that I already have them set up, and it is stil only sending 1 or 2 message

    My messages get lost in an eternal loop in my out box and it says that my iCloud me accounts are not recognized by the server. I can send 1 or 2 out of 10.
    We tried adding a new account and that didn't work. We then deleted the account and started again. Still didn't work. Extremely frustrated!

    There also seems to be something wrong with the time!!! My posting says 5:30ish but it was 8:30ish?

  • HT4759 I want open my icloud  access my account but did not prospered, says the account has been suspended security reasons

    Hello dear sir I want open my icloud  access my account but did not prospered, says the account has been suspended security reasons and I'm the owner of the icloud account and I have passowrd
    Can you help me in to  open my account please
    Note I tried to re-change the password several times via e did not prospered
    <Personal Information Edited by Host>

    يا سيدي، الرجاء فتح حسابي وعدم حذف الصور هويتي
    مرحبا سيدي العزيز أريد فتح بلدي صول icloud حسابي ولكن لم ازدهرت، ويقول لقد تم تعليق حساب أسباب أمنية وأنا صاحب حساب icloud ولقد passowrd
    هل يمكنك مساعدتي في فتح حسابي من فضلك
    بلدي  هويتي التفاح أو icloud أو البريد  ملاحظة حاولت إعادة تغيير كلمة المرور، عدة مرات عن طريق البريد لم ازدهرت
    Message was edited by: stevemei
    <Personal Information Edited by Host>

  • Batch field not recognized in ME21N pricing, is recognized in ME22N pricing

    Hello,
    I have an issue with the value in the Batch field when creating a purchase order not being recognized when going through the pricing procedure.  Here's the sequence I'm going through:
    -  Create PO in ME21N, enter material, enter batch, update pricing and carry out new pricing
         o  For the first condition type, access 25 has X price for a condition table with Purch Org, Material, and Batch listed, but there is an error icon in the "Value in doc" description within the Batch access field, therefore it bypasses this condition table and goes to the next access
         o  For the same condition type, access 30 has Y price for a condition table with Purch Org and Material.  Access 25 (desired condition table) is excluded because the system doesn't recognize the value for the Batch field, so the system grabs the price within the condition table in access 30
    -  Save PO
    -  Go to change PO in ME22N, select Analysis at the item level in the Conditions tab
         o  For the first condition type, access 25 DOES recognize the batch field and grabs X price (desired price)
    -  Update pricing and carry out new pricing, grabs X price instead of Y price
    My issue I hope to resolve is to figure out why the Batch field is not recognized in the pricing when in ME21N, but it is recognized in the PO when in ME22N.  Any help would be greatly appreciated!

    Hi,
    Please check screen layout for AKTH & AKTV.
    Regards
    Subbu.

  • Intermittent : The term 'get-date' is not recognized as the name of a cmdlet, function, script file, or operable program.

    I have developed a batch harness whereby all scheduled tasks (W2012) invoke a common powershell script that acts as a wrapper to all our housekeeping jobs.
    The first step in the wrapper is to create a Transcript file using following code
    if ($Host.name -ne "Windows PowerShell ISE Host") # Transcript does not work within ISE
    $timestamp = (get-date -format "yyyy-MM-dd-HH-mm-ss.fff")
    $path = "c:\corp\$timestamp" + "_$pid.txt"
    Start-Transcript -path $path -append
    As expected the folder contains files with timestamp & pid in name
    08/08/2013  11:00 AM            14,388 2013-08-08-11-00-01.158_1620.txt
    08/08/2013  11:00 AM            12,506 2013-08-08-11-00-01.485_936.txt
    08/08/2013  11:00 AM            12,994 2013-08-08-11-00-01.735_9328.txt
    08/08/2013  11:00 AM            12,024 2013-08-08-11-00-01.766_8624.txt
    08/08/2013  11:00 AM            13,902 2013-08-08-11-00-01.860_1756.txt
    08/08/2013  11:01 AM            15,142 2013-08-08-11-01-31.392_10120.txt
    08/08/2013  05:00 AM            14,982 _1692.txt
    However note the last file, it has a zero length date time value in the name
    The error recorded by PowerShell is
    get-date : The term 'get-date' is not recognized as the name of a cmdlet, function, script file, or operable program.
    Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At C:\Corp\Powershell\DMPRun-ScheduledTask.ps1:171 char:18
    +    $timestamp = (get-date -format "yyyy-MM-dd-HH-mm-ss.fff")
    +                  ~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (get-date:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    IE get-date has failed and returned a zero length field as the timestamp
    Can anyone think of a good reason why get-date would fail intermittently?
    Do I have to code defensively for base Powershell functions?

    I implemented David's suggestion and now I intermittently get
    import-module : Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    At D:\temp\loop_jc2_2013_11_25_08_55_02.ps1:15 char:1
    + import-module Microsoft.Powershell.Utility
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Import-Module], UnauthorizedA
       ccessException
        + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.Pow
       erShell.Commands.ImportModuleCommand
    I added a trap chain (My Powershell skills do not yet include recursive trap coding, any suggestions welcome)
    trap {
        trap {
            "Trap1"
            "Exception: " + $_
            "Error: " + $Error[0]
            "Message: " + $_.Exception.Message
            "InnerException: " + $_.Exception.InnerException
            "StackTrace: " + $_.Exception.StackTrace
            "FailedItem: " + $_.Exception.ItemName
            import-module Microsoft.Powershell.Management
            import-module Microsoft.Powershell.Security
            import-module Microsoft.Powershell.Utility
        "Trap2"
        "Exception: " + $_
        "Error: " + $Error[0]
        "Message: " + $_.Exception.Message
        "InnerException: " + $_.Exception.InnerException
        "StackTrace: " + $_.Exception.StackTrace
        "FailedItem: " + $_.Exception.ItemName
        import-module Microsoft.Powershell.Management
        import-module Microsoft.Powershell.Security
        import-module Microsoft.Powershell.Utility
    import-module Microsoft.Powershell.Management
    import-module Microsoft.Powershell.Security
    import-module Microsoft.Powershell.Utility
    trap {
        "Trap3"
        "Exception: " + $_
        "Error: " + $Error[0]
        "Message: " + $_.Exception.Message
        "InnerException: " + $_.Exception.InnerException
        "StackTrace: " + $_.Exception.StackTrace
        "FailedItem: " + $_.Exception.ItemName
        exit 1
    get-date
    Now I intermittently get ..
    Trap2
    Exception: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    Error: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    Message: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    InnerException:
    StackTrace:    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.Threading.Mutex.MutexTryCodeHelper.MutexTryCode(Object userData)
       at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
       at System.Threading.Mutex.CreateMutexWithGuaranteedCleanup(Boolean initiallyOwned, String name, Boolean& createdNew, SECURITY_ATTRIBUTES secAttrs)
       at System.Threading.Mutex..ctor(Boolean initiallyOwned, String name, Boolean& createdNew, MutexSecurity mutexSecurity)
       at System.Threading.Mutex..ctor(Boolean initiallyOwned, String name, Boolean& createdNew)
       at System.Management.Automation.AnalysisCache.CacheExportedCommands(PSModuleInfo module, Boolean force, ExecutionContext context)
       at Microsoft.PowerShell.Commands.ModuleCmdletBase.LoadUsingModulePath(PSModuleInfo parentModule, Boolean found, IEnumerable`1 modulePath, String name, SessionState ss, ImportModuleOptions options, ManifestProcessingFlags manifestProcessingFlags,
    PSModuleInfo& module)
       at Microsoft.PowerShell.Commands.ImportModuleCommand.ImportModule_LocallyViaName(ImportModuleOptions importModuleOptions, String name)
       at Microsoft.PowerShell.Commands.ImportModuleCommand.ProcessRecord()
       at System.Management.Automation.CommandProcessor.ProcessRecord()
    FailedItem:
    import-module : Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    At D:\temp\loop_jc2_2013_11_25_09_19_52.ps1:26 char:1
    + import-module Microsoft.Powershell.Security
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Import-Module], UnauthorizedA
       ccessException
        + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.Pow
       erShell.Commands.ImportModuleCommand

  • Freight Header with Access sequence only to apply on the header.

    Hi Colleagues,
    I have a requirment to make Freight to be maintained as the Header condition.
    This should not apply in the item at all.
    In the standard SAP, the Header condition is always to be maintained manullay and can not be controlled through the access sequence(condition records)
    What are the other ways that we can have this working.
    Thankyou.

    Hi,
    There is no way in SAP to have the pricing only at header but not distributed to line item, even the pricing entered at the header gets distributed to each line item. Any price mentioned at the header has to be distributed to line item to calculate profitiability at the line item and in case of billing of the documents, unless the amount is appropriated to each line item, system cannot calculate correct billing amount in case of split of order into multiple billing document.
    I am not sure of your exact requirement but if you are looking to charge the flat amount on each document, you could do so by using group condition.
    Create a condition type with the following parameters:
    Calculation type = B
    Group  Condition = Active
    Group Condition Routine = 01.
    Assign an access sequence which contain the access fields from the header of the doucmnet so that condition type is captured at each line item with the same condition record number. Since all the line item will belong to common group and will have same condition record number whcih is fetched at each line item, system will apply only the amount mentioned in the condition record in the document. i.e. If condition record specificies 50$ as the amount, a total of 50$ will be applied on the doucment and will be distributed to each line item based on the value of each line item.
    In case the above solution does not meet your criteria or fits your situation.. please elaborate on the exact business scenario / requirement.
    Regards,
    Naveen Aggarwal

  • Rate and accessable value is not displaying for the tax invoice output

    Hello All,
      Rate and accessable value is not displaying for the tax invoice output. Rest of all outputs for invoices shows Rate and accessable value.
    Scenerio is free of charge sales order (samples) removing the goods from pant so excise invoice has been created and also updated. but for tax invoice out put rate and access value is not displaying.
        Pricing procedure: In pricing procedure account keys have not been maintained because there is not gl account upadation during billing for free of charge delivery.
    Thanks & Regards,
    ramesh

    hi Gurpreet,
    You can add values to that transient column programatically,either by getiing the row from the iterator and then row.setAttribute('Column_name','Value');
    Or providing value to it in the SQL...

  • Calendar Server Error: At least one sharee was not recognized by the server. New invitations have not been sent.

    I deployed a Mountain Lion Server with the calendar service active. Every time a user tries to share a calendar they have created under thier account to an external person using thier email address, the server gives the following error: "At least one sharee was not recognized by the server. New invitations have not been sent."
    Invites to share a calendar to OD accounts on the server seem to work fine.
    I have a calendar specific email address for external invites set up. The server seems to send individual event invites to external email addresses just fine, so I am thinking the email is working. Email is not served on the Mountain Lion Server. The account is through Google Apps using IMAP and SMTP.
    What's even stranger, is that there doesn't seem to be any message in the Calendar error logs.
    I've tried creating a new test account and no luck.
    I don't know what else to try.
    Thanks in advance for any help!

    another 3rd party sofwtare that allows you opent he backup and grab info
    http://www.processtext.com/abcblackberry.html
    trial for 30 days, good program for that 30 days, I hear they arent a pleasant company to purchase from though

  • DOD access card certificates not recognized when trying to access web sites with a card reader while older version of firefox did.

    In the past I have been able to access web sites that require certificates pulled from a common access card inserted into a card reader attached to my Mac. Since I have updated to the newer version of Firefox, the sites that I am trying to gain entry to are not recognizing either the card, card reader or those certificates. If I use Safari or my work computer, the sites recognize my card and certificates and I am grated entry. I would use Safari but I like the format of Firefox for the specific tasks that require the access card. Just looking for a solution. Firefox does open other sites just fine. It's just the ones that require the card, reader and certificates.

    Anything here:
    * [[/questions/808161]] Trying to use a CAC smart card reader with Mac version of Firefox
    * [[/questions/752709]] Having problems configuring FireFox to use a CAC reader

  • Powershell - The term is not recognized as the name of a cmdlet, function, script file, or operable program.

    I am trying to run the following Powershell in orchestrator to move a new user into a specific OU based on the Department field specified by the creator. 
    $dept = {Department from "Initialize Data"} 
    if ($dept -contains 'IT') {$NewContainer = OU=IT,DC=test,DC=net}
    When I run the Powershell it is returning the following
    The term 'IT' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    How can I get it to not try and pass 'IT' as a cmdlet?

    I think I may have actually found the solution I was missing { } around the command
    I encapsulated the powershell in { }
    $dept = {Department from "Initialize Data"} 
    if ($dept -contains 'IT') {$NewContainer = OU=IT,DC=test,DC=net}

  • Email won't send. Says recipient is not recognized by the server

    email won't send.  Says recipeient si not recognized by the server

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try a Reset - iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    Or this - Delete the account in Mail and then set it up again.
     Cheers, Tom

  • My ipad is not being seen by itunes in Windows 7. I uninstalled then reinstalled itunes it started working for a while then it stopped. I get a message stating that the device is not recognized or the device is defective replace device. Anyone have a fix.

    My ipad is not being seen by itunes in Windows 7. I uninstalled then reinstalled itunes it started working for a while then it stopped. I get a message stating that the device is not recognized or the device is defective replace device. Anyone have a fix.

    At present I have no power to the Gen 7, so need to get some power to it I think.  I pressed the buttons as you suggested, but nothing is showing up at this point.  Thank you for your response as the more I can rule out before  I take it back the better I think.

  • I need help! when I am importing my NEF files from my D3300 camera into lightroom 5 and try to use the "copy as DNG" button I always get an error message saying that "saying the file is not recognized by the raw format support"

    I need help! when I am importing my NEF Raw files from my D3300 camera into lightroom 5 and try to use the "copy as DNG" button I always get an error message saying that "saying the file is not recognized by the raw format support". The whole purpose of that button is so that the file can be recognized... How can I make the "copy as DNG" button work as it is supposed too?? Thank you

    Thank you for responding. So I essentially will never be able to use that button in lightroom 5? do I need to get LR 6? Will there ever be an update for LR 5 that will enable me to use it?
    Does DNG Converter work within LR or do I have to upload pictures to my computer and then make a second copy in DNG format. and then go into LR and use them?
    Thank you @dj_paige

  • My ipod video is not recognized by the computer what should i do/

    my ipod video is not recognized by the computer what should i do?

    What have you tried so far in terms of troubleshooting this issue?  Are you plugging the iPod into a high powered USB 2.0 port on the back of your PC? Have you tried a different USB cable?
    What happens if you try to reset the device with it still connected to the PC?
    How to reset iPod
    Has this iPod ever worked on this PC or is this the first time you have time you have tried connecting it?
    Have you carefully worked through each and every single suggestion in this Apple support document?
    iPod not recognized in 'My Computer' and in iTunes for Windows
    B-rock

  • After upgrade IPHONE 4 to IOS 7 , it work 2days, and now it is off, not recognized on the pc and no battery logo when connecting to the sector

    After upgrade IPHONE 4 to IOS 7 , it work 2days, and now it is off, not recognized on the pc and no battery logo when connecting to the sector

    I'm happy to say that I solved the problem, and for the community (for the "next generation" that will search a solution for this problem) - I will publish the solution for this problem : I defined as new iphone, and then the restore showed up!
    All wishes everyone...

Maybe you are looking for

  • Thanks to hplip changes, I can no longer print with my Deskjet F4140..

    Hi. Ever since the upgrade of hplip, I've been unable to print. I searched the forums already and have removed hplip's entry from etc/rc.conf, as well as uninstalling the package. CUPS is up to date, but when I went through the "Add Printer" process,

  • Photoshop CS4 and GeForce 6600 on PowerPC G5

    I get frequent alert from Photoshop CS4 regarding display driver which say's to check for driver update and that Open GL 2.0 is not available and that GPU is turned off. But I can work in the photoshop but a few things are slow and look is not that g

  • Heap Dump file generation problem

    Hi, I've configured configtool to have these 2 parameters: -XX:+HeapDumpOnOutOfMemoryError -XX:+HeapDumpOnCtrlBreak In my understanding, with these 2 parameters, the heap dump files will only be generated under 2 situations, ie, when out of memory oc

  • ImageableArea (when printing) different in Java1.2.1 from 1.3.1

    I am now compiling a source with JDK 1.3.1.08 which give the application a much better performance. But now the printArea seem to be much smaller. (margin to big) The same code result in a smaller printable area on the paper (printers can print a muc

  • Forwarding credentials from j_security_check to EJB

    I'm using the FORM based authentication on my web app to log in users... I've defined roles on both web app and ejb jar files... The problem that I'm facing is that the Principal is not being forwarded to the EJB Container to validate authorization..