New fright condition

Hi
My client requested to create new condition type for fright
which should be caliculated with percentage of (Basic + ED)
how to create the conditon type
perentage of (Basic + Excise duty)

Hi
You can create any condition type, for example copy the existing condition and save it. And assign the same in caluclation schema.
And in the Calucation schema,define the caluculation of the freight is based on (Basic+ ED)
Regards,
raman

Similar Messages

  • New fright condition type required

    Hi
    My client requested to create new condition type for fright
    which should be caliculated with percentage of (Basic + ED)
    how to create the conditon type

    Hi  Raghuram ,
    U can create a condition record in M/06, Its better to create one by copying and make modifictaions as required.
    You need to assign the new codition in M/08 (calculation scema).
    You have to insert the condition in correct step before net price.
    Cheers
    Arun.

  • Shipment confirmation IDOC interface : update fright condition header level

    iam using the following IDOC type to update the shipment qty and post the PGI on outbound delivery note.
    Message type :: WHSCON
    Process code : IDOC_INPUT_DELVRY
    I will get a freight charge on IDOC but SAP does not provide any standard segment and code to update or inset the fright on the delivery.
    Can you please help me to identity what is the best way to insert the fright condition from IDOC to delivery condition ? any function module available for this?
    also i need to split the delivery bases on the number of items shipped , any unshipped items goes to new delivery.
    it would be grateful if anyone can provide sample code?

    any one can pls provide me .how to update the delivery with fright charge at header level? is there any FM or BAPI to do so?

  • Fright condition type

    Hi all,
    I need help related to fright condition processing.
    IMP: I have created around 10000 Scheduling agreements.
    these documents does not have the fright condition type.
    now i am adding fright condition in all these documents.
    problem:
    1. After Making GR for these condition I can not change value of the condition type.do we have any solution for this?in my case fright value will keep on changing.
    2. Is it possible to create new condition type which will give seperate account while posting GR.also excise will not get calculate on this condition,
    thanking you people in advance
    Regards
    Satish Jadhav

    hi. Ramki,
    How do i check in FI, where the GL account is getting updated with the concerned Freight amount.
    What is the -T-Code for checking the same.
    Why, i am asking is because, i have the same situation, except that , mine is w.r.t to Surcharge.
    As per my earlier configuration, the vendor account was not getting updated with the surcharge amount, only the Surcharge G/L account was getting updated sepearetely.
    I had to pay the vendor minus the Surcharge amount, which was not the whole idea .
    Now I have now re-configured the Pricing Procedure for ZC00 for Surcharge on quantity basis .
    I have given Keys FRE and Accrual keys FR1 for the ZC00 and assigned a seperate GL account for the FR1 acrual key for the surcharge amount.
    When i do MIRO, it  is getting updated with the Surcharge amount in the total amount. Inventory amount credits with xxx and GR/IR a/c debited with xxx.
    How do i check if the surcharge amount is going to the concerned G/L account?
    I tried MR51, it does not figure there.
    Is there any other T-COde where i can see the Surcharge amount being posted to the respective surcharge G/L account which i had assigned earlier.???
    Much appreciated for ur response.
    Mahesh

  • How to avoid user from entering new price condition in return order

    Dear Expert
    We are facing a scenario where we make return order; the Price is copied from the invoice. And it is working perfectly. The system does not allow us to change the price.
    The issue we are facing here is that user can input new condition like discount /premium and change the net value for the return order pricing, and this will reflect in the credit note for returns.
    Is there a way to restrict the user from entering any pricing condition in the header or item conditions tab.
    although we cannot change the original price coming from invoice referenced for return order, but the user can input new price conditions as below. This must not be allowed.
    The price must come according to the Qty being referenced.
    While making the credit for returns, the user has a chance of further making changes to the net value by adding new conditions. Hence this must also be restricted for any changes.
    Thanks
    Edited by: Lakshmipathi on Jan 31, 2012 6:55 PM
    Thread Locked - Reason Cross Post

    okie .... i will tell briefly what is the problem ....
    Take a scenario wherein a user has logged into my application and he is performing a task which will put his user id and his employee id into the session. Then he opens another window by using either ctrl+n or through files->new window.
    So now a new browser will open but the session will be same ..... in this newly opened browser, user performs some operation which will remove the user id and employee id from the session .... Now if he again comes back to the first window and tries to do some operation, then a null pointer exception will be thrown saying that the employee id is null .... because he has deleted that in the newly created browser ..... to avoid this situation what can we do ???? can you please help me in this regard ??? you got my problem right !!!

  • Restrict new price conditions in the return order and credit note

    Dear Expert
    We are facing a scenario where we make return order; the Price is copied from the invoice. And it is working perfectly. The system does not allow us to change the price.
    The issue we are facing here is that user can input new condition like discount /premium and change the net value for the return order pricing, and this will reflect in the credit note for returns.
    Is there a way to restrict the user from entering any pricing condition in the header or item conditions tab.
    although we cannot change the original price coming from invoice referenced for return order, but the user can input new price conditions as below. This must not be allowed.
    The price must come according to the Qty being referenced.
    While making the credit for returns, the user has a chance of further making changes to the net value by adding new conditions. Hence this must also be restricted for any changes.
    Thanks

    Hi
    Firstly,In copy control maintain anyone of the pricing types
    D: Copy pricing elements unchanged
    E: Copy pricing elements and values unchanged
    To avoid all these things go with  USEREXIT_FIELD_MODIFICATION but before going with the user exit,also check with transaction variant SHD0.
    Regards
    Srinath

  • How to insert new service condition in PO using BAPI_PO_CHANGE?

    Hi all,
    I'm trying to insert a new condition under a service line in a PO. This can be seen in ME23N under the services tab of the PO item. Then click on conditions (the button with the dollar and yen symbol).
    I tried using the internal table POCOND and POCONDX. But these tables update the conditions of the PO item itself and not the service conditions. In ME23N this is the conditions tab of the PO item.
                build condition item table
                  wa_conditem-change_id = 'I'.
                  wa_conditem-itm_number   = wa_items-po_item.
                  wa_conditem-cond_type    = c_condtypz.
                  wa_conditem-cond_value   = l_plndisamt.
                  wa_conditem-currency     = l_poheader-currency.
                  APPEND wa_conditem TO it_conditem.
                  CLEAR wa_conditem.
                build condition item change parameter table.
                  wa_conditemx-itm_number    = wa_items-po_item.
                  wa_conditemx-itm_numberx   = 'X'.
                  wa_conditemx-cond_type     = 'X'.
                  wa_conditemx-cond_value    = 'X'.
                  wa_conditemx-currency      = 'X'.
                  wa_conditemx-change_id     = 'X'.
                  APPEND wa_conditemx TO it_conditemx.
                  CLEAR wa_conditemx.
      CALL FUNCTION 'BAPI_PO_CHANGE'
        EXPORTING
          purchaseorder    = wa_ekpo_u-ebeln
        TABLES
          return           = it_return
          poitem           = it_poitem
          poitemx          = it_poitemx
          pocond           = it_conditem
          pocondx          = it_conditemx
        EXCEPTIONS
          OTHERS           = 1.
    I tried using the internal tables POCONDHEADER and POCONDHEADERX but this doesn't seem to insert anything.
    Can anyone guide me how to insert a new service condition?
    thanks,
    Shafiq

    Found a SAP note 499626 quoted below. So it seems that it's not possible to use BAPI_PO_CHANGE.
    "Can I create or change conditions on the service level with BAPI_PO_CREATE1 or BAPI_PO_CHANGE?
    Answer:
    Such a function is currently not available."
    Anybody know any FM to do this?
    Edited by: shafiq shamsuddin on Mar 16, 2011 4:38 AM

  • User exit in sales order to add new item condition

    Hi,
    Our business requirement is to add new item conditions in an order (VA01/VA02) using ABAP coding. Has anyone done this before?
    I'm thinking of using USEREXIT_NEW_PRICING_VBAP in MV45AFZB ?
    Thanks.
    Edited by: William Lawlor on Jul 8, 2008 12:19 PM

    Hi,
    This exit USEREXIT_NEW_PRICING_VBAP in MV45AFZB is used only to determine or not a new price calculation according to a modification of specific field (ex : if shipping condition is changed, then new price determination).
    To add new condition type, you can used requirement in pricing procedure (V/08) with condition formula.
    What is the condition to add this new condition type ?
    Regards,
    Lionel

  • New-CMGlobalCondition unable to create New script Condition using Power Shell

    I am using config Manger 2012 and trying to use power shell cmdlet to create a new Global Condition using PowerShell but its not working for me using this
    Do not understand how to use that command any idea.
    New-CMGlobalCondition -DataType Boolean -DeviceType Windows -FilePath file.ps1 -Name test -ScriptLanguage PowerShell
    Error comes as 
    New-CMGlobalCondition : No object corresponds to the specified parameters.
    At line:1 char:1
    + New-CMGlobalCondition -DataType Boolean -DeviceType Windows -FilePath file.ps1 - ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Microsoft.Confi...onditionCommand:NewGlobalConditionCommand) [New-CMGlobalCondition], I 
       temNotFoundException
        + FullyQualifiedErrorId : ItemNotFound,Microsoft.ConfigurationManagement.Cmdlets.AppModel.Commands.NewGlobalConditionCommand

    Hi,
    What's your version of SCCM? I ran this command line on SCCM 2012 R2 CU2.
    It seems SCCM 2012 R2 CU2 fixed New-CMGlobalCondition cmdlet issue.
    "The New-CMGlobalCondition cmdlet incorrectly requires use of the
    -WhereClause parameter."
    Description of Windows PowerShell changes in Cumulative Update 2 for System Center 2012 R2 Configuration Manager
    Best Regards,
    Joyce

  • New created condition types from CRM to R3

    I have do initial download with DNL_CUST_CNDALL. The condition customizing(pricing procedure, condition type, condition table...) have been downloaded from R3 to CRM.
    In transaction R3AC4(Delta download) two entries for CONDCUSTOMIZING and CONDITIONS exist for delta download of condition customizing and record from R3 to CRM.
    But when I created a newe condition type in R3, it is not automatically transfered to CRM. I also tried use transaction R3AR4 (request) to synchronize object DNL_CUST_CNDALL. But the new created condition type is still not availabe in CRM.
    Could anyone give some help?
    Regards,
    Hui Wang

    I have restart the DNL_CUST_CNDALL, the new created condition type are transfered to CRM. But when I create another new condition type again in R3, it is not transfered.
    Any other advice?
    Thanks!
    > Hi,
    >
    > Do the initial load of DNL_CUST_CNDALL once again.
    > This should help.
    >
    > Best regards,
    > Vikash.

  • How to create new starting conditions for a workflow of shopping cart

    Hi all,
    How to create new starting conditions for a workflow of shopping cart
    SATYA

    Excecute SWB_COND
    Creating New:
    Click on Create button. If you cannot see that it could be a authorization issue
    then Business Object:  BUS2121
    Double Click the event linkage for one step workflow
    Define the expressions, Check Consistency and click on Traansfer
    Start Condition is created. If it is not Active click on the Red Button to make it Active
    Editing Already existing:
    Click on Edit Button If you cannot see that it could be a authorization issue
    then select Business Object:  BUS2121
    Click on the condition part (White area) of the start condtion needing editing
    Change the expressions, Check Consistency) and click on Traansfer.If it is not Active click on the Red Button to make it Active

  • ECS: New Pricing condition for purchase order on item level

    Hello Experts,
    we use SRM 5.0 with the extend classic scenario.
    We customized a new pricing condition (absolute discount), which we want to use in a purchase order and added it to the calculation schema.
    condition type:
    Application     BBP                      
    Source system LOCAL
    Usage           PR
    Condition Type  ZRBT
    Access Seq.     01CT
    Condition class       discount                  
    Calculat. Type    fixed amount
    Condit.category
    Rounding rule  commercial
    manual has priority
    item level
    delete
    amount/percent
    UoM
    Scale Base Type   quantity
    Check stat             none       
    Max. No. Dimens    no scales
    We see the condition type and can choose it in the transaction which is used to create a po.
    But when we choose it from the drop-down box it isn't added to the calculation.
    Regards,
    Sven

    Hello Sven,
    Thank you very much for posting the OSS note solution for your issue.
    I had similar issue and finally was able to resolve it after reading your post.
    regards
    Vinod

  • Fright condition & value sholud appear  in purchase order printout

    Dear Sir,
    I have made a smartform for purchase order , i want to add fright condition in purchase condition , now my client want this condition value should appear in purchase order printout aginst fright condition,
    What setting i have to do in MM confrigartion for doing this , and also what changes should ABAP do in smartform so this condition should appear and its value.
    thanks & regards
    Shailendra

    Hi
    In pricing procedure against this freight condition type select/tick print
    then only abaper can make appear in print
    Functinal speciciation for Abaper need to give as
    1. SE11 - EKKO u2013 contents- PO number, take doc. condition no.
    2. SE11 - KONV u2013 contents -  doc. condition no.
    3. Take condition value against condition type "FREIGHT" & Item no.
    Raju

  • Can't accept new apple condition changes on my iPad Air

    Can't accept new apple condition changes on my iPad Air running 7 1 2 plz help answer me ********
    <E-mail Edited by Host>

    What changes concern your?
     Cheers, Tom

  • New shipping condition and shipping from it

    Hi All,
    I have an question.
    If i create a new shipping condition and assign this in the shipping point determination and add it in the customer master records..will i able to do the shipping?
    Or shall i have to do anything in the transprotation module  like setting up a route determination?
    tell me the complete procedure.
    advance thanks

    hi,
    you can do the shipping
    once you have done new shipping condition and assign this in the shipping point determination and add it in the customer master records
    Reward points if the answer is helpful
    Regards,
    Murali

Maybe you are looking for