Shipment cost with authorization check

Dear Expert,
I have a problem about shipment cost, my requirement would like to check authorize by transport planning point
during transaction
VI01
VI02
VI03
VI04
but Standard shipment cost check only "Shipment Cost Type"
there is the user exit to check authorize in stage VI01 VI02 and also in VI03 VI04
or what should I do
Thank you  very much for suggestion

Dear Expert,
I try to activate "Transport planning point" for checking authorize in VI01
also I check authorize object by "ST01"
there is no authorize check about "Transport planning point" (only have shipment cost type)
then i debug on VI01
1. put shipment number
2. debug
3. enter
in this area there is no transport planning point in variable that sent to check authorization
Please Helps me find out this solution
thank you very much

Similar Messages

  • Cost Centre authorization check during PR creation

    Hi all,
    Just want to know whether the standard SAP do check the cost centre authorization during PR creation with account assignment.
    Please note that no user exit is used.
    I am looking at standard system check on the authorization object thru the user profile.
    Thanks.
    Tom

    Hi Steve,
    I found the solution.  The control must be from the authorization object that assigned to the user.
    For example, M_BEST_EKO authorization object.  The display activity "09" (Display Price) should not be assigned to this authorization object. 
    Hence, the user would not be able to see the price info in the standard report.
    Cheers.
    Tom

  • Shipment cost with diff. service agent

    HI,
    I want to calculate shipment cost for a customer. The customer is based at location D. I am transporting  materia; from locationA. From A to B my shipment type is Truck and service agent isX . From B to C my shipment type is Train and service agent is Y. From C to D my shipment type is Bus and service agent is Z.
    service agent  X an Y  are  charging on the basis of KM and Z  the basis of material weigth.
    I want to create  and calulate a shipment document / shipment cost document one each for a service agent.Also, want to combine cost of shipment and the same should get refelect in customer invoice.
    Also, let me know how should i go for automatic leg determination in shipment and about tax in shipment document?

    Hi,
    In bulk transportation and distribution you can assign partners at the following levels:
    Shipment header
    Vehicle
    Shipment stage
    You can assign multiple partners at each of these levels. The shipment costing process uses the partner assignments to calculate and settle costs with service providers (partners).
    Activities
    Partner functions and partner procedures are defined in Customizing for Sales and Distribution by choosing Basic Functions - Partner determination - Define and assign partner determination procedures. You can freely define partner functions, however, the following partner procedures must be used:
    OTR
    Shipment header
    OTS1
    Shipment stage
    OTS2
    Shipment transfer point
    OTS3
    Shipment border
    OTS4
    Shipment vehicle
    Partner Assigned at Shipment Header Level
    Partners used for the entire shipment are assigned at the Shipment Header level. You assign partners to shipments from the Shipment Header screen by choosing Goto - Partner header.
    Partner Assigned at Vehicle Level
    You can assign partners to vehicles within a shipment. For example, the partner could be a carrier responsible for the vehicle. A different partner can be assigned to each vehicle in the shipment. You assign partners to vehicles in the Vehicle Overview screen by choosing Goto(2) - Vehicle partner.
    Alternatively, you can assign carriers to vehicles in the vehicle master data record so that the carrier is automatically proposed for the vehicle in a shipment. This partner is used for all the stages of the vehicle route, if no partner was defined in Customizing for the route or stages.
    Partner Assigned at Stage Level
    You can assign a different partner to each stage in a shipment. The stage type (leg, transfer point, and border crossing point) determines the partner procedure. For example, partner assignment at stage level could be used to represent a customs agent at a border crossing. You can assign partners to stages from the Document Stage Assignment screen by choosing Goto - Maintain stages - Goto(2) - Partner stages.
    If you assign a partner to a route or stage in Customizing, the partner is automatically proposed for the corresponding stages of the route. If the partner is changed in the Vehicle Overview screen, then all partners which are not from Customizing are replaced with the one that was entered in the Vehicle Overview screen. You can assign partners to stages in Customizing for IS-Oil Downstream by choosing TD - TD Master Data - Route Definition - Define routes and stages.
    regards,
    Siddharth.

  • Shipment cost with zero value

    Hi Gurus,
    I need expert advice on issue pertaining to shipment.
    I want to make shipment document but don't want to creat shipment cost document.How these shipment document stauts can be closed without generating shipment cost document and what will be its effect.
    Regards
    Sanjay

    Hi,
    There is no any option to close it,
    But in shipment document you can make it NOT RELEVENT FOR SHIPMENT COST CALCULATION at header level as well as item level(stage level)
    You can do this by T-code T_57
    In this u can seclect your shipment type & double click on shipment cost relevance for shipment types(left), here you remove tick marck from header & leg column which u r using.
    kapil

  • Purchase requisition and cost center authorization check

    Hi all,
    in a R/3 4.7, I need to check the cost center (or profit center) when managing (create/modify/view) purchase requisitions.
    I have not found any auths object which perform this check.
    Any idea ?
    A BADI seems to be he only solution, inserting an authorizaton check.
    Thanks
    Andrea

    Hi
    use the BADI in SE18 Tcode
    ME_REQ_POSTED
    implement this and use
    the Method POSTED has the parameter IM_EBKN which has KOSTL field
    this will work
    see the sample code for this BADI
    BAdI Name: ZPUR_RFQ (Implementation name) Purchase Requisitions
    Definition Name: ME_REQ_POSTED
    Interface Name : IF_EX_ME_REQ_POSTED
    Implementing Class: ZCL_IM_PUR_REQ
    Method :            POSTED
    METHOD if_ex_me_req_posted~posted .
      TYPE-POOLS: pgrt.
      DATA: t_txpdat TYPE STANDARD TABLE OF txpdat.
      DATA: s_txpdat TYPE txpdat.
      DATA: t_ident  TYPE pgrt_t_obj_ident.
      DATA: s_ident  TYPE pgrt_obj_ident.
      DATA: ident_tmp TYPE eketkey.
      DATA: nmrid_init TYPE txpdat-nmrid.
      DATA t_obj_event TYPE pgrt_t_obj_event.
      DATA s_obj_event TYPE pgrt_obj_event.
      DATA t_event     TYPE pgrt_t_event.
      DATA s_event     TYPE pgrt_event.
      DATA change_yes  TYPE c.
        IF l_s_eban-estkz NE 'B'.
          CLEAR v_mtart.
          SELECT SINGLE  mtart INTO v_mtart FROM mara WHERE matnr = l_s_eban-matnr.
          IF v_mtart EQ 'ZERS' OR v_mtart EQ 'FHMI' OR v_mtart EQ 'UNBW'.
            MESSAGE e000(zm_msg) WITH 'You are not allowed' 'to create PR for stock items'.
          ENDIF.
        ENDIF.
        IF  l_s_eban-knttp NE 'F' OR l_s_eban-pstyp NE '9'.
          IF l_s_eban-knttp NE 'A'.
            IF ( l_s_eban-pstyp NE '9' AND l_s_eban-pstyp NE 'D' )  AND l_s_eban-matnr EQ space.
              MESSAGE e000(zm_msg) WITH 'You cannot create' 'a PR without material number'.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMETHOD.
    reward points if useful
    regards
    Anji

  • How to control cost center authorization when do ABSO/ABAA

    Dear :
    As our system organization structure is with mutiple profit center and
    cost centers, in order to avoid processing TCODE ABSO/ABAA with wrong
    input, we want to make authorization check with cost centers, as there
    is no standard authorization check and control in TCODE ABSO/ABSS , we
    want to know how could we realize the requirement
    to control the TCODE with cost center authorization check, thanks in
    advance.

    Hi,
    check SAPNET note 370082 + related notes + 698401 / 565436.
    Best regards, Christian

  • Export Shipment Cost Document / Service Agent

    Dear Gurus,
    My client having Exports, Client is sending goods from shipping Point to Port through Truck, its a direct leg. forwarding agent is one from shipping point to port, but another agent is responsible for the "Clearing and Forwarding agent" activities.
    In my shipment document on upper side i put the forwarding agent who is responsible from shipping point to port, and by default there is only one field of forwarding agent.
    But I have two item category so that can call two procedure in the cost document, one is for cost of truck and second is for clearing cost.
    I can successfully call two line items in the shipment cost with two different procedure, but forwarding agent is one. when i double click on the first line and change the "Invoicing Party" system can accept this but still forwarding agent at header is not change. Means when put the check of transfer and save the document both cost hit the same vendor appear on the shipment document,
    I want that shipment cost to be hit to both first line cost to the main agent (truck), and second line cost is to the "clearing agent" which i put on the shipment cost against the "invoicing party field".
    Hope gurus understand the scenario nad assist me.
    Regards,

    Issue resolved, through partner function functionality.
    Add the partner on the shipment document screen, and same would be call on the shipment costing document.
    Regards,

  • Delivery - Shipment - Shipment cost docs

    Hi experts,
    Hi,
    I created delivery and completed invoicing , when I tried to create shipment doc with VT01N , Its asking for tranportation planing point and shipment type. FYI I have configured routes , legs(Direct leg) and shipment doc types.My question is , is there any way to link delivery document to shipment docu and dhipment cost document?
    Is there any field in delivery type to link with shipment doc ?
    Is there anything to do with copying controls for this?
    what is the T.code to maintain condition records(header and item) for shipment cost document?
    when I created the sales doc , system is automatically picking the route. so is there any other area to configure?
    can anyone help me on these questions
    Thanks,
    Kanna.

    1. Assign delivery to shipment
    You should assign the delivery before GI to the shipment in VT01N. (generally you create the sales invoice after PGI)... However, if you use "C" in total goods movement status field of selection screen when assigning deliveries to the shipment you should be able to do it. So, check your selection criteria.
    2, Transportation relevance
    SPRO > LE > Transportation > Shipments > Transportation Relevance - here you can define for route, delivery type, delivery item the shipment relevance.
    In your delivery you can define blocking reaso for transport (LIKP-TRSPG), please aslo check this.
    3. Delivery type - shipment type
    As I know there's no direct connection between delivery type and shipment type. Please check SPRO before asking.
    4. Copy control
    Why do you ask for copy control? Did you find anything like this in the menu in SPRO? Please first check menu in SPRO before asking.
    5. Condition record for shipment cost document
    Please check SAP easy access menu
    Logistics > LE > Master Data > Transportation > Shipment Cost > Prices (TK11, TK14)
    Regards,
    Csaba

  • Re: Shipment Cost configration and settings

    Hi
    Can any one send me <b>configuration and setting of shipment cost and settlement</b> of shipment cost.
    E mail id: [email protected]
    Points will be rewarded.
    regards
    Prasanna R

    Hi Raju,
    Please find below the complete doc on Shipment Cost:
    Shipment cost in shipping contains create the shipment cost doc., process the shipment, monitor the shipment, calculate the shipment and settle the shipment.
    Shipment cost doc. contains calculate the shipment, assign to accounting, transfer to FI and settle the shipment cost.
    Shipment cost doc. divided into header, item and sub item data.
    We need to assign transportation planning point to com. code to calculate and settle the shipment cost.
    1. Define date rules:- In this IMG activity you define the date rules that determine which dates are chosen for determining the pricing date and the settlement date and the sequence in which they are accessed. The dates can be, for example, the end of transportation planning or the start of lading.
    2. Define and assign tariff zones:-In this IMG activity, you define the tariff zones and assign postal code areas to the tariff zones for each organizational key. The tariff zones are represent geographical influencing factors during the calculation of shipment costs.
    3. Define no. ranges for shipment cost:-In this IMG activity you define the number interval for the shipment cost documents. When creating a shipment cost document, a unique number is generated. The number comes from the number range that you create in this menu point as the internal number range.
    You can also create an external number range. The option to specify a number from the external number range when creating the shipment cost document is, however, not currently supported.
    4. Shipcost types and item cat.:-In this IMG activity, you define the shipment cost types and item categories that contain all important control features for the shipment cost document, such as:
    Number range
    Status requirements for the shipment documents
    Parameters for shipment costing
    Parameters for shipment settlement
    5.shipcost relevance and default for shipcost types:-In this IMG activity you assign the shipment cost types to the shipment types and set an indicator to show whether the cost type is relevant to shipment costing. You do this for every cost type in every shipment type. .
    Example
    For the 'individual shipment' shipment type, you set the indicator for the cost types shipment header and leg, but not for the cost types border crossing or load transfer point. You also assign a shipment cost type to the shipment type. When you create a shipment cost document, this shipment cost type is determined automatically.
    6. Settlement:-
    Certain control elements must be maintained for calculating shipment costs with the transportation service agent and for forwarding of shipment costs to FI and CO.
    you can maintain these control elements and carry out the corresponding assignments.
    -- Assign purchasing data
    --maintain acc. assignment cat.
    --automatic G/L acc. determination
    --automatic determination of CO assignments
    --invoices and credit memos
    A2. Shipment cost:
    The process of calculating the shipment costs for a shipment.
    Shipment costs:
    The total costs involved in the shipment of a product. Not just pure freight costs, but also cleaning costs, insurance, and other costs as well
    check this link
    http://help.sap.com/saphelp_46c/helpdata/en/4f/fceb47b535d1118b3f0060b03ca329/frameset.htm
    and
    http://help.sap.com/saphelp_470/helpdata/en/d5/2285347860ea35e10000009b38f83b/frameset.htm
    A3. Please follow below steps.
    1) Create the transportation planning point for the company codes.
    2) Maintain transp. relevance for the dly doc. type, item cat and routes
    3) Define the shipment types
    4) Define the shipment cost types
    5) Define shipment cost item categories and assign
    6) Define shipment cost relevance
    7) Maintain pricing
    8) Assign purchasing data
    9) OBYC
    10) OKB9
    AND Please check the below:
    Step1: T.Code: VL01N: Just Create Delivery Note here. Do not do the Picking and Packing.
    (This is Client Specific)
    Step 2: T.Code: VT01N: Create Shipment.
    Here mention your Transportation Point and Shipment Type you Configured for this and Click on deliveries ICON.
    GO to W.ref to
    Outbound Delivery : Give your Delivery Number that you created earlier for this shipment and F8( Excute)
    Then Select the Delivery and Click on Overview
    Here Click on Planning then automatically Route( If route determination is done) and Vendor Number get generated and Save the Data.
    Step.3: T.Code: VL02N: Change Delivery. Here give the Delivery no and
    Do picking, Packing (If necessary) and PGI.
    Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • Need complete Configuration steps for creating Shipment & Shipment costs.

    Hi,
    Can anybody explain the Configuration steps in IMG required to create Shipment (T Code - VT01) & Shipment costs (VI01).
    Thanks in advance.
    Manjunath.

    hi
    Route can be determined in sales order with the help of 5 parameters: depart country, shipping conditions in customer master record, transportation group in material master, destination country, and weight group.
    Weight group plays a vital role. The purpose of route determination is like in scenario's where company will ship goods to the customer in various ways not only that it has optional of having n number of routes select the best one & based on his customer priority (time & money.) for sending samples company will go for air, for delivering ordered goods it can go for different mode of transportation & routes.
    Route Determination: Departure country zonedestination country zoneshipping condition+ transportation Group+Weight Group ( Optional)= Route.(0VRF)
    Plant determination in the sales order: System will search first for Customer material Info Record, if it is not maintained there it will check for customer master record, if it is not maintained here also system will search for material master record..
    Configuration part:
    SPRO > Routes&#61664; Basic shipping functions &#61664; Shipping -&#61664;LE -
    Define Routes:
    Define mode of transportation
    Define shipping types.
    Assign shipping types to mode of transportation.
    Define Routes and Stages
    Maintain Stages For All Routes
    Route Determination:
    Define Transportation Zones
    Maintain Country And Transportation Zone For Shipping Point
    Define Transportation Groups
    Define Weight Groups
    Maintain Route Determination in the combination of
    a) Departure country/Departure Zone - maintained in shipping point configuration
    b) Shipping condition from the sales order
    c) Transportation planning group maintained in General/Plant view of material master.
    d) Destination country/Transportation zone maintained in General view -Address of Customer master of Ship to Party.
    SHIPMENT COST:
    Shipment cost in shipping contains create the shipment cost doc., process the shipment, monitor the shipment, calculate the shipment and settle the shipment.
    Shipment cost doc. contains calculate the shipment, assign to accounting, transfer to FI and settle the shipment cost.
    Shipment cost doc. divided into header, item and sub item data.
    We need to assign transportation planning point to com. code to calculate and settle the shipment cost.
    1. Define date rules:- In this IMG activity you define the date rules that determine which dates are chosen for determining the pricing date and the settlement date and the sequence in which they are accessed. The dates can be, for example, the end of transportation planning or the start of lading.
    2. Define and assign tariff zones:-In this IMG activity, you define the tariff zones and assign postal code areas to the tariff zones for each organizational key. The tariff zones are represent geographical influencing factors during the calculation of shipment costs.
    3. Define no. ranges for shipment cost:-In this IMG activity you define the number interval for the shipment cost documents. When creating a shipment cost document, a unique number is generated. The number comes from the number range that you create in this menu point as the internal number range.
    You can also create an external number range. The option to specify a number from the external number range when creating the shipment cost document is, however, not currently supported.
    4. Shipcost types and item cat.:-In this IMG activity, you define the shipment cost types and item categories that contain all important control features for the shipment cost document, such as:
    Number range
    Status requirements for the shipment documents
    Parameters for shipment costing
    Parameters for shipment settlement
    5.shipcost relevance and default for shipcost types:-In this IMG activity you assign the shipment cost types to the shipment types and set an indicator to show whether the cost type is relevant to shipment costing. You do this for every cost type in every shipment type. .
    Example
    For the 'individual shipment' shipment type, you set the indicator for the cost types shipment header and leg, but not for the cost types border crossing or load transfer point. You also assign a shipment cost type to the shipment type. When you create a shipment cost document, this shipment cost type is determined automatically.
    6. Settlement:-
    Certain control elements must be maintained for calculating shipment costs with the transportation service agent and for forwarding of shipment costs to FI and CO.
    you can maintain these control elements and carry out the corresponding assignments.
    -- Assign purchasing data
    --maintain acc. assignment cat.
    --automatic G/L acc. determination
    --automatic determination of CO assignments
    --invoices and credit memos
    The process of calculating the shipment costs for a shipment.
    Shipment costs:
    The total costs involved in the shipment of a product. Not just pure freight costs, but also cleaning costs, insurance, and other costs as well
    check this link
    http://help.sap.com/saphelp_46c/helpdata/en/4f/fceb47b535d1118b3f0060b03ca329/frameset.htm
    and
    http://help.sap.com/saphelp_470/helpdata/en/d5/2285347860ea35e10000009b38f83b/frameset.htm

  • Shipment Cost Estimate

    A Forwarding Agent is used for logistics of materials from point A to B. He is responsible for loading, conveyance and unloading.
    There is a price for the tendered shipment which should not be exceeded by the shipper. The price is fixed by SHIPPER before tendering.
    How do you make configuration for Shipment Cost Estimate calculation ? Please let me know..Its urgent.
    Thanks

    Hi Siddharth,
    Shipment cost in shipping contains create the shipment cost doc., process the shipment, monitor the shipment, calculate the shipment and settle the shipment.
    Shipment cost doc. contains calculate the shipment, assign to accounting, transfer to FI and settle the shipment cost.
    Shipment cost doc. divided into header, item and sub item data.
    We need to assign transportation planning point to com. code to calculate and settle the shipment cost.
    1. Define date rules:- In this IMG activity you define the date rules that determine which dates are chosen for determining the pricing date and the settlement date and the sequence in which they are accessed. The dates can be, for example, the end of transportation planning or the start of lading.
    2. Define and assign tariff zones:-In this IMG activity, you define the tariff zones and assign postal code areas to the tariff zones for each organizational key. The tariff zones are represent geographical influencing factors during the calculation of shipment costs.
    3. Define no. ranges for shipment cost:-In this IMG activity you define the number interval for the shipment cost documents. When creating a shipment cost document, a unique number is generated. The number comes from the number range that you create in this menu point as the internal number range.
    You can also create an external number range. The option to specify a number from the external number range when creating the shipment cost document is, however, not currently supported.
    4. Shipcost types and item cat.:-In this IMG activity, you define the shipment cost types and item categories that contain all important control features for the shipment cost document, such as:
    Number range
    Status requirements for the shipment documents
    Parameters for shipment costing
    Parameters for shipment settlement
    5.shipcost relevance and default for shipcost types:-In this IMG activity you assign the shipment cost types to the shipment types and set an indicator to show whether the cost type is relevant to shipment costing. You do this for every cost type in every shipment type. .
    Example
    For the 'individual shipment' shipment type, you set the indicator for the cost types shipment header and leg, but not for the cost types border crossing or load transfer point. You also assign a shipment cost type to the shipment type. When you create a shipment cost document, this shipment cost type is determined automatically.
    6. Settlement:-
    Certain control elements must be maintained for calculating shipment costs with the transportation service agent and for forwarding of shipment costs to FI and CO.
    you can maintain these control elements and carry out the corresponding assignments.
    -- Assign purchasing data
    --maintain acc. assignment cat.
    --automatic G/L acc. determination
    --automatic determination of CO assignments
    --invoices and credit memos
    A2. Shipment cost:
    The process of calculating the shipment costs for a shipment.
    Shipment costs:
    The total costs involved in the shipment of a product. Not just pure freight costs, but also cleaning costs, insurance, and other costs as well
    check this link
    http://help.sap.com/saphelp_46c/helpdata/en/4f/fceb47b535d1118b3f0060b03ca329/frameset.htm
    and
    http://help.sap.com/saphelp_470/helpdata/en/d5/2285347860ea35e10000009b38f83b/frameset.htm
    Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • Delivery costs:Conditioning GR according to shipment cost document

    Hello all,
    In case I want the delivery costs to come from the shipment cost document, I have to use the correct confirmation control key and the correct condition type in the PO.
    Also, I need to have a relevant shipment cost document so that the system will know from where to take the costs.
    My question is this:
    Is there a way to customize the system so that if no such relevant shipment cost document exists,
    I won't be able to perform GR?
    Please advice.
    Regards,
    Dikla

    Hi Gaurav,
             what exactly your requirement?
    plz specify why you want to relate both the doc's-
    for what purpose?
    Gavrav,
    I have  checked  Table:VFKP
    goto VFKP- enter shipment cost no: XXXXXXXXX
    check the details: External Id1  is nothing but your shipment doc number.
    Bcoz u create shipment cost doc wrt shipment doc number.
    this shipment doc will store in "External ID1" filed in shipment cost doc item level - VFKP table.
    check n confirm
    Edited by: Riyaj on Apr 25, 2008 5:25 PM

  • Do we have some Tcode to delete shipment cost by batch?

    Do we have any Tcode to delete shipment cost by batch? or any other way?
    thank you

    Hi,
    Are you talking about mass shipment cost deletion..Check
    Mass deletion of shipment document
    Also, you can go for LSMW.
    Thanks
    Neha

  • Shipment Cost settlement to multiple vendors

    Hi team,
    When we are calculating shipment cost, with reference to outbound shipments, we have to get the multiple vendors like freight cost settlement to one vendor and insurance will be to the other vendor.
    How do we need to map this requirement? We are using SD route.
    Regards
    Venkat Ramana

    Hi Venkat,
    If different service agents exist in the shipment cost documents, a
    corresponding number of condition lines (with value 0) must be     
    specified in the purchase order item. These can always belong to the
    same condition type (in schema 'Manual') or also to different      
    condition types (not 'Manual'):                                                                               
    a) Manual condition lines: If the condition type in the schema of  
        the purchase order is marked as 'manual', the condition type must
        be created (with value 0) in the purchase order item before the 
        goods receipt. If delivery costs are expected from different 
        service agents, several non-valuated entries must be generated  
        for this condition type. If more condition lines exist than     
        required, these are then no longer taken into account. If       
        condition lines are missing, the last service agents are not    
        settled.                                                        
        - Advantage: You only have to define one condition type for the 
        delivery costs.                                                 
        - Disadvantage: Each purchase order must be processed manually  
        before the goods receipt.                                                                               
    b) Automatic condition lines: If the condition lines are to be     
        generated automatically for the delivery costs (the condition   
        type is not flagged as 'Manual' in the schema), the schema must 
        have enough condition types to settle several service agents. If
        more condition lines exist than required, these are then no     
        longer taken into account. If condition lines are missing, the  
        last service agents are not settled.                            
        - Advantage: The goods receipt can be carried out without manual
        preparation beforehand in the purchase order.                   
        - Disadvantage: You must define identical condition types with different names.
    Regards, David

  • Shipment cost simulation - inbound deliverys

    hey
    is there sap standart soultion to simulate shipment cost with inbound deliverys ?
    BR
    ASA

    Hi,
    please reffer this document.....
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/d055d7d8-e4be-2b10-4786-fb7cc9e3d688&overridelayout=true
    Thanks,
    venkataswamy

Maybe you are looking for

  • Getting the Right Connections

    Lo and behold but what did I get from my daughter and son in law this AM but an Apple TV! I had a bad enough time putting together my AV receiver and HD TV (both made by Sony) and now I am a bit uncertain as to how to connect the Apple TV to my exist

  • How to insert multilingual text

    Problem Statement: Inserting mutilingual text into a table. English, and other languages with the base script of English is perfectly fine. But what if the script is something like Japanese, Chinese, Korean etc?

  • How to manually add custom code snippets to Xcode?

    I have a lot of code snippets made for programming. In the past, when I used MS Visual Studio , I could simply add my own snippets , but in Xcode I can't find where to add custom codes.

  • Calling Apex restful service in android

    Hi frnds i have created apex restful service, now i want to access it in android... So any one can help me how to call restful services using ksoap2.jar

  • How to create authorization for WAD in bw 3.5??

    Hi all, I would like to create a authorization for the WAD(web templates in bw 3.5) i cant find any authorization object for the WEb templates. I have included the Wad in the menus in the PFCG but still it is of no use. Can any one guide me how to ca