WEBADI Minimum responsibility or functions assignment for GL budget uploads

I want to know:
1) What is the minimum responsibility or function assignments to create a WEBADI integrator seeded GL budget template and upload budgets?
2) If a general ledger super user creates a budget template, can another EBS user upload budgets using that template without GL super user resp?
What is the minimum responsibility/ function assignments that user have to upload budgets
Thanks in advance

Similar Messages

  • Validation for initial budget upload in FMBB

    Hi,
    I have one requirement where client want a validation or rule, when they upload the budget for one group of commitment item and fund center then user should not be allowed again using the same document type initial budget upload to upload the budget.
    Please help me to resolve the issue.
    Regards,
    Alok

    Hi,
    You could use user-exit SAPLKBPB on header level (EXIT_SAPLKBPB_002).
    Regards,
    Eli

  • Request  for sample Functional Specification for BDC to upload PA40 or PA30

    Hi Experts
    I need to Write a Functional specification to Guide My ABAP team member to write a BDC for uploading data in PA40.
    It would be great if somebody could spare me one .
    Thanks in advance
    Rajeev Chhabra
    <u>[email protected]</u>

    Hi Rajeev,
    Your company might be having standard format of FS.
    Writing a FS for a BDC is not that tough job. You need to provide some basic information such as the file structure to be used in BDC, Number of fields in the file, which fields on the screen need to be populated (you can get the fields technical name by doing F1 on the field).
    I think you can use this as a guideline to write your own FS.
    Regards,
    Atish

  • Function module for Excel file upload

    Hi,
    I am new to APO technical. My requirement is upload excel file data. However commonly used FM in R/3 for uploading excel files from presentation server are not avaliable ( KCD_EXCEL_OLE_TO_INT_CONVERT , ALSM_EXCEL_TO_INTERNAL_TABLE , TEXT_CONVERT_XLS_TO_SAP etc) in APO system(SCM 4.0 version).
    Let me know if there are any other FM avaliable and procedure to upload the excel files in APO?
    Please let me know if you require any further details.
    Regards
    Reddy

    Hi
    The data structures in APO differ from R/3 (e.g. data is held in livecache tables) and hence the FM's you mention will not work in APO.
    Try looking at the Wiki pages as there is a lot of useful information there for you, e.g. this example code to download and upload data between Excel and APO:
    Link: [Download SCM data into Excel|http://wiki.sdn.sap.com/wiki/display/SCM/DownloadPlanningdataintoexcel]
    Have a look around the Wiki, hopefully it will help you out
    Regards
    Ian

  • Function module Vs BDC for master data upload

    Hi ,
    Please advice we should use the following function modules for master data upload or we should go for BDC.
    MP_RFC_SINGLE_CREATE
    MP_RFC_INACT_CHANGE
    MPLAN_CREATE
    MPLAN_CHANGE
    MPLAN_SET_DELETION_INDICATOR
    ASSET_MASTERRECORD_MAINTENANCE
    MPLAN_ITEM_CREATE
    MPLAN_ITEM_CHANGE
    GL_ACCT_MASTER_SAVE
    GL_ACCT_MASTER_SAVE
    GL_ACCT_MASTER_SAVE
    Actually, we have already used these function modules in our upload program, but we are not sure if these function modules will create any data inconsistency.
    Please let me know, if we should continue using the FMs, or there is any risk using the FMs and we should replace them by BDC.
    Thanks in advance.

    HI Vikram,
    Better to serch for the BAPI for uploading the master data.Becuase we have problems with BDC and FM's.
    If you use FM's it does n't contain all the fields which you want.IF you go for BDC this is not maintainable for future releaseas.IF you upgrade then screen may change.
    IF don' have any BAPI then better go for BDC.
    Thanks

  • Function module for assigning BP Number to the Postion ID in org model

    Hi Experts,
    Is there any function module for assigning BP Number to the Postion ID in organizational model.
    The requirement is:
    1)There are some employees which are reporting to a Manager who has a position ID.
    2) Each of these employees should be assigned to the given position ID.
    This can be done by First Locate the BP Record in SAP via the Vantive Person ID  and retrieve the SAP BP Number.
    <b>Then assign the SAP BP Number found to the Position ID.</b>
    My question is <b>Is there any function module for assigning BP Number to the Postion ID .</b>
    Looking forward for reply.
    Thanks & Regards,
    Renju.

    Hi,
       Org. management uses API classe objects with static methods as APIs. You may be able to achieve this using
    CL_CRM_ORGMAN_SERVICES->MAPPING_ORGUNIT_TO_BP
    Reward if helpful!
    Regards,
    Sudipta.

  • Function module for assigning a HU to delivery

    Function module for assigning a HU in HU managed location to a delivery ??

    Hello,
    In FuGrp HU_BASIC_BAPIS               Basic BAPIs for Hus
    with F’tn BAPI_HU_CREATE  Create handling unit with items
    this creates HU's NOT yet assigned.
    After F'tn BAPI_TRANSACTION_COMMIT
    You can assign the HU via
    F'tn BAPI_HU_CHANGE_HEADER
    using the BAPIHUHEADER fields: PACK_MAT_OBJECT & PACK_MAT_OBJ_KEY.
    Dirk

  • How to reverse menu or function exclusions for a system defined responsibility like System Administrator??

    Hi Experts,
    One of our students have excluded the responsibility define function and user define function from the "System Administrator" responsibility in our test instance, which resulted in disabling of responsibility creation and user creation form.  Can anyone here explain how to resolve this issue??
    Thanks.

    Your DBA should be able to help you..........

  • Function module for assigned wage types

    Hi experts,
    We need wage type wise count and sum of the amount for each wage type defined in infotype '0008' for the given from and to dates. Is there any function module available for the same.
    Please suggest.
    Regards,
    Kaustubh Kabre.

    Hi,
    <li>I do not look for function module for this case as i know that we can or have to read wage types and corresponding amount in the program. LDB PNP should be given in program attributes.
    REPORT RPABAP06.
    TABLES:PERNR.
    INFOTYPES:0008.
    DATA: BEGIN OF WAGETYPES,
       LGA LIKE P0008-LGA01,
       BET LIKE P0008-BET01,
       ANZ LIKE P0008-ANZ01,
       EIN LIKE P0008-EIN01,
       OPK LIKE P0008-OPK01,
      END OF WAGETYPES.
    DATA:total type P0008-BET01.
    GET PERNR.
    RP_PROVIDE_FROM_LAST P0008 SPACE PN-BEGDA PN-ENDDA.
    DO 20 TIMES VARYING WAGETYPES-LGA FROM P0008-LGA01 NEXT P0008-LGA02
                VARYING WAGETYPES-BET FROM P0008-BET01 NEXT P0008-BET02.
    IF WAGETYPES-LGA IS INITIAL.
    EXIT.
    ELSE.
    TOTAL = TOTAL + WAGETYPES-BET.
    WRITE: / WAGETYPES-LGA, WAGETYPES-BET.
    ENDIF.
    ENDDO.
    WRITE TOTAL.
    Thanks
    Venkat.O

  • SRM 7.0: Purchase Order Response (BUS2209) functionality, workflow

    Hello,
    We're trying to configure the purchase order response (BUS2209) functionality. We have configured the BUS2209 document types and numberranges and maintained the 'purchase order response expected' marker for certain vendors. We therefore expected to be able to post a POR via the Purchasing:PO powl however the 'create POR manually' and other 'POR actions' are greyed out. Has anybody been able to post BUS2209 documents in an SRM 7.0 system?
    Also if we look at: IMG -> SAP SRM -> SRM SERVER -> Cross-Application Basic Settings -> Business Workflow -> Define Process Levels  -
    No BUS2209 object is list, no workflow can be maintained (you can't add anything manually either). We have activated the Process Controlled Workflow for all business objects.
    Any help and input is very much appreciated.
    Kind regards,
    Tim

    Hi Tim,
    I did two things:
    1) I activated the start conditions for the three POR workflows as supplied by SAP. I still think this has nothing to do with the problem, but you never know.. The setting is located in the IMG under Workflow -> Application-controlled wfl, or similar (I don't have access to the system right now).
    2) I created a tolerance group Zxxx with tolerance key PR; I used 'limit as percentage' of 5% in both upper and lower limit.  I assigned the key Zxxx to the attribute TOG of a user (with the role /SAPSRM/OP_PURCHASER)  in PPOMA_BBP.
    This caused the options to be enabled. I then successfully created a PO response manually for a PO, which in turn caused a change version of the PO to be created. This change version had to be approved in order for the changes in the POR to be valid.
    Regards
    t7

  • Functional module for automatic creation of pur requisition & pur order

    hello,
    what is the functional module for automatic creation of puchase requisition and automatic creation of purchase order which we will assign in action box in service order processing management.
    please let me know as early as possible
    regards,
    rajesh kumar raju

    Hi,
             Please check with following.
    IDOC_INPUT_ACC_PURCHASE_REQUI
    IDOC_INPUT_ACC_PURCHASE_ORDER
    /ISDFPS/OR_PURCHASE_ORDER_CR
    BS01_PURCHASE_DOCUMENT_CREATE
    CO_MP_CREATE_PURCHASE_ORDER
    Thanks & Regards
    Sadhu Kishore

  • I can not see all "Divisions" in BP Rel.--Partner Function Assignment

    Hi,
    When I edit "Partner Function Assignment" in BP reliationship such like BUR011("Employee Responsible"),
    I can not see all "Divisions" in list which I can see in configuration via SPRO-->Customer Relationship Management->Master Data->Orgnizational Management->Division Setting->Define Divisions.
    E.g., in configuration, I can see 7 records of divisions from "001" to "007", but in "Partner Function Assignment" of BP relationship, I can only see "002" to "004".
    Do you know why? Thanks a lot!
    Best regards,
    Long

    hi
    that should not be happening,if they are visible in one client then should be there in another too
    do one things try run  this
    hrbc1_atributes_buffer_update
    it will refresh the buffers of your org structure and then you may be able to add this
    also check the check box where it is mentioned that"object determination should be permitted"
    remember it will run only for once after you run this the check box will be unchecked again
    i guess it may solve your probs
    also try to structure your org structure index
    use t code
    crmd_index_om
    and withtin the object type give O
    and execute
    best regards
    ashish

  • Function modules for the following

    Hi,
    I want to know the function modules for the following purposes.
    1) Check whether a date is valid or not
    2) Calculate the no of days between two dates.
    Expecting an early response.
    Thanks n Regards,
    Amit

    Hi,
    PARAMETERS: p_list LIKE t009b-bumon AS LISTBOX
                         VISIBLE LENGTH 11 OBLIGATORY ,
                p_list1 LIKE t009b-bdatj OBLIGATORY.
    SELECTION-SCREEN POSITION POS_HIGH.
    PARAMETERS: p_list2 LIKE t009b-bumon AS LISTBOX
                          VISIBLE LENGTH 11 OBLIGATORY,
                p_list3 LIKE t009b-bdatj OBLIGATORY.
    Calling Function Module for calculating no of days between the
    selected period
        CALL FUNCTION 'NUMBER_OF_DAYS_PER_MONTH_GET'
             EXPORTING
                  par_month = p_list
                  par_year  = p_list1
             IMPORTING
                  par_days  = ws_n_days.
        CALL FUNCTION 'NUMBER_OF_DAYS_PER_MONTH_GET'
             EXPORTING
                  par_month = p_list2
                  par_year  = p_list3
             IMPORTING
                  par_days  = ws_n_days1.
    For Concatenating the month and year into the date format
        CONCATENATE  p_list1  p_list ws_i INTO ws_c_date1.
        CONCATENATE p_list3  p_list2 ws_n_days1 INTO ws_c_date2.
      date = ws_c_date1 - ws_c_date2.
    In the above sample code the selection screen has month and year as input.
    Also check this link
    http://www.sapdevelopment.co.uk/tips/date/datehome.htm
    Check FM
    <b>RP_CALC_DATE_IN_INTERVAL</b> Add/subtract years/months/days from a date
    <b>SD_DATETIME_DIFFERENCE</b> Give the difference in Days and Time for 2 dates
    <b>Also for checking valid date:</b>
    U can specify the date field as
    Select-options:  s_date like likp-date(similar to ur requirement)
    This itself ceck for the valid date no seperate validation needed.
    Thanks & Regards,
    Judith.

  • Function module for background jobs email

    hi abaper's
                     i hace to create a function module for background jobs this function module have to send an email automatically when a background job is assigned or processed in background.
    thnks n regards
    pardeep kumar

    hi dear
    open this site
    https://weblogs.sdn.sap.com/pub/wlg/781. [original link is broken] [original link is broken] [original link is broken]
    <removed by moderator>
    Edited by: Mike Pokraka on Aug 8, 2008 12:48 PM

  • BP Relationship - Partner Function Assignment not maintained

    During the initial load for CUSTOMER_REL the Partner Function Assignment is not maintained for the Relationship "Usage". We want to default this information based on the Sales Area data of the Sold to party and Partner Function maintain in the ECC KNVP and/or KNVK. Anyone have any experience in accomplishing this?

    Hi
    Go to transaction VOPA and maintain partner determination
    In the customer master , VD01 maintain partners for this customer for whom you are creating the sales order
    Hope this helps
    Cheers
    N Ganesh

Maybe you are looking for

  • Newbie Simple app issue most likely related to user coding error

    I'm fairly new to the Cyberflex infrastructure and most likely the issue is with my CODE. Basically, I wrote a simple java cardlet without much error checking to try to retrieve a stored object on the card such as a userId. What I think I'm missing o

  • Dragging columns in JTable

    I am dragging a JTable column with my mouse. If I release the column, will an event be fired indicating that the column was dragged AND is now being released?? The mouseReleased(MouseEvent e) in MouseListener() will just inform me of the release of t

  • Msg 2114 error when i try to text this one person with my iPhone 4S???

    I seem to have an issue when i try to text this one person..... They do NOT recieve my texts.....but i can recieve theirs. I get a message after i send them a text from 923-0 that says i used the invalid number of digits.....MSG 2114 Tried deleting t

  • Size of batch

    Dear experts Can we increase size of Batch,current size of Batch is 10chracters.I there any customisation setting for the same, Regards Sandeep

  • Does apple provide enterprise software management?

    Hi there, Does Apple provide software for enterprise management.  I have worked with BB 10 and Air-Watch.  however before we go spend money on 3rd Party tools, I was interested in knowing whether apple might have something like this under the covers.