How to create a material which can be used in T-Codes VAO1 & MB1C create

Hello Experts,
How can I create a material which can be used to create a sales order and can be used to create inventory using VAO1 and MB1C T-Codes respectively.
What are the configurations that I need to take care of, while creating it?
I need to create a material which can be used in the whole sales cycle(sales order,goods issue,billing and etc).
Please Help,
Thanks in Advance,
Suma

Hi
Thanks for your fast replies.. I have created a new material and was able to create inventory thru MB1C. But I was not able to generate a goods delivery(VL01N) and billing document(VF01)  for the sales order.
Error: No schedule lines due for delivery up to the selected date
Message no. VL248
Diagnosis
There are no schedule lines due for the given order item up to the date chosen.
System Response
The system does not create a delivery item for this order item.
Procedure
Check whether the order item to be delivered contains confirmed schedule lines.
If this is the case, set the selection date further into the future if you still want to create a delivery for this item.
Please suggest,
Tanks,
Suma
Edited by: Suma B on Sep 23, 2008 3:55 PM

Similar Messages

  • How to build a wsdl which can cater dynamically to number of attachments

    We have a WebService client that calls a Webservice on the Server.
    When the client calls the webservice , it passes the SOAP message(Header,Body & MIME attachments)and these attachments vary in number based on different business requirements.
    We know how to build WSDL for server with static number of attachments,but no clue on how to build a wsdl which can cater dynamically to number of attachments comming from client request.
    - thanks in advance

    Hello,
    We may have multiple approaches here depending of :
    - which version of the product you are using
    - what are your clients in term of stack, and API they are willing to use
    - which encoding did you use for your WS (swa, swaRef or dime)
    So for my answer I am documenting how to do it on OracleAS 10gR3 (10.1.3), using swaRef approach.
    The easiest way is to exchange array of binary data and describle that in the WSDL, so in my case the WSDL element that is used will look like that:
    <element name="filesResponseElement">
    <complexType>
    <sequence>
    <element name="result" type="ns1:swaRef" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </element>
    This will generate from the Java code an array of AttachmentPart[].
    Regards
    Tugdual Grall

  • The need to compress to max 1GB is obsolete. You can not determine what and how the space provided on iDisk can be used. You provide it or NOT. If you DO, then let US free, if you don't, then TELL us WHY, so we can choose to go public elsewhere. The stren

    The need to compress to max 1GB is obsolete. You can not determine what and how the space provided on iDisk can be used. You provide it or NOT. If you DO, then let US free, if you don't, then TELL us WHY, so we can choose to go public elsewhere. The strengthood for Apple for the fourthfullness to be legal, which I respect, can become too restrictive in my European eyes. Any hearing around? René

    As was noted in the introductory material for the Apple Support Communities website (presented when you registered), these forums are set up for user-to-user assistance and discussion, not for user-to-Apple communications.
    Suggest you resubmit your position statement to Apple via product feedback for iCloud, which you can access via a link on this page -
    Apple - Feedback
    ...we've all moved to iCloud, isn't it?
    Um, no, we all haven't.

  • How can i use the project code instead of project xml?

    hello
    i use the sessionbean+toplink structure,after i finish the o-r mapping by using the mapping work bench,i generate the project xml file,then in the "session.xml" file,i refer to the project xml,then i can use it from sessionbean.
    i hear that if i use the project code instead of project xml file,it will be more performant,is that true?
    otherwise,how can i use the project code instead of project xml file?i mean, in "session.xml", i can use the "<project-xml>" tag to refer to the project xml file,then in my session bean,i get the server session by read the "session.xml" file.but if i use the project code,how can i refer it from the "session.xml"?the examples that come with the toplink installation only tell me how can i use the project xml file within the session bean,it don't give me any clue about using the project code in the sesion bean,who can give me a step-by-step instruction and code snippet?
    thank you very much?

    There is a slight performance gain during session load at startup but there is no difference at runtime. The choice of which to use is dependent upon you build process. Whether it is easier to submit a new version of the class into the comile build process vs an XML file. In most cases it is just a preference of the development team.
    When you use the project-class you'll need to generate the source code and compile it into your system. Typically it is packaged with the persistent classes. You may need to configure your environment so that the class-loaders have access to these classes (same for the XML case).
    When using the project-class you simply replace the project-xml entry like this:
    <project-class>oracle.toplink.demos.employee.relational.EmployeeProject</project-class>
    The DTD for the session.xml file is found at <TOPLINK_HOME>\core\sessions_4_5.dtd. It is also in the documentation at:
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/toplink.903/b10064/a-sessio.htm#634246
    Doug Clarke
    Product Manager
    Oracle9iAS TopLink

  • Same serial number + material combo can be used in different sales orders?

    Hi,
    We have a recurring issue in our system where a Serial Number/Material combination can be used in another sales order once it is already in ECUS status.
    Example: We sell and post material 123 with serial number 456, it goes into ECUS status, and we are then able to create a sales order with the exact same numbers.
    Is this something that I should escalate to OSS? Why is this happening? Is there an IMG setting where I can turn on this functionality?
    I woud be very grateful for any help! Thank you so much!

    Hi San,
    The org. determination rule is setup correctly, I've followed the link below to determine sales area on item level - to clarify, we are creating online sales orders (B2B scenario)
    https://help.sap.com/saphelp_sm40/helpdata/en/61/ac747795b511d3b53e006094b9ea37/content.htm?frameset=/en/63/02b638faa32d…
    Check the table in the section "Organizational data at item level" - i have already assigned an org.determination profile with no determination rule on item level and still facing the same problem.

  • Is there a custom function available which can be used for logging errors captured in a sp in a sql table

    Is there a custom function  available which can be used for logging errors captured in a sp during and after execution in a sql table?
    Basically we  would like to utilize such function  in every sp and log errors of each sp in a error log table
    Mudassar

    Thanks .
    I was able to write this however I am thinking I am missing something
    CREATE FUNCTION testfunction1()
    RETURNS @temp_error TABLE (
    id int identity(1,1),
    procedure_name varchar(255),
    line_number int,
    error_number int,
    error_message varchar(max),
    error_state int,
    error_severity int,
    occurence_datetime datetime default current_timestamp,
    user_name sysname default suser_name(),
    login_name sysname default suser_name()
    AS
    BEGIN
    insert @temp_error(procedure_name,line_number,error_number,error_message,error_state,error_severity)
    select error_procedure(),error_line(),error_number(),error_message(),error_state(),error_severity()
    RETURN;
    END;
    CREATE TYPE test_type AS TABLE(
    id int identity(1,1),
    procedure_name varchar(255),
    line_number int,
    error_number int,
    error_message varchar(max),
    error_state int,
    error_severity int,
    occurence_datetime datetime default current_timestamp,
    user_name sysname default suser_name(),
    login_name sysname default suser_name()
    GO
    create proc usp_error_test
    @test_type AS test_type READONLY
    as
    begin
    begin try
    select 1/0
    end try
    begin catch
    select * from testfunction1(@test_type)
    end catch
    end
    Mudassar

  • How do you solve error "You can't use this version of the application Install Mac OS X.app with this version of Mac OS X" when trying to go back to leopard from lion?

    How do you solve error "You can't use this version of the application Install Mac OS X.app with this version of Mac OS X" when trying to go back to leopard from lion?
    Local Mac shop said to hold down "c" after inserting disk to get "disk utility" to come up in order to wipe hard drive.  I can't seem to get it to do this.

    This W7 was purchased for using Fusion, as others did - per reviews from amazon.  The technician today called their contact at VMWare - Fusion not officially for use with Lion - even though I read at the VMWare support site that others have made it work.  Apparently my setup doesn't work. 
    Do you know how to do the proceedure for bringing up the disk utility when starting the disk?
    BTW, some of the windows applications I want to continue using are Incredimail, Calendarscope, Stamps.com and a few others I have used over many years.  What do you use for email and calendar?
    Wow, sounds like another reason to not use MS Windows.
    Regarding your Disk Utility question, please elablorate I'm not sure what you're trying to do. Disk Utilty is just that...a utility, it's something most users never have to use especially on a new computer. Let me know what you're trying to do there before I give you some instructions.
    As for as your Windows apps I would recommend using Mail and iCal, both come as part of OS X and are very robust tools. Don't discount the software built right into OS X it's very robust and powerful not all like the bloatware most Windows boxes ship with. Stamps.com well I'd look for another alternative. It's clear they don't support OS X which makes me a little suspicious that they're so behind the times. 
    Also if you have not been exposed to these links before I'd strongly recommend bookmarking them and using them. They're extermely useful!
    Switch 101
    Mac 101
    Find Out How Video tutorials

  • How many RE1000, range expander's can i use ?

    Hi,
    How many   RE1000, range expander's can i use ?
    Our home is constructed of a Basement, first floor and second floor.
     Each floor  Area is120 Square foot = 385 Square meter
    *Each floor is 115 foot in length a, 37 foot in width. And 10 foot in height.
    Is it enough to buy the following product to cover the building?
    One Cisco Linksys  ER4200
    Two Cisco Linksys  RE1000 (Wireless-N RangeExtender/Bridge).
    Looking forward for your support.
    Beat regards,
    Asad

    rajansarc wrote:
    Can anyone help me to setup the RE1000 as the BRIDGE using  built-in Ethernet port?
    I have the WiFi setup (DLink WiFi Router) in my Ground floor.
    In the second floor I have setup RE1000 and can extend the WiFi signal from DLink WiFi Router in the ground floor.
    If I connect my desktop computer through the  built-in Ethernet port (With Wire) of RE1000 (second floor), I could connect only the Extender (RE1000), But I could not connect the computers available in the ground floor(connected in DLink WiFi Router) from the second floor.
    How to setup Ethernet Bridge?
    I also find the specification like this at http://www.youtube.com/watch?v=e45VyoqOI5k
    "Includes a built-in Fast Ethernet (10/100 Mbps) port, which works as a wireless bridge to instantly connect any wired Ethernet device to your network."
    Kindly help me.
    To set it as bridged, you can just setup the wireless settings on it (the same w/ your router) and connect it to a device that you want to connect it with.

  • On my iCloud account I can see an alternate email ID which can be used to login to my account, this email ID does not belong to me so I need to delete it. Please advice the best possible way as it does. It show any option to delete that ID

    On my iCloud account I can see an alternate email ID which can be used to login to my account, this email ID does not belong to me so I need to delete it. Please advice the best possible way as it does. It show any option to delete that ID

    Do the alternate e-mail address ends with me.com or icloud.com?

  • Invalid Certificate Microsoft Outlook cannot sign or encrypt this message because you have no certificates which can be used to send from your e-mail address.

    Hi,
    I have a problem when trying to sign emails with an X.509 certificate in Outlook 2010. I constantly get the error message. The certificate is Verified for the email address I'm sending from.
    "Invalid Certificate
    Microsoft Outlook cannot sign or encrypt this message because you have no certificates which can be
    used to send from your e-mail address."I have no problem with signing documents in Word 2010 with the same certificate, only when trying to send email.Every check I can perform confirms that there's nothing wrong with the certificate. Yet, Outlook still says it is invalid.I have even tried installing a second X.509 for the same email address just to check. Outlook doesn't seem to like either certificate.I know this has been posted before, but I'm completely stuck here.Thanks,~Dan

    Hi,
    You may have checked the option "Encrypt contents and attachments for outgoing messages" in Outlook, please uncheck this to test if the problem persists.
    File -> Options -> Trust Center -> Trust Center Settings -> E-mail Security -> Clear the checkbox "Encrypt contents and attachments for outgoing messages" -> OK.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs. Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Workflow API which can be used to avoid sending notification to user

    Hi Folks,
    We want Workflow API which can be used to avoid sending notification to user for particular type of error.
    Say we are using following API which are used to send notification to mailbox as soon as program run into error.
    wf_core.context(c_v_package_name
    ,c_v_func_name2
    ,p_event.getEventName()
    ,c_v_task_id_prompt||l_n_task_id
    ,l_v_msg_data);
    wf_event.seterrorinfo(p_event, c_v_result_error);
    Now we want to restrict certain type of error to send as a notification however we want to keep this record in wf_notifications table for further investigation.
    Thanks and Regards,
    Javed Khan

    Matt,
    It looks like another person had a similar question before, see the following thread:
    https://supportforums.cisco.com/discussion/9697836/can-use-axl-or-other-api-get-calls-progress
    Also, according to the comments seen on that post, I was able to find the JTAPI developers guide, see more information below:
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/jtapi_dev/8_6_1/jtapidevguide/overview.html
    If this still does not satisfy your question then, the best you can do is post this inquiry on the Cisco Developer Network on the following link:
    https://developer.cisco.com/site/devnet/home/index.gsp
    Hope this information helps,
    Marco Rojas.

  • The log file which can be used to track the HTML preview of HFR Reports

    Hi,
    Could you please let me know the log file which can be used to track the HTML preview of HFR Reports?
    Thanks,
    Aparna

    You could check the FinancialReporting0.log and FRLogging.log .You could refer the same in the
    " http://docs.oracle.com/cd/E17236_01/epm.1112/epm_install_troubleshooting_11121.pdf" page 47.

  • Is there a CUCM API which can be used to see what calls are in progress?

    Hello All,
    I am trying to build a basic monitoring application which will display a list of calls in progress along with endpoint information such as IP address etc
    Is there a CUCM API which can be used to see what calls are in progress?
    Thanks
    Matt

    Matt,
    It looks like another person had a similar question before, see the following thread:
    https://supportforums.cisco.com/discussion/9697836/can-use-axl-or-other-api-get-calls-progress
    Also, according to the comments seen on that post, I was able to find the JTAPI developers guide, see more information below:
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/jtapi_dev/8_6_1/jtapidevguide/overview.html
    If this still does not satisfy your question then, the best you can do is post this inquiry on the Cisco Developer Network on the following link:
    https://developer.cisco.com/site/devnet/home/index.gsp
    Hope this information helps,
    Marco Rojas.

  • Common java version which can be used in (Agile,EBS12.1.x & Hyperion)  applications

    Hello All,
    I need notes for java upgrade. I need common java version which can be used in all our applications.
    EBS Application Version 12.1.3
    Agile                       Version 9.2.3
    Please share your Comments.
    Thanks
    user11980530

    I need notes for java upgrade. I need common java version which can be used in all our applications.
    You need to review the release notes or documentation for those product versions to see which versions of Java they support.
    Then use the latest version Java that is compatible with both of them.

  • Where can I find a list of variables which can be used in Firefox preferences?

    Where can I find a list of variables (e.g. %LOCALE%, %VERSION%, %SUBSCRIPTION%) and their definitions which can be used in Firefox preferences?

    %LOCALE% comes from his pref: general.useragent.locale
    Fore some others see:
    * https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsIXULAppInfo
    *https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsIXULRuntime
    An example can be seen here in getUpdateURL()
    *resource:///components/nsUpdateService.js

Maybe you are looking for

  • When trying to open tif image from Windows explorer it does not open in PSE 11.

    Windows Explorer set to open image files with PSE11, but when I double click on image in WE it launches PSE11, but I then need to click on Open tab in PSE11 to get it into work window.  PSE10 did not have this problem

  • Improvements for s60v5

    I believe that hardware of s60v5 is quite powerful but it is not being fully use. The things that I would like to have in s60v5 phones 1 support for apps like nokia social which integrate contacts with social sites. Another softs like bubbles, sleepi

  • Gifted apps downloaded.....

    Gifted an app to a buddy of mine and he opened ti using his computer and cant download it to his iphone....help

  • Fireworks cs4 - jagged edges on png32

    Please open the fireworks png and see the jagged edges of the buttons on the black background. The icons are set to png32... why am i getting jagged edges and how can I fix

  • ERROR: Provision a resource ADITResource

    HI, When i try to provision a resource ADITResource to a user in OIM,in the details it is showing as provisiong and not provisioned, The error i'm getting is as follows: Task Name - Create User Resource Name:AD User User: Jorge Parra Status: Rejected