Deleting shipping types

hi
i would like to know how to delete shipping types that have been created on the system. no transactions are up. i try to right click...but it does not give me a delete option..am i missing something?
thanks
prem

Hi Prem,
Absolutely you should not delete anything from the directly using SQL. SAP looks at it as a violation of their support agreement and could be very damaging.
At this time, the B1 solution does not offer the options to DELETE Shipping Types  see note
https://service.sap.com/sap/support/notes/1177985
Suda

Similar Messages

  • Delete Shipping Types

    Hello,
    I have a quick question regarding Shipping Types under Administration\Setup\Inventory.
    I am using 2007A and is there any way that I can delete the existing one?
    I appreciate your help.
    Thank you.

    Hi,
    You may check this: Re: Shipping Types Remove
    Thanks,
    Gordon

  • Remove Shipping Type

    Hi,
    Does anyone know of a way in SBO 2007A PL46 to remove a shipping type?
    I can rename it and use it for something else, but I just want to remove it completely.
    Thanks,
    Michael

    Please check this thread:
    Re: deleting shipping types
    Thanks,
    Gordon

  • Mass change of shipping type

    hi,
    pls advice how to mass change of shipping type in item level, as i cannot find this field in "MASS" function.
    pls advice
    thanks

    hello, friend.
    when you execute VT06, the system lists shipment numbers.  this means you must have created shipments using VT01N. 
    once the shipment has been created, you can change the shipping type by using VT02N or by using VT06.  you can change the shipping type before planning, and after planning as long as the shipment is still open (not completed).  When planning for the shipment has not started you can include or delete deliveries into the shipment.
    try this and post again if you still need help.
    regards.

  • Cannot delete last Deployment Type as it is referenced by a previously deleted Deployment Type

    Hi guys...
    I have previously created dependencies between two (2) separate Application's Deployment Types (DT) as such:
    "DT_A in Application_A" depends on
    "DT_B in Application_B"
    During some test procedures, we have deleted the whole of Application_A (along with all its DTs).
    Now, we are unable to delete DT_B as well as it complains that it is still being referenced by (the already deleted)
    DT_A. Obviously we can't delete Application_B as a whole as it is still complaining that
    DT_B is still being referenced.
    The References tab in
    Application_B still shows that it is still being referenced by Application_A even though searching from the Console as well as Get-CMApplication does not show any more of the deleted
    Application_A
    The last and only Revision in
    Application_B's Revision History cannot be deleted as its Delete button is greyed out.
    However, the View button can be clicked and it shows the historical revision during the time when Application_A still referenced Application_B.
    Any ideas on how we can delete Application_B ? Is deleting Applications and DTs via SQL Query possible ?

    Yup... got it done via Remove-WmiObject...
    1. First, find the offending Application_A still referencing the Application_B
    !!AND MAKING SURE IT IS THE CORRECT ONE!! via:
    Get-Wmiobject -Namespace "root\SMS\Site_PRI" -Class SMS_Application | Where-Object { $_.LocalizedDisplayName -eq "Application_A" }
    2. Once confirmed that it is the correct Application, remove it by piping to Remove-WmiObject via:
    Get-Wmiobject -Namespace "root\SMS\Site_PRI" -Class SMS_Application | Where-Object { $_.LocalizedDisplayName -eq "Application_A" } | Remove-WmiObject
    3. Delete the referenced Application_B as per normal procedure via the SCCM Console:
    Delete Deployments
    Delete Deployment Type(s)
    Delete Revision(s)
    Retire
    Delete Application
    Done.
     

  • Report to find Sales orders with shipping type

    Hi SD Gurues
    Im looking for a report that i can use to search out SO with a sertain Shipping type.
    Our customer center would like to search out all orders going out by SHIP for the next 2 weeks, but there is not an option for this in VL10.
    I wa swondering if there is a standard SAP report that have Shipping type as a selcetion creteria.
    Hope somone can maybe push me in the right direction.
    If there is no standard SAp report for this we will have to use SQ01 or code it our selves.
    Kind regards
    Jens Olsen

    Dear Jens Olsen,
    Go to SE16N give below tables which are relevant for shipping,
    VTTK Shipment header
    VTTP Shipment item
    VTTS Stage in transport
    VTSP Stage in transport per shipment item
    VTPA Shipment partners
    check and revert
    regards
    Ram

  • Powershell to add/delete content type to particular library alone in a site collection

    Hi,
    I am trying to add and delete content type from a particular picture library (site collection) using powershell.
    I have tried the below, but it is not working.
    Below scenarios are not working:
    1) If the content type to be added is there in library, then the loop is still moving to "No content type exists".
    2) Content type is not getting deleted from library
    3) Set the newly added content type as default content type.
    Below is the powershell, which I am trying:
    function ChangeContentType($url)
    $site = Get-SPSite($url);
    $web =$site.RootWeb
    $lookForList = "PicLibrary"
    $lookForCT = "Img1ContentType"
    $lookForRemoveCT = "Image2CT"
    write-host "Checking site:"$web.Title
    #Make sure content types are allowed on the list specified
    $docLibrary = $web.Lists[$lookForList]
    if ($docLibrary -ne $null)
    $docLibrary.ContentTypesEnabled = $true
    $docLibrary.Update()
    if (($web.ContentTypes | where { $web.Name -eq $lookForCT }) -eq $null)
    write-host "No content type exists with the name" $lookForCT "on list" $docLibrary.Title
    #Add site content types to the list
    write-host "Adding content type " $lookForCT "on list" $docLibrary.Title
    $ctToAdd = $web.ContentTypes[$lookForCT]
    $ct = $docLibrary.ContentTypes.Add($ctToAdd)
    write-host "Content type" $ct.Name "added to list" $docLibrary.Title
    $docLibrary.Update();
    else
    write-host "content type exists with the name" $lookForCT "on list" $docLibrary.Title
    #Remove Content type
    if (($web.ContentTypes | where { $web.Name -eq $lookForRemoveCT }) -eq $null)
    write-host "No content type exists with the name" $lookForRemoveCT "on list" $docLibrary.Title
    else
    $ctToRemove = $web.ContentTypes[$lookForRemoveCT]
    write-host "Removing content type" $ctToRemove.Name "from list" $docLibrary.Title
    $docLibrary.ContentTypes.Delete($ctToRemove.Id)
    $docLibrary.Update()
    else
    write-host "The list" $lookForList "does not exist in site" $web.Title
    #Dispose object
    $site.Dispose()
    $web.Dispose()
    How to fix this?
    Thanks

    Hi,
    Thanks for the reply.
    I checked it. If the script is run multiple times, the add and delete content type will throw error.
    How to delete content type? I have tried the below:
    $docLibrary = $web.Lists[$lookForList]
    if ($docLibrary -ne $null)
    $docLibrary.ContentTypesEnabled = $true
    $docLibrary.Update()
    #get the content Type
    Write-host "Getting content type $lookForCT in site $web"
    #Confirm that the content type exists.
    $contentType = $web.ContentTypes | where {$web.ContentTypes.Name -eq $lookForCT}
    ##Abort if not found.
    if ($contentType -eq $null)
    Write-host "$lookForCT not found in site collection."
    else
    if ($web.ContentTypes.Name -eq $lookForCT)
    Write-host $docLibrary.ContentTypes.Name
    if($docLibrary.ContentTypes.Name -eq $lookForCT)
    write-host "Content type $lookForCT is already added to list" $docLibrary.Title
    else
    write-host "No content type exists with the name" $lookForCT "on list" $docLibrary.Title
    write-host "Adding Content Type"
    $ctToAdd = $web.ContentTypes[$lookForCT]
    $ct = $docLibrary.ContentTypes.Add($ctToAdd)
    $docLibrary.Update()
    write-host "Content type" $ct.Name "added to list" $docLibrary.Title
    #get the content Type
    Write-host "Getting content type $lookForRemoveCT in site $web"
    #Confirm that the content type exists.
    $contentType = $web.ContentTypes | where {$web.ContentTypes.Name -eq $lookForRemoveCT}
    ##Abort if not found.
    if ($contentType -eq $null)
    Write-host "$lookForRemoveCT not found in site collection."
    else
    if ($web.ContentTypes.Name -eq $lookForRemoveCT)
    Write-host $docLibrary.ContentTypes.Name
    if($docLibrary.ContentTypes.Name -eq $lookForRemoveCT)
    write-host "Content type $lookForRemoveCT is added to list" $docLibrary.Title.
    write-host "Removing Content type $lookForRemoveCT"
    $ctToRemove = $web.ContentTypes[$lookForRemoveCT]
    $docLibrary.ContentTypes.Delete($ctToRemove.Id)
    $docLibrary.Update()
    else
    write-host "No content type exists with the name" $lookForRemoveCT "on list" $docLibrary.Title
    I am getting error in delete now. Error is "Exception calling "Delete" with "1" argument(s): "Specified argument was out of the range of valid values.
    Parameter name: id"
    Thanks

  • Need Clarification  required for Shipping Type Fields in Transportation

    HI
    I am New to transportation module , i come to know that shipping document is controlled by shipping Type if i am wrong correct me ?
    when i click the shipping Type i have seen so many fields in that few fields i didn't understand few field which i mentioned below
    Service Level , Process control , Leg Indicator, adopt route , Determine Leg , Shipping Type Preliminary leg and sub.leg Shipping point
    I know may be it is a basic question please don't lock the thread and also i searched in the Google
    Difference between stage and leg in shipping & transportation?
    https://wiki.sdn.sap.com/wiki/display/ERPLO/Transportation354
    I tried to understand by using F1 functionality but  i couldn't able to understand clearly .Can anyone  guide me how it is useful in a real time scenarios and where and how it is impact
    Regards,
    Prasanna

    Service Level - You can differentiate the type of shipment like Load, General Cargo, Express Cargo etc.,
    Process Control - Just press F1 and read "Examples"
    Leg Indicator - If the cargo goes directly from origin to destination with one shipment document, then you can assign Direct Leg.  If multiple transportation is involved and in each and every stage, if you want to generate shipment document, then you have to assign Preliminary Leg, Main Leg and Subsequent leg
    Adopt route -  Press F1
    Determine legs - Press F1 and go through Explanation of Leg Determination Procedure  as it is very difficult to explain
    Long time back, I have handled this and hence, not able to give examples against each.  Will think of and update in case anything comes to my mind.
    G. Lakshmipathi

  • Use of field "Shipping type" independent of the route

    Hi colleagues,
    I have a request according to field "shipping type" VSART in the order header (can be entered in the shipping tab).
    The only thread I can find is [this|https://forums.sdn.sap.com/click.jspa?searchID=12663893&messageID=5380384], but its not helpful.
    I have route determination enabled, which is working wonderful.
    But now I want to use the field "shipping type" independent of the route, for additional information in an Idoc.
    If I propose the field with any value the system issues the error "Shipping type xx does not match shipping type xx for route yyyyxx". This is due to the check against the shipping type in the route definition.
    Does somebody know if its possible to disable this cross check to be able to place independent information of the route in the shipping type?
    Thanks in advance.
    Jens

    Hi,
    I have gone into transaction f.01 and am unable to find the component Transaction type in dynamic selections. If however you want to find Transacttion type 120 use transaction SE16n and table ANEKPV add in the transaction types (technical name BWASL) add other parameters example company code, period etc to get the related information.
    Award points if useful.
    Sadie Gajanand

  • How to update Shipping Type(LIKP-VSART) of Delivery order

    Hi all,
    1st, i created a DO by the BAPI : BAPI_DELIVERYPROCESSING_EXEC, but there is no field of Shipping type,
    I want to update the Shipping type of delivery Order, one of a field in the header data of DO(VL03N), refrence the DB field LIKP-VSART. can you give me a BAPI or FM to update this field.
    Thanks a lot.

    Hi,
    I'm also facing the same problem, can any one suggest me how to fix this issue with this BAPI
    BAPI_DELIVERYPROCESSING_EXEC.
    Thanks
    Venkat

  • SHIPPING TYPE

    Hi
    Our Business scenario is to create a Sales Order in CRM 5.0 and replicate
    it to ECC 5.0.
    In CRM sales Order customer needs to enter 'Shipping type' so it can replicate to ERP.
    but as far as there is no 'Shipping type' field in CRM sales Order.
    Please advice on this issue.....
    Do we need to create a new field.
    Thanks

    Hi Nitin,
    I believe CRM supports shipping types only for the Intelectual Property (IP) module. In CRM you can create shipping types via the table CRMC_IPM_SHPTY using SM30.
    But this field is not available in CRM sales order. I think this is supported on CRM contarct transactions, because the route functionality is also required to decide the mode of shipping.
    I think you need to check this functionality on contract how the shipping type is determined. Then you may use this in your sales order processing.
    <b>Do not forget to reward if it helps,</b>
    Regards,
    Paul Kondaveeti

  • Add Shipping Type in AR Invoice in Crystal Report

    Dear Experts,
    I'm designing the layout by Crystal Report. I want to add Shipping Type in AR Invoice. I used the ready format provided in version 8.8. However, there is no Shipping Type in the given format. So, I pulled in the OSHP table and link TrnspCode to OINV's TrnspCode.
    This form works only if I select a shipping type from the drop-down menu in the AR Invoice. If I leave the shipping type empty, this form will generate a blank data.
    Where did I go wrong?

    Hi,
    A question: why do you need leave the shipping type empty?
    Thanks,
    Gordon

  • Table Name For Shipping Type Descriptions

    I am looking for the table name that contains the Shipping type descriptions. When I look in the BP Master at the shipping type and look at the data it gives me a numeric value.
    THanks Jim Dyer

    Hi
    Are you sure about this?
    Shiiping type is coming from Business partner
    It is OCRD table .
    Field name - [ShipType]
    Try running a simple query
    select * from OCRD from query generator or sql .
    Thank you
    Bishal

  • Shipment - Shipping type & Forwarding agent

    Dear All,
    Is it possible to develop the relation ship between forwarding agent and shipping type?
    It means when user select forwarding agent code shipping type should get change in the shipment document or delivery document.
    Regards,
    SmartSD

    Try and use tcode OVTVT_CA - Configuration of Transportation Processing for Forwarding Agent
    Where, you can define the basic settings that are required for transportation planning, and for status and event verification through the forwarding agents. The forwarding agents work with the sender's.
    The following basic settings are possible:
    -Forwarding Agent User Assignment
    -Master Data of Shipment
    -Selection Variants of the Shipment
    -Selection Variants for Delivery
    -Limitation of Available Delivery Selection
    Thanks & Regards
    JP

  • Checking shipping type in ARE 1 Creation

    HI All
    While creating the ARE 1 document, we usually combine 2 or more excise invoices in J1IA101. My requirement is that the system should check for the shipping type also while combining the invoices. Now I think the system is checking whether the customer is same or not.How can i achieve this? Should i use a user exit and if so, which one?
    Thanks in advance
    Regards
    Mathan

    Hi,
    There is no check for shiping, because in are 1 values are captured from u r internal excise number.
    Try to use user exits.
    kapil

Maybe you are looking for