Regarding Tcode VA01

Hi,
     I have a requirement in VA01 Tcode. I enter a sold-to-party value if it is blocked means knkk-crblb value is X it is giving message" Order receipt/delivery not possible, credit customer blocked" , instead of this message i have to display a popup. But this message is coming from the standard Function module "SD_ORDER_CREDIT_CHECK" in the perform "PERFORM credit_check_general USING rc sv_ukm_erp2005". After credit check directly it is displaying a message. I am trying the create a Enhancement point there but there is no implicit enhancement point there.
   If u have something on this, can u please send.
Thanks in advance,
Sreekala.

Hi Sreekala,
Try using this hope this works
DATA: IT_MSG TYPE STANDARD TABLE OF BAPIRET2 INITIAL SIZE 0.
it_msg = msg_tab.
*check for whihc message you want to change from Error to Info.
Loop at msg_tab where messag number =....
Modify ...... transporting type
endloop.
msg_tab = it_msg.
Regards,
Amit Teja

Similar Messages

  • How to add new tab after reason for rejection tab using tcode va01

    Hello,
    how to add new tab after reason for rejection tab using tcode va01.

    Hi,
    You can check this link...
    Hope it will be helpful to you.
    [https://forums.sdn.sap.com/click.jspa?searchID=23016273&messageID=6825861]
    [http://www.sapdevelopment.co.uk/enhance/fexits.htm]
    -Maharshi
    Edited by: Maharshi Vyas on Mar 3, 2009 12:45 PM

  • How to restrict the order reason in Tcode Va01 while creating sales order

    Hi Gurus,
    My requirement is
    while creating sales order in VA01
    if order type is Zvol
    than the list of order reasons has to be restricted.
    Now 15 are coming from OVAU  tcode
    I need only 5 from these.
    Thanks & Reagrds
    kals.

    Hi,
    By doing the user exit in IW32 we achieved the requirement of restriction of maintenance order TECO functionality if any Service Entry sheet pending with reference of maintneance order.
    regards
    JKM

  • How to restrict  tcode va01/va02/va03 for a particular role

    hi ,
    I have a requirement . I need to restric user fro VA01/VA02/VA03 if the user has role and Sales order customer group is related to a particular group .
    Do we have a Function module to get a role for a user  or can we write a code as authorization level or do we need to write it as user exits of va01/va02/va03 .
    Regards ,
    Prakash

    hi All ,
    My issue is I need to restrict the tcodes for a particular customer group is there in the sales order , that means it is order specific and I already know for which roles it is to be checked .
    Now can  we write any check in pfcg tcode so that we can check at particular group or need to handle at user exit level .
    Thanks in advance .
    prakash

  • Standard Tcode : VA01 is going for Dump

    Hi all,
      While creating sales order in VA01,  the screen number 4003 having arrow Buttons Shift + f5 , Shift + f6 , Shift + f7 , and Shift + f8. If i am pressing that it is going for dump can any body help me why it is going for dump in ECC 6.0 . But it wont happend in 4.5B. Can any body help me in this problem.
    Thanka & Regards,
    Rajasekhar.

    What is the error from the dump?
    Rob

  • Storage location value in Tcode VA01

    Hello experts,
                           I have done the enhancement for 'VA01'. According to my requirement i have to give some values to storage location for a particular order type.
    e.g if my order type is 'zwxl' my storage location should be '0001'.
    i am writing the enhancement code in program name SAPFV45P in that in include FV45PF0V_VBAP-POSNR_FUELLEN.
    the part of code is :
    IF vbak-auart = 'ZWMF'.
        vbap-lgort = '0007'.
        ELSEIF
          vbak-auart = 'ZSDR'.
          vbap-lgort = '0001'.
    but after the save i dont see my storage location in VA01 even if the order type is ZWMF or ZSDR.the storage location is blank there in VA01.
    but if i write if vbak-auart = 'ZWLF'.
    vbap-lgort = '0011'.
    else.
    vbap-lgort = '0004'.
    endif.
    for this if my order type is not ZWLF the value of the storage location appears in VA01 and that too 0004.
    what i can see while debugging is if the order type is other than my requirement for which storage location comes MTCOR-RMARD EQ 'SAPCE'.
    and if order type is amongst my requirement the value of MTCOR-RMARD is EQ 'X'.this why the field of storage location comes blank for my reuirement.
    plz help.why this is so?
    thanks n regards,
    Ashmita Singh

    thanks experts..Enhancement is working for all the order type except one..ZCRE
    AFTER entering the order type n all a pop window appears to enter billing document,
    then a information window 'The plant for item 000010 must be redetermined' occurs 
    then in the form 'VBAP_KOPIEREN_VORBEREITEN'
    after PERFORM (MODUL) IN PROGRAM SAPFV45C. VBAP-LGORT value becomes zero
    then 'The plant for item 000011 must be redetermined'.
    now value of vbap-lgort at this time before initialization is '0004'.
    after PERFORM (MODUL) IN PROGRAM SAPFV45C.
    value of vbap-lgort become '0004' again.
    The plant for item 000020 must be redetermined
    value of vbap-lgort is initial at this time.
    after PERFORM (MODUL) IN PROGRAM SAPFV45C. value of vbap-lgort becomes initial again.
    The plant for item 000021 must be redetermined
    after this vbap-lgort is 0004 again.
    PERFORM (MODUL) IN PROGRAM SAPFV45C. after this vbap-lgort = '0004'.
    The batch number of item 000011 is cancelled
    The batch number of item 000021 is cancelled.
    plz help.this is for this order type only and for rest of the
    order the enhancement is working fine.
    for Itme 10 the storage location blank
    then for Item 11 storage location is 0004
    for item 20 storage location is blank again
    and finaly for item no 21 storage location is 0004.
    below is my enhancement code.
    enhancement 1  zstorage_location.    "active version
    This is to change the storage location
    as per the order type
      if vbak-auart = 'ZWLF'.
        vbap-lgort = '0007'.
        elseif
          vbak-auart = 'ZSCR'.
          vbap-lgort = '0001'.
          elseif
            vbak-auart = 'ZRAW'.
            vbap-lgort = '0001'.
            elseif
              vbak-auart = 'ZORD'.
              vbap-lgort = '0004'.
              elseif
                vbak-auart = 'ZLCI'.
                vbap-lgort = '0001'.
                elseif
                  vbak-auart = 'ZEXP'.
                  vbap-lgort = '0010'.
                  elseif
                    vbak-auart = 'ZCRE'.
                    vbap-lgort = '0008'.
    endif.

  • Help regarding tcode in MM

    hi
    can anyone who also knows MM try this query
    Help me out with a tcode which can run a report that displays current souce list supplier
    and most updated info record price??
    thanks in advance

    Dear,
    There is no T code for  current source list and updated info record price in standard SAp please refer my previous posting for this.
    ME06 Analyze Source List
    ME13 Display Purchasing Info Record
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Nov 13, 2008 12:27 PM

  • Regarding Tcodes

    Hi,
       For example if i enter financial tciodes or mm or project system tcodes., I need to know the table names of it.,
      If we press f1 with respect to field then i can get table name at tcode., I need to know for other fields too which is using
    tcode of financials or mm etc: coming from  table. Can anyone please let me know on it.
                    Thanks.

    Hi,
    Activate a trace (via ST05) before launching the transaction, and you'll be able to see all the tables involved.
    Regards,
    Eli

  • Regarding TCode SO10 and table STXH

    Hi friends,
      I am having a doubt in SO10.
    I am having the data in the table STXH as follows
    TDOBJECT  : BUT000
    TDNAME     : 2000174                                                            
    TDID           : ZDD1
    TDSPRAS   : E
    in SO10 i am putting the same value as follows,
    Text Name    :     2000174
    Text ID          :    ST   Standard text
    Language      :       EN
    But i am not getting any value. Why? Any wrong with my process? please clarfy me.
    Thanks in advance
    Regards,
    Srikanth. S

    Thanks Seshu for your reply,
    One thing i want to know. Narmally if a sales from the transaction VA01 the data will be getting update. Then the updated order from VA02/VA03 we can see instead of opening the table.
    The same way from which transaction the table STXH getting updated. How to view the data via a transaction?
    You might understood my question. Pls clarify.
    Thanks and regards
    Srikanth. S

  • Regarding Tcodes vofm and spro

    Hi all,
    Can anyone tell me the use of the tcodes spro and vofm,
    when they are used?
    Thanx in advance,
    Vijay

    Hi
    Check this link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/23d686f1-0b01-0010-bd87-989c164c1b06
    Regards
    Raj

  • Regarding tcode of me13 or vao3 or va13

    Hi,
       AT R/3 or OLTP system we eneter data at tcodes ME13 or VAo3 or VA13 etc tcodes., there the data sits at different tables.,
       So how can i find table names for particular tcodes to look into it. Can anyone please let me know on it.
                     Thank you.

    hi,
    you can get the name of the table by Pressing F1 on the fields where you have entered the data, through these T-code.
    regards,
    mahesh

  • Regarding TCODE version change..

    Hi friends..
    I need to list out all the obsolete tcodes.
    for example
    instead of ME21 now we r using ME21N
    i want to list out all the tcodes like this.. where the informations are stored..
    if anyone have anyidea.. send reply..
    Thanks in advance
    Gowrishankar

    Hi
    check this
    Check this link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5ac31178-0701-0010-469a-b4d7fa2721ca
    Refer this link for more details:
    Delta between 4.7 to ECC6.0
    For functional differences please check out the following link:
    http://solutionbrowser.erp.sap.fmpmedia.com/
    to know the differences in each release
    Here is the link for the same
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5b/8c3842bb58f83ae10000000a1550b0/frameset.htm
    http://service.sap.com/releasenotes
    Check this link ... this link will definitely explin u clearly the difference between the two versions...
    http://www.stonewayinc.com/clients/sap/bestoftour/presentations/SAP_BOT_2_Furlan_IBM.ppt
    See this weblog:
    /people/thomas.jung3/blog/2005/05/15/abap-46c-to-640-delta-training
    Re: R/3 Enterprise v mySAP ERP 2003 v ECC 5.0 v mySAP ERP 2004
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000497320&_SCENARIO=01100035870000000112&_OBJECT=011000358700000810532004E
    http://www.sapfans.com/forums/viewtopic.php?p=897186&sid=b1019a8384996953156f5a70692576b1
    Regards
    Anji

  • Regarding Tcode creation

    hi
    I created a report program with selection screen.
    can any body make me know how to create Tcode for that program ,what are the parameters to be passed while creating Tcode in se93.
    thanks
    prasad

    Go to se93.
    Give the desired t-code and go for create.
    Gi the program name and screen number 1000
    SEELCT PROFESSIONAL USER TRANSACTION.
    And select the check box
    SAPGUI FOR WINDOWS
    Regards,
    madan.

  • Regarding TCODE in sapscripts

    Hi all....
    I'm working on checks(using sapscripts) in ECC6.
    Like we go for Tcode NACE and set the ZMEDRUCK form name created by us in processing routines in place of MEDRUCK to trigger our created FORM......
    Like wise I copied the check related program  <b>/SMB11/CHECK_UNN</b> to some <b>ZCHECK</b>.
    Now where should i place this FORM inorder to trigger this <b>ZCHECK</b> form instead of  <b>/SMB11/CHECK_UNN</b>
    Is there any TCODE for this like NACE.
    Replied will be awarded points.
    Thanks & Regards.
    Sudheer.

    Hi seshu.
                     I got this TCODE from my FICO consultant.
    Any how thanks for ur reply seshu.So where i have to keep my created form .
    I am checking that but i didnt get any idea.
    Can u suggest me else more.
    Thanks & Regards.
    Sudheer.

  • Regarding tcode MB26

    Hi ppl,
    Can anybody please let me know the exact use(s) of tcode MB26 ?
    Also, I would like to know the logic it uses to post  / update data.
    Please help.
    Regards.

    Hi David,
    Best way is to debug the code & understand the flow of the program so that even you will explore the place where exactly you will have to add your code for the customization.
    Regards
    Abhii

Maybe you are looking for

  • Ipod classic 30gb white screen-whirring

    hi all. hopefully i can get some help on here although im afraid i already know the answer....ok older ipod classic. 30gb. worked great for yrs. then started freezing up more and more. wouldnt hold a chrarge very long. then one day plugged into kitch

  • Can universe connect to restful web service which is not soap based

    Can universe connect to restful webservice? I know it is allowed to connect to SOAP webservice. Currently is using WSDL1.1. How about restful web service which does not have any wsdl file?

  • Mosier

    I just purchased an new macbook air, i have been unable to install adobe flash, due to password problems.  I created an adobe id and password for the site, but when i go to use it to install flash, it won't work.  Any help on why, or what password to

  • Prometric Id re-incarnation on CertView registration Webpage:

    If I understand correctly, as accessed at about the time of this post, the page [https://education.oracle.com/pls/eval-eddap-dcd/ocp_interface.prometric_reg] wert certview registrations almost surprisingly mentions Prometric Id: Prometric ID*       

  • Newbie help with a "simple" VI.

    Hi all, I need to write a VI with the following specifications: Input: An integer Output:  Two integers mapping the input integer to a coordinate system based on the following mapping system:  22 23 24 25 ..  21 06 07 08 09   20 05 00 01 10   19 04 0