Purchase order field in Cash Journal

Hi,
We want to post expenses with reference to Purchase order in Cash Journal. Purchase order field is not available in the Cash Journal. How to update the purchase order field in Cash Journal.
Regards,
Azeem

Hi,
In Cash journal, there are fields which are standard from the program SAPMFCJ0 and Control FTCJ_E_POSTINGS.
So you can see in FBCJ, while you post transaction line at the extreme right, you can see "configuration" there you can see the available fields. If you want to include, contact ABAP consultant or SAP team.
Regards,
Ramesh.

Similar Messages

  • Purchase order Field LIke Material , Non editable by using Trax code Me22n

    Guru
    How to make Purchase order Field LIke Material , Non editable by using Trax code Me22n
    Thanks

    Hi
    Check this in SPRO- SAP IMG- Material Management - Purchasing- Purchase order- Define screen lay out at document level
    In this select the particular field selection key and change the material field to display.
    Hope it will do
    Regards,
    Raman

  • F-40 Add Purchase Order Field

    Dear All,
    I awant to add purchase order field in T-Code F-40. Following is Scenario.
    Transaction to be processed : Outgoing Payment
    PstKy : 29 (Special G/L Debit)
    Account : (vendor Account)
    SGL IND : J
    uner more data also it is not showing. I have also used T-Code OB41 but still it is not showing PO field in first screen.
    Dinesh

    Hi,
    Following are the steps i have gone through.
    1. T-Code OBXT to search G/L Account, then i gone through the combination AcctypeSGL Ind (KJ). Then Chart of Accounts. Then i Listed all G/L which are in used.
    2. T-Code FS00, Field Status Group.
    3. T-code : OBC4, Then Field Status Group(which is in use of G/L Account) and marked purchase order field as required field under (material management/purchase order)
    Still it is not showing purchase order field in first screen of F-40.
    Dinesh

  • Disabling selected Purchase Order field(s) after released/approved

    Hi Experts,
    I have a requirement to disable specific Purchase Order fields after released via ME29N.
    For example, in Purchase Requisition - I can "Release Indicator - Field Selection Key" to control Purchase Requisition screen layout. However, for Purchase Order - the configuration for "Release Indicator" consist only standard default "Chgable" options.
    Question:
    Is there a way to customize the Purchase Order "Release Indicator" for screen layout based on customer requirements other that using the default as mentioned above?
    Thank you.
    Steven

    Hi Padmasri,
    I understand your explanation on the standard SAP behavior.
    Nevertheless, I'm looking for some flexibility to meet customer requirement. Like in Purchase Requisition, there is option to further customize the screen layout by linking it to the "Release Indicator".
    Therefore, apart from the standard 6 options given by standard SAP, can we add/customize the options? For example, my customer may one to change a field in the Purchase Order even after released.
    Thank you.
    Steven

  • VKM1 Status and Purchase Order Fields

    Hi Everyone,
    I'm new with SD and not familiar with transaction VKM1. I have a task that needs to get the corresponding Status field and Purchase Order field for a corresponding VBELN. To what table can I map these data?
    Please help.
    Many Thanks!

    Hi
    Kindly use the belwo  tables and fields
    VBAK--BSTKD --POurchase order
    VBUP-GBSTAOverall processing status of the SD document item
    Regards
    Damu

  • Purchase order field optional for Movement type

    Hi SAP friends ,
    Please let me know the config path to make the purchase order field as optional for particular mvt types that are used in MIGO transaction to receive the overage stock or reversal of overage stock
    Regards,
    JR.

    Hi John,
    If your posting a 101 movement against a purchase order then there is probably no way of making the PO optional, as this is a designed process
    I guess I need to understand the process in more detail
    In the Interim please look at the following customising settings
    Materials management > Inventory management > Inventory management and PI > Field selection for for goods movement
    Materials management > Inventory management > Inventory management and PI > settings for enjoy transactions > fields for goods movements
    Regards
    Steve

  • Purchase order field change

    How can i change this length to be appear again

    Hello Mohamed,
    The length is adopted from data element definition in the system for that purchase order field.
    Please ensure you have authorization to change the standard layout of your PO screen. Also check the structure MEPO1211 and the field length of your required fields.
    Regards,
    Amit

  • Table for picking PURCHASE ORDER field corresponding to accounting document

    Dear All
    Table for picking PURCHASE ORDER field corresponding to accounting document.
    Thanks
    Rahul Jain

    Dear Jayram
    I know that Purchase order field can be picked from BSEG table but i am not able to capture the data into it. Whenever i book a invoice through FB60 or MIRO i give the reference PO number which is not getting updated in BSEG, BSAK and other relevant tables.
    Thanks
    Rahul Jain

  • ME21n - Purchase order field exit??

    Hi
    Does anybody know what the ME21n (enter purchase order) field exit would be so that I can default a particular G/L account (HKONT) when the account assignment group is 'F' & the purchasing org is a particular value?
    If you can also confirm if that is going to be possible with coding in that field exit I would appreciate it....
    Thanks all for your time...

    Screen Exit
    Please remove the TDS-related input fields on the PO entry screen on the customer data tab  (PO line details).
    - TDS account
    - TDS cost code
    - TDS sub code
    1.     Goto Transaction Code Me21n
    Fill the following fields
    Enter
    Give the input values in following fields from  ORGDATA TAB
    Purchasing org
    Purchasing group
    Company code
    Vendor
    Enter
    Select Customer Data tab like following
    USER EXIT  : MM06E005 (Customer fields in purchasing document )
      Goto  : T.Code : SMOD
         Give the Enhacement Name : MM06E005
         Click on Display
         Click on Components Push Button
         Double click on function module EXIT_SAPMM06E_016( Export Data to Customer Subscreen for Purchasing document item)
         Double click on Include ZXM06O01.
         Insert the following coding in that include
    SET PARAMETER ID 'BUK' FIELD g_ekko-bukrs.
      LOOP AT SCREEN.
        IF screen-name = 'EKPO_CI-ISMSUBTITLE1'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
    *>>>>>>>>>>>>>>>>>>>>>> Begin of insert CR336/BG1 >>>>>>>>>>>>>>>>>>>>>>
        IF screen-name = 'G_EAN11'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
    *<<<<<<<<<<<<<<<<<<<<<<< End of insert CR336/BG1 <<<<<<<<<<<<<<<<<<<<<<<
    *>>>>>>>>>>>>>>>>>> Begin of Changes for K896570/501411945 <<<<<<<<<<<<<
    IF screen-name = 'EKPO_CI-TDSACCOUNT'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
    IF screen-name = 'EKPO_CI-TDSCOST'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
    IF screen-name = 'EKPO_CI-TDSSUB'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
    *>>>>>>>>>>>>>>>>>> End of Changes for K896570/501411945 <<<<<<<<<<<<<
    *>>>>>>>>>>>>>>>>>>>>>> Begin of insert SM1 >>>>>>>>>>>>>>>>>>>>>>
        IF ( screen-name = 'EKPO_CI-TDSACCOUNT'
          OR screen-name = 'EKPO_CI-TDSCOST'
          OR screen-name = 'EKPO_CI-TDSSUB'
          OR screen-name = 'TDS_TXT_1'
          OR screen-name = 'TDS_TXT_2'
          OR screen-name = 'TDS_TXT_3'
          OR screen-name = 'TDSACCOUNT-DESC'
          OR screen-name = 'TDSCOST-DESC'
          OR screen-name = 'TDSSUB-DESC'  ).
          IF g_ekko-bukrs(2) <> 'U6'.       "not a theatrical company
            screen-invisible = '1'.
            screen-input     = '0'.
          ELSEIF g_flag = 0.                "display only
            screen-invisible = '0'.
            screen-input     = '0'.
          ELSEIF g_flag = 1.                "change
            screen-invisible = '0'.
    *>>>>>>>>>>>>>>>>>> Begin of Changes for K896570/501411945 <<<<<<<<<<<<<
           screen-input     = '1'.       "Fharook Syed
            screen-input     = '0'.        "Fharook Syed
    *>>>>>>>>>>>>>>>>>> End of Changes for K896570/501411945 <<<<<<<<<<<<<
          ENDIF.
          IF screen-name = 'EKPO_CI-TDSACCOUNT'.
            screen-required  = '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDIF.
    *>>>>>>>>>>>>>>>>>>>>>> End of insert SM1 >>>>>>>>>>>>>>>>>>>>>>
    &#61664; save & activate.
    &#61664; Repeat the above process in ME21N to see customer data fileds in CUSTOMER DATA tab
    After the above Modifications CUSTOMER DATA is   displaying like this
    rewars if useful

  • 221 movement type with Purchase Order Field mandatory in MIGO

    Hi,
    When i enter , 221/261 movement type in SAP in MIGO screen .
    What is the way to make purchase order field should displayed  ? in SAP
    Regards,
    Rajendra D. Sawant

    can you please explain the business need of getting a Purchase order number for while issuing the material with 221 /261
    i have also checked in OMJJ eventhough the field EBELN is available in field catalouge but by adding it in OMJJ in 221 the screen does not appear there & probably the reason is that SAP does not support the need of that field there
    IF at all you want to get a PO field in Screen then first copy 221 to create a new movement type and then look for some screen exit and enhance the table of MSEG/MKPF with a custom field by appending a structre.
    Edited by: Sap: IN on Oct 17, 2011 11:45 AM

  • F4 Help for Purchase Order field in SRM

    Hello,
    I am working on developing a report program in SRM in which I have the fields Purchase Order Number, Fund, WBS Element for which I've taken the reference type as crmd_orderadm_h-object_id, BBP_PDACC-FUND, BBP_PDACC-WBS_ELEM_E respectively. I would like the F4 help to be added for these fields. How do I do that? Please let me know.
    Thanks,
    Venkata Phani Prasad K

    Closing Thread.

  • Tax Code field in Cash journal

    Dear All,
    Can Tax Code field be activated in Cash Journal . If yes how? Useful answers will be rewarded with points.
    Regards
    Milind Nair

    Hi
    Goto FBCJ, it will have two segments, one is the header data and other is the line item data.
    In the Line item segment where you enter the line item details, go to the right hand side corner of the Table. You will see a small icon with colours. This icon is present at the Top right hand corner of the line item entry table in FBCJ.
    Click on this ICON, this is the administrator icon. Then click on administrator, then you can see list of field names, there will be a check box called invisible. For the fields TAx code and juristiction it will be marked as invisibel. remove this tick and activate and save the parameter.
    Afterwards you will get the required fields in FBCJ.
    If you have problem when you click on the icon, then it is a authorisation problem so contact your Basis resourse for necessary action then do the changes as required.
    Cheers
    V.Krishnan
    (Assign Points if Useful)

  • Purchase order field EKPO - AFNAM displayed in any standard report?

    Hello gurus,
    I can't find any standard report which contains in the layout the field Requisitioner (EKPO-AFNAM) of the Purchase Orders.
    Can you please advise if there is any? Do I need to make a query between EKKO and EKPO to get this field displayed together with the PO number?
    Thanks!!
    Marc

    Hello,
    @Venu, dynamic selections would allow me to have this field in the selection screen but not in the layout of the report (which is exactly where I need it).
    @Antony, you're confirming my fears; there is no standard PO report which contains the Requisitioner field in the layout. I know ME5A does include it, but it doesn't include the Purchase Order number as it is Purchase Requisition related.
    @All, any other suggestion besides the query? Are we missing something?
    Best,
    Marc

  • Purchase order fields in MRO type

    Hi Experts,
    I have Searching fields for  service POs - MRO type, received acknowledgment or not, received ASN,Delivered, Invoice received, In Process, Processed etc... for purchase order.In which table this data can maintained. Could you  pls suggest.
    Thank you,
    Dinesh Reddy.

    Hi,
    See tables EKBE, EKBEH, EKBZ, EKBZH. Among these EKBE is generally used.
    Regards,
    Rajesh

  • Purchase requisition and Purchase order fields in the APO system

    Hi
    I have to develop a report in the APO system for which material id needs to be linked with purchase order and purchase requisition fields. I am not able to locate the table to pick these fields.Please anyone can tell which table,FM or BAPI to use.
    thanks in advance

    You should be able to retrieve the PegID for this particular material/plant combination using /SAPAPO/DM_PEGID_GET_MATERIAL and then using OM LC Get data you should be able to retrieve all the order categories you need for the report.

Maybe you are looking for

  • ITunes match and my household music library

    I'm looking for ideas / tips here, as to what other people do. My family shares the music library on 1 MB Pro. So there are a lot of songs in the music library that 1 person might like, but the rest do not. But I notice that all the music library's s

  • Not able to find 'Sales Summary' of a BP in CIC0 transaction

    Hi, We are using CRM 3.0 vesion and not able to find 'Sales Summary' of a BP in CIC0 transaction. Appriciate any suggests on this. Regards, Fedor.

  • Performance tuning - Hints

    Hi Experts, I am new to oracle database  developer. currently i am leraning the performance tuning. I have a question that is it a good practice to use hint as having using oracle database version 10g. some where i have read and also some Senior memb

  • IMovie Manual

    Is there a Manual for iMovie, where i can learn how to use it from the beginning? Thanks, CA

  • IPhone security issue

    To repost a question asked in another blog, because it is critical to iOS security.  Can't find a good answer. When connecting to a URL via HTTPS and the SSL certificate doesn't match (such as at a paid Wi-Fi hotspot), iOS shows a dialog asking wheth