Enhancement spot for shipping point in VL10G tcode

Hi All,
we have created enhancement spot for shipping point in VL10G tcode & tested its working fine in foreground(Dialog) but didn't worked in BACKGROUND, its showing error log. 
when we opened this error message its not having any error message in log. its coming blank in error field.
so pls let me know your thoughts, why its happening?
Thanks & Regards
Nagendra / Biswa

hi yogendra,
I have created an enhancement in RV_INVOICE_DOCUMENT_ADD but my code is not getting appeared in debugging mode and  nothing is working. can u please guide me on this.
following the spot where i have written my code
NHANCEMENT-POINT rv_invoice_document_add_14 SPOTS es_saplv60a.
ENHANCEMENT 51  OIC_SAPLV60A.    "active version
BREAK-POINT.
WAIT UP TO 2 SECONDS.
DATA: lv_name TYPE thead-tdname,
         lt_line TYPE STANDARD TABLE OF tline,
         lw_line TYPE tline.
     CLEAR: lv_name , lv_sgtxt.
       lv_name = bkpf-xblnr.
CALL FUNCTION 'READ_TEXT'
     EXPORTING
       id                      = 'A002'
       language                = sy-langu
       name                    = lv_name
       object                  = 'VBBK'
     TABLES
       lines                   = lt_line[]
     EXCEPTIONS
       id                      = 1
       language                = 2
       name                    = 3
       not_found               = 4
       object                  = 5
       reference_check         = 6
       wrong_access_to_archive = 7
       OTHERS                  = 8.
   IF sy-subrc EQ 0.
     READ TABLE lt_line
       INTO lw_line
       INDEX 1.
      REPLACE ALL OCCURRENCES OF '<)>' IN lw_line-tdline WITH space.
     lv_sgtxt = lw_line-tdline.
   ENDIF.
ENHANCEMENT 1  ZNARRATION_UPDATE.    "active version
ENDENHANCEMENT.
Regards
satish

Similar Messages

  • Enhancement spots for ME59N

    Hi All,
    Can any one give an idea to find the suitable enhancement spots for any transaction.
    I am working in ECC 6.0.
    In my case i need to find for ME59N, the program name is RM06BB30, and the requirment is for automatic creation of PO for different Tax Classifications.
    There is an user exit ME590001 which is suitable for this application, but we are instructed to avoid user exits so we have to go for enhancement spots.
    Thanks,
    Rama

    Hi,
       refer
    https://forums.sdn.sap.com/click.jspa?searchID=7035836&messageID=3610819
    Regards

  • Enhancement Spot for MM02 to validate a field

    Hi,
    I want to find a enhancement spot for MM02 to validate a field 'SerialNoProfile' in 'sales: General/Plant view'. can any one help me to find a enhnacement spot.
    Thanks in advance.
    Krishna

    hi
       Check these Exits
               MGA00001            Article Master (Industry): Checks and Enhancements
               MGA00002            Article Master (Industry): Number Assignment
               MGA00003            Article Master (Industry and Retail): Number Display
    thanks,
    nagaraj

  • Enhancement Spot for MM02

    Hi,
    Enhancement Spot for MM02 for disable field in MENU -> MRP Profile -> RMMG1-DISPR .
    Thanks.

    I can't really understand what's your meaning. Maybe u need to deactive this field in MM01, if that's so, u can config from this path  "Logistics - General -> Material Master -> Field Selection".

  • Enhancement spot for PA Infotypes

    Hi,
    I am working in a object where i have to apply checks in infotype PA 759.
    Can anyone tell me the Enhancement spot for this.  I know there is a BADI - HRPAD00INFTY.  But as per project guideline, Enhancement spot should be a priority.  While saving Infotype 0759 Enhancespot spot should get triggered.

    Hi Patrick,
    Thank you very much for your reply.
    But in my project i only have to use Enhancement spot. 
    User exit and BADI are not in our project guideline.
    Kindly suggest any enhancement spot for PA Infotypes

  • BADI/Enhancement spot for VL01N (Outbound Delivery)

    Hi guys,
    while creating outbound deliver it needs to be change the contents of XMKPF (BKTXT), is there any BADI/Enhancement spot for the VL01n.
    Kinldy provide some inputs for this one...which is very helpful to me.
    Regards,
    Vijay

    Hi guys,
    Thanks for your valuable replies.
    special thanks to Kiran Sure because my requirement is full filled by given enhancement spot/badi is LE_SHP_GOODSMOVEMENT
    regards,
    Vijay

  • What is transaction code for shipping point determination

    what is transaction code for shipping point determination in a plant

    Shipping point determination happens based on,
    1. Shipping condition from customer master
    2. Loading group from material master and
    3. Delivering plant.
    You can define all of them in OVL2.
    Thank you
    ANil

  • 'Assignment of list profile for shipping due list'. TCode: VL10CUA

    At VL10C, there is 'User Role' tab. How can I change the value at 'Role' field? Where does assignment of this Role can be done?
    In other words: 'Assignment of list profile for shipping due list'. TCode: VL10CUA
    Thanks in advance.
    Edited by: Hikmet Akcali on Jan 31, 2008 4:36 PM

    hello, friend.
    when you are inside the User Role, click on "Role".  then click on the change mode button (eyeglass/pencil icon).
    select a line item and click on details (magnifying lens icon).  in the next screen, you can check or un-check fields, or select options from drop down menus.
    regards.

  • Getting message No maintenance authorization for shipping point 2001

    Getting message No maintenance authorization for shipping point 2001 when performing goods receipt for a STO with reference to delivery using BAPI BAPI_GOODSMVT_CREATE.
    When same program is executed in program it is working fine.
    We have set the SU24 for the program name as no authorization check.
    For back ground do we neeed to set anything specific.

    Yep. The same also applies to couples of call transactions (see SAP note 358122) - although BAPI's by definition do not and may not check S_TCODE...
    The reason for this is because the checks can be turned off in SU24 against specific transactions. BUt when you schedule a program into a background job, then it does not have a transaction context. You will experience similar behaviour if you execute the program directly from SA38, SE38, etc.
    Generally, you have 3 options:
    - Some functions will expose a "NO_CHECK" or "NO_AUTHORITY" parameter which can be set when calling the function module. Some of them will only let you do it once Others will call themselves again with certain (usually customizable) parameters. You can look for this in the function module documentation, interface and coding.
    - Grant the authority to the user ID, and ensure that this is a SYSTEM type user segregated from the dialog users. It would then have this authority, but by design could not start the transaction directly (even if someone did logon as the user...).
    - If this object is not intended to be used at all for control in your concept, then you can globally deactivate some authorization objects using transaction AUTH_SWITCH_OBJECTS. The object will have no affect in the whole system when the ABAP application coding checks it in an AUTHORITY-CHECK object statement. The return code is always set to 0, and not only selectively...
    You need to be carefull with all 3 options, but they can all three be applied in a secure way.
    Cheers,
    Julius

  • Userexit or enhancement spot for md01

    Hi all,
              I had a requirement where , when I input a plant and background program is running in Transaction MD01it is displaying all the materials with MRP run. But my scenario is I need to display only those materials whose sale order numbers of order type is OR. Is there any userexit or enhancement spot for this?
    Please guide me.
    searched the forum before posting.
    Thanks & regards,
    Murali Krishna. T

    Hi,
    Try these exits:
    Enhancement     SAPMM61X     EXIT_SAPMM61X_001     M61X0001     User exits PP-MRP materials planning     
    Alternative Exits:
    BADI     MM61XF50     MD_INTERACT_PLANNING     MD_INTERACT_PLANNING     BAdI for Deactivating Changeability of MRP Elements
    Enhancement     SAPLATPC-LATPCU02     EXIT_SAPLATPC_002     ATP00001     User Exits in the Availability Check                    
    Thanks,
    AMS

  • Working shifts for shipping points

    Hi,
      We have been trying to define working shifts/ cutoff for shipping points. While scheduling SAP is using the user time zone to calculate the MAD time, GI time etc. I need it to use a specific time zone that I define and not the  time zone of the user processing the document. There is a field for time zone at the point where we allocate the shift definition to the calendar but it is not working. Is there anyway to achieve this ?
    Thanks,
    Hari.

    Thanks for all the replies. I am already using work shifts and getting confirmations down to the minute. But my issue is that the GI,MAD time etc are being calculated according to the time zone of the user processing the document and not in accordance to the plant/shipping point or the time zone that I attached to the time stream . This does not make sense as we may have an intercompany order being created by the buyer who is in a different time zone and the date/time gor GI should be based on the time zone of the shipping point.

  • Implementing work time for shipping points

    Hi,
      I was trying to implement work hours for shipping points and has come across a weird issue. Once I define working shifts , the calculated PGI date is one day early,
    Example:
    Without work shifts for shipping point
    Customer requested date - 08/26/2011
    Route -2 day truck
    No pick pack /loading time
    I get a PGI date of 08/24
    Work shift of 06:00 to 14 :00 hrs defined for shipping point, everything else remains the same:
    I get a PGI date of 08/23 , 14: 00 Hrs.
    The users are not happy with this; does anyone have a clue as to why SAP behaves in this manner and what is the business reason behind this calculation ?
    Thanks,
    Hari.

    HI,
    It basically depends on the working times, shifts and factory calendar.
    If your PGI falls on a Sat or Sun then SAP would calculate the PGI date on the subsequent working day.
    Regards,
    Amit

  • Exit or enhancment spot for custom checks to prevent delivery from VA02

    Hi,
    Requirement is -
    When we click delivery from VA02 tcode.. After sales order is saved (commit ) , I need to check some conditions from XVBAP records and based on my checks I  need raise error message and prevent going into the delivery screen.(user should not be able to access delivery screen from VA02).
    Can anyone tell me what is the best exit or enhancement spot I can use for this?
    Thanks in advance,
    Mohan.

    Hi
    Try to check the routine FCODE_FLI1 in SAPMV45A
    Max

  • Factory calender for Shipping Point

    Dear,
    if we change the Factory calender for Existing shipping point, Can i know what are the provlems will face??
    Thanks in adv.

    You can do this by using tcode:OVXD ( Define Shipping Point) -Initial step to create Shipping Point in Enterprise structure.
    Select your shipping Point & Click on Details button - you will find Factory Calender field.
    It will have impact on following:
    - confirmation dates of Qty(Lead time)
    - Need to check Public holidays.
    - Confirmation Date on sales document items, may get re-calculated as the shipping point may have less/more days now to do backward/forward scheduling
    - If you are on a MTO environment, the start/finish date of the manufacturing order may change, as now you may have more/less days than previously estimated
    -The MRP demand may change, now requesting certain product to be available (material Availability Date) either earlier or later
    -Your "Route" (Transit Time) may be off and if you have any "D" Incoterms that drive revenue recognition at different times after PGI, then they may be off now that the date is different.
    One suggestion. Copy your client to a temporary sand box client, then do the change there and then try to ship some orders on the date that is/was marked as a holiday, also change some sales orders (anything that will re-trigger the scheduling like quantity or delivery date) and take a look not only to the sales document, but to the manufacturing order as well as get the MRP folks to be aware of the impact on their side . Having the compare client, you will be able to see what happen in your production system vs. how it behaves on your new sandbox with the new calendar.
    Hope it can assist you.
    Thanks & Regards
    JP

  • EDI: partner profile for shipping point or plant

    I want to issue idocs for delivery notes based on shipping point or plant, not shipto party as is usual.
    How can I go about this?
    It looks like I need to create a new partner type. Or can I use logical systems?
    If logical system is used, then how do I make the connection document->LS?
    The external system uses the RCVPRN to determine which warehouse to handle the delivery for.
    I am changing the RCVPRN in a user exit now, but this still requires creating/ changing all partner profiles for shipto parties.
    Any ideas? previous experiences?
    Thanks,
    phillip

    Hi Phillip,
    it looks like I need to create a new partner type. Or can I use logical systems?
    > Yes, you can use LS
    If logical system is used, then how do I make the connection document->LS?
    > You can use FM: MASTER_IDOC_DISTRIBUTE to send the outbound IDOC...
    Regards,
    Hendy

Maybe you are looking for