TCODE required - Urgent!!!!   (points for Sure)

Hi ALL,
             i created a shipment using BDC. i got a message that shipment created successfully and the shipment number (20168280).
but when i went to VTTK (shipment header), the record doesn't exits.
Can any one tell me what could be the problm? This happens only in Rare cases. I am not able to reproduce this senario again.
When i created another shipment, it created a shipment number (20168281).
Now in VTTK i have (20168279, (20168281).   20168280 is missing,
Is there any TCODE where i can find the reason for rejection of this document(20168280).
Thanks in advance,
Niyaz

you can check for runtime errors that couldve caused this in st22.

Similar Messages

  • SALV Methods ---  ALV GRID functionalities reqd.....points for sure

    Hi all
    I am using <b>factory methods for my alv grid display.</b>
    I have a list of functionalities, for which i am not able to find a correct method..
    1) Header of alv(with all the values of the selection-screen) along with labels
    2)How to give text to a subtotal(ed) column, i.e. if i subtotal a qty field against a sorted field, i want to display ==> Nett Wt. = 123.00 (for first header entry) and so on for each header entry.
    3)how to remove the zeroes from a quantity field?
    4) Displaying the cells as blanks where data is 0( for quantity fields if i have a cell with zero value, it should be blank.)
    5) double click on a cell to open a transaction with the cell's value.
    6) how to have multiple subtotal columns, without disturbing the sort order  of grid display
    Any help on this would be appreciated.
    Points will be rewarded for sure...
    Thanks & Regards
    Ravish Garg

    Hello Ravish
    Regarding the handling of the <u>double-click</u> event have a look at sample report <b>ZUS_SDN_CL_SALV_TABLE_INTERACT</b>.
    *& Report  ZUS_SDN_CL_SALV_TABLE_INTERACT
    REPORT  zus_sdn_cl_salv_table_interact.
    TYPE-POOLS: abap.
    DATA:
      gt_knb1        TYPE STANDARD TABLE OF knb1.
    DATA:
      go_table       TYPE REF TO cl_salv_table,
      go_events      TYPE REF TO cl_salv_events_table.
    *       CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_double_click FOR EVENT
              if_salv_events_actions_table~double_click
              OF cl_salv_events_table
              IMPORTING
                row
                column.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    *       CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_double_click.
    *   define local data
        DATA:
          lo_table   TYPE REF TO cl_salv_table,
          lt_orders  TYPE STANDARD TABLE OF bapiorders,
          ls_knb1    TYPE knb1.
        READ TABLE gt_knb1 INTO ls_knb1 INDEX row.
        IF ( syst-subrc = 0 ).
          CALL FUNCTION 'BAPI_SALESORDER_GETLIST'
            EXPORTING
              customer_number             = ls_knb1-kunnr
              sales_organization          = '1000'
    *         MATERIAL                    =
    *         DOCUMENT_DATE               =
    *         DOCUMENT_DATE_TO            =
    *         PURCHASE_ORDER              =
    *         TRANSACTION_GROUP           = 0
    *         PURCHASE_ORDER_NUMBER       =
    *       IMPORTING
    *         RETURN                      =
            TABLES
              sales_orders                = lt_orders.
    *     Create ALV grid instance
          TRY.
              CALL METHOD cl_salv_table=>factory
    *        EXPORTING
    *          LIST_DISPLAY   = IF_SALV_C_BOOL_SAP=>FALSE
    *          R_CONTAINER    =
    *          CONTAINER_NAME =
                IMPORTING
                  r_salv_table   = lo_table
                CHANGING
                  t_table        = lt_orders.
            CATCH cx_salv_msg .
          ENDTRY.
          lo_table->display( ).
    **      SET PARAMETER ID 'BUK' FIELD ls_knb1-bukrs.
    **      SET PARAMETER ID 'KUN' FIELD ls_knb1-kunnr.
    **      CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
        ENDIF.
      ENDMETHOD.                    "handle_double_click
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT        * FROM  knb1 INTO TABLE gt_knb1
             WHERE  bukrs  = '1000'.
    * Create ALV grid instance
      TRY.
          CALL METHOD cl_salv_table=>factory
    *    EXPORTING
    *      LIST_DISPLAY   = IF_SALV_C_BOOL_SAP=>FALSE
    *      R_CONTAINER    =
    *      CONTAINER_NAME =
            IMPORTING
              r_salv_table   = go_table
            CHANGING
              t_table        = gt_knb1.
        CATCH cx_salv_msg .
      ENDTRY.
    * Create event instance
      go_events = go_table->get_event( ).
    * Set event handler
      SET HANDLER:
        lcl_eventhandler=>handle_double_click FOR go_events.
      go_table->display( ).
    END-OF-SELECTION.
    Regards
      Uwe

  • Error in code - points for sure

    can someone tell me why i am not getting output from the following code
    REPORT YTEST.
    TABLES: MARA,MARC,MARD,MBEW,MVKE,MAKT.
      DATA: BEGIN OF I_MARC OCCURS 0,
              MATNR LIKE MARC-MATNR,
              EKGRP LIKE MARC-EKGRP,
              PSTAT LIKE MARC-PSTAT,
              DISPO LIKE MARC-DISPO,
              BESKZ LIKE MARC-beskz,
            END OF I_MARC.
      DATA: BEGIN OF I_MARD OCCURS 0,
             MATNR LIKE MARD-MATNR,
             LGORT LIKE MARD-LGORT,
             ERSDA LIKE MARD-ERSDA,
             WERKS LIKE MARD-WERKS,
            END OF I_MARD.
      DATA: BEGIN OF I_MBEW OCCURS 0,
             MATNR LIKE MBEW-MATNR,
             BWKEY LIKE MBEW-BWKEY,
             PEINH LIKE MBEW-PEINH,
             END OF I_MBEW.
      DATA: BEGIN OF I_MARA OCCURS 0,
             MATNR LIKE MARA-MATNR,
             MTART LIKE MARA-MTART,
             MATKL LIKE MARA-MATKL,
             MEINS LIKE MARA-MEINS,
             MBRSH LIKE MARA-MBRSH,
             BSTME LIKE MARA-BSTME,
           END OF I_MARA.
      DATA: BEGIN OF I_MVKE OCCURS 0,
             MATNR LIKE MVKE-MATNR,
             VKORG LIKE MVKE-VKORG,
             VTWEG LIKE MVKE-VTWEG,
             VRKME LIKE MVKE-VRKME,
              KONDM LIKE MVKE-KONDM,
            END OF I_MVKE.
      DATA: BEGIN OF I_MAKT OCCURS 0,
             MATNR LIKE MAKT-MATNR,
             SPRAS LIKE MAKT-SPRAS,
             MAKTX LIKE MAKT-MAKTX,
            END OF I_MAKT.
      DATA: BEGIN OF I_OUT OCCURS 0,
              MATNR LIKE MARC-MATNR,
              MEINS LIKE MARA-MEINS,
              MBRSH LIKE MARA-MBRSH,
              MATKL LIKE MARA-MATKL,
              MTART LIKE MARA-MTART,
              BSTME LIKE MARA-BSTME,
              WERKS LIKE MARD-WERKS,
              EKGRP LIKE MARC-EKGRP,
              PSTAT LIKE MARC-PSTAT,
              DISPO LIKE MARC-DISPO,
              BESKZ LIKE MARC-BESKZ,
              LGORT LIKE MARD-LGORT,
              ERSDA LIKE MARD-ERSDA,
              BWKEY LIKE MBEW-BWKEY,
              PEINH LIKE MBEW-PEINH,
              VKORG LIKE MVKE-VKORG,
              VTWEG LIKE MVKE-VTWEG,
              VRKME LIKE MVKE-VRKME,
              KONDM LIKE MVKE-KONDM,
              SPRAS LIKE MAKT-SPRAS,
              MAKTX LIKE MAKT-MAKTX,
            END OF I_OUT.
    select-options: s_matnr for marc-matnr.
      SELECT MATNR EKGRP PSTAT DISPO BESKZ FROM MARC INTO
      CORRESPONDING FIELDS OF TABLE I_MARC where matnr = 38.
      SELECT MATNR MTART MATKL MEINS MBRSH BSTME FROM MARA INTO
      CORRESPONDING FIELDS OF
      TABLE I_MARA FOR ALL ENTRIES IN I_MARC
                WHERE MATNR EQ I_MARC-MATNR.
      SELECT MATNR SPRAS MAKTX FROM MAKT INTO
      CORRESPONDING FIELDS OF TABLE I_MAKT
                 FOR ALL ENTRIES IN I_MARC
                WHERE MATNR = I_MARC-MATNR.
      SELECT MATNR LGORT ERSDA WERKS FROM MARD INTO
      CORRESPONDING FIELDS OF TABLE
                I_MARD FOR ALL ENTRIES IN I_MAKT
                WHERE MATNR = I_MAKT-MATNR.
      SELECT MATNR BWKEY PEINH FROM MBEW INTO
    TABLE I_MBEW
           FOR ALL ENTRIES IN I_MARD
               WHERE MATNR = I_MARD-MATNR.
      SELECT MATNR VKORG VTWEG VRKME KONDM FROM MVKE INTO
    TABLE I_MVKE
                FOR ALL ENTRIES IN I_MBEW
               WHERE MATNR = I_MBEW-MATNR.
      LOOP AT I_MARC.
        MOVE I_MARC-MATNR TO I_OUT-MATNR.
        MOVE I_MARC-EKGRP TO I_OUT-EKGRP.
        MOVE I_MARC-PSTAT TO I_OUT-PSTAT.
        MOVE I_MARC-DISPO TO I_OUT-DISPO.
        MOVE I_MARC-BESKZ TO I_OUT-BESKZ.
        READ TABLE I_MARA WITH KEY MATNR = I_MARC-MATNR.
        MOVE I_MARA-MTART TO I_OUT-MTART.
        MOVE I_MARA-MBRSH TO I_OUT-MBRSH.
        MOVE I_MARA-MEINS TO I_OUT-MEINS.
        MOVE I_MARA-MATKL TO I_OUT-MATKL.
        MOVE I_MARA-BSTME TO I_OUT-BSTME.
        READ TABLE I_MAKT WITH KEY MATNR = I_MARC-MATNR.
        MOVE I_MAKT-SPRAS TO I_OUT-SPRAS.
        MOVE I_MAKT-MAKTX TO I_OUT-MAKTX.
        READ TABLE I_MARD WITH KEY MATNR = I_MARC-MATNR.
        MOVE I_MARD-LGORT TO I_OUT-LGORT.
        MOVE I_MARD-ERSDA TO I_OUT-ERSDA.
        MOVE I_MARD-WERKS TO I_OUT-WERKS.
        READ TABLE I_MBEW WITH KEY MATNR = I_MARC-MATNR.
        MOVE I_MBEW-BWKEY TO I_OUT-BWKEY.
        MOVE I_MBEW-PEINH TO I_OUT-PEINH.
        READ TABLE I_MVKE WITH KEY MATNR = I_MARC-MATNR.
        MOVE I_MVKE-VKORG TO I_OUT-VKORG.
        MOVE I_MVKE-VTWEG TO I_OUT-VTWEG.
        MOVE I_MVKE-VRKME TO I_OUT-VRKME.
        MOVE I_MVKE-KONDM TO I_OUT-KONDM.
        APPEND I_OUT.
        CLEAR I_OUT.
      ENDLOOP.
    write:/ i_out-MATNR,
    i_out-EKGRP,
    i_out-PSTAT,
    i_out-DISPO,
    i_out-BESKZ,
    i_out-LGORT,
    i_out-ERSDA ,
    i_out-WERKS,
    i_out-BWKEY,
    i_out-PEINH,
    i_out-MTART,
    i_out-MATKL,
    i_out-MEINS,
    i_out-MBRSH,
    i_out-BSTME,
    i_out-VKORG,
    i_out-VTWEG,
    i_out-VRKME,
    i_out-KONDM,
    i_out-SPRAS,
    i_out-MAKTX.
    regards,
    sriram

    Hi Sriram
    Please check the below code and make sure you have some data for material number 38 in your MARC table.
    REPORT YTEST.
    TABLES: MARA,MARC,MARD,MBEW,MVKE,MAKT.
    DATA: BEGIN OF I_MARC OCCURS 0,
    MATNR LIKE MARC-MATNR,
    EKGRP LIKE MARC-EKGRP,
    PSTAT LIKE MARC-PSTAT,
    DISPO LIKE MARC-DISPO,
    BESKZ LIKE MARC-beskz,
    END OF I_MARC.
    DATA: BEGIN OF I_MARD OCCURS 0,
    MATNR LIKE MARD-MATNR,
    LGORT LIKE MARD-LGORT,
    ERSDA LIKE MARD-ERSDA,
    WERKS LIKE MARD-WERKS,
    END OF I_MARD.
    DATA: BEGIN OF I_MBEW OCCURS 0,
    MATNR LIKE MBEW-MATNR,
    BWKEY LIKE MBEW-BWKEY,
    PEINH LIKE MBEW-PEINH,
    END OF I_MBEW.
    DATA: BEGIN OF I_MARA OCCURS 0,
    MATNR LIKE MARA-MATNR,
    MTART LIKE MARA-MTART,
    MATKL LIKE MARA-MATKL,
    MEINS LIKE MARA-MEINS,
    MBRSH LIKE MARA-MBRSH,
    BSTME LIKE MARA-BSTME,
    END OF I_MARA.
    DATA: BEGIN OF I_MVKE OCCURS 0,
    MATNR LIKE MVKE-MATNR,
    VKORG LIKE MVKE-VKORG,
    VTWEG LIKE MVKE-VTWEG,
    VRKME LIKE MVKE-VRKME,
    KONDM LIKE MVKE-KONDM,
    END OF I_MVKE.
    DATA: BEGIN OF I_MAKT OCCURS 0,
    MATNR LIKE MAKT-MATNR,
    SPRAS LIKE MAKT-SPRAS,
    MAKTX LIKE MAKT-MAKTX,
    END OF I_MAKT.
    DATA: BEGIN OF I_OUT OCCURS 0,
    MATNR LIKE MARC-MATNR,
    MEINS LIKE MARA-MEINS,
    MBRSH LIKE MARA-MBRSH,
    MATKL LIKE MARA-MATKL,
    MTART LIKE MARA-MTART,
    BSTME LIKE MARA-BSTME,
    WERKS LIKE MARD-WERKS,
    EKGRP LIKE MARC-EKGRP,
    PSTAT LIKE MARC-PSTAT,
    DISPO LIKE MARC-DISPO,
    BESKZ LIKE MARC-BESKZ,
    LGORT LIKE MARD-LGORT,
    ERSDA LIKE MARD-ERSDA,
    BWKEY LIKE MBEW-BWKEY,
    PEINH LIKE MBEW-PEINH,
    VKORG LIKE MVKE-VKORG,
    VTWEG LIKE MVKE-VTWEG,
    VRKME LIKE MVKE-VRKME,
    KONDM LIKE MVKE-KONDM,
    SPRAS LIKE MAKT-SPRAS,
    MAKTX LIKE MAKT-MAKTX,
    END OF I_OUT.
    select-options: s_matnr for marc-matnr.
    SELECT MATNR EKGRP PSTAT DISPO BESKZ FROM MARC INTO
    CORRESPONDING FIELDS OF TABLE I_MARC where matnr = '000000000000000038'.
    SELECT MATNR MTART MATKL MEINS MBRSH BSTME FROM MARA INTO
    CORRESPONDING FIELDS OF
    TABLE I_MARA FOR ALL ENTRIES IN I_MARC
    WHERE MATNR EQ I_MARC-MATNR.
    SELECT MATNR SPRAS MAKTX FROM MAKT INTO
    CORRESPONDING FIELDS OF TABLE I_MAKT
    FOR ALL ENTRIES IN I_MARC
    WHERE MATNR = I_MARC-MATNR.
    SELECT MATNR LGORT ERSDA WERKS FROM MARD INTO
    CORRESPONDING FIELDS OF TABLE
    I_MARD FOR ALL ENTRIES IN I_MAKT
    WHERE MATNR = I_MAKT-MATNR.
    SELECT MATNR BWKEY PEINH FROM MBEW INTO
    TABLE I_MBEW
    FOR ALL ENTRIES IN I_MARD
    WHERE MATNR = I_MARD-MATNR.
    SELECT MATNR VKORG VTWEG VRKME KONDM FROM MVKE INTO
    TABLE I_MVKE
    FOR ALL ENTRIES IN I_MBEW
    WHERE MATNR = I_MBEW-MATNR.
    LOOP AT I_MARC.
    MOVE I_MARC-MATNR TO I_OUT-MATNR.
    MOVE I_MARC-EKGRP TO I_OUT-EKGRP.
    MOVE I_MARC-PSTAT TO I_OUT-PSTAT.
    MOVE I_MARC-DISPO TO I_OUT-DISPO.
    MOVE I_MARC-BESKZ TO I_OUT-BESKZ.
    READ TABLE I_MARA WITH KEY MATNR = I_MARC-MATNR.
    MOVE I_MARA-MTART TO I_OUT-MTART.
    MOVE I_MARA-MBRSH TO I_OUT-MBRSH.
    MOVE I_MARA-MEINS TO I_OUT-MEINS.
    MOVE I_MARA-MATKL TO I_OUT-MATKL.
    MOVE I_MARA-BSTME TO I_OUT-BSTME.
    READ TABLE I_MAKT WITH KEY MATNR = I_MARC-MATNR.
    MOVE I_MAKT-SPRAS TO I_OUT-SPRAS.
    MOVE I_MAKT-MAKTX TO I_OUT-MAKTX.
    READ TABLE I_MARD WITH KEY MATNR = I_MARC-MATNR.
    MOVE I_MARD-LGORT TO I_OUT-LGORT.
    MOVE I_MARD-ERSDA TO I_OUT-ERSDA.
    MOVE I_MARD-WERKS TO I_OUT-WERKS.
    READ TABLE I_MBEW WITH KEY MATNR = I_MARC-MATNR.
    MOVE I_MBEW-BWKEY TO I_OUT-BWKEY.
    MOVE I_MBEW-PEINH TO I_OUT-PEINH.
    READ TABLE I_MVKE WITH KEY MATNR = I_MARC-MATNR.
    MOVE I_MVKE-VKORG TO I_OUT-VKORG.
    MOVE I_MVKE-VTWEG TO I_OUT-VTWEG.
    MOVE I_MVKE-VRKME TO I_OUT-VRKME.
    MOVE I_MVKE-KONDM TO I_OUT-KONDM.
    APPEND I_OUT.
    CLEAR I_OUT.
    ENDLOOP.
    Loop at i_out.
    write:/ i_out-MATNR,
    i_out-EKGRP,
    i_out-PSTAT,
    i_out-DISPO,
    i_out-BESKZ,
    i_out-LGORT,
    i_out-ERSDA ,
    i_out-WERKS,
    i_out-BWKEY,
    i_out-PEINH,
    i_out-MTART,
    i_out-MATKL,
    i_out-MEINS,
    i_out-MBRSH,
    i_out-BSTME,
    i_out-VKORG,
    i_out-VTWEG,
    i_out-VRKME,
    i_out-KONDM,
    i_out-SPRAS,
    i_out-MAKTX.
    endloop.
    Reward points if useful!!
    ~Ranganath

  • E-mail Setting Up - Require Urgent Help for BlackBerry 9380

    Hi guys.
    I've bought a BlackBerry 9380 and everything seems to be working except for setting up my emails.
    Everything I read says: Go to 'Settings' then 'Email Setup', but I do not have email set up in my settings, I only have an option that says 'Email Accounts', which for the BB9380 I'm sure you have to do.
    However, everytime I click it, it says 'Connecting to email settings...' and after a couple of minutes it will say: 'Your device had a problem connecting to the server.' And everytime I click retry, the same thing occurs. All my wireless settings are on, my signal's good etc, but I can't find how to sort this anywhere.
    All I want to do is add m hotmail email address to my BlackBerry so the emails come straight through to my phone.
    Please help!!!
    Thanks you.
    P.S, I've already tried the whole 'Pull you battery out and reload thing' etc

    hi psatkeson,
    As you said you already have a active data plan and using BBM right. On your Home screen Go to Manage
    Connection > Service Status >What you can see :Blackberry Internet Service  : ? ,Blackberry Enterprise
    Server :  ?
    Do let us know.. 
    Good Luck.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • E-mail Setting Up - Require Urgent Help for BlackBerry 9380 Options

    Hi guys.
    I've bought a BlackBerry 9380 and everything seems to be working except for setting up my emails.
    Everything I read says: Go to 'Settings' then 'Email Setup', but I do not have email set up in my settings, I only have an option that says 'Email Accounts', which for the BB9380 I'm sure you have to do.
    However, everytime I click it, it says 'Connecting to email settings...' and after a couple of minutes it will say: 'Your device had a problem connecting to the server.' And everytime I click retry, the same thing occurs. All my wireless settings are on, my signal's good etc, but I can't find how to sort this anywhere.
    All I want to do is add m hotmail email address to my BlackBerry so the emails come straight through to my phone.
    Please help!!!
    Thanks you.

    Hi there,
    Can you confirm that you are on a BlackBerry data plan? In order to use email on your BlackBerry, you need access to the BlackBerry data network. If you are sure that you have a BlackBerry data plan (e.g. if you're able to use services like BBM), then try doing the following:
    1. Go to Options > Device > Advanced System Settings > Host Routing Table and then press the BB Menu button and select Register now. You should get a message in your Inbox stating that your device is now registered on the BlackBerry network.
    2. Try to go to Setup > Email Accounts again. Are you now able to access the email setup?
    If you don't get the message stating that your device is registered on the BlackBerry network, you need to contact your carrier and ask them to ensure that they have set up your BlackBerry data plan correctly. I've had that happen before and once they changed my data package over, everything started working correctly.
    I hope this info helps!
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • Help required urgently

    Hi Friends,
    Whenever i am creating a message from crmd_order tcode transaction type is SLFN the start end date is same for all priorities.
    My client req is such that the dates should appear according priority message field.
    Can anyone guide through the solution step by step procedure or share any doc on
    [email protected]
    i will reward point for sure.

    first try to look at the code samples. I think you will find answers to a lot of your questions.

  • Infotype Log                           Points are sure for any hints . :)

    Hi
    In my company some one delete the 90* infotype from PM01 now can i know who (which id)
    is deleted and when .
    Please it is bit urgent.
    Prash.
    <b>Points are sure for any hints .</b><b></b>

    Hi,
    You can use the Audit trace, like STAT, to trace who made the changes. This report may help you, RPUAUD00.
    Good Luck.
    Om.

  • URGENTLY REQUIRE A CODE FOR FOLLOWING--WOULD BE GREAT HELP

    HOW TO VALIDATE XML FILE USING SAX PARSER WITH SCHEMAS like .XSD FILES

    Mankjas wrote:
    URGENTLY REQUIRE A CODE FOR FOLLOWING--WOULD BE GREAT HELPNo, it wouldn't be a great help, as the next time you needed to do something like this you'd still be lost.
    And no one here is just simply going to give you code anyway. We'll help you correct yours, and give you advice and tips, but we are not going to do your work for you. And urgent it is not, not to us. And your insisting that it is, is rude. We definately are not going to drop everything we might be doing to "help" you, especially when your essentially demanding that we do your work for you, with no effort on your part, besides.

  • HT1725 I have been trying to purchase points for a slot machine game using my itunes card. It has subtracted all the $$$$ off the card but I never got the points. Not sure what I am doing wrong. Have restarted the ipad and still nothing.

    I have been trying to purchase points for a slot machine game using my iTunes gift card. It subtracted the right about of $$$ but never gave me my points....not sure what I am doing wrong.
    Any help will be appreciated!

    Contact iTune Support
    https://ssl.apple.com/emea/support/itunes/contact.html

  • Configuring shipping point as Trigger point for posting outbound idoc

    Hello All,
    I have a requirement that on saving an Outbound Delivery(VL02N), an Outbound Idoc should be posted...but the condtion for posting the idoc should be its shipping point. I am not sure how to configure shipping point as the trigger point for the idoc.
    Please suggest.
    Thanks for your co-operation.
    Regards
    Anand

    Hi Anand,
    1. Go to transaction: NACE & select application V2 and click on output types.
    2. change display <->Change mode.
    3. select LAVA and press F6 (to copy Standard output type LAVA to ZLAV).
    4. Give ur Z name for the new custom output type.
    5. change access sequence from 0005 to 0012(shipping point).
    6. Press ENTER and click copy all.
    7. Now goto trasaction VV21, give the created output type name. ENTER
    8. Maintain entries, shipping point, customer#, Medium as '6' ...etc
    Now try VL01N with the given shipping point and check the output ZLAV has been triggered or not?
    Let's see, if we miss any configs still!
    Keep this as reference:
    http://www.erpgenie.com/sapedi/messagecontrol.htm
    Reddy

  • Change pointer for HR master data is not getting generated in table BDCP

    Hi,
    I have done all the required configuration for change pointer for HR master Distribution and it was working fine few days back. Now suddnly it has stopped working.
    Can anyone assist me on how should i debug it.
    Thanks
    Sunil Singh

    Hi Shital,
    Thanks for your Reply.
    I am not able to find that path in SPRO
    Basic Functions-> application Area
    And Also My change pointer configuration was working properly and it suddenly stopped working.
    I mean to say all the required settings was done previously.
    Anyways kindly let me know how should i proceed.
    Thanks
    Sunil Singh

  • Double Points for New Games?

    I've been a Gamer's Club member for nearly a year now, and I've never seen the double points for any of my gaming purchases.  Is there something else that I need to do to 'activate' this promotion, or is it just a glitch?
    Do double points only happen when you purchase games for your 'preferred' system?

    Hi house1548,
    I'm very sorry to hear that our Gamers Club has only been half as awesome as it should have been for you since joining.  I can imagine this has been a surprise to learn, and I want to get to the bottom of it with you!
    I have reviewed your account, and everything appears to be in order, so I am not sure what may be causing the discrepancy.  I have reached out to our partners on the My Best Buy team for further research, and as soon as I have more information for you I will let you know via a private message.
    Thank you for being a My Best Buy member, and thank you for visiting our forum.
    Best regards,
    Mike|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Can I use this as a wireless access point for my network

    can I use this as a wireless access point for my network

    umm... use what?
    A Time Capsule? Sure. It's just like many other wireless base stations. It can run in either bridge or route mode - in bridge mode it's just like an access point linking the wired and wireless networks together.

  • REquirement not generated for component of Phantom Item

    Dear Gurus,
    We have a scenario where A,B,C and D are part of multilevel BOM. A is finshed product. B and C are phantoms. D is RM.
    A is level 1, B level 2and C level 3. D is component of C.
    After MRP run, we found that requirement is generated for Material A. However, corresponsing requirement of material D is not generated. Could you please suggest what can be the problem ?

    Hi
    The parameters maintained by you are more or less OK.
    Your issue is : you are not getting requirements for the part for which you have maintained manual reorder point.
    It seems you have run MD02.
    If you run MD02 requirements for the component with reorder point will not be geneated because it is consumption based planning& it is not requirment based planning.
    For getting rquirement for that either you have to run single item single levelMD03 or total planning for the plant.
    This is std SAP functionality.
    Hope it is clear to you.
    Regards
    YMREDDY

  • Urgent,need for code in bdc for co02

    hi all,
    im in urgent need of code for developing bdc tcode co02.
    Thanks for your help..

    1. Please record the transaction which you need to change the data in Co02 (Shop Order/Prod. Order)
    2. Create BDC program as normally you do it for normal BDC programs..
    Smaple Code with Recording.
    clear: bdcdata,messtab.
      perform bdc_dynpro using: 'SAPLCOKO1' '0110'.
      perform bdc_field using: 'CAUFVD-AUFNR' t_aufk-aufnr.
      perform bdc_field using: 'R62CLORD-FLG_OVIEW' 'X'.
      perform bdc_field using: 'BDC_OKCODE' '/00'.
      perform bdc_dynpro using: 'SAPLCOKO1' '0115'.
      perform bdc_field using: 'BDC_SUBSCR' 'SAPLCOKO1'.
      perform bdc_field using: 'BDC_OKCODE' '=KOWE'.
      perform bdc_dynpro using: 'SAPLCOKO1' '0115'.
      perform bdc_field using: 'BDC_SUBSCR' 'SAPLCOKO1'.
      perform bdc_field using: 'BDC_CURSOR' 'AFPOD-INSMK'.
       perform bdc_field using: 'AFPOD-INSMK' 'S'.
      perform bdc_field using: 'BDC_OKCODE' '=BU'.
      call transaction 'CO02' using bdcdata mode 'A'
                                            update 'S'
                                            messages into messtab.
    Thanks,

Maybe you are looking for