Internal Reconciliation rules for the Business Partner

Version: (Please provide the current version)
SBO 2005-A PL11
Description of requirements: (Please provide a detailed description)
Employees are considered as Supplier for us
We have defined two control account
One to follow the Employee Advance payment : 15130020 
the other to follow the Employee Expense voucher : 37100010
Step 1 :
We create one Down Payment Request for the Employee
Step 2 :
We paid the Down Payment Request (amount : 2000) using the Outgoing Payment :
Posting Scheme generated :
(C) 11100241 Petty Cash Account
(D) 15130020 Employee Control Account for Down Payment
Step 3 :
We enter the Expense Voucher for this employee (Amount : 1200)
Posting Scheme
(D) 6XXXXXXX Profit & Loss GL Account
(C) 37100010 Employee Control Account for Expenses
Step 4 :
Due to the fact that the amount of the advance is greater than the amount of the expense voucher, the employee have to reimburse the difference.
We use the menu incoming payment
The different steps follow up are :
     Select Vendor as type of BP for the incoming payment
     Select the invoice to be paid for the vendor, and tick the box "Payment on Advance" to take in account the amount already paid in the DPR
     Do the reimbursement of 800
Posting Scheme :
(C) 37100010 Employee Control Account for Expenses
(D) 11100241 Petty Cash Account
The problem is when we try to do the internal reconciliation we could not see in the same time for the Employee the 2 reconciliation accounts.
How could we do ?
Valid as of: (Date that this legal requirement is applicable)
Business needs: (Please describe the impact on your business, if the functionality is not realized)
We are not able to clear the advance done for the employee and the reimbursement done by the employee.
Due to this fact, we retrieve if we have one other invoice to paid the DPR already paid and take in account in a previous reimbursement which generates damage in the system.
Examples: (Please describe a typical example, how the functionality should work.)
See upper
Current Workaround: (Please describe the workarounds you are using at the moment)
Use the same Control accounts for the Expense Voucher and the Advance payment
Proposed solution: (Please suggest how the new functionality should work)
Permit for the Internal reconciliation process for One Employee to retrieve the data link on the different control account regarding one employee / Supplier

Hello,
I was just wondering whether you have checked the case in 2007 A version in which brand new concept of internal reconciliation was delivered for customers.
Please try to avoid so long postings. Create rather an attachment with longer description of the issue/case. This helps to increase transparency in the discussions.
Peter Dominik
SAP
B1 Product Definition

Similar Messages

  • Enter at least one number for the business partner

    Hi Experts,
    SRM 5
    Classic scenario
    R/3 4.6c
    I am trying to execute users_gen transaction for integrating the user with the org. structure. However upon doing so I get an error message "Enter at least one number for the business partner"
    Please provide pointers on the cause for this and how it can be rectified.
    Thanks.
    Regards,
    Amish

    Hi Muthu,
    I am integrating a single user at a time - through users_gen.
    Infact I am getting the same error message while moving the users within the org. structure.
    Steps -
    1. Execute users_gen
    2. Select the user to be integrated
    3. Click execute check mark
    Please provide any pointers.
    Regards,
    Amish

  • The visit frequency specified for the business partner

    Hi.
    Anybody knows how I can specificy the visit frequency specified for the business partner ?
    CRM  Mobile  5.0
    Thanks.
    Antonio.

    ok, in transaction FPP3, for a given business partner, you can see the standard address and connection object address.
    Is there any function module which can enable me to change the connection object address.

  • Sales area duplicated for the Business Partner

    Hi gurus,
    I replicated the BO from R3 to CRM, and all the maintained sales area in R3 have been duplicated in CRM with and wihtout division.
    Example:
    In R3 for the BP 234
    we have the sales area:
    Sales Organization: BIOS
    Distribtn Channel: 01
    Product Division: AA
    And in CRM you have:
    Sales Organization: BIOS
    Distribtn Channel: 01
    Product Division: AA
    And
    Sales Organization: BIOS
    Distribtn Channel: 01
    Product Division: (without division)
    Any one knows if it is normal, or is there a way to stop the replication without division.
    Thanks,
    TPT

    Hi,
    In  the BP go to Sales Area Data and select sales tab. In that select the sales Org,D.Channel,division for which you want to maintain and enter all the detail in all the tabs (shipping,Sales,Billing etc) and save the BP.
    Regards
    Vinod

  • Uploading the partner function for the business partner

    Hi Experts ,
    I wish to upalod the partner function fields like
    partner function
    sales area
    division
    channel etc .
    Can anyone suggest me how to uaplod this via a BAPI in ECC system ?
    regards
    Abhi.

    HI ,
    Pls check Kindly check
    BAPI_CUSTOMER_CREATEFROMDATA1
    regards,
    PD

  • Trying to update the business partner using BAPI_BUPA_CENTRAL_CHANGE

    Hi all ,
    i am tryibg to create a function module which updates the first name, last name, email id of the business partner that i already created. the return table shows zero entries and i dont find any udate being done for the business partner if i go and check in the respective table. can some one tell me what is the problem.
    Import paramters for my function module are business partner number, first name, last name, email -d.
    FUNCTION Z_CHANGE_BP2.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(CUST_NO) TYPE  BU_PARTNER
    *"     VALUE(FIRST_NAME) TYPE  BU_NAMEP_F
    *"     VALUE(LAST_NAME) TYPE  BU_NAMEP_L
    *"     VALUE(EMAIL_ID) TYPE  AD_SMTPADR
    *"  TABLES
    *"      IT_RETURN2 STRUCTURE  ZRETURN1 OPTIONAL
    *"      IT_RETURN4 STRUCTURE  ZRETURN1 OPTIONAL
    Defining the internal tables used in BAPI BAPI_BUPA_CENTRAL_CHANGE.
    DATA: it_CENTRALDATA TYPE STANDARD TABLE OF  BAPIBUS1006_CENTRAL  WITH HEADER LINE.
    DATA: it_CENTRALDATAPERSON TYPE STANDARD TABLE OF BAPIBUS1006_CENTRAL_PERSON  WITH HEADER LINE.
    DATA: it_E_MAILDATANONADDRESS TYPE STANDARD TABLE OF  BAPIADSMTP WITH HEADER LINE.
    DATA: it_RETURN1  TYPE STANDARD TABLE OF  BAPIRET2 WITH HEADER LINE.
    DATA: it_RETURN3  TYPE STANDARD TABLE OF  BAPIRET2 WITH HEADER LINE.
    ****Values for seacrh term1, search term2 of it_CENTRALDATA
    it_CENTRALDATA-SEARCHTERM1 = FIRST_NAME.
    it_CENTRALDATA-SEARCHTERM2 = LAST_NAME.
    APPEND it_CENTRALDATA TO it_CENTRALDATA.
    first name, last name of it_CENTRALDATAPERSON
    it_CENTRALDATAPERSON-FIRSTNAME = FIRST_NAME.
    it_CENTRALDATAPERSON-LASTNAME  = LAST_NAME.
    APPEND it_CENTRALDATAPERSON TO it_CENTRALDATAPERSON.
    Value for E_MAIL of it_TELEFONDATANONADDRES-
    it_E_MAILDATANONADDRESS-E_MAIL = EMAIL_ID.
    APPEND it_E_MAILDATANONADDRESS  TO it_E_MAILDATANONADDRESS.
    Call the BAPI BAPI_BUPA_CENTRAL_CHANGE
    CALL FUNCTION 'BAPI_BUPA_CENTRAL_CHANGE'
      EXPORTING
        BUSINESSPARTNER      = CUST_NO
        CENTRALDATA               =  it_CENTRALDATA
        CENTRALDATAPERSON  = it_CENTRALDATAPERSON
      TABLES
    E_MAILDATANONADDRESS  = it_E_MAILDATANONADDRESS
        RETURN                             = it_RETURN1.
    Call Commit work
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
      WAIT          = 'X'
    IMPORTING
      RETURN        = it_RETURN3.
    ENDFUNCTION.

    Hi,
    Pass values to the Parameter CENTRALDATA_X   in your FM 'BAPI_BUPA_CENTRAL_CHANGE'
    Something Like:
    CALL FUNCTION 'BAPI_BUPA_CENTRAL_CHANGE'
    EXPORTING
    businesspartner = bpartner
    centraldata = centraldatadetail
    centraldataperson = centraldataperson
    CENTRALDATAORGANIZATION =
    CENTRALDATAGROUP =
    centraldata_x = centraldata_x
    centraldataperson_x = centraldataperson_x
    CENTRALDATAORGANIZATION_X =
    CENTRALDATAGROUP_X =
    TABLES
    return = return.
    Refer to:
    problem with 'BAPI_BUPA_CENTRAL_CHANGE'
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/bapi-bupa_central_change-need-help-549117

  • How to create an marketing attribute for the busines partner

    hi guys,
    can any body help.
    how to assign/create the marketing attribute set to the business partner.
    is there any function module which to create the marketing attribute for the business partner by passing the BP GUID.
    if any body is having an sample code can u please post it.
    regards
    viswag

    Hi Viswa,
    In CRM 4.0, marketing attributes set can be created at T-code [CRMD_PROF_TEMPL]
    The created attribue set can be assigned to BP at T-code [CRMD_PROF_BP]
    The other way you can open the BP, in marketing at marketing attributes tab your can assign the created attribute set.
    regards
    satish kumar
    *-Reward points if found helpful.

  • Creating the bussiness roles for the bussiness partner using Function modul

    Hi
             How to create the business roles using the function modules for the Business partner.

    You can also assign the role at the time of creation of the business partner itself. Use the function module BAPI_BUPA_FS_CREATE_FROM_DATA to achieve the same.
    If your business partner is already there then you can use the function module BAPI_BUPA_ROLE_ADD.
    <b>Reward points if it helps.</b>

  • Change the Business Partner details

    Hi All,
    I have to change the credi control details and credit limt(esp. Rules) of the Business Partner (transaction is BP) depending on some creteria.
    Could you please provide any BAPI or a function module to change these details.
    Please, the BADIs which would trigger when this transaction is executed.
    Can send your guidence/solution to my mail "[email protected]".
    Thanks in advance.
    Thanks and Regards,
    Ramana Malladi.

    Murali-
    We have seen this issue in the past - if you are on SRM 5.0 a note exists to correct the action - however if you are on SRM 4.0 I think you are going to be stuck.  Anyway see OSS note 881695 - Source of supply with item changes.
    As described if you change plant(location), the product category or the unit of measure the source of supply will be re-determined. 
    We have previously requested this note to be down-ported to SRM 4.0 but the request was declined as it apparently would require significant changes.
    Hope this helps.
    Regards-
    b

  • Reconciliation account is not defaulting in the business partner screen

    Hi,
    I am working for IS-H Implementation Project right now. I am facing issue FI customer is not created during business partner creation. The error message appeared when I am trying to create business partner is "Required field Reconciliation acct has no entry".
    When I checked in the system parameters, for parameter AKTO_FR is maintained in the system. I tried to find any OSS notes related to this issue, but I can not find it.
    Anyone can help this issue ?
    Regards,
    Oscar

    Hi !
    Check whether you have configured the “Application Parameters” (ONK5).
    Make sure that you maintain reconciliation account for the following parameter values,
    AKTO_KTR  -
    Customer reconciliation account - insurance providers
    AKTO_SZ -
    Customer reconciliation account - patients
    Regards
    Subash Sankar

  • To Get the list of sales orders for a Business partner in CRM.

    Hi all
    Is there any Function module or BAPI to get the Sales orders for a Business partner in CRM. I know there is a BAPI to get the list of sales orders for a customer in ECC, but I donu2019t know how to get the list of sales orders for a Business Partner in CRM.
    Can anybody tell me if there is an inbuilt function module or BAPI available?
    If not how can I pick the sales orders of a business partner in CRM? Between which tables should I apply a join and write SELECT statement to get list of sales orders for a business partner in CRM.

    Hi Jessica,
    Try CRM function module CRM_BUPA_READ_ORDER_OBJECTS.
    You'll get a table with the documents associated to that partner, where you can work on.
    Kind regards.

  • Error while changing the PO BOX value for a Business partner

    Hi Friends,
    We are getting an error when we try to change the PO Box value for a Business Partner.
    We have the dependency like when we give the value for the PO Box we also need to give the postal code value. And also we have a specific format for the Postal code. We gave both the values (a valid postal code) and try to save the details, then error message "The attribute GUID of Organization (a Contact Person is assigned to) of the Business Object contact person is not valid" is displayed. We have no clue why there is a conflict for the contact person details.
    Can any one suggest the reason for this?
    Thanks & regards,
    Swarna Seeta

    Hi Swarna,
    You are getting this message not because you have entered wrong Post code .It will come even if you try to change some other field and save it. This is because on saving a business object, the framework tries to validate all the associated objects depending on the relation.In this case the data in the mobile client is either not present or is no longer valid.
    Check if the field of the Business object which is being shown as invalid, has some data in the table. Check the combo associated to it and from where the combo is doing the validation. The table from where the combo is doing the validation does not have that data and so the value is invalid.
    Also compare the number of entries in smokna1sht table in ides and in CDB.
    Regards
    Vivek

  • Product in a card of the business partner (transaction BP)

    Hi everybody!
    Help me, please!!!)
    I created product and business partner. I need see this product in a card of this business partner (transaction BP). How can I do it?
    For example, the Bank ### has the product "Deposit". The client of Bank ## Mr. Smith uses this deposit. How can I display this fact in a card of the business partner of Mr. Smith?
    Thanks)

    Hello!
    Usually Products are not related to the Business Partner directly. Only Competitor Products are displayed in the Account Overview-Page, if the Account has the Role u201CCompetitoru201D.
    In your use-case the u201CBank ###u201D is not your internal organization, but any Account. Now you want to display in the Overview-Page of Mr. Smith, that he uses a Product of Bank ###.
    Right now, I donu2019t see an option to visualize this. The Account Fact-Sheet includes also Installed Base Information, but this doesnu2019t include information about Products of u201Canyu201D Account (only own Products or Products a service contract is available).
    Best regards
    Arno

  • How to switch off automatic creation of the business partner?

    Hello!
    Advise please why in erp after creation of the customer automatically form business partner? How to switch off automatic creation of the business partner? It very much disturbs, because business partner are created from crm. Because of automatic creation business partners are duplicated.

    Hi,
    I have made the following customizing settings to activate customer integration with business partner, but the problem is when I create a BP with a role (FI-Customer) the customer is not created automatically.
    1. Set BP Role Category for Direction BP to Customer
    Roles: FLCU00 - Business Partner FI Customer (FS: BP)
    FLCU01 - Business Partner Customer (FS: BP)
    2. Defined the Number assignment for Direction BP to customer
    4. Customer account group and numbering is also defined.
    3. Created a BP with BP Role FLCU00, I can see the Customer - General Data tab, but no customer was automatically generated by the system.
    Kindly let me know if any customizing I have missed.
    Regards
    Ameya

  • How can I activate the transfer rules for the ODS updating a data target.

    We are on BW 3.5 and I'm loading data into the 0FIGL_O10 ODS  and then uploading the data into the cube 0FIGL_C10. The data loads just fine to the ODS but when I try to <u><b>'update the data target'</b></u> I get a date & time stamp' error on the info-package transfer rules.
    I then Replicate the datasource 80FIGL_O01.
    I must then <u><b>'activate' the transfer rules</b></u>.
    However I cannot get the transfer rules for 80FIGL_O10 in CHANGE MODE to activate them.
    How can I activate the transfer rules for the ODS updating a data target.
    The error text is as follows:
    DataSource 80FIGL_O10 has to be replicated (time stamp, see long text)
    Message no. R3016
    Diagnosis
    DataSource 80FIGL_O10 does not have the same status as the source system in the Business Information Warehouse.
    The time stamp in the source system is 02/15/2007 10:42:33.
    The time stamp in the BW system is 11/07/2006 13:11:54.
    System response
    The load process has been terminated.
    <b>Procedure
    Copy the DataSource again and then activate the transfer rules that belong to it. You have to activate the transfer rules in every case, even if they are still active after the DataSource has been copied.</b>
    Thanks for your assistance.
    Denny

    Hi Dennis,
           Try, using Business Content to activate your data source
           hope this will help you
    How activate business content?
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a66d5e07211d2acb80000e829fbfe/frameset.htm

Maybe you are looking for

  • Need to dowload correct version of Firefox for Mac OS X 10.3.9

    I have an old Mac which I will be retiring soon...as soon as I can get my information off it. To do so, I need to be able to use Firefox to upload it to a cloud storage system. But... I need the correct version of Firefox which will work with my old

  • Java Content Assist in CQ 5.6 / CQ 5.5

    In order to make Java Content Assist work in CQ 5.6/ CQ 5.5, download the file crxde-missing-libs-1.0  from : https://dev.day.com/packageshare/packages/public/day/crxde/crxde-missing-libs.html and install it. Once installed, go to /etc/crxde/profiles

  • Printing prob in logo

    Hi all,              I am using company logo in my smartforms!! its in .BMP format....,now the thing is that the image is 10 cm in length and 3 cm in width...some part contains image some containg text while some part is blank...If i put it in smartf

  • Secure wireless connection = countless disconnects (WRT54GSv5)

    Not sure what can be done here but I'm having trouble with a friend's setup. He's using a WMP54GS 1.1 card to connect to a WRT54GS v5. I've tried WEP, WAP and WAP2 - none of the security settings make a difference. They all cause slowdown, disconnect

  • Which java for OS X 10.9

    6 from apple or 7 from oracle? setting up a new macbook pro. apple recommends installing java 7 from oracle for 10.9. launching illustrator brings up a dialog to install java 6 from apple. I've read that illustrator will not recognize java 7. what is