Help with Sales and GL accounts

Hi,
I have a requirement where, i need to configure an existing order type to hit a different GL account key.
For tracking purposes, a new order reason has been defined.
How can this configuration be carried out?
Thanks in advance,

1 ) Also you need to get the code added to invoice user exit RV60AFZZ in the USEREXIT_ACCOUNT_PREP_KOMPCV.
Which Code is this?
Answer: KOMPCV-ZZAUGRU = VBRP-AUGRU_AUFT
2) Create a new condition table with the required fields plus order reason.
Where should the condition table be created? And what are the fields?
Answer: SPRO-IMG-Sales and Distirbution - basic Function - Account Assignmnet / costing - Revenue Account determination - Define dependencies of Revenue account determination
check in allowed field. After you get the field order reason added to the field catalog, you need to go to this Allowed fields in this navigation and click on new entries , drop doen or F4 and from the list select order reason and save. Now the order reason field is available to use in tables
TIn the same navigation as above , you can create a condition table. generally the table entires can be Sales Org / Order reason / Account key.
Now go to the navigation  SPRO-IMG-Sales and Distirbution - basic Function - Account Assignmnet / costing - Revenue Account determination - Defne access sequences,... add this new table to access sequence KOFI.
Now if you go to VKOA T code you will see your new table as one option. Double click on that and maintain the required entries. The accounts posting will be done based on your entries.
Regards
Sai

Similar Messages

  • Can anyone help with icloud and apple accounts getting mixed up on 2 phones?

    Basically husband upgraded from 4s to 5c. Gave dad 4s. I tried to set his dad up with icloud and apple id but didn't realise husbands old sim card was in 4s. Now neither phone works and husband very annoyed his apple id and password don't work anymore. Please help!!!

    Hi Chris
    So husband got new phone. Was all set up and up and running when we left the shop
    Gave dad the old phone. It was locked to Vodafone so we had to ask them to unlock. He then got his three sim cut down to fit.
    Weeks after husband had his 5c we went to dads to set his 4s up. I upgraded it to latest software iOS something. Anyway didn't realise it was husbands old sim still in phone.
    After upgrade it asked me to set up apple account (I think) could have been icloud. Anyway I started setting it up with dads email and password choice. Husband then saw message on his 5c saying his dads email was being added to something on his phone.
    At this point I left alone but now when husband tries to use his apple id for apps etc it says invalid user id or password. It's as though the 2 have got mixed up. Bit it won't let him reset his password?
    Does this make sense?

  • Anyone help with linking a bank account to your apple id. The form wants a phone number I only have a UK mobile number and it doesnt sem to want to accept it keeps l;ooping me back to entering a phone number.

    Anyone help with linking a bank account to your apple id. The form wants a phone number I only have a UK mobile number and it doesnt sem to want to accept it keeps l;ooping me back to entering a phone number.

    If you are trying to setup a charge card number on the Apple Store - make sure you are in the Correct country site - icon bottom right last time I saw it - where you can change country.  

  • Help with count and sum query

    Hi I am using oracle 10g. Trying to aggregate duplicate count records. I have so far:
    SELECT 'ST' LEDGER,
    CASE
    WHEN c.Category = 'E' THEN 'Headcount Exempt'
    ELSE 'Headcount Non-Exempt'
    END
    ACCOUNTS,
    CASE WHEN a.COMPANY = 'ZEE' THEN 'OH' ELSE 'NA' END MARKET,
    'MARCH_12' AS PERIOD,
    COUNT (a.empl_id) head_count
    FROM essbase.employee_pubinfo a
    LEFT OUTER JOIN MMS_DIST_COPY b
    ON a.cost_ctr = TRIM (b.bu)
    INNER JOIN MMS_GL_PAY_GROUPS c
    ON a.pay_group = c.group_code
    WHERE a.employee_status IN ('A', 'L', 'P', 'S')
    AND FISCAL_YEAR = '2012'
    AND FISCAL_MONTH = 'MARCH'
    GROUP BY a.company,
    b.district,
    a.cost_ctr,
    c.category,
    a.fiscal_month,
    a.fiscal_year;
    which gives me same rows with different head_counts. I am trying to combine the same rows as a total (one record). Do I use a subquery?

    Hi,
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    user610131 wrote:
    ... which gives me same rows with different head_counts.If they have different head_counts, then the rows are not the same.
    I am trying to combine the same rows as a total (one record). Do I use a subquery?Maybe. It's more likely that you need a different GROUP BY clause, since the GROUP BY clause determines how many rows of output there will be. I'll be able to say more after you post the sample data, results, and explanation.
    You may want both a sub-query and a different GROUP BY clause. For example:
    WITH    got_group_by_columns     AS
         SELECT  a.empl_id
         ,     CASE
                        WHEN  c.category = 'E'
                  THEN  'Headcount Exempt'
                        ELSE  'Headcount Non-Exempt'
                END          AS accounts
         ,       CASE
                        WHEN a.company = 'ZEE'
                        THEN 'OH'
                        ELSE 'NA'
                END          AS market
         FROM              essbase.employee_pubinfo a
         LEFT OUTER JOIN  mms_dist_copy             b  ON   a.cost_ctr     = TRIM (b.bu)
         INNER JOIN       mms_gl_pay_groups        c  ON   a.pay_group      = c.group_code
         WHERE     a.employee_status     IN ('A', 'L', 'P', 'S')
         AND        fiscal_year           = '2012'
         AND        fiscal_month          = 'MARCH'
    SELECT    'ST'               AS ledger
    ,       accounts
    ,       market
    ,       'MARCH_12'          AS period
    ,       COUNT (empl_id)       AS head_count
    FROM       got_group_by_columns
    GROUP BY  accounts
    ,            market
    ;But that's just a wild guess.
    You said you wanted "Help with count and sum". I see the COUNT, but what do you want with SUM? No doubt this will be clearer after you post the sample data and results.
    Edited by: Frank Kulash on Apr 4, 2012 5:31 PM

  • Help with writing and retrieving data from a table field with type "LCHR"

    Hi Experts,
    I need help with writing and reading data from a database table field which has a type of "LCHR". I have given an example of the original code but don't know what to change it to in order to fix it and still read in the original data that's stored in the LCHR field.
    Basically we have two Function modules, one that saves list data to a database table and one that reads in this data. Both Function modules have an identicle table which has an array of fields from type INT4, CHAR, and type P. The INT4 field is the first one.
    Incidentally this worked in the 4.7 non-unicode system but is now dumping in the new ECC6 Unicode system.
    Thanks in advance,
    C
    SAVING THE LIST DATA TO DB
    DATA: L_WA(800).
    LOOP AT T_TAB into L_WA.
    ZDBTAB-DATALEN = STRLEN( L_WA ).
    MOVE: L_WA to ZDBTAB-RAWDATA.
    ZDBTAB-LINENUM = SY-TABIX.
    INSERT ZDBTAB.
    READING THE DATA FROM DB
    DATA: BEGIN OF T_DATA,
                 SEQNR type ZDBTAB-LINENUM,
                 DATA type ZDBTAB-RAWDATA,
               END OF T_TAB.
    Select the data.
    SELECT linenum rawdata from ZDBTAB into table T_DATA
         WHERE repid = w_repname
         AND rundate = w_rundate
         ORDER BY linenum.
    Populate calling Internal Table.
    LOOP AT T-DATA.
    APPEND T_DATA to T_TAB.
    ENDLOOP.

    Hi Anuj,
    The unicode flag is active.
    When I run our report and then to try and save the list data a dump is happening at the following point
    LOOP AT T_TAB into L_WA.
    As I say, T_TAB consists of different fields and field types whereas L_WA is CHAR 800. The dump mentions UC_OBJECTS_NOT_CONVERTIBLE
    When I try to load a saved list the dump is happening at the following point
    APPEND T_DATA-RAWDATA to T_TAB.
    T_DATA-RAWDATA is type LCHR and T_TAB consists of different fields and field types.
    In both examples the dumps mention UC_OBJECTS_NOT_CONVERTIBLE
    Regards
    C

  • DB View with Sales and Finance Data

    Team,
    Is there a DB view with Sales and Finance data?
    -Cust No.
    -PO#
    -Invoice
    -Clearing Doc
    -Ship From
    -Unit Price
    Etc.
    Thanks
    Naved

    hi   there is  a  maximum  level of      view 
    BKPF_BSID_AEDAT  ....
    if you want you can create a with view with  you own selection  in the seSE11 ..
    go for the database  view  .....  because  it wil  give you the data  @ database level
    Girish

  • MOVED: [Athlon64] Need Help with X64 and Promise 20378

    This topic has been moved to Operating Systems.
    [Athlon64] Need Help with X64 and Promise 20378

    I'm moving this the the Administration Forum.  It seems more apporpiate there.

  • TS3276 I'M unable to send mail with yahoo and gmail accounts. any clues why? any help?

    Need help with MacPro mail and sending email currently not functioning.

    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages

  • Allocation of Sales and Expenditure Accounts only to a profit center.

    Hi,
    I had earlier posted a question on how to allocate a BP to a Profit center:
    Hi,
    Is it possible to allocate a BP to one or more Profit centers when creating a BP Master in SAP;such that, on creation of a marketing document the Profit center is directly picked up instead of selecting it.
    Please comment.
    Regards,
    The answer which solved it is :
    Projects can be associated with a Business Partner in the Master data definition but not Profit Center.
    Profit Center have associated distribution rules and are linked to G/L account or a transaction at the row level.
    You could do this. Create a UDF in the BP Master to enter the profit Center information.
    In the Sales Order Rows..in the Profit Center field create a Formatted Search to pull the Profit Center from the BP Master UDF
    Example: Let us say your Profit Center User field on the BP Master is called U_PC
    then your Formatted Search on the Marketing document would be
    SELECT T0.U_PC FROM dbo.OCRD T0 WHERE T0.CardCode = $http://$4.0.0
    Set it to Auto Refresh on Item Code ....check Display Saved Values
    If you want 2 Profit Centers on the BP Master and the user would select it in the Marketing document then let us presume your UDF's are U_PC1 and U_PC2,
    the FMS would be
    SELECT T0.U_PC1 FROM dbo.OCRD T0 WHERE T0.CardCode = $http://$4.0.0
    UNION ALL
    SELECT T0.U_PC2 FROM dbo.OCRD T0 WHERE T0.CardCode = $http://$4.0.0
    Suda
    Now, since the BP has already been allocated to the profit center anytime a service type credit note is passed which links to a Liability or an "Other" Account type, the profit center still gets allocated.
    Can I make any changes to the query such that only Sales or Expenditure account could be allocated to the BP, and any other account if tagged the entry is not tagged with a profit center.
    This has become critical for users who check the profit center report, which does not give the correct figure because of the above issue.
    Please advise.

    Hi Julie,
    Thanks for your reply!
    We have recently upgraded to 2005B PL43.
    Still it has not helped.
    Secondly these report are regularly checked by our Sales manager's hence updating using DTW will be a cumbersome affair.
    Is there some query which can update the fields correctly......
    E.g. Can the following query be amended to get the correct result:
    DECLARE @Type nvarchar(1)
    SELECT @Type=T1.ActType FROM OACT T1 WHERE T1.AcctCode=$[$39.94.0]
    IF @Type='I'
    BEGIN
               SELECT T0.U_AT_PC FROM [dbo].[OCRD] T0 WHERE T0.CardCode= $[$4.0.0]
    END
    ELSE
    IF @Type='E'
    BEGIN
               SELECT T0.U_AT_PC FROM [dbo].[OCRD] T0 WHERE T0.CardCode= $[$4.0.0]
    END
    ELSE
    BEGIN
            SELECT u2018u2019
    END
    Need your advise.
    Regards

  • Help with two computers, two accounts on one apple tv

    I'm about ready to pull the trigger on an apple tv to add to my building home theater system. My biggest desire in getting the apple tv is mainly for music streaming to my speaker system. So here is my question. My wife and I both have our own separate itunes accounts, separate itunes libraries on our own macbooks. My question is if it will be a problem to access both of those itunes libraries through the apple tv. I have the remote app for my iphone and can control both of our libraries with that, and can switch between both easily on the iphone, but will the apple tv be able to play different libraries without difficulty? I don't know if i need to set up home sharing because both libraries are currently on different accounts, so i don't even know if it's possible.
    Any help, suggestions, or ideas would be appreciated.

    JKStraw - but you understand that when you use the appleTV you can stream from a computer without "taking over" the iTunes on that computer?
    there are two mode for streaming to an appleTV..
    1) you can stream what is being played on a computer's iTunes Library through airPlay and remote control the iTunes on the computer with the remote app
    OR
    2) you can just access the files in a computers iTunes Library from the appleTV without affecting the computer at all.. you could be playing a song on iTunes or not on the computer and be playing a completely different song on your appleTV.. you just enable home sharing on the appleTV and computer.. from appleTV you just go computers > +the name of the iTunes Library+ and you can access all your songs, video etc on that computer without affecting that computer at all..
    on the remote app you can link to an appleTV and 1) just use gestures to navigate the appleTV or 2) skip the appleTV GUI altogether and view what's available directly from the remote app.. click on something and it plays.. again this in no way affects what's happening on the computers the appleTV is linked to..

  • Help with invoicing and free of cost order

    here's the scenario: i took the pricing procedure of my standard order and basically changed PROO from R to S for statistical. rest is the same. gave the new pricing procedure a name starting with Z, then created a document procedure, then created a new order type for free goods sale and assigned everything the way it should be. i still need the taxes because customer will be billed for taxes, just not the base price. everything works fine till i get to billing and try releasing that to accounting, i get this error: Tax code O1 does not appear in any G/L account item. the FICO teams tells me it's because i put PROO as statistical and the system doesn't know where to get the tax from for the invoice. my pricing procedure is as follows:
    10 0 PR00 Bag Price X 2 ERL
    20 0 ZSED Special Excise Duty 10 10 X 10 ZSD
    30 0 ZMWS Sales Tax 10 10 X 10 MWS
    40 0 Net Value 20 30 X
    45 0 BO02 Material Rebate 40 X ERB ERU
    50 0 Discount 45
    60 0 ZPFR Freight X
    980 0 WGST WHT GST 1% 10 164
    985 0 WCOD WHT 3.5% 65 164
    990 0 A
    any suggestions on what to do and what might be wrong? thanks!

    Hi
    As far as your requirement is concerned , everything is correct , but just check in VK12 wheather  the tax code O1 has been assigned to the tax condition types. or not. Also check the G/L accounts assigned to the tax condition types. are properly maintained or not. So kindly ask your FICO consultants to check the following data
    Revert back with  the updated  data ,  wheather everything is going correctly or still facing problems
    Regards
    Srinath

  • I need help with my mac mail account password!

    okay. so i came home one day after work, and i went to check my mail. there is a squiggly line next to my inbox. i tried to send a message, and a box popped up asking for my account password. now i only use two passwords - one is a word with numbers, and the other is just a word. i entered both, and was told they were incorrect. i'm stumped. am i going to have to start a new account? is there a way to change the password and still get my mail? would someone please help me out? thanks in advance to anyone who does.

    Well, then maybe Mail is corrupted, so let's try to fix that. You'll need:
    1. your Mac OS X installation disc.
    2. a copy of Pacifist.
    3. confidence and patience.
    First, quit Mail, go to Users/your username/Library/ and copy the Mail folder to your Desktop; then download Pacifist using the link above.
    Next, insert your Mac OS X installation disc, open it with Pacifist and browse the contents of the Optional Installs folder until you find the installer package for Mail, then open that Mail package.
    Select the top-level of that package in the Pacifist file listing and click on the Extract button in Pacifist and choose your Desktop for the destination. When that is finished, move the newly extracted copy of Mail to your HD/Applications folder. Choose "Replace" when it tells you there's already a newer or older file there with the same name.
    Quit Pacifist, open System Preferences and use Disk Utility to Repair Permissions; then quit System Preferences, logout and log back in, then try starting Mail and see if that resolves your problem.
    Mulder

  • LSMW - Need help with Sales Order (Modification VA01)

    Hi,
    I need help with an LSMW for Sales Order (VA01).
    I need to do the following:
    1. Copy the Standard Sales Order LSMW
    2. They (users) would like to be able to pick the batch (lot) from the sales order.
    3. Also, they would like to have functionality, where from the list of Sales Order numbers, they would be able to switch one part number for another.
    Please help with the above 3 needs.
    Thanks,
    Laura

    Hi
    Run transaction SE38, insert your program (RVINVB10), select DOCUMENTATION option and press display
    Just only you need to consider the BDC program needs to read afile with all informations to create a sales order, so you have to create a program to prepare a file arraged as RVINVB10 needs, the documentaion explains how the file has to be created.
    Max

  • Help with sales problem

    i need help finding the minimum and maximum sale, and print it saying "Salesperson 3 (or whoever) had the highest sale with 3560 (some amount)" and do the same for the minimum. i thought i had the right code to find it but i cant get it to work. can anyone tell me what i did wrong?
    import java.util.Scanner;
    public class Sales
         public static void main(String[] args)
              final int SALESPEOPLE = 5;
              int[] sales = new int[SALESPEOPLE];
              int sum;
              Scanner scan = new Scanner(System.in);
              for (int i=0; i<sales.length; i++){
              System.out.print("Enter sales for salesperson " + i + ": ");
              sales[i] = scan.nextInt();}
              int salesTotal = sales.length;
              int salesAverage = salesTotal / 5;
              System.out.println(salesAverage);
              System.out.println("\nSalesperson Sales");
              System.out.println("--------------------");
              sum = 0;
              int maxSale = sales[0];
              int minSale = sales[0];
              int maxNum = 0;
              int minNum = 0;
         for (int i=0; i < sales.length; i++)
              System.out.println(" " + (i) + "           $" + sales);
              sum += sales[i];
              if(sales[i] > maxSale);{
              maxSale = sales[i];
              maxNum = i;}
              if(sales[i] < minSale);
              minSale = sales[i];
              minNum = i;
              System.out.println("\nTotal sales: $" + sum);
              int average = sum / 5;
              System.out.println("\nThe average sale was: $" + average);
              System.out.println("Salesperson " + maxNum + " had the highest sale with " + maxSale);
              System.out.println("Salesperson " + minNum + " had the lowest sale with " + minSale);

    im now stuck with this problem:
    "After the list, sum, average, max and min have been
    printed, ask the user to enter a value. Then print
    the id of each
    salesperson who exceeded that amount, and the amount
    of their sales. Also print the total number of
    salespeople whose
    sales exceeded the value entered."
         if(sales[i] > value){
                        int personExceed = sales;
                        int exceedNum = i;
    System.out.println("Salesperson " +
    personExceed + " exceeded $" + exceedNum);
    is my code for printing out whats in bold right?
    Not quite. sales[i ] represents the $ amount of sales for salesperson number i. You want to loop over each salesperson's sales amount, and if it was higher than the given value, print out that person's:
    - salesperson id  (i)
    - amount of sales (sales[ i])
    Each time a person's sales exceed the given value, increment a counter. After you finish looping through the sales figures, print out that counter to show how many people exceeded the value.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Allocation of Sales and Expenditure Accounts to Profit Center.

    Hi,
    I had earlier posted a question on how to allocate a BP to a Profit center:
    Hi,
    Is it possible to allocate a BP to one or more Profit centers when creating a BP Master in SAP;such that, on creation of a marketing document the Profit center is directly picked up instead of selecting it.
    Please comment.
    Regards,
    The answer which solved it is :
    Projects can be associated with a Business Partner in the Master data definition but not Profit Center.
    Profit Center have associated distribution rules and are linked to G/L account or a transaction at the row level.
    You could do this. Create a UDF in the BP Master to enter the profit Center information.
    In the Sales Order Rows..in the Profit Center field create a Formatted Search to pull the Profit Center from the BP Master UDF
    Example: Let us say your Profit Center User field on the BP Master is called U_PC
    then your Formatted Search on the Marketing document would be
    SELECT T0.U_PC FROM [dbo].[OCRD] T0 WHERE T0.CardCode = $[$4.0.0]
    Set it to Auto Refresh on Item Code ....check Display Saved Values
    If you want 2 Profit Centers on the BP Master and the user would select it in the Marketing document then let us presume your UDF's are U_PC1 and U_PC2,
    the FMS would be
    SELECT T0.U_PC1 FROM [dbo].[OCRD] T0 WHERE T0.CardCode = $[$4.0.0]
    UNION ALL
    SELECT T0.U_PC2 FROM [dbo].[OCRD] T0 WHERE T0.CardCode = $[$4.0.0]
    Suda
    Now, since the BP has already been allocated to the profit center anytime a service type credit note is passed which links to a Liability or an "Other" Account type, the profit center still gets allocated.
    Can I make any changes to the query such that only Sales or Expenditure account could be allocated to the BP, and any other account if tagged the entry is not tagged with a profit center.
    Please advise.
    Edited by: Vishal Attal on Oct 14, 2008 12:53 PM
    Edited by: Vishal Attal on Oct 14, 2008 12:54 PM

    Hi Vishal
    Best will be to use the ActType field from OACT to check whether it is an "I" (Income) or "E" (Expenditure) and not an "N" (other) type.
    Change query as follows:
    SELECT CASE WHEN (SELECT T1.ActType FROM dbo.OACT T1 WHERE T1.AcctCode = $[$39.94.0]) <> 'N' THEN (SELECT T0.U_PC FROM dbo.OCRD T0 WHERE T0.CardCode = $[$4.0.0]) ELSE '' END
    Let me know if it works
    Kind regards
    Peter Juby

Maybe you are looking for

  • Restarting A Flex Application Programmatically

    Howdy folks, I have just created a database driven user management system which works wonders, but I'm having a problem with logging out a user. By far the easiest, sure fire way of doing this would be to clear the users login in the database (not re

  • Why wont apple accept my payment method?

    i have been using this card since it was activated in the autumn of 2012, and it now says my payment details are invalid. ive put the correct details in every time, and i have been using the card itself today at the shops. its just itunes that it won

  • Obips analysis is undefined error when navigate from a map

    On dashboad, the navigation from map to another report by using action works well when both table view and map view on dashboard. However, I get error "obips analysis is undefined" if I only show map view on the dashboard. Anybody know why? Thanks

  • How do I change my security questions and answers?

    Does anyone know how I can change my security q@a?  I don't remember my answers!,

  • E71 Route 66 Mobile 7

    I am happy to report Route 66 Mobile 7 works with the internal GPS in the Nokia E71. It does require the latest version (7.0.545) which includes a patch intended to make the N95 work. I'm posting this info because I could not find it anywhere, and Ro