Error in GR(Enter S.loc) for Thrid party PO

Dear Gurus,
I have created PO with Acct assignment X & Item Catg: S, while doing GR, system is asking for Storage location(Error message). But for X & S combination, S.location should not ask...can you please help me??

hi,
you can make the message as warning message...
Also could see for the combinations in SPRO->Material Management>Accounts Assignment-->Define Combination of Item Categories/Account Assignment Categories.
Use and try with the standard account cat....
Hope it helps...
Regards
Priyanka.P

Similar Messages

  • Registering application for thrid party deployment

    We are using Crystal report which comes along with Visual Studio 2008 for our web application.
    [As per license terms and condition of crystal reports|http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/visualstudio/licensing/index.epx]
    we need to register the application when we deploy the application at client place.
    I want to know that
    1. from where I need to register?
    2 Is it necessary?
    3. if I am not register, is it my applicaton wont run at all?
    4. After installing at clients places, shall we register?
    5. If we want to install at 5 client places, I need to register 5 times or only one time?
    Regards
    S. Muhilan

    Hi,
    With web applications the CR .NET SDK is freely distributable .We can install the CR .NET SDK on as many web servers as it is without additional licensing costs. Our licensing doesnu2019t consider where the .rpt files are stored.
    If you are selling this web application that uses the CR .NET SDK then your clients would be required to purchase a copy of Crystal Reports Developer edition.
    With Windows applications CR .NET SDK is freely distributable in .NET Windows applications u2013 even when the application is sold to a third party.
    To deploy server applications to third parties, written authorization from Business Objects is required. You can get authorization by registering your application online at no extra cost.
    Distribution of the runtime engine is subject to the terms and conditions contained in the Crystal Reports for Visual Studio .NET License Agreement.
    Have a look to this msdn link for more info:
    [http://msdn.microsoft.com/en-us/library/ms225341(VS.80).aspx]
    For more info regarding license :
    [http://www.businessobjects.com/product/catalog/crystalreports/licensing.asp] Or [https://websmp106.sap-ag.de/licensekey]
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/804acc00-8364-2b10-b995-de99ca43c403
    It is not necessary to register now you can click on register later option.
    Your application will run properly howerver it will prompt to register.
    It would be better to register first then install at client places.
    Regards,
    Shweta

  • IDOC error u201CPlease enter WBS element for This Cost centeru201D

    Hello SAP gurus,
    While doing PGI through IDOC u2013 basic type u2013 DELVRY03. I am getting error message u201CPlease enter WBS element for This Cost centeru201D
    Can some one please help me where I can check the settings?
    Thanks
    Sha

    Hello Arakish,
    That link is good one but not helpful for my issue and I have checked this forum then I posted my doubt. Still my issue is not resolved. Can someone please help me on this, I think only for this cost center I am getting this error.
    Thanks again.
    Sha

  • Error in BAPI_SALESORDER_CHANGE -- Enter The Profit Center

    Hi All,
    Am Creating Sales Order using BDC and getting Sales order number and uploading it's  Item text using
    BAPI_SALESORDER_CHANGE , But am getting error as please enter profit center for last record in Bapireturn and text is not getting updated.
    Everything is correctly uploaded with material number and profit center for sales order,
    while uploading it's item details text error occurs for last record as
    please enter profit center .Remaining Sales order text is getting uploaded ..
    May i know why this occurs and how to solve it ...

    Hi Santhosh
    Have Pasted my Code here for your reference ..
    \FORM createtext_bapi.
    DATA: t_posnr LIKE vbap-posnr occurs 0 with header line.
    data: begin of t_posnr occurs 0 ,
          vbeln like vbap-vbeln,
          matnr like vbap-matnr,
          posnr like vbap-posnr,
          end of t_posnr.
    DATA: ORD_TEXT LIKE BAPISDTEXT OCCURS 0 WITH HEADER LINE.
    DATA : TEXT(125) TYPE C.
    DATA: SOHEADER LIKE BAPISDH1.
    DATA: SOHEADERX LIKE BAPISDH1X .
    DATA: SORETURN  type table of bapiret2 with header line.
    DATA: I_ITEM LIKE BAPISDITM OCCURS 0 WITH HEADER LINE.
    DATA: I_ITEMX LIKE BAPISDITMX OCCURS 0 WITH HEADER LINE.
      DATA:w_item(6) value '000000'.
      DATA:w_item1(6) value '000010'.
      loop at  itab1.
      clear w_item.
       loop at it_sord where salesorder = itab1-salesorder.
          w_item = w_item + w_item1.
          unpack w_item to w_item.
    *****HEADER
      SOHEADERX-UPDATEFLAG = 'U'.
    ****LINE ITEM
    I_ITEM-ITM_NUMBER = w_item.
    APPEND I_ITEM.
    I_ITEMX-ITM_NUMBER = w_item.
    I_ITEMX-UPDATEFLAG = 'U'.
    APPEND I_ITEMX.
    ****LINE ITEM TEXT
    ORD_TEXT-DOC_NUMBER = it_sord-salesorder.
    ORD_TEXT-ITM_NUMBER = w_item.
    ORD_TEXT-TEXT_ID    = '0001'.  " IN SO MATERIAL SALES TEXT
    ORD_TEXT-LANGU      = 'EN'.
    ORD_TEXT-FUNCTION = '004'.
    CLEAR : TEXT.
           concatenate  s_date  it_sord-s_date into ORD_TEXT-TEXT_LINE."
           append ORD_TEXT.
         clear ORD_TEXT.
         concatenate  s_time  it_sord-s_time into ORD_TEXT-TEXT_LINE."
          append ORD_TEXT.
         clear ORD_TEXT.
         concatenate  e_date  it_sord-e_date into ORD_TEXT-TEXT_LINE."
          append ORD_TEXT.
         clear ORD_TEXT.
         concatenate  e_time  it_sord-e_time into ORD_TEXT-TEXT_LINE."
          append ORD_TEXT.
         clear ORD_TEXT.
         concatenate  pickup  it_sord-pickup into ORD_TEXT-TEXT_LINE."
          append ORD_TEXT.
         clear ORD_TEXT.
        concatenate  despt  it_sord-despt into ORD_TEXT-TEXT_LINE."
          append ORD_TEXT.
         clear ORD_TEXT.
    *APPEND ORD_TEXT.
                 CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
                   EXPORTING
                     salesdocument               = it_sord-salesorder
                     ORDER_HEADER_IN             = SOHEADER
                     order_header_inx            = SOHEADERX
                   tables
                     return                      = SORETURN
                    ORDER_ITEM_IN               = I_ITEM
                    ORDER_ITEM_INX              = I_ITEMX
                    ORDER_TEXT                  = ORD_tEXT.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          WAIT = 'X'.
       refresh ORD_TEXT.
    READ TABLE SORETURN WITH KEY TYPE = 'E'.
    IF SY-SUBRC = 0.
    WRITE:/1 ' SO TEXT CHANGE  NOT UPDATED',
               itab1-salesorder, SORETURN-MESSAGE. "SORETURN-row ,
    *SORETURN-number,
    *SORETURN-MESSAGE_V1.
    ELSE.
    WRITE: ' SO TEXT CHANGE    UPDATED'.
    ENDIF.
    refresh:ORD_tEXT.
    endloop.
    endloop.
    ENDFORM.                    " createtext_bapi

  • FBCJ Error - Enter a vendor for this accounting transaction

    Dear Experts,
    I am trying to enter expenses and I have mentioned Vendor Account No. in the Vendor field using splitting option with combination of Vendor Pay/Rec and All Expenses Business Transaction. But the document is not getting posted and giving the error - "Enter a vendor for this accounting transaction". But if I dont use split option it saves.
    This problem I am facing for the last 2 days only. Can you suggest what could be the reason for this error.
    Thanks,
    Deb

    Dear !!!
    I have done everything as you suggested, but it is still showing the same message. Can you please look in to this again.
    Thanks in advance !!!!
    Deb

  • Error "You cannot enter a partner function for output NEU"

    Hi Experts,
    I'm having these error "You cannot enter a partner function for output NEU" (message VN041) when I tried to assign a partner function (e.g OA)  in the conditions records for application "EV" (Purchase outline agreement). The system do not allow me to do this for any doc type (LP, LPA, MK, OA, etc). I'm using t-code NACE or MN08.
    I want to assign partner for key combination "Document Type". The conditions is already there but with no value, so I want to assign partner function "OA" or "VR".
    I already check all the configuration and looks fine. For example, define possible partner functions for output type "NEU" for application "EV" (Purc outline agree).
    Hope you can help me to find the problem.
    Thanks,
    Mairo.

    I have the error in NACE or using tcode MN08.
    As soon I executed those transaction the system shows the condition records created for varios Doc Type (e.g LP, LPA, MK, etc) but with no partner function assigned. For example:
    Doc. Type /  Name                     /             Funct  /   Partner     /            Medium  /  Date/time  /   Language
    LP        /       Scheduling Agreement     /  blank  / blank  /                                          2      /          3   /              EN
    LPA      /      Scheduling Agreement                              / blank    / blank   /                1        /       3         /        EN
    For example, I try to assign function "OA" for Doc. Type "LP", choose value from quickpick. Then when I press enter, the system give me the error "You cannot enter a partner function for output NEU", message no. VN041. Do not allow me to continue, so I have to leave this field blank, with no change.
    Thanks,

  • Error  Enter a value for field BP_GUID

    I am using MDG  7.0
    When I create a  Request for "Create ERP Customer",
    I then enter data including the sales Area Data and Company Code data
    Then Submit
    at the following approval step , Sales Area data and CC data is missing.
    I get ERROR message  "Enter a value for Field BP_GUID"
    Please advise what Table or T-code am I missing values for .
    Thanks for your assistance,

    hi,
    See the attached screen shot.
    Regards,
    Tushar

  • Enter a password for the ADMIN user,Error in installing Oracle Apex,

    hi, everybody,
    Greetings,
    Iam trying to install oracle Apex, By coming this step it shows this error, Could you Please help me to solve this error.
    SQL> @apxchpwd.sql
    Enter a value below for the password for the Application Express ADMIN user.
    Enter a password for the ADMIN user []
    Session altered.
    ...changing password for ADMIN
    l_error_lines wwv_flow_global.vc_arr2;
    ERROR at line 3:
    ORA-06550: line 3, column 28:
    PLS-00201: identifier 'WWV_FLOW_GLOBAL.VC_ARR2' must be declared
    ORA-06550: line 3, column 28:
    PL/SQL: Item ignored
    ORA-06550: line 5, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 5, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 6, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_USER' must be declared
    ORA-06550: line 6, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 7, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 7, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 15, column 31:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.STRONG_PASSWORD_VALIDATION' must be
    declared
    ORA-06550: line 15, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 22, column 35:
    PLS-00201: identifier 'WWV_FLOW_UTILITIES.STRIPHTML' must be declared
    ORA-06550: line 22, column 9:
    PL/SQL: Statement ignored
    ORA-06550: line 25, column 9:
    PLS-00320: the declaration of the type o

    suresh.m2015,
    It's going to be impossible for anyone in this forum to help with your issue if you don't provide any more detail about your environment and Apex installation. However, from your post it looks like the Apex database objects are missing or invalid.
    Did you follow the Apex installation guide step by step? For example, did you run apexins.sql?
    It's important to follow the documentation. The script you are running to change the admin user password should not be run until after the Apex installation is complete.
    --Keith Malay                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Error when trying to enter time data for hourly employees using CAT2

    Hi Experts!
    I'm trying to enter time data for an absence type using CAT2 for hourly employees and it's giving me an error saying "for attendance type, function or/and one of the URA is required".
    I'm not sure what that means, the system has no functions available. Entering time data for full-time salaried employees is working just fine.
    Any insight would be greatly appreciated!
    Thanks.

    hI,
    Firstly check infotype 0315
    In that check sender cost centre
    Next chek whether the Attendent / Absende Tyep which you are trying to enter is configured
    That meas it should pop up (F4) when u try to enter using CAT2
    in the Attnendence /Abence field
    REWARD POINTS

  • The Error Message 'Application descriptor file cannot be parsed' shows when compiling (Ctrl + Enter) Adobe AIR for Android applications on Flash Professional CS5.5

    The Error Message 'Application descriptor file cannot be parsed' shows when compiling (Ctrl + Enter) Adobe AIR for Android applications on Flash Professional CS5.5
    This is happening for most of the pupils and staff at our school and they are unable to complete their work.
    This also happens on a fresh copy of windows and CS5.5 without any updates and also with all latest updates.
    I have tried it on 32-bit and 64-bit CS5, Windows, Air and Java with the same error every time.
    There are a small minority of users where this works fine for them with no issue.
    I have tried re-setting user profiles.
    I have tried a local admin and domain admin account with the same issue
    I have noticed however that if the file is moved to the shared area it will compile. If it is on their documents area it will not compile. The users have full control in both locations. This is fine for staff but we are unable to give full control or modify access to the shared area for the pupil's
    I have been through the online support section and it directed me to phone Adobe Customer care who informed me that all support has been discontinued for CS5, CS5.5 and CS6 and they will only support creative cloud.
    Any ideas what to try next? There is no other information about this error and I cannot work out what is causing it.

    I have tried and  able to package an apk using your XML file.Could you please make sure your XML file starting from line 1 and coloumn 0.Any space will results in the error (Application Descriptor file cannot be parsed)
    -Pranali

  • HT2623 I keep getting an error message when I enter my password for iCloud IMAP server

    I keep getting an error message when I enter my password for iCloud IMAP server

    A number of users who have chosen to set up iCloud mail manually in the Mail application seem to encounter problems with continually being asked to sign in. This may well be a result of incorrect settings such as not setting 'Apple Token' for authentication under the accounts advanced settings.
    A more general approach to remedying such problems would be to turn off Mail in System Preferences/Settings > iCloud, checking the account has been removed from Mail (and deleting it if it hasn't), restarting and then enabling iCloud Mail again from System Preferences/Settings > iCloud. This will ensure the correct settings are used.

  • App store review page:billing add-country : i choose SL (Selangor). Error message: pls enter at most 3 letter or number for country. But there all is 2 letter. Cannot type ourself, all is preset. so can't create a review

    App store review page:billing address - country : i choose SL (Selangor).
    Error message: pls enter at most 3 letter or number for country.
    But what i can choose is all in 2 letter. Cannot type ourself, all is preset. so can't create a review and cannot use my app id to download or update application.

    madeline leo wrote:
    App store review page:billing address - country : i choose SL (Selangor).
    Error message: pls enter at most 3 letter or number for country.
    But what i can choose is all in 2 letter. Cannot type ourself, all is preset. so can't create a review and cannot use my app id to download or update application.
    Please enter at most 3 letters or numbers.  Two letters is fine with that instruction.

  • Sysfail error "Enter Valid date for Example(02/25/2008) "  in EC5

    Hi ,
         I have a sysfail error "Enter Valid date for Example(02/25/2008) "  in the EC5 side.Can any one help me on this .What should I do and where can be the fault.This EC5 is the development system.

    Hi
    you have to pass the date in the format as yyyymmdd
    bcoz for internal storage the SAP system always understand the standard data format
    yyyyymmdd.
    so you have to pass the date in the format yyyymmdd.
    Thanks
    Rinku

  • Error Message at F-02 "Enter Name & city for One-time account posting"

    While create JV in one time customer ledger through F-02, following error message appeared & system not allow to crate JV.
    "Enter Name & city for One-time account posting", Please help
    Regards
    BK GAIKWAD

    Hi
    Are you having separate account group for this One time vendor?
    Via this account group, the vendor-specific fields, such as name, address, and bank address data should be changed from suppressed to display when you enter the vendor master record. You need to enter this data when you enter the document.
    Check the fields status of Name, city etc in the below path
    SPRO - Financial Accounting - Accounts receivable and accounts payable - Vendor accounts - MAster data - Preparations for creation of master data - Define account group with screen layout
    Regards
    Malathi

  • Error 5002 while entering code for Peter Pan

    I cannot enter the code for my Peter Pan Digital Copy. when I enter it in and click "Redeem", an error code pops up saying I cannot connect to itunes with error code 5002.

    I am having the same problem.  I cannot purchase or update from itunes either.  I just installed the latest software update OSX 10.8.2 prior to trying.  Also tried to access itunes from other devices and none are working.

Maybe you are looking for