How to get the profit centres determined in automatic payment run - F110

Hi,
In F110 - Automatic payment run, is it possible to get the profit centres determined ?
While doing manual payment, system gives the option to enter the related profit centres.
But in F110 how can I get the profit centre (cost obect) selected ?
Could anyone help ?

Hi
I assume you are referring to the PC for the Bank account?
You can define the default PC in 3KEH.
Rgds
Nadini

Similar Messages

  • HT204291 how do get the media icon for mac mirroring when running airplay on itunes?

    how do get the media icon for mac mirroring when running airplay

    Airplay mirroring requires a Mac from 2011 or later, running OSX 10.8 (or later)
    http://support.apple.com/kb/HT5404?viewlocale=en_US&locale=en_US

  • How to change the Profit centre in goods receipt before posting

    Hi All,
    when we are doing MB01,  material master and Purchase order  are  having different profit centres, since legacy has multiple profit centre for the same material.
    My requirement is to change the profit centre before posting a Goods receip with the Purchase order Profit centre.
    Is thre any user-exit, Badi or Substitutions for this requirement.  I have implimented the below code in the Badi
    MB_DOCUMENT_UPDATE.
    data : ls_xmseg type mseg.
    ls_xmseg-Profit Centre = .....
    ls_xmseg-prctr = '0020077170'.
    modify XMSEG from ls_xmseg transporting prctr .
    But i'm getting Data base update terminated message. Please help me in this.
    thanks,
    Ram.

    Dear Sir,
    But is T-code not working ....
    have you other code/ process so, pls. give me ....
    Pls sir
    Regards
    Jayesh Kanungo

  • How to make the invoice number a hotpsot in Payment program F110

    Hi,
    In the standard Automatic Payment Program F110 when we do a payment run and see the list of proposed Invoices that will be cleared - the requirement is to allow the user to double click on the invoice number and it should go to FB03 or MIR4 depending on if it is a Non-PO or a PO invoice. Is there a way to do this with out doing an implicit enhancement point.
    Regards
    Ravi

    Hi Ravi,
    I don't think it so it is possible in F110. You can copy the document number from F110 and go to FB03--Document list, paste all the document number from there you can double click on the document to see the full details.
    Br,Vivek

  • How to change the profit centre during deliver?

    i have an error during report generation.
    'profit centre 'xx' not valid for company code 'abcd' '".
    how to overcome this issue as i am unable to do the PGI.
    let me know if any one has fced the issue
    thanks
    mmn
    <REMOVED>

    hi,
    GOTO -> KE53-> enter ur controlling area-> prress  enter> key in the profit center which is having problem press enter-> This will take u to the screen, goto COMPANY CODE tab---> tick the company code in which it showing errror
    regards,
    Arun prasad

  • How to get the profit center nodes descriptions

    Hi Experts,
                 i have value of profit center   17007236. but i need to get the hierarchy above this profit center and their descriptions. previously i have done similar kind of   problem, but i that case i have top level node from which i have extracted bottom level descriptions and profit center values. this can be referred in the below link.
    Re: Profit Center Groups
    but now i have profit center values but i need to get the above hierarchy value and descriptions. which are shown in bold letters.
    any suggestions or any function module available please kindly reply me. point will be rewarder for all answers.
       <b> 5  SOI_STREAM      Downstream PPS                                                                               
    5  SOI5000007      DOWNSTREAM NON-OPERATING BU'S                                                                               
    5  SOI6IS0001      INTEGRATED SUPPLY TRADING                                                                               
    5  SOI7IS0091      IST EAST COAST                                                                               
    5  SOI7IS0092      CHICAGO PRICING BASIS                                                                               
    5  SOI7IS0100      (CHG) CHICAGO BASIS GAS BOOK                                                                               
    5  SOI7IS0126      MARKETING CHICAGO  BASIS GAS  </b>
                                                                                    17007236   CHG 4022 GRAFTON OH (LTAZ)       
                                    17007326   CHG 4022 GRAFTON OH (LTAZ)       
    Thanks & Regards,
    Poorna.

    Hello Poorna
    The following sample report may be useful to you. The sample cost center was taken from the cost center group 'H1' on our IDES ECC 5.0.
    *& Report  ZUS_SDN_COST_CENTER_BOTTOM_UP
    REPORT  zus_sdn_cost_center_bottom_up.
    TYPE-POOLS:  abap.
    DATA:
      gd_setid                 TYPE setid,
      gt_supersets             TYPE STANDARD TABLE OF setlist,
      gs_setlist               TYPE setlist,
      gs_setinfo               TYPE setinfo,
      gt_setinfo               TYPE STANDARD TABLE OF setinfo,
      gs_costcenterdetail      TYPE bapi0012_ccoutputlist,
      gt_return                TYPE bapirettab.
    DATA:
      gs_layout                TYPE lvc_s_layo.
    PARAMETERS:
      p_kokrs      TYPE kokrs  DEFAULT '1000',
      p_kostl      TYPE kostl  DEFAULT '2-1110'.
    START-OF-SELECTION.
      CALL FUNCTION 'BAPI_COSTCENTER_GETDETAIL1'
        EXPORTING
          controllingarea            = p_kokrs
          costcenter                 = p_kostl
    *     KEYDATE                    = SY-DATLO
    *     MASTER_DATA_INACTIVE       = ' '
        IMPORTING
          costcenterdetail           = gs_costcenterdetail
        TABLES
          return                     = gt_return
    *     EXTENSIONIN                =
    *     EXTENSIONOUT               =
      CALL FUNCTION 'G_SET_ENCRYPT_SETID'
        EXPORTING
          setclass             = '0101'  " cost center group
          shortname            = gs_costcenterdetail-costctr_hier_grp
          kokrs                = p_kokrs
        IMPORTING
          setid                = gd_setid
        EXCEPTIONS
          no_co_area_specified = 1
          illegal_setclass     = 2
          OTHERS               = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'G_SET_GET_ALL_SUPERSETS'
        EXPORTING
    *     CLIENT          =
          setname         = gd_setid
        TABLES
          supersets       = gt_supersets.
      CLEAR: gs_layout.
      gs_layout-cwidth_opt = abap_true.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
        EXPORTING
          i_structure_name = 'SETLIST'
          i_grid_title     = 'Supersets'
          is_layout_lvc    = gs_layout
        TABLES
          t_outtab         = gt_supersets
        EXCEPTIONS
          program_error    = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      REFRESH: gt_setinfo.
      LOOP AT gt_supersets INTO gs_setlist.
        CLEAR: gs_setinfo.
        CALL FUNCTION 'G_SET_GET_INFO'
          EXPORTING
            class                           = '0101'  " Cost Center Group
    *       NO_SET_TITLE                    = ' '
            setname                         = gs_setlist-setname+4
    *       TABLE                           = ' '
    *       FIELDNAME                       = ' '
    *       USE_TABLE_BUFFER                = 'X'
    *       CLIENT                          =
          IMPORTING
            info                            = gs_setinfo
          EXCEPTIONS
            set_not_found                   = 1
            illegal_field_replacement       = 2
            OTHERS                          = 3.  .
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        APPEND gs_setinfo TO gt_setinfo.
      ENDLOOP.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
        EXPORTING
          i_structure_name = 'SETINFO'
          i_grid_title     = 'Setinfos'
          is_layout_lvc    = gs_layout
        TABLES
          t_outtab         = gt_setinfo
        EXCEPTIONS
          program_error    = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    END-OF-SELECTION.
    Regards
      Uwe

  • How to get the iChat Buddy List to automatically appear on the Desktop

    On my friends computer iChat is set to launch whenever he logs into his account, but the Buddy List does not appear on his Desktop. So when I see him online there is no green video camera mark next to his name.
    If I want to do a screen share with him, I have to ask him to go to the iChat icon towards the right side of the Menubar (the round 'speech ballon') and click on Show AIM Buddy List at the bottom. Once he has the Buddy List on his Desktop, I can screen share with him.
    Surely there must be a way for the Buddy List to always appear on the Desktop when logging into his computer... Can anyone help out?

    Hi,
    Interesting one.
    If I were telling you how to create this it would be like this:-
    1) Go to System Preferences > Accounts > Your account and enter iChat in the Login items. (Makes iChat launch at Computer Start Up)
    2) to Hide the Window (Buddy List(s) ) at Start Up click the Red Button to close the Window/Buddy List before Quitting.
    This will cause the next Start Up to not show th Buddy List.
    How you make the Buddy List appear after that depends on how you bring it in to View.
    NOTES:
    Some Windows in iChat from Buddy List to the Preferences to th Actual Chat Windows will appear in the places you left them for the most part.
    The Exceptions are Incoming Invites.
    This means the Buddy List will be were you left it, your Outgoing Invite/Preview whilst waiting for Connection will always be where the last outgoing Video Chat window was.
    Using the Red Button on a Open Chat Window will end the Chat (All types).
    However doing it to a Buddy List only Hides it.
    In addition to this using the Item (or the Keystrokes) from the Window Menu of iChat for a Buddy list when it is On view will Hide it (or Bring it back if Hidden)
    The Show AIM option in the Menu Bar icon's drop down is a two edge thing as it shows All Buddies (Available ones) from all AIM Buddy lists if you have more than one (Apple names are also AIM Names in this case).
    Does he want to change this Behaviour ?
    He would be better off using the iChat Window menu (or Keystrokes) after he has clicked the icon in the Dock to bring the app to the Front so he can access the Menu bar with ichat in it.
    He could also click and Hold the icon for iChat in the DOCK and select the Account Name there. This, if I remember correctly, will have the same effect as presenting the Buddy List from the Menu Bar icon (it will be hidden at Next Start Up)
    9:58 PM Saturday; November 13, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • How to get the None button on my account payment page

    I would like to remove my old credit card info from my account and start using only gift and prepaid iTune cards.  However, the None button is not showing on the page.  Is there some sort of pathway that I need to go through to get the button or do I have to have some other support for this function?

    I NEED TO GET MY ITUNE CARD TO MY ACCOUNT

  • Assignment Field Get Cleared(blank) During Automatic Payment Run(F110)

    Hi all,
    We have a senario that during the creation of AP invoice, the Profit Center is entered in Assignment field ( BSEG-ZUONR) in FB01.In the invoice document the assignment field value correctly copied into Profit center (BSEG-PRCTR) based on a subsititution rule.
          But during the payment document run (F110)  the assignment field is get cleared (Blank).and in REGUP table, the Assignment field get populated correctly.
    By displaying the payment document using transaction code FB03, the assingment fields is empty.ie  field BSEG-ZUONR is empty. .
    We have checked all the subsititution rules defined in the system and none of these causing the problem. We suspect there are some hidden subsititution or configurations in SAP that affect the assignment. We also checked the sort key is not the cause of it.
    Have anyone encounter the same scenario why the Assignment field get cleared(blank) in Payment document. Please kindly share. 
    Regards
    Riaz

    Hi,
    I think you are trying to Run Automatic Payment Programme with Check Management and you want to Print check and payment summary.
    Kindly check if you have defined SAP Scripts in FBZP Payment Method in Company Code.Select a Co Code and double click on payment method eg C-Cheque, their is a section called FORM DATA you need to input Scripts for the same so that the Payment Programme prints output as defined in the SAP Script for Checks and payment advice
    Regards
    Rahul

  • How to add a new selection criteria in Automatic Payment process (F110)

    Hi all,
    We need to add new selection field in selection criteria tabstrip. Does a user-exit exist to interpret BKPF-USNAM as field name ?
    Thanks in advance for your answers.
    Regards,
    Philippe.

    pls look here
    enhancenents
    A.

  • Program for profit centre determination

    Hi,
    profit centre is determined in sales order. How does it gets determined techincally. through some function module or what ??
    regards
    sachin

    hi, that is ok but what is the trigerring point from the sales order. how  does the sales order program calls the profit centre determination program. what is the tirgerring point from abap point of view. how  does it calls the profit centre program from sales order program
    regards
    sachin

  • Why we maintain the profit centre in MM module?

    Hello,
    I want know, why we maintain the profit centre in MM module?
    Ram Rathode.

    You will find this useful -
    A profit center is a section of a company treated as a separate business. Thus profits or losses for a profit center are calculated separately. A profit center manager is held accountable for both revenues, and costs (expenses), and therefore, profits. What this means in terms of managerial responsibilities is that the manager has to drive the sales revenue generating activities which leads to cash inflows and at the same time control the cost (cash outflows) causing activities. This makes the profit center management more challenging than cost centre management. Profit center management is equivalent to running an independent business because a profit center business unit or department is treated as a distinct entity enabling revenues and expenses to be determined and its profitability to be measured. Business organizations may be organized in terms of profit centers where the profit center's revenues and expenses are held separate from the main company's in order to determine their profitability. Usually different profit centers are separated for accounting purposes so that the management can follow how much profit each center makes and compare their relative efficiency and profit. Examples of typical profit centers are a store, a sales organization and a consulting organization whose profitability can be measured.
    Note : Do not copy & paste from other sources
    Edited by: Jeyakanthan A on Jun 1, 2011 12:03 PM

  • How to create new profit centre to Cash Journals

    Hi Friends,
    Please suggest me how to create/assign profit centre to Cash journals ( Cash Payment & Cash Reciepts)
    Thanks & Regards,
    Naveen.

    Hi Naveen,
    As already replied, we do not fix Profit center to cash Journals, but when you enter your cash Payments>Expenses, then you enter a cost object and from there the profit center entry is derived.
    For balance sheet accounts, you enter profit center manually..
    If you want to fix P.Cntrs for Cash Line posting, then you need to write Substitution and for that you will have to use User Exit.
    Usually in a New GL Scenario, the balance sheet line item gets split in the expense ratio, so we do not fix P.Cntrs for Cash line items..
    If your question is something else.. do let us know.
    Regards,
    SAPFICO

  • How to get the Deliver Quantity against Schedule Line Quantity

    Hi,
    I have specific requirement for a report where we need to determine the delivery qty against the schedule line qty for a sales order. In sales order in schedule line tab system shows the delivery qty. The field is VBEPD-VSMNG. VBEPD is a structure and I could not find the table in which this is actually stored. Does anybody know how to get the delivery qty for schedule line?

    Hi,
    U can check the following tables:
    VBEP (Sales ScheduleLines) VBEP-VBELN =VBAP-VBELN and VBAP-POSNR = VBEP-POSNR
    LIPS (SalesDoc:Delivery Items) LIPS-VGBEL =VBAP-VBELN and LIPS-VGPOS =
    VBAP-POSNR
    VBEH (Schedule LineHistory) VBELN POSNR ETENR
    Regards
    Kannaiah

  • How to get the filename from J2SE File adapter

    In our project scenario , we are using J2EE and J2SE engine both .J2EE for mapping  and J2SE for Deliveying the message .
    In one senario, routing will be based on the filename .
    J2SE Sender File adapter --- XI Adapter --- XI pipe line
    So the File reaching to XI pipelane via J2SE File adapter--> XI adapter.
    When we are using the dynamic configurator in the XI to get the filename
    we are not able to get the file name  becasue it is coming to XI via
    XI adapter.
    How to get the filename ????Hope I am clear about the problem.

    hi,
    try this
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    //obtengo la Key del FileName
    DynamicConfigurationKey keyF = DynamicConfigurationKey.getName();
    http://help.sap.com/javadocs/NW04/current/pi/com/sap/aii/mapping/api/DynamicConfigurationKey.html
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70c89607-e4d9-2910-7280-f6746e964516
    /people/mohammed.zabiulla/blog/2008/03/26/have-you-ever-tried-to-determine-mail-cc-dynamically
    Hope it helps
    Thanks
    Rodrigo
    Edited by: Rodrigo Pertierra on Apr 11, 2008 9:31 AM

Maybe you are looking for

  • My iPod touch 4G doesn't receive photos through iMessage, only typed messages. Can anyone help me solve this problem?

    Lately my iPod touch 4G has not been receiving photos from my wife through IMessage, when the photo is received I can see it for less than half a second, then it disappears. If I restart my iPod sete it shows up as unknown and a question mark, instea

  • Question about Intel iMacs

    I'm thinking about upgrading from my 20" G5 iMac to a new 24" 2.8 iMac and was curious about a few games. I'm not a big gamer by any means, but do enjoy Call of Duty and Medal of Honor. Both of these are PowerPC based. I assume I will need to repurch

  • LabVIEW PDA and WinCE

    Greetings all, My latest stab at the bleeding edge of LabVIEW capabilities has brought me to yet another question for which I haven't found an answer... Does the PDA module take advantage of the fact that Win CE is a deterministic OS or are thread pr

  • App Store internal server error

    I saw that I had some updates, so I went to the App Store, and it said this: http://i57.tinypic.com/28lq58z.png I tried restarting it. Twice. Didn't work. Why?

  • How to make a layout like this?

    Hu My question is how to make a work layout like this panel? One is affected by perspective grid and there others are not. Thank you!