OBYC PRD posting to two different GLs Based on stock or non stock PO

Hi Gurus,
In Account determination OBYC we have provided price difference PRD with a P/L account.
The business however wants to post all Stock PO price differences to an balance sheet account while for Non-stock PO price differences it should post to P/L account. As I understand, I need to provide two different GLs in transaction key PRD account determination based on account arrangement category.
How can we achieve this requirement?  Is there a way to use General Modification to fulfill this purpose?

Hi Gurus,
In Account determination OBYC we have provided price difference PRD with a P/L account.
The business however wants to post all Stock PO price differences to an balance sheet account while for Non-stock PO price differences it should post to P/L account. As I understand, I need to provide two different GLs in transaction key PRD account determination based on account arrangement category.
How can we achieve this requirement?  Is there a way to use General Modification to fulfill this purpose?

Similar Messages

  • Shipment Cost Document Posting of two different G/L Accounts

    Hi All,
    Shipment cost document posting should happen to two different G/L Accounts based on Division of the Material.If suppose there are two divisions 10 & 20.While posting happening in shipment cost document the material belongs to 10 Division must post to one G/L Account and material belongs to 20 Division should post to another G/L Account.
    Please let me know the possible solutions.
    Regards
    Sunil

    Hi Lakshmipathi,
    Thanks for your reply, We are working on the STO scenario and the client requirement is if the material is in 10 Division it should post to one G/L account and if the division is 20 it should post to another G/L account in shipment cost document.
    Normally postings in shipment cost document postings will occur mainly by the Item category and Valuation class based on the shipment cost document type.In standard we can do this by providing two shipment cost document type and two valuation classes and two item categories.
    I want to know whether it is possible with a single shipment cost document type.
    Regards
    Sunil

  • Posting to Two different GL account for one condition type

    Hi All,
    In MM pricing procedure we are assigning one new condition type as Management Exp Charges.
    we creat two Transaction/Event key and assigned one in ActKy Colum and another in in Accural column.
    Suppose we are charging  10 $ towards Management Exp.
    Is there any way to Post 10$ in two different GL account.
    DR.Expnses account (As per GL assigned in Actky column) 10$
    Cr. Expenses Accural charges ( GL aasigned in accural Colum) 10$
    Howevre as per our current setting it was Cr to Accural account but for debit transaction it was going to stock/gain account.
    please help us to resolve this issue.
    Thanks in advance
    Regards,
    Lokanath

    Hi
    Can u specify why the customer two interest rates for one loan type.  Is the interest on loan going to change for any periodicity.
    Other wise you can create two loan types with nearest understandable naming convenction and use them for your business requirement.  Which ever is applicable for the employee can be selected by your customer.
    Brs
    Kenu

  • How can I combine post to two different tables with one form?

    I am trying to create a "phantom" record in a table to be used later in a report. How can I create a form and properly $_POST to two different tables? Thanks for any suggestions!

    In POST processing, just do the insert to one table, followed by the insert to the second table. I don't understand where you are getting stuck.
    Sometimes when we do an insert, we need the auto-generated ID from the newly created record as a "foreign key" for the record created in the second insert. MySQL has a nifty solution for that. The specific code depends on whether you are using the mysql, mysqli or PDO database connection.

  • Depreciation posting for two different Cost Centers

    Hello everybody,
    My client has an asset that was assigned to Cost Center #1 from the 1st of january to the 20th. Then it was reassigned to Cost Center #2. (Cost Center is configured to be a time dependent field).
    We were expecting the system to split the depreciation amount into these two Cost Centers at the end of the month. Apparently we were expecting too much. The depreciation amount is going completely to Cost Center #2 wich is incorrect.
    Do you think that there is something missing in the configuration? Or SAP just does not split the depreciation amount according to the time intervals? If that is impossible, do you have any alternative solutions?
    Thanks a lot,
    Plácido

    Distribution of Depreciation and Interest
    It is only possible to enter one cost center in the asset master record. You distribute depreciation and interest to different cost centers using settlement within Controlling (CO). The cost center in the asset master record then serves the function of a distribution cost center.
    The disadvantage of this approach is that reports show only the distribution cost center, and not the cost centers that are actually debited. Also, you need to create a separate cost center for the distribution.
    A different approach is to follow this procedure:
    ·        Determine the cost center that you want to be shown in asset reports as the cost center of the asset. Enter this cost center in the asset master record.
    ·        Enter an internal order in the asset master record. The system then posts to this order when it posts depreciation. The system does not post to the cost center.
    ·        Settle the internal order to the cost centers that you want to debit.

  • Fetch Data from two different Lists (Based on criteria)

    I have two lists. One is for Designations and another is for
    Hirings. Designations list holds all available designations and Hiring list has list of hired employees. Data may look like following...
    Designations list:
    PostTitle
    Software Engineer
    Web Developer
    Graphic Designer
    Trainer
    Manager
    Team Lead
    and Hiring list may look like following
    Hirings list:
    PostTitle
    Employee
    Start Date End Date
    Trainer David
    05-Jun-14
    Manager Peter
    06-Jun-14 30-Jun-14
    PostTitle is lookup column in hirings list. Now, I have to create several views over this data... one of them is of "Vacant Posts" that will fetch all those records from Designations which are either not referenced in hirings or are referenced
    in hirings but has some end date.
    Vacant Posts View:
    Fetch all records from Designation which are NOT in Hirings
    UNION
    Fetch all records from Designations which are in Hirings But has some END DATE.
    Please guide me how can I create this Vacant Posts view ? Is their any out of the box functionality available ? what are the easiest possible ways to accomplish this?
    Zia.

    Yes You can Use CAML.
    Below Query can be helpful to start with.
    Function GetSharePointList1() {
    context = SP.ClientContext.get_curre
    nt();
        oList = context.get_web().get_lists().getByTitle('SharePoint List 2');
        var camlQuery = new SP.CamlQuery();
        camlQuery.set_viewXml(query);
        items = oList.getItems(camlQuery);
        context.load(items);
        context.executeQueryAsync(
            Function.createDelegate(this, onSuccessSharePointList1),
            Function.createDelegate(this, onFail)
    function onSuccessSharePointList1(){
            recNum = items.get_count();
          if(recNum != 0){
             var listItemEnumerator = items.getEnumerator();
             while(listItemEnumerator.moveNext()){
                    var oListItem = listItemEnumerator.get_current();
                    $().SPServices({
                    operation: "GetListItems",
                    async: false,
                    listName: "SharePoint List 2",
                    CAMLViewFields: "<ViewFields><FieldRef Name='Worklocation'/></ViewFields>",
                    CAMLQuery: "<Query><Where><Eq><FieldRef Name='Title'/><Value Type='Text'>" + ReferenceID +
                                              "</Value></Eq></Where></Query>",
                    completefunc: function (xData, Status) {
                      $(xData.responseXML).SPFilterNode("z:row").each(function() {
                        Worklocation = ($(this).attr("ows_Worklocation"));
                     s = ..... (display all in table format)
                  $("#resultTable").append(s);
                  i++;
    Thanks and Regards Rahul Dagar

  • How to route the Idoc to Two Different Locations based on the Plant Values

    Hi All,
    We will generate single Idoc, in that we will have 2 E1MARCM segments, one will have UK plant and another will have US plant.
    Now in XI, receiver determination i need to route the idoc to corresponding folders.
    How can we do this, because in x-path, we can check always for the first segment only, second segment will not come into picture.
    Please suggest me

    Hi,
    we can check the multiline  present in receiver determination  and specify the condition for both US an UK  receiver systems.
    Or   if you are sure that only  two (UK and US) will come , then check the condition for  Say  UK and  check the defualt reciver system in case of failure ,if its US it will go to the default system.
    You can also  try out the interface determination condition, please check if below links can help.
    How to write Conditions in Interface Determination for 2 IDOCs
    Single File to multiple IDoc
    Reciever idoc adapter Determination error
    Regards,
    Srini

  • BAI code map to two  different GL's based on currency

    For a BAI code ex:195,if i have to post to two different Gl accounts based on the currency for the incming payments.How do i map it in EBS.One BAI code to two different gl's based on currency.
    Please advice.

    In the EBS config, you assign BAI codes to posting rules.  Posting rules use account symbols.  GL Accounts are assigned to account symbols.  When you map account symbols to GL accounts, you can create different entries by currency.  So you would set up multiple entries for the account symbol(s) - one entry per currency - and assign the appropriate GL account for the currency.
    Regards,
    Shannon

  • How to Archive Files to Two target systems based on Condition

    Hi All,
    Iam doing Idoc--File Interface.
    we have to send the file to Two Different systems based on the plant condition
    If plant = 123 then send to ABC system ELSE if Plant = 999 then send it to XYZ system.
    And Archive the file to one Archive folder of the any one system. this is working fine correctly.
    Archive means not exactly Archiving, just we are droping one more extra file to Archive folder for refference
    Now i need to construct like this
    If plant = 123 then send to ABC system and Archive to Archive directory ELSE if Plant = 999 then send it to XYZ system and Archive to Archive directory.
    Please suggest me on this
    Regards
    Vamsi

    If Plant = 123 then select the BS1(ABC System)
    Ex: //sapdev/test/ABC/item.txt
    For Archive If Plant = 123 then select the BS1(ABC System) Archive folder
    Ex: //sapdev/test/ABC/Archive/item.txt
    If Plant = 999 then select the BS2(XYZ System)
    Ex: //sapdev/test/XYZ/item.txt
    For Archive If Plant = 123 then select the BS2(XYZ System) Archive folder
    Ex: //sapdev/test/XYZ/Archive/item.txt
    Then this becomes very simple:)
    I m assuming you are already using conditional Receiver determination,now for each receiver just configure an extra interface in Interface determination.
    so you will have 2 interface determination and each one of them will have 2 inbound messages,they can use same interface mapping.
    you already will have 1 conditional receiver determination.
    You can also do this via OS script if you have experience in that.
    Thanks
    Aamir

  • XI question on two different sender

    Hello all,
      I want XI to pick up two files and send them to two different receivers based on some conditions. This condition will be done via message mapping.
    Is it possible to do it without BPM? If we can do it with BPM how? I don't want to use transformation step becasue don't want to combine the messages.
    Regards,
    N.S

    HI,
    I think you should use BPM. We have one exact example see the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/77/0737133012b24b9d0a12c6df2b1054/content.htm
    But without BPM?? i hav'nt tried,
    not sure try
    to receive two messages from the same machine as two messages and combine them into mltiple mesages and use 1:n , two interface mappings to send to two diffrent systems.the same interface mappings in receiver determination
    then other way is if you use the condition to send to diffrent systems.
    Regards
    Chilla
    Regards
    Chilla

  • Reg: Transfer order printout in two different printers

    Hello
    I have a specific requirement
    My client is asking for print out for pick list transfer orders in two different printers based on the storage type. I have configured the set up in OMLV . Sorting ,profiles etc etc but it deosn't work.
    lets say for ex in pick list there are around 8 different storage types in which for only one storage type it should print in a different printer.rest all 7 storage type should print in one printer.
    Please help.

  • Map one source elements to two different target elements

    Hi Gurus,
                In our scenario, we have single source. and we are mapping this single source to two different structures, based on condition in the source records on one field, we are mapping to either X structure or Y structure. in my case i have to generate only one file at a time based on condition.
              If condition is true, i have to mapp it for X structure, if its false i have to mapp it for Y structure. but in my case i getting a blank file for another mapping. i should stop this blank file.
             any suggestions and solutions will be rewarded. this is an urgent issue, please help me.
            Thanks in advance.... 
    Thanks & Regards,
    Anuj..

    I have already used an if-then construct and an enhanced ID.Thanks anyway.
    Let me explain using a source interface (s1) and target interfaces t1 and t2.
    Based on the condition, only one interface(lets say t1) will be selected, target mapping is done for this.
    But the problem is that the other interface (t2) also executes(having only the root node) and the end result is i have two files - one with the mapped payload and another empty one with only the root node.
    My requirement is to remove this empty file at the mapping stage itself , as -
    1) i only need a single file at the receiver.
    2) i do not want an extra payload for every record i send, creating unnecessary load on my IE.
    Also due to performance issues i do not want to move this to a BPM.
    I have attached the o/p screenshot at http://www.flickr.com/photos/14210232@N03/1550768802/
    In window 1 i have the correct output .i.e of the interface t1 which was mapped.
    In window 2 i have the unwanted output. i.e the interface t2 which is creating another file at the receiver.
    <b><b>Ques</b></b>: When using enhanced ID/multi-mapping, under Messages tab, if i set my target message type to 0..1, should it not work? I have tried this but it doesn't.
    Do let me know a way out! Thanks.
    Anuj.

  • JComboBox display two different lists

    I have a JComboBox in a JTable column. The requirement is that the JComboBox displays two different lists based upon which mouse button is clicked on the JComboBox. i.e When user clicks on mouse Button1 the JComboBox should popup with a list of products(user default products). But, when the user clicks on mouse Button2 the JComboBox should popup with a different list of products(all the products).
    Any help will be appreciated,
    Thanks in advance!

    UNDEBUGGED, UNTESTED, OFF THE CUFF CODE
    public class myEditor extends AbstractCellEditor implements TableCellEditor {
      private int sel = 0;
      private String[][] str = {{"Option 1", "Option 2", "Option 3"},
                            {"Select 1", "Select 2", "Select 3"}};
      private JComboBox[] fieldCombos = new JComboBox[str.length];
      private DefaultCellEditor[] fieldEditors = new DefaultCellEditor[str.length];
      public myEditor() {
        for (int i=0; i<fieldEditors.length; i++) {
          fieldCombos[i] = new JComboBox();
          for (int j=0; j<str[0].length; j++) {
            fieldCombos.addItem(str[0][j]);
    fieldEditors[i] = new DefaultCellEditor(fieldCombos[i]);
    public Component getTableCellEditorComponent(JTable table, Object value,
              boolean isSelected, int row, int column) {
    fieldCombos[sel].setSelectedItem(value);
    return fieldEditors[sel];
    public void setSelector(int Selector) {
    if (Selector>=0 && Selector<str.length) sel=Selector;

  • BPMOn: Is it possible to send email notification to different groups based on filter value for IDOC?

    Hi there,
                  I have setup the monitoring for idoc through interface monitoring and I am getting the alerts for the same. The alert is generated for different status values for the same idoc. Now my question is, is it possible to send email notification to two different groups based on the status values?? I mean for example , for a single idoc for some status values I want to send email notification to group1 only and for other status values I want to send notification to group2.Any help will be apperitiated.
    Thanks and regards,
    Rutvik Upadhyay

    We currently do not support that level of control for sending email notifications. If you think others are interested in this you should add an idea here: http://forums.adobe.com/community/formscentral?view=idea
    We use that to help us prioritize our work.
    Thanks,
    Randy

  • Two different accounts to be posted for the same valuation class on PGI

    Hi Experts,
    Please note that we want to post two different accounts for the stock offset entry( based on the nature of customer ) in the transaction of PGI in SO. However the valuation class is the same as the nature of the material is same (only the nature of customers is different). We have put one of the two accounts in OBYC GBB - VAX and GBB - VAY.
    Is it possible to have two offset accounts on PGI for the same valuation class.If yes, how will the system identify which one to be posted to.
    Thanks in advance for answers..
    KJU

    hi
    why not create two asset class to easily to separate two situations for two company codes? just a suggestion
    or
    maintain one depreciation key for asset class as a default, if for another company code, just change the depreciation key manual when creating asset master. it is not very complicate.
    or
    create two depreciation areas, one for each company code, then, you will have one useless depreciation for each company code -- not a resonable way
    and, yes, that is the limitation of substituion in AA.
    best regards, Lawrence

Maybe you are looking for