B1 Item to B1 Item scenario on B1if 8.8

Hi there. I'm trying to develop a very simple task with b1if. My target is to get a B1 to B1 consolidation of Items. Any time a item is created or changed, it will be reflected in others sbo companies. So far, I've got a simple scenario with just one final atom transformation. If my final atom is like that:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:b1e="urn:com.sap.b1i.sim:b1event" xmlns:b1ie="urn:com.sap.b1i.sim:b1ievent" xmlns:bfa="urn:com.sap.b1i.bizprocessor:bizatoms" xmlns:jdbc="urn:com.sap.b1i.adapter:jdbcadapter" xmlns:rfc="urn:sap-com:document:sap:rfc:functions" xmlns:sim="urn:com.sap.b1i.sim:entity" xmlns:utils2="com.sap.b1i.bpc_tools.Utilities" xmlns:vpf="urn:com.sap.b1i.vplatform:entity" xmlns:xci="urn:com.sap.b1i.xcellerator:intdoc" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" bfa:force="" vpf:force="" jdbc:force="" rfc:force="" b1ie:force="" b1e:force="" xci:force="" sim:force="" utils2:force="">
     <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
     <xsl:param name="atom"/>
     <xsl:param name="sessionid"/>
     <xsl:variable name="msg" select="/vpf:Msg/vpf:Body/vpf:Payload[./@Role=&apos;S&apos;]"/>
     <xsl:variable name="vpSender" select="/vpf:Msg/vpf:Header/vpf:Sender/@Id"/>
     <xsl:variable name="vpObject" select="/vpf:Msg/vpf:Header/vpf:Sender/@ObjId"/>
     <xsl:variable name="vpReceiver" select="/vpf:Msg/vpf:Header/vpf:ReceiverList/vpf:Receiver[./@handover=&apos;P&apos;]/@Id"/>
     <xsl:template match="/">
          <Msg xmlns="urn:com.sap.b1i.vplatform:entity">
               <xsl:copy-of select="/vpf:Msg/@*"/>
               <xsl:copy-of select="/vpf:Msg/vpf:Header"/>
               <Body>
                    <xsl:copy-of select="/vpf:Msg/vpf:Body/*"/>
                    <Payload Role="R" id="{$atom}">
                         <xsl:call-template name="transform"/>
                    </Payload>
               </Body>
          </Msg>
     </xsl:template>
     <xsl:template name="transform">
          <xsl:attribute name="pltype">xml</xsl:attribute>
          <BOM>
               <BO>
                    <AdmInfo>
                         <Object>4</Object>
                    </AdmInfo>
                    <OITM>
                         <row>
                              <ItemCode>1551</ItemCode>
                              <ItemName>TEST</ItemName>
                              <ItmsGrpCod>113</ItmsGrpCod>
                              <VatGourpSa>R16</VatGourpSa>
                         </row>
                    </OITM>
               </BO>
          </BOM>
     </xsl:template>
</xsl:stylesheet>
With this atom, item test 1151 it is created properly. Problems come to me when I try to get data from the inbound process. Changing my xls file to the next way system gives an error ." Item no. is missing".
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:b1e="urn:com.sap.b1i.sim:b1event" xmlns:b1ie="urn:com.sap.b1i.sim:b1ievent" xmlns:bfa="urn:com.sap.b1i.bizprocessor:bizatoms" xmlns:jdbc="urn:com.sap.b1i.adapter:jdbcadapter" xmlns:rfc="urn:sap-com:document:sap:rfc:functions" xmlns:sim="urn:com.sap.b1i.sim:entity" xmlns:utils2="com.sap.b1i.bpc_tools.Utilities" xmlns:vpf="urn:com.sap.b1i.vplatform:entity" xmlns:xci="urn:com.sap.b1i.xcellerator:intdoc" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" bfa:force="" vpf:force="" jdbc:force="" rfc:force="" b1ie:force="" b1e:force="" xci:force="" sim:force="" utils2:force="">
     <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
     <xsl:param name="atom"/>
     <xsl:param name="sessionid"/>
     <xsl:variable name="msg" select="/vpf:Msg/vpf:Body/vpf:Payload[./@Role=&apos;S&apos;]"/>
     <xsl:variable name="vpSender" select="/vpf:Msg/vpf:Header/vpf:Sender/@Id"/>
     <xsl:variable name="vpObject" select="/vpf:Msg/vpf:Header/vpf:Sender/@ObjId"/>
     <xsl:variable name="vpReceiver" select="/vpf:Msg/vpf:Header/vpf:ReceiverList/vpf:Receiver[./@handover=&apos;P&apos;]/@Id"/>
     <xsl:template match="/">
          <Msg xmlns="urn:com.sap.b1i.vplatform:entity">
               <xsl:copy-of select="/vpf:Msg/@*"/>
               <xsl:copy-of select="/vpf:Msg/vpf:Header"/>
               <Body>
                    <xsl:copy-of select="/vpf:Msg/vpf:Body/*"/>
                    <Payload Role="R" id="{$atom}">
                         <xsl:call-template name="transform"/>
                    </Payload>
               </Body>
          </Msg>
     </xsl:template>
     <xsl:template name="transform">
          <xsl:attribute name="pltype">xml</xsl:attribute>
          <BOM>
               <BO>
                    <AdmInfo>
                         <Object>4</Object>
                    </AdmInfo>
                    <OITM>
                         <row>
                              <ItemCode><xsl:value-of select = "$msg/BOM/BO/OITM/row/ItemCode"/></ItemCode>
                              <ItemName><xsl:value-of select = "$msg/BOM/BO/OITM/row/ItemName"/></ItemName>
                              <ItmsGrpCod><xsl:value-of select = "$msg/BOM/BO/OITM/row/ItmsGrpCod"/></ItmsGrpCod>
                              <VatGourpSa><xsl:value-of select = "$msg/BOM/BO/OITM/row/VatGourpSa"/></VatGourpSa>
                              </row>
                    </OITM>
               </BO>
          </BOM>
     </xsl:template>
</xsl:stylesheet>
Does anyone knows how to get this code working? I don't know what is wrong. This is a simple task and I'm tracked!
Thanks so much.

Hello Jose,
This is not quite correct. I correct it for you.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:b1e="urn:com.sap.b1i.sim:b1event" xmlns:b1ie="urn:com.sap.b1i.sim:b1ievent" xmlns:bfa="urn:com.sap.b1i.bizprocessor:bizatoms" xmlns:jdbc="urn:com.sap.b1i.adapter:jdbcadapter" xmlns:rfc="urn:sap-com:document:sap:rfc:functions" xmlns:sim="urn:com.sap.b1i.sim:entity" xmlns:utils2="com.sap.b1i.bpc_tools.Utilities" xmlns:vpf="urn:com.sap.b1i.vplatform:entity" xmlns:xci="urn:com.sap.b1i.xcellerator:intdoc" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" bfa:force="" vpf:force="" jdbc:force="" rfc:force="" b1ie:force="" b1e:force="" xci:force="" sim:force="" utils2:force="">
     <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
     <xsl:param name="atom"/>
     <xsl:param name="sessionid"/>
     <xsl:variable name="msg" select="/vpf:Msg/vpf:Body/vpf:Payload[./@Role=&apos;S&apos;]"/>
     <xsl:variable name="vpSender" select="/vpf:Msg/vpf:Header/vpf:Sender/@Id"/>
     <xsl:variable name="vpObject" select="/vpf:Msg/vpf:Header/vpf:Sender/@ObjId"/>
     <xsl:variable name="vpReceiver" select="/vpf:Msg/vpf:Header/vpf:ReceiverList/vpf:Receiver[./@handover=&apos;P&apos;]/@Id"/>
     <xsl:template match="/">
          <Msg xmlns="urn:com.sap.b1i.vplatform:entity">
               <xsl:copy-of select="/vpf:Msg/@*"/>
               <xsl:copy-of select="/vpf:Msg/vpf:Header"/>
               <Body>
                    <xsl:copy-of select="/vpf:Msg/vpf:Body/*"/>
                    <Payload Role="R" id="{$atom}">
                         <xsl:call-template name="transform"/>
                    </Payload>
               </Body>
          </Msg>
     </xsl:template>
     <xsl:template name="transform">
          <xsl:attribute name="pltype">xml</xsl:attribute>
          <BOM xmlns="">
               <BO>
                    <AdmInfo>
                         <Object>4</Object>
                         <Version>2</Version>
                    </AdmInfo>
                    <QueryParams>
                         <ItemCode>
                              <xsl:value-of select="$msg/BOM/BO/Items/row/ItemCode"/>
                         </ItemCode>
                    </QueryParams>
                    <Items>
                         <row>
                              <ItemCode>
                                   <xsl:value-of select="$msg/BOM/BO/Items/row/ItemCode"/>
                              </ItemCode>
                              <ItemName>
                                   <xsl:value-of select="$msg/BOM/BO/Items/row/ItemName"/>
                              </ItemName>
                              <ItemsGroupCode>
                                   <xsl:value-of select="$msg/BOM/BO/Items/row/ItemsGroupCode"/>
                              </ItemsGroupCode>
                         </row>
                    </Items>
               </BO>
          </BOM>
     </xsl:template>
</xsl:stylesheet>
So it must be work.
Best regards,
Selina
Edited by: Rosenberger Selina on Nov 24, 2011 11:36 AM

Similar Messages

  • 11G ADF BC: How to arrange the position of items in a query scenario?

    Hi,
    I am creating a search page with a search scenario at the top and a result table at the bottom using Jdev 11G (11.0.0.0.1) ADF BC. In my search scenario, there are about 35 items. Now they are evenly divided in 3 columns by default. I have certain requeirement for the layout of the these items. But seems to me, they are not editable to the programmer. Does anyone know anything about this? Any idea is deeply appraciated.
    Regards,
    Annie

    Timo,
    Thank you for your reply and I am sorry that I did not say it clearly.
    Yes, I use the "All Querable Attributes" under " "Named Criteria" under the "Data Control" Palette. So I do not think I have any control over those items in the query scenario under the "Structure" pane. They are completely hidden for me. Do you know any other ways to modify them? I mean to change the layout of them.
    Regards,
    Annie

  • Limit items on extended classic scenario.

    Hi everybody.
    We are working in SRM 4.0 with extended classic scenario.
    We are testing limit items (not service items), but I can not understand the limit item functionality.
    In SC, we can assign contracts form limit items. But when we create PO from the SC, there is not any relationship between PO and contract. Moreover when I create a PO (limit item) from null, I can not assign any contract (field is not available).
    In the other hand, in SC (limit item), I can select Follow-Up Actions as ‘Confirmation and Invoice’ or ‘Invoice’. If I select ‘Confirmation and Invoice’, when I create a PO, ECC return me a message error, because in ECC, good receives are not allowed for PO with limit item category.
    So, I have some questions:
    1. Can I use limit items in PO with contract reference?
    2. If yes, how can I do it? If not, what is the tab contracts functionality in SC with limit items?
    3. What is the functionality to allow confirmations in SC with limit items?
    4. Is there any documentation about limit item functionality?
    Thanks and regards.
    Raúl Moncada.

    Hello,
    As far as I know, this is a technical limitation. A work around would affect other functionalities.
    Note 1358679 corrected such issue.
    Regards,
    Ricardo

  • SC with Limit Item using Extended Classic Scenario?

    Hello,
    Can we implement SC with Limit Item using Extended Classic Scenario.
    I mention that we replicate the Product Categories from R/3 backend.
    We have tried to create a SC with Limit item, but the data on Quantity, Price and Tax is not picked up at PO level.
    Regards,
    Shaiek

    Hi
    Please try out this.
    For the time-being,
    Try de-activating all the custom BADI Implementations and check, what is happening, in the standard SRM system. How does it behave incase of limit item ?
    Incase it works fine, without any Custom Implementation active in the system, I suspect there is something wrong in your current deactivated BADI Implementation.
    Since i don't have access to your system , Please paste the code here.
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • ERR-1002 Unable to find item ID for item "FLOW_SESSION"

    Hi Guys,
    I installed on the weekend HTMLDB on our new development server and installed version 1.5.1.0.12 (Oracle 10.1.0.3)
    I imported our workspaces and applications.
    However we are getting the err-1002 in the following scenario.
    - logon to htmldb as a developer.
    - run application
    - Login page is show (as this is a secure application)
    - Login with a test user account. We have setup our own aurhentication scheme, with our own user account table.
    - Click login button and we get Error ERR-1002 Unable to find item ID for item "FLOW_SESSION" in application "113".
    The only way to get around it is to setup a user account in our own user account table with the same name as your developer account or create a developer account in HTMLDB for the "test user account". I have set myself as a user in the "application account table".
    But wait there is more. The "work a round" gets me in. Now I select the logout button and get the login page again.
    I then try to login as the test user and get in ok.
    Any idea what is happening here??

    Follow up debugger output
    ==========================
    0.91: Processing point: AFTER_SUBMIT
    0.91: ...PLSQL (AFTER_SUBMIT) begin owa_util.mime_header('text/html', FALSE); owa_cookie.send( name=>'LOGIN_USERNAME_COOKIE', value=>lower(:P101_USERNAME)); exception when others then null; end; Content-type: text/html; charset=WINDOWS-1252 Set-Cookie: LOGIN_USERNAME_COOKIE=dynamic;
    0.91: ...PLSQL (AFTER_SUBMIT) wwv_flow_custom_auth_std.login( P_UNAME => :P101_USERNAME, P_PASSWORD => :P101_PASSWORD, P_SESSION_ID => :FLOW_SESSION, P_FLOW_PAGE => :APP_ID||':1' ); Content-type: text/html; charset=WINDOWS-1252 Set-Cookie: WWV_CUSTOM-F_100_113=64513E8344E8C3CE; path=/; Location: f?p=113:1:18133698647045384719
    0.92: Show ERROR page...
    0.92: Processing point: AFTER_ERROR_HEADER
         Error      ERR-1002 Unable to find item ID for item "FLOW_SESSION" in application "113".
    OK      
    0.92: Processing point: BEFORE_ERROR_FOOTER
    Unexpected error, unable to find item name at application or page level.
    0.92: ...Determine if user RAY with SGID 100 can develop application 113 in workspace 100

  • Header  Item Vs Line Item

    What is the difference between Header Item and Line Item.Plz explain with example.

    Hi
    Header Means the Header details which are common to all the items such as Sold to, Shipto party , Ref Po No date and Total value and currency etc for a sales order.
    Item data means all the materials(product) related data with material, description,qty, unit, Plant, st locn etc. there may be multiple items for a single header.
    Schedules lines means on what dates we are going to deliver the items.
    so for example for a Item qty is 20, so we can delivery it in 3 times on 3 different dates. so these 3 dates are mentioned as 3 different lines.
    I will try to explain in the Sales Scenario.
    Say, u have created a Sales Order. S.O. is the document in which you specify what all things are sold by you to the customer.
    Then Every S.O will have a unique number.
    A S.O. can have multiple items sold in it. Every Item in a Sales Order corresponds to a Line-Item. Now, there will be some characteristics which will be associated with a Order as a whole like S.O. Type, Creation Date, created by etc. These details are called Header details.
    Now, a Sales Order needs to be delivered to the customer. That delivery can be scheduled. Say, 50% of Part A is to be sent today and rest is to be sent tomorrow. So, this is the schedule line for that Sales Order Item.
    Hierarchy goes like this :
    S.O. --> Multiple Line Items --> Each Line Item can have multiple schedule lines.
    <b>Reward ifusefull</b>

  • Receive another item or alternate item when doing Receive from Production

    Hi ,
    Is there any way to receive  another item or alternate item when doing Receive from Production in Production Module.
    The scenario is that  . . at production the return item may differ from the original item planned.
    Thanks
    Ashish Ranjan

    Dear , i want to say that, i will receive the Item from Receive from Prod Form which is planned . . !
    Then
    I will Issue the Same Item using Goods Issue using a transit Account
    Then
    will receive the desired item using Goods Receipt using that particular transit Account
    Now please suggest is it ok or not !
    Regards
    -Ashish

  • Return of Free goods item - Problem in item category

    I am trying to create return order of Free sample billing
    (ZFDP). The return order type for the free sample is ZFDR.
    We have specified Item category for the ZFDR is RENN (Free good item) in IMG Activity -> Assign Item categories.
    When I create order and save it, it prompts me to enter G/L Account.
    This material is free. It should not prompt G/L Account for it. There is no revenue recognition specified for the item category. I tried changing item category to ZKLN i.e Free of charge item. This item category does not prompt for G/L Account while creating order. but I can not use this item category because it prompts me for Avialability. I can not remove the Avaialabilty check for it because the same item category is used in the Free sample order where availability check is required
    In ZFDP order type, we are issuing 100% discount by using R100
    discount condition.  Please let me know how can I solve this problem.
    I think there is some problem in my item category itself. .
    My setting for Item category in IMG - Define item category is
    same for both ZKLN and RENN. Only difference is RENN has returns
    tick and pricing field is blank. In ZKLN pricing is defined as B- 100%
    discount. I also tried changing the pricing option of RENN to B.
    But still it is asking for G/L Account.
    I can not use ZKLN instead of RENN because my ZKLN is used in the
    Free item Sales order.
    Please help.
    Regards
    Saurabh Gothivrekar

    Hi
    I got answer to my query. YOu need to specify the bill type while defining sales document type. This bill type should not have account assignment mentioned in it.
    I changed the bill type, which does not have Account assignment procedure attached to it.
    It has solved my problem

  • Doubt about report FBL5N of screen field:Open items and Cleared items

    hi
    i know the report FBL5N is use DDF LDB and the report work flow is BSID->BKFP->BSEG
    but i don't know to differentiate Open Items and Cleared items in this report.
    Open items and Cleared items stand for a field flag in these table (BSID,BKFP,BSEG )? if true the field is?
    or they must be calc in program ? if true what about calc rules?
    waiting for help! thank you!

    Hi,
    Here is the difference in Open Items and Cleared Items.
    In FI first the document is Open (when it is posted) so the entry is made in table BSID. Once the document is cleared, it will move from BSID to BSAD. And for Cleared item you will see Clearing Document no and Clearing date values updated (these are blank when the item is open).
    The only difference in Open and Cleared is via Clearing Document and Clearing Date. If the values are present, it means document is cleared.
    Hope this helps.
    ashish
    Message was edited by:
            Ashish Gundawar

  • Interest calculation on Open items and cleared items

    Dear Experts
    I am trying to do needful configuration for interest indicator on which interest can be calculated for open items and cleared items as well.  But,  system is calculating interest for open items properly, but not calculating interest on cleared items with same interest indicator,  I am repeatedly getting error "interest calculation indicator is not compatible with this type of interest calculation"
    Is it possible to use same interest indicator for open line items and cleared line items of customer?
    If possible, request you share the needful config steps to do same.
    points will be awarded for usful reply.
    Best regards,
    S. Habib Pasha.

    Hello Habib,
    depending on the requests you can setup a item interest calculation or a balance interest calculation "Define calculation types".
    IIC: check settings (item selection, all cleared items, only items with payment, no cleared items) "Prepare item interest calculation"
    I guess you have setup the item interest calculation - maybe you have mixed some entries with BAIC.
    Check in "Prepare account balance interest calculation" whether you have entries with the indicator you want to use.
    At least check your entries in "Define time-based Terms" If you have entries with Balance account interest calculation the system gives even an error.
    Hope this is helpfull.
    Best regards
       Horst

  • Transfer cost price from free of charge item to main item but not for VPRS

    Hi,
    I want to transfer cost price from free of charge item to main item but not for VPRS but for a new Z contidion type.
    For CO-PA proposes. Can you help me with This?
    Catarina Alves

    hi,
    transfer of cost from sub item to main item is configured in the delivery to billing copy control for the main item. go to VTFL  > select the required item cateogry > here at the bottom you will find a check box Cummulate cost. Tick it.
    Not really what you meant COPA purposes. But the pricing conditions are mapped to COPA value fields at KE4I transaction.
    regards
    sadhu kishore

  • What is the  Merits and De-Merits if we choose Item or Service Items.

    Hi,
    Please guide me what are the merits and de merits if we choose Items or Service Items when we are adding AR Invoice under AR Modules.we are using SAP B1 43.
          Item: Item to create a sales document for items defined in the Inventory module
         Service Item:Service to create a sales document for a service that has not been defined as an Item in SAP Business One, such as a one-time consultation. please share your points.
    Regds,
    Samapth Kumar Devunuri.

    Hi Samapth,
    It is clear based on the definition you known.  Depending on you business process, the more of the item types, the better.  That is because you can do all kinds of analysis and breakdown the accounting details easily.  Service types are usually only applied to one time or small amount sales.
    Thanks,
    Gordon

  • FBL3N-cleared item visible in both open item and cleared item.

    Hi
    We have posted a line item to Bank clearing account-open item.
                            XXXX a/c
                                 To bank clearing account
    Then we posted another entry of reconciliation
                         Bank clearing account
                               To main bank
    The we went to f-03 and cleared the bank clearing account.
    However i could still see both the entries in open item in fbl3n and also in cleared items.How this be possible when the accounts are cleared i could see it in open item too.Please suggest.

    Hi,
    One more reason for this is that you have posted ur bank reconsilation entry in the future date.
    See by default SAP will always derives current date to your FBL3N selection screen in the open item key date field, so when you pass ur recon entry at a future date, system will show this line items as open items as on current date.
    check the open items by removing date in the key date field in FBL3N selection screen
    Where as cleared item selection there will not be any date derivation by the system, so system considers all the documents irrespective of their posting dates.
    Please ask for further issues.
    Thanks,
    Srinu.

  • Not Printing Item Schedule line items in SAP Script

    Hi ,
    I modified  copied sap standard script(MEDRUCK) and copied my Zprogram to standard program.
    But here every thing is fine but i am not getting schedule line items and item text  in items data for every item
    thanks,
    sriram

    Hi
    Pls Check in the Line item Ur using the syntax properly or not..In SAP if it ios syntax error it won show..Pls chk the syntax properly ...POr try to debug the script and see whether item text is coming or not.
    If it is not coming check me23n whether tat PO has item text or not..if it is there Problem is in ur Include text.

  • Sales Analysis by Item: Show all items

    I am trying to look for a way to get a report that will show me the Sales Analysis by item, but show me all the items even if the item wasn't sold to any Business partner.
    Example:
    I have the following items and sales for today:
    Item A, invoice $100
    Item B, Invoice $200
    Item C, no sales
    Item D, Invoice $500
    If I run the sales analysis by item they will show me
    Item A, $100
    Item B, $200
    Item D, $500
    but I want to show it
    Item A, $100
    Item B, $200
    Item C, $0
    Item D, $500
    Please let me know if there is a way or a queries that I can do to get that result.
    Thank You,

    HI,
    Sales Analysis per item only display item with records.
    You can attain by creating a query to display your desired output.
    Please try to look in the forum for the sales report.
    example:
    [Sales report for the month.|Sales report for the month.]
    [Re: sales analysis report|Re: sales analysis report]
    [Re: A query report of sales invoices|Re: A query report of sales invoices]
    thanks.
    Clint
    Edited by: Clint T. Pauyon on Sep 24, 2011 12:09 PM

  • One to One link between VBRP items and BSEG items

    Hi All,
    I am working on a program where I have to link between VBRP table items against BSEG table items.
    But in BSEG, the invoice items are summarised based on Material Number, profit center etc..
    Is there a way to divide them, like any other table which holds the data transferred to accounting from sales exactly as it is in the invoice tables (VBRP).
    If there is no such table, can any one help me figure out a logic where I can didvide the items of BSEG table exactly like the items of table  VBRP.
    Any help or input will be very highly appreciated.
    Thanks in advance
    Phani

    Thanks for the Replies Ramani and Monika...
    I alraedy have a relation between the Accounting Doc and Billing Doc (VBRP-vbeln to BSEG-belnr).
    what I am looking for is the Item wise one to one mapping.
    i.e  Assume that we have 4 items in VBRP under one Billing Doc....
    2 items have Similar Materials (Assume XYZ) and same Profit center (eq..MNO123)
    and the Other 2 items have material (ABC) and Profit center (PQR6789).
    Now these appear in Bseg as only 2 items, all the items with similar materials, profit center etc will be clubbed in Bseg (While Accounting). I.e In BSEG you will only find 2 entries for the above 4 items of VBRP.
    I need to divide the data that I am getting from BSEG exactly as they are in VBRP.
    Pls suggest if you know of any table where I can find this.....If not a table.., then a way to figure out the division of these BSEG items exactly as the VBRP items.
    Brgds
    Phani

Maybe you are looking for

  • What is the best way to deal with memory leak issue in sql server 2008 R2

    What is the best way to deal with memory leak issue in sql server 2008 R2.

  • Powerbook DIED. Target Disk Mode Failed.

    I did everything under the sun short of bringing it to a mac service store. My computer was left whirring all night (I was not home) and the next day I found all the programs frozen so I did a hard shutdown. I haven't been able to reboot it past the

  • Can the training material be given to end user freely ?

    Hi All, I think training material can be given to end user freely and directly. This thread made me confusing: /thread/738714 [original link is broken] Usually consultant creates manual training document to end user based on the training material. Rg

  • Quicktime pro crashes with some mp4 in Lion Os X 7.2

    Hallo! I have upgraded to Lion OS X 7.2 and my Quicktime pro crashes when I try to open files mp4 with MPEG-4 HE AAC V2 audio codec. It used to work fine in Snow Leopard. I removed and installed again, tried to remove Mpeg 2 codec, installed 3ivx, bu

  • Very strange iPod 120 gig problems

    About one month ago, my 120 gb iPod Classic began to randomly pause when moved and skip songs and videos. I reset, restored, checked for iTunes and iPods updates, and reinstalled, but the problems continued. After experimenting with different brands