FB60 Transaction, BKPF object

Hi all.
Do you know what is the neccesary configuration in FI in order to get the events from object BKPF triggered in transaction FB60??
I think that some configuration is needed to trigger the events but I can't find the exact point in customizing.
Thank you all!
Ismael

Txn codes (in order)
O7E4
OBWA
OBWJ
OBWE
OBWF
There are a few other screens you need to configure, but I couldn't find the transaction code/program name; the system displayed the data for SPRO on those cases.
If by BKPF object you mean the Business Object that handles document parking via workflow, then yes, these transactions will help you configure that.  The name of said object is FIPP on transaction SWO1.  I'm actually using this object for document parking on our implementation as well.
Regards,
Juan Ramos
Message was edited by: Juan Ramos Bras

Similar Messages

  • Report on standard ODS object  and transactional ODS object

    hi gurus
    i have an infoset which is built on two transactional ODS objects and one standard ODS object which gets the data on regulr schedule. the transactional ODS obejcts get the user entered data.
    when i query on the infoset, i am getting the data. and when i query on the standard ODS object i am getting the data. but when i am trying to create a query on the combination of the Infoset and the ODS object i am not getting the data.
    is there any way to generate report on the standard ods object and Infoset from transactional ods objects.
    your help will be greatly appreciated.
    thanks in advance
    vijaykumar

    Hello ViJaY,
    how r u ?
    Try creating a MultiProvider with the Standard ODS and InfoSet.
    Best Regards....
    Sankar Kumar

  • Tax and W Tax tabs uneditable for fb60 transaction

    Dear All,
    I have a requirement to make the TAX and WITH HOlDING TAX TABS uneditable in FB60 transaction for specific company codes.
    Kindly guide, how this can be achieved.
    Thanks
    Vinda

    Hi:
           It is not possible to disable them specifically for a company code. However you can disable these using SHD0 or alternatively you can control it via settings in
    SPRO....Financial Accounting.....Financial Accounting Global Settings....WHT....Extended WHT ....Calculations....Define WHT for payment postings...Select Tax code and in control data you can them.
    For a specific co code it will not be possible.
    Regards

  • Userexit for FB50/Fb60 transaction

    Hi Gurus,
    Can someone give me a Userexit or BADI that will trigger before posting an invoice thru FB50 or Fb60 transactions?
    Thanks,
    -Anthony.

    FB50 all avaliable user exits:
    F050S001
    F050S002
    F050S003
    F050S004
    F050S005
    F050S006
    F050S007
    F180A001
    FARC0002
    FEDI0001
    RFAVIS01
    RFEPOS00
    RFKORIEX
    SAPLF051
    Transaction Code - FB60                     Enter Incoming Invoices
    F050S001            FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment
    F050S002            FIDCC1: Change IDoc/do not send
    F050S003            FIDCC2: Change IDoc/do not send
    F050S004            FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not send
    F050S005            FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI document
    F050S006            FI Outgoing IDoc: Reset Clearing in FI Document
    F050S007            FIDCCH Outbound: Influence on IDoc for Document Change
    F180A001            Balance Sheet Adjustment
    FARC0002            Additional Checks for Archiving MM Vendor Master Data
    FEDI0001            Function Exits for EDI in FI
    RFAVIS01            Customer Exit for Changing Payment Advice Segment Text
    RFEPOS00            Line item display: Checking of selection conditions
    RFKORIEX            Automatic correspondence
    SAPLF051            Workflow for FI (pre-capture, release for payment)

  • Adding a screen field in FB60 transaction

    Hi all,
    I just want to add a screen field in FB60 transaction. In that transaction there is a table control. I want to add a coloumn there. Can anyone help me how to do that? I am working in ECC 5.0
    Thanks in advance
    Pranav

    Hi Pranav,
    If you want to add a new column under the table control in FB60, there is a way to do it through config.
    This is how it can be done:-
    1) Go to T-Code SPRO
    2) Financial Accounting New>Financial Global Settings New>Ledgers>Fields>Customer Fields>Edit Coding Block
    3) Define your new field under "Customer defined account assignments" . Make sure the name starts with either 'ZZ' or "YY". This creates a standard structure with your custom field and also appends this new custom field in many FI related tables including BSEG so make sure to check the impact with your functional consultant.
    4) Once it is defined, you might need to change the characteristics of your field under
    Financial Accounting New>Financial Global Settings New>Document>Define Posting Keys
    (This changes your fields status from suppresed to either Optional or Required depending on your requirement)
    Hope this link also helps
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/65/ec4bd7fb0f44f6814fa790dde9a172/frameset.htm
    Reward points if helpful
    Cheers
    Sanjiv

  • Link Workflow Document to BKPF object

    I have a workflow document object (WF_DOC) that I created in my workflow that I want to attach/relate/link to a accounting document object (BKPF).
    Has anyone tried this?
    Standard workflow (SAP ver 4.6b) works great and attaches the WF_DOC to the task but I cannot find a way to create a link to it from the BKPF object.
    I have tried calling the method CREATE_RELATION from the BDN Navigator class CL_BDS_DOCUMENT_SET but all I get is a 'Nothing found' message.

    Check out the gos documentation (look for references to table VRBINRELATION and function BINARY_RELATION_CREATE)
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVOBS/BCSRVOBS.pdf
    and
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVGBT/BCSRVGBT_STRUCTURE.pdf
    There are two tasks set this up:
    Task 1: Create config for relation in table VRBINRELATION using SM34
    Task 2: submit the the two objects with the OBJECT ROLES as required by function module BINARY_RELATION_CREATE and the RELATION TYPE you defined in task 1.
    Dont forget to us the 'commit work' statement at the end.
    eg my function module
                                                                                    Import parameters :
    Value
    OBJKEYA '15000510251202005'                               OBJCLSSA 'BKPF'                                           BJCLSTYPA 'BO'                                           
    OBJKEYB '42EA7DD70630158CE1000000C0A8FB6EWF_FILE'        
    OBJCLSSB 'WF_DOC'                                         OBJCLSTYPB 'BO'
    RELTYP 'ZSUP'
    (ZSUP is the relation type from VRBINRELATION)                                                                               
    function z_create_binary_relation.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(OBJKEYA) LIKE  SWEINSTCOU-OBJKEY
    *"     REFERENCE(OBJCLSSA) LIKE  SWEINSTCOU-OBJTYPE
    *"     REFERENCE(OBJCLSTYPA) LIKE  BAPIBDS01-CLASSTYPE
    *"     REFERENCE(OBJKEYB) LIKE  SWEINSTCOU-OBJKEY
    *"     REFERENCE(OBJCLSSB) LIKE  SWEINSTCOU-OBJTYPE
    *"     REFERENCE(OBJCLSTYPB) LIKE  BAPIBDS01-CLASSTYPE
    *"     REFERENCE(RELTYP) LIKE  VRBRELTYP-RELTYPE
      data: objrole_a         type borident,
            objrole_b         type borident,
          reltype           type binreltyp,
            binarel           type gbinrel,
      binrel_attrib  type brelattr occurs 0.
      if objclstypa = 'BO'.
        call function 'SWO_OBJTYPE_EXIST'
             exporting
                  objtype           = objclssa
             exceptions
                  objtype_not_found = 1
                  others            = 2.
        if sy-subrc <> 0.
          exit.
         message id sy-msgid type 'E' number sy-msgno
                    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.
      endif.
      if objclstypb = 'BO'.
        call function 'SWO_OBJTYPE_EXIST'
             exporting
                  objtype           = objclssb
             exceptions
                  objtype_not_found = 1
                  others            = 2.
        if sy-subrc <> 0.
          exit.
         message id sy-msgid type 'E' number sy-msgno
                    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.
      endif.
      objrole_a-objkey = objkeya.
      objrole_a-objtype = objclssa.
      objrole_b-objkey = objkeyb.
      objrole_b-objtype = objclssb.
      call function 'BINARY_RELATION_CREATE'
           exporting
                obj_rolea      = objrole_a
                obj_roleb      = objrole_b
                relationtype   = reltyp
           importing
                binrel         = binarel
           tables
                binrel_attrib  = binrel_attrib
           exceptions
                no_model       = 1
                internal_error = 2
                unknown        = 3
                others         = 4.
      if sy-subrc <> 0.
        exit.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
      commit work.
    endfunction.

  • Userexit or BADI for FB50/Fb60 transactions

    Hi Gurus,
    Can someone give me a Userexit or BADI that will trigger before posting an invoice thru FB50 or Fb60 transactions?
    Thanks,
    -Anthony.

    These ara exits i found for ut Tcode FB50.
    F050S001 FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment
    F050S002 FIDCC1: Change IDoc/do not send
    F050S003 FIDCC2: Change IDoc/do not send
    F050S004 FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not send
    F050S005 FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI document
    F050S006 FI Outgoing IDoc: Reset Clearing in FI Document
    F050S007 FIDCCH Outbound: Influence on IDoc for Document Change
    F180A001 Balance Sheet Adjustment
    FARC0002 Additional Checks for Archiving MM Vendor Master Data
    RFAVIS01 Customer Exit for Changing Payment Advice Segment Text
    RFEPOS00 Line item display: Checking of selection conditions
    RFKORIEX Automatic correspondence
    SAPLF051 Workflow for FI (pre-capture, release for payment).
    i cant keep the break-point in these exits ,
    u keep the break-point in all FM's and run the tcode it will trigger ,then u can find the where it is triggering ,then delete all the grk-points.
    Reward Points if useful.

  • Distributed transactions, distributed objects

    An observation and a conjecture about distributed transactions
    and distributed object references:
    Distributed non-service object references are persistent, and
    a transaction can, in principle, propagate to the distributed
    object through a method call from another partition.
    However, in order to make the transaction propagate to the
    object's partition the object must also have the
    isTransactional attribute set to TRUE. The Fort&eacute; runtime
    system apparently uses the isTransactional property not only
    for rollback of a distributed object's state, but also to
    indicate whether it is desired that transactions propagate to
    the object's partition. Thus, the behavior of a distributed
    object reference with respect to distributed transactions can
    be controlled by the value of the isTransactional attribute
    in the same way that the behavior of an environment-visible
    service object with respect to distributed transactions can
    be controlled by the dialog duration.
    Comments?
    John Hodgson |Descartes Systems Group Inc.|Tel TBD
    Systems Engineer|120 Randall Drive |Fax TBD
    |Waterloo, Ontario |www.descartes.com
    |CANADA N2V 1C6 |[email protected]
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    http://transxtrail.sourceforge.net/

  • Problem in FB50,FB60 transactions

    Recently due to some change which we are not able to track in transactions FB50,FB60 the line item column data is altered
    Ideally it starts with  Compcode,D/C indicator ,G/L acct etc
    But it now starts with the 5 customer specific fields added as part of OSS note( 174413) at the start.
    earlier to it after implementing this note these 5 fields were shown at the end
    the fields are: ACGL_ITEM_GEN-GEN_CHAR1
                          ACGL_ITEM_GEN-GEN_CHAR2
                         ACGL_ITEM_GEN-GEN_CHAR2
                        ACGL_ITEM_GEN-GEN_CHAR2
                       ACGL_ITEM_GEN-GEN_CHAR2
    the fields now appear at start rather then at end.
    how do i change the order to make it display at end.
    Am not sure if implementaiton of some other OSS note led to the field positon getting shifted to be first
    This is affecting many transactions FB50,FB60
    Solution to this is rewared

    Hi,
    have you tried changing the order of the fields by means of transaction
    SHD0 (Transaction and screen variants)?
    Best regards.

  • To small appearance of the SAP Transaction Callable Object

    Hello,
    I use a Callable Object of the type SAP Transaction in my Guided Procedures process. The problem is, that the resulting iView is only about 100px high. This appearance is not realy usable. Is there any possibility to modify the responsible appearance parameters?
    Thanks and Regards
    Robert

    Hi Robert,
    Have you found a way to solve the problem? I have a similar situation and I want to change the size too..do let me know if you have found out how to do it.
    Bye!
    Sameer

  • Report for transaction - Maintain Object - Roles - user Id ( Authorisation)

    Hi
    I want to generate a report for the following:
    for a transaction
    for a check/ maintain object name ( Ist column)
    what are the roles ( iind column)
    and
    what are the user id for each roles.. (iiird column)
    and
    start up (yes / No) (ivth column)
    Please advise.
    Since, I need to do this report generation for more than 30 transactions, any immediate reply would be of great help.
    Thanks in advance.
    Partha

    Hi
    Try SUIM T-code and see if any of the report works
    Thanks

  • Report on Master Data and Transaction data objects

    Hello Friends,
    I have a requirement to show all customers and their sales in one report. If the customer doesn't do any sales then I want to show the sales as 0 for that customer.
    I have created MultiPorvider on 0Customer and Sales Cube and map the identification for those objects.
    Now, in the report I have restricted the info provider by 0Customer and sales cube. When I run the report, it is showing only the values from sales cube . The report
    is not showing customers which doesn't do any sales.
    Can some help on this issue... I am using BW 3.5.
    Appreciate your help...
    Thanks
    rman

    Hi, Thanks for your response.
    From these options... I couldn't find the option 3.
        1.      In the Query Designer, select your InfoProvider (that contains the characteristic 0MATERIAL).
           2.      Define a query in accordance with your requirements (for example, include the key figure Sales in the structure).
           3.      For the characteristic 0MATERIAL, set the Access Type for Result Values property to Master Data.
           4.      Save the query and execute it.
    I checked in query properties. I am using BW 3.5. Can you please tell me where I can find this...
    Thanks
    Rman

  • BTE for FB60 Transaction

    Hi Experts,
    I have a requirement for FI enhancements that is
          user exit that should be triggered during AP Invoice entry via tr. FB60 and posting via tr. FBV2. Condition of user exit activation may be document type, say, HC (to be advised later). This user exit should initiate pop-up screen with the following fields (see left column and column u201Cinput in invoiceu201D):
    in this situation which is preferable either BADI or BTE?
    if it is BTE what is search method for appropriate BTE for that TCODE?

    Hi Bareddy devi ,
    GO to T-code Se15--> and Expand the enhancements and Enter  the package ( FBAS) for FB60 and see the User-exits attched to FB60 or Badi or BTE attached to the T-code ..
    By seeing the Description and Help file attached to the User-exits or Badi you easily find the Best way to Write the Code
    generally User Prefer the User-Exit or Badi..
    Regards,
    Prabhudas

  • KEFC Transactions / Cost Objects

    I changed the inbound structure to include two more cost objetcs. However, when I execute KEFC, the new objects are there on the output, but the values are blank.
    Is there something else I need to do to pull in the two new cost values besides add them to the input structure?
    Thank-You.

    Resolved issue.

  • Updating 'SEGMENT' field from transaction FB60 using FAGL_DERIVE_SEGMENT

    In our project we are using BADI FAGL_DERIVE_SEGMENT to automatically determine the field 'SEGMENT' from FB60 transaction.
    This problem only occurs when the field 'Segment' has been updated, because upon creation the value is filled and calculated correctly by the BADI. But it seems that on modification, the BADI is not being called, and therefore the field remains unchanged.
    (This only happens in the table control, because when double-clicking on the line we see that the value is correctly updated)
    Does anyone know any OSS note or any solution (maybe another BADI or configuration) to always have the value updated in the table control?
    Thanks in advance!
    Regards,

    Hi John,
    Through inbound IDOC, if the material already exists then material no will also be passed.
    Use WE19. and give the value for MEINS and check in debug mode.
    Regards
    Arun

Maybe you are looking for