Setting up GST in purchasing

I am trying to set up GST for Singapore to be calculated on a purchase order.  I enter the tax code on the purchase order and get a tax calculation from the tax procedure.  However, I want this calculation to appear in the calculation schema of the purchase order using condition NAVS.  NAVS only seems to include the tax when the account key is NVV.  I want to use account key VST for the Singapore GST so I get the correct accounting entries.  Any help in getting the taxes to be calculated for account key VST in purchase order condition type NAVS?

Hi Jud,
You can have taxes in calculation scema in PO.
Create a condition type for the tax say ZGST and keep the conditon category as taxes.
If you want this condition to be appeared in PO automaticaly then assign an access sequence to this condition type and maintain the values for the condition type in MEK1.
In pricing procedure maintain this condition type and assign the accrual key.
Maintain the same G/L account ( same as VST) in OBYC transaction.
NOTE: If you are maintaining taxes in pricing procedure then do not use the tax code or use the tax code with zero taxes e.g. V0.
This will solve your problem.
Cheers,
Satish Purandare

Similar Messages

  • I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    You need to use the right arrow on the remote to go all the way to the right. The submit button will be highlighted and you can then press select on the remote to proceed.

  • Set deletion indicator in purchase requisition account assignment

    Hi Guys,
    Can you please help we with the solution to set deletion indicator in purchase requisition account assignment or close purchase requisition. A purchase requisition of $3.600.000,00 was created through Project system Network-External Processing and it has 2 duplicate network activities and $2.246.577,20 was converted to purchase order then $1,353,423 became the network remaining order plan. A purchase order service entry sheet was accepted and the invoice was created. Now Iu2019m experiencing problem when Iu2019m trying to change WBS element and Network system status to TECO in order to remove the remaining order plan of $1,353,423. Iu2019m getting error message number:06411 the procedure I have follow to correct the error is to reduce quantities in the account assignment item and delete superfluous account assignment by setting deletion in each case but I cannot do that because the fields are grey
    Regards
    Sandile

    Hi,
    please check first if the report ZMO_CORRECT_EBKN  from note 739004  can correct the problem.
    I would like to recommend you to check also the note 796973 whether the correction is avalilable in your coding, it should solve the issue.
    In case the problem still persists, please open a ticket to get help from the primary support in area MM-SRV.
    Regards,
    Edit

  • HT4914 I have a US iTunes account but no longer have a US credit card for set up, everything I purchase is with apple gift cards, how can I activate match?

    I have a US iTunes account but no longer have a US credit card for set up, everything I purchase is with apple gift cards, how can I activate match?

    You will only be able to use one account at a time with the Apple TV. This will mean that you can only rent or purchase content from one account, you would need to log out and into the other account in order to rent or purchase from that.
    You should however, be able to use content from both accounts in iTunes on your computer, provided that the content from the account that you are not logged into is authorised to be played on that computer. Consequently you should be able to AirPlay content from both accounts to the Apple TV from iTunes or play content from both accounts via the computer section on the Apple TV.

  • Standard/Custom program to set deletion flag for Purchase Requistions

    Hi all,
    If any of you know the Standard/Custom program to set deletion flag for purchase requistions, please let me know. It would be of great help.
    Thanks in advance,
    Karthik

    Hello
    Bapi BAPI_REQUISITION_DELETE will help you.

  • How to show CVD as CENVATABLE (ie with set-off) in Import Purchase Order

    Dear Sir,
    In our existing SAP system , the Import Purchase having CVD are showing CVD as Delivery Cost . However we desire that CVD being CENVATABLE should get reflected with a Set-off  in the similar fashion as  cenvatable EXCISE-DUTY is being shown incase of DOMESTIC Purchase Order .
    We request you to kindly pl guide us about this pl .
    With Regards
    Sonia Agarwal

    Hi friends
    As suggested  in the posted reply , I have done following :
    a) For CVD condition , Maintained accrual as FR3 in pricing procedure
    b) Tick the condition as Statistical
    c) In J1ID maintained Material as Raw-material
    But still , the net value appearing in Purchase Order , includes the CVD .
    Kindly guide us pl .
    Regards
    Sonia Agarwal

  • Set Commodity Code in Purchase order

    hello,
    I have implemented a BADi for purchase order for updating the commodity code/weight and Volume from material configuration.
    It works fine with updating for weight and volume. But when trying to update the Commodity code I got a "time out" because it stops just before the call "CALL Method->Set_foreign_trade".
    Do I miss something???
    See the codes below.
    METHOD if_ex_me_process_po_cust~process_item .
      DATA: ls_mepoitem TYPE mepoitem.
      DATA: it_conf TYPE TABLE OF conf_out.
      DATA: wa_conf TYPE conf_out.
      DATA: gs_zvcsd_conf TYPE zvcsd_conf.
      DATA: im_data TYPE mepoitem.
      DATA: l_data_new  TYPE mepoitem.
      DATA: lv_mtart TYPE mtart.
      DATA: len TYPE i.
      DATA: ls_mepo_eipo TYPE mepo_eipo.
      DATA: ls_mepo_eipo_new TYPE mepo_eipo.
    Get data
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ls_mepoitem = im_item->get_data( ).
    check entry from control table zvcsd_conf
      SELECT SINGLE * FROM zvcsd_conf INTO gs_zvcsd_conf
      WHERE matnr EQ ls_mepoitem-matnr.
      CHECK sy-subrc = 0.
      SELECT SINGLE mtart
      FROM mara
      INTO lv_mtart
      WHERE matnr EQ ls_mepoitem-matnr.
      CHECK lv_mtart EQ  'KMAT'.
      CALL FUNCTION 'VC_I_GET_CONFIGURATION_IBASE'
        EXPORTING
          instance           = ls_mepoitem-cuobj
          language           = sy-langu
        TABLES
          configuration      = it_conf
        EXCEPTIONS
          instance_not_found = 1
          OTHERS             = 2.
      CHECK sy-subrc =  0.
    check weight is set from control table
      IF NOT gs_zvcsd_conf-zweight IS INITIAL.
        READ TABLE it_conf INTO wa_conf WITH KEY atnam = 'VCSD_ZNTGEW'.
        IF sy-subrc = 0.
          len = STRLEN( wa_conf-atwrt ).
          IF len LE 7.
            REPLACE ',' WITH '.' INTO wa_conf-atwrt.
          ELSE.
            REPLACE '.' WITH ' ' INTO wa_conf-atwrt.
            REPLACE ',' WITH '.' INTO wa_conf-atwrt.
            CONDENSE wa_conf-atwrt NO-GAPS.
          ENDIF.
          ls_mepoitem-ntgew = wa_conf-atwrt.
          ls_mepoitem-brgew = wa_conf-atwrt.
        ENDIF.
      ENDIF.
    check volume is set from control table
      IF NOT gs_zvcsd_conf-zvolum IS INITIAL.
        READ TABLE it_conf INTO wa_conf WITH KEY atnam = 'VCSD_ZVOLUM'.
        IF sy-subrc = 0.
          len = STRLEN( wa_conf-atwrt ).
          IF len LE 7.
            REPLACE ',' WITH '.' INTO wa_conf-atwrt.
          ELSE.
            REPLACE '.' WITH ' ' INTO wa_conf-atwrt.
            REPLACE ',' WITH '.' INTO wa_conf-atwrt.
            CONDENSE wa_conf-atwrt NO-GAPS.
          ENDIF.
          ls_mepoitem-volum =  wa_conf-atwrt.
          ls_mepoitem-voleh = gs_zvcsd_conf-voleh.
        ENDIF.
      ENDIF.
    Set weight and volume
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      l_data_new = ls_mepoitem.
      CALL METHOD im_item->set_data( im_data = l_data_new ).
    End of get data
    Get commodity code from configuration
      IF NOT gs_zvcsd_conf-zstawn IS INITIAL.
        READ TABLE it_conf INTO wa_conf WITH KEY atnam = 'VCSD_STAWN'.
        IF sy-subrc = 0.
          ls_mepo_eipo_new-stawn = wa_conf-atwrt.
        ENDIF.
      ENDIF.
    Get foreign trade data
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      CALL METHOD im_item->get_foreign_trade
         RECEIVING
            re_data = ls_mepo_eipo.
      ls_mepo_eipo-po_item = ls_mepoitem-ebelp.
      ls_mepo_eipo-stawn = ls_mepo_eipo_new-stawn.
    set foreign trade
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      CALL METHOD im_item->set_foreign_trade
        EXPORTING
          im_data = ls_mepo_eipo.
    ENDMETHOD.

    hello Christian,
    Thank you for your comments and the quick response.
    I have solved my problem now. I found two sap notes regarding this situation.
    841803 -
    ME_PROCESS_PO_CUST: Endless loop with SET_FOREIGN_TRADE
    803749 -
    ME_PROCESS_PO_CUST - Endless Loop
    I also have found out an other thing. When I'm using the SAP Notes Search and type the key word "SET_FOREIGN_TRADE" and "ME_PROCESS_PO_CUST" I found nothing. Then I try to create a Customer Message and as you already knew that you have to enter a some words in the "Search term*"  before you are allowed to create a customer message. The system shows the note 841803. Strange, rite?
    So my conclusion is, if I can't find any note from SAP Notes Search then I will try to create an customer message.
    Best regards
    Linh Nguyen

  • Legal Requirement to include GST in Purchase Order Output Australia?

    Hello,
    I am currently implementing in Australia and I need to know if it is mandatory to include GST in outputs of purchase orders ?
    If it is, can anyone give me a link to a document that describes that this is a legal requirement for Australia?
    rgds
    GAR

    wouldn't it make sense to ask the people who requested it from you to give a such a document or link?
    Just putting 4 words (purchase order GST australia)  into Google would give a result quicker than posting the question:
    http://www.customs.gov.au/webdata/resources/files/po-term-condition.pdf
    https://www.anz.com/resources/0/b/0b3720804bd5b1629639fec96010cd62/Australia-Purchase-Order-TCs.pdf?MOD=AJPERES

  • Setting for Sending the purchase order via EDI

    Hi,
    I have no knowledge on the Sending the Purchase Order via EDI.
    What is the setting that need to do in MM side?
    Anyone has any idea?

    Hello Janice,
    Please refer the below LINKs which would provide you clear approach for configurational task of sending PO through EDI.
    [LINK|http://help.sap.com/saphelp_46c/helpdata/en/dc/6b7c9f43d711d1893e0000e8323c4f/frameset.htm]
    [LINK 2|http://www.erpgenie.com/sapgenie/docs/advanced_guide_to_edi_configuration.doc]
    Regards,
    SARTHAK

  • Set Default Values on Purchasing Scheduling Agreements

    Good day All.
    I need to ensure that the  Confirmation Control Key(EKPO-BSTAE) , Unlimited Over delivery indicator (EKPO-UEBTK), Creation Profile (EKPO-ABUEB) and Jit indicator (EKPO-FABKZ) is automatically updated with default values when a scheduling agreement is created for a specific purchasing organisation. Please advise if this is possible via config (SPRO). 
    Many thanks, Yumna
    Edited by: Yumna Abrahams on Aug 10, 2011 2:58 PM

    Hi,
    To set default values for screen painter parameters initialize the field names with default values in the PBO module....
    say u have the field name as f_field1....
    in the PBO of that screen initialize it....
    f_field1 = '100'  "here 100 is the default value.
    <b>reward points if useful.</b>
    regards,
    Vinod Samuel.

  • Set Posting block and Purchasing block automatically upon vendor creation

    Hi.
    I have a requirement to automatically set the purchasing block and posting block to 'X' upon creation of vendor master. I have seen a user exit to do this but then I can't seem to find a way to set the SPERM field to 'X'.
    Please help. THanks.

    Transaction FIBF start the event manager.
    on menu: environment->info system (P/S) and then execute: it will be displayed all possible events.
    between event 1410 and 1460, you will find all events about vendor.
    click on documentation, it will tell you when the event is reached and what you can do.
    After you have choose an event, you must create a function module, copying it from the sample function module of the event.
    Once you have created your own funcion module, you should go to:
    FIBF->SETTINGS->P/S MODULES.
    This part of customization is not very clear to me, i've never done by myself. Anyway, here you associate at the businness event the function module you have created.
    Sorry for not beeing exaustive, hope anyway could be help you.
    Regards
    Andrea

  • PS - Set Commitment only for Purchase order

    Hi experts,
    I would like to know if its possible set in the Customizing, the  Commitment just for Purchase Order.
    Because, currently we have fixed Purchase Requisition and Purchase Order.
    Thanks in advance.
    Nacho

    Hi,
    SAP Note:955107 addresses this problem. You may refer the note, but for easy reference, relevant portios of the note are quoted below:
    Quote begins:
    Symptom
    The purchase requisition commitment should not be taken into account in the availability control.
    How can this be achieved?
    Reason and Prerequisites
    This is a customer request.
    It should be possible to enter purchase requisitions with any amount and only the resulting purchase orders should be checked by an availability control.
    Solution
    For Releases 4.6C, 4.70, 5.00 and 6.00 first implement the corrections from Note 955106 if you have not already done this.
    Afterwards proceed as follows.
    1. Create a utility program ZBPFCI21 of the 'Subroutine Pool' type. For the source code of the program refer to the attached correction instruction 488705.
                  Caution: Do not use a different name than ZBPFCI21.
    2. Adjust the source code within the utility program ZBPFCI21 as follows:
                  When the residual order plan should not be included in the assigned value of the availability control, activate the line
                           CLEAR cd_flag_pr_commitment_avac.
                  (That is, delete the sign '*' in front of the line.)
    3. Save and activate the ZBPFCI21 utility program.
    4. Reconstruct the assigned values of the availability control (Transactions KO31 for orders or CJBN for projects).
    Quote ends.
    Kindly acknowledge, if it meets your requirement.
    Muraleedharan.R

  • Invoice Match to be set as PO in Purchase Orders

    In Purchase orders, I need the Invoice Match level to be set as 'PO' for the items defined with 'Receipt Required' as 'NO'. Is it possible?
    If so, please guide.
    Thanks,
    Kaveri

    The invoice match level gets it default from various sources such as Supplier, quote etc.
    You can consider writing a when-validate-record personalization on shipments block that warns the user if the option is not set correctly.
    Hope this helps,
    Sandeep Gandhi

  • HT4623 i am trying to set up an iphone4s purchased on ebay that is supposedly locked into orange i have tried an orange sim but it tells me it is locked with another carrier but does not tell me who how do i find out

    i am trying to set up an iphone 4s purchased on ebay that is supposedly locked into orange i have tried an orange sim to no avail telling me the phone is locked and i need the carriers sim can anyone tell me how i find out who this phone is locked to

    Ask the seller or call Apple Care and give them the serial number. They may be able to tell you.

  • IPod Touch Set Up - Password for Purchases?

    I just bought my daughter an iPod Touch. How can I set up her iPod so that it connects to my iTunes account, but make it so that she cannot make purchases on her own?

    Restrictions are covered in the manual:
    iPod touch User Guide (For iOS 5.0 Software)

Maybe you are looking for