ASN fields not created

Hello,
I'm working on a MM-SUS, later a PO confirmation we create an ASN and it is transferred to R/3. A shipping notification is created but without tansport id, weight, volume and so on data.
On we05 i can see DESADV-DELVRY01 idoc with the data on segment E1EDL24 so the problem is not in SUS.
Had someone the same problem???
Regards,

Hello,
I'm working on a MM-SUS, later a PO confirmation we create an ASN and it is transferred to R/3. A shipping notification is created but without tansport id, weight, volume and so on data.
On we05 i can see DESADV-DELVRY01 idoc with the data on segment E1EDL24 so the problem is not in SUS.
Had someone the same problem???
Regards,

Similar Messages

  • AET fields not created due to database limit

    Hi Experts,
    I am trying to create AET fields for BUT000 transaction table. But when i click on the 'Save and Generate' button for the AET field, i get a message 'Field enhancement for place INCL_EEW_BUT000 is not possible due to database limit'. Please help me understand how can i create the AET fields. Are any settings required to increase the database limit.
    Ay pointers would be highly appreciated.
    Regards,
    Radhika

    Hi Radhika,
    Its a normal scenario when you have exceeded the no. of fields allowed to be added for a business transaction. The initial settings for AET settings is such that *a prefix 'ZA' is attached to each AET extension which gets created when create a field through AET*. Now since you have exceeded this limit, go to SPRO->CRM->UI Frame Work-> UI Frame Work Definition->AET->Define System Settings.
    Here you can change the generation prefix from A to B. Now the system will allow you to add as many extra fields as you did for prefix 'ZA'. The only change you'll see is that the AET extension prefix will now be 'ZB' instead of 'ZA'.
    When you have exceeded number of fields even for 'ZB' extension, you can change the prefix to 'C' to add further more fields.
    Hope this helps.
    Thanks
    Vishal

  • Multiply fields not created yet

    Hi,
    in my attached example...I have a quantity and unit cost that need multiplied together to = the cost.
    That cost should then be totaled for all the subrows and listed in the cost field of the header row.
    I'm confused on how/where to add the multiplication script for the quantity and unit cost fields.
    Any help is greatly appreciated!

    I have an updated file now where the first row added under header 1 multiplies quantity x unit cost, but it doesn't multiply it if you add a second row.
    Any ideas...?

  • Created By and Created Date fields not showing up on Custom List form webpart

    Hi,
    I have added Custom Listform WebPart on "DispForm.aspx" of custom list. I need to display, out of box fields "Author" [Created By] and "Created" [Creation Date] on this custom list form webpart, I have added them on the webpart, following is the code behind of aspx page:
    <td width ="400px" valign= "top" class="ms-formbody">
    <xsl: value-of select = "@Author" disable-output-escaping = "yes"/>
    </td>
    However these fields are not showing/populating data on the form ?? Any inputs ???
    Regards

    Hi,
    I think that when you insert a custom list form web part you select “Item” content type, so custom list form is designed to display only the fields that are appropriate for that content type “Item”, but the item content type doesn’t contain the created and created by column, when you add the two columns, it will not find the field value. By default, the two columns will display at the foot of the list form using SharePoint:CreatedModifiedInfo.
    Hope it can help you.
    Xue-Mei Chang

  • Task Outcome Field - Crawled Property not created

    Hi,
    SharePoint is not creating crawled property for the OOB Task Outcome
    field... Is this by design or is it possible to include this field in search..
    Regards,
    Muthukumar

    Hi Muthukumar,
    Per my knowledge, there is not an OOB way to create a crawled property for Task Outcome field.
    As a workaround, you can try to create a new column in the tasks list, then create an Event Recevier on the tasks list to handle the item is added or updated. In the Event Recevier, sest the new column to the Task Outcome. After that, do a full crawl to
    find the crawled property for the new column, and use the new column instead of Task Outcome.
    More information about creating Event Recevier, please refer to the link:
    http://onceinawhilescribble.blogspot.com/2013/05/creating-simple-event-receiver-in.html
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Convert Word 2007 Form to PDF Form not creating dropdown list fields

    I created a new word document with all my text fields with lines and 5 dropdown list fields with all their values.  Works great in Word 2007.  When I convert it to a pdf form (Acrobat Pro X) none of the dropdown list fields get created.  The text fields do, but no drop downs.  If I have to create them all manually in Acrobat, what's the point of doing all the work in Word?

    The Word conversion to PDF and Forms Wizard do not detect and do not know how to complete a drop down box. I do not even create the form fields in Word as there is no transfer to the PDF. I also find the Wizard lacking in proper naming and grouping. It is just easier and more efficient to add the fields manually or with JavaScript tools.
    The only product that can do this is apache OpenOffice when an author creates the from body and form fields in the Writer application and then exports to a PDF.

  • SRM alert configurations for SUS ASN not created in SRM SUS system

    Hi All,
    We are trying to configure the SRM ASN alerts with the alert category SRM_SUS_AVIS ( Alerts for ASN-SUS) by the same way we did for the SRM_BID_INV for bidinvitation in different client and scenario.
    Is the configuration for SUS anyway different than EBP? ( I have posted another thread for bid alert doubt and later it was configured and working fine sometime ago)
    If the config for SUS ASN alert is different then what is that?
    With our configurations in SLAERT and ALRTCATDEF, and thru RSALERTTEST job we are getting alerts for PO not viewed and Order confirmation not created.
    But we are not able to get alerts for ASN  not created.
    Can anyone throw some light on this please?
    Best regards,
    Sridhar

    Vendor data is maintained in table CRMD_PARTNER only when transactional documents exist for the vendor.

  • Field not set: ParentEPSObjectId when creating Project.

    Hi everyone,
    I'm developing .net application and getting data from primavera by using p6 web service. At the moment I stuck on project creation. I'm using following code to create a new project:
    Public Function CreateOneProject(pProjectName As String, pProjectId As String, pParentEpsObjectId As Integer, pPlannedStart As Date, pPlannedFinish As Date, pParentOBSObjectId As Integer) As Integer
         Dim vNewProject As Project()
         vNewProject = New Project(0) {}
         Dim vProject As New Project()
         vProject.Name = pProjectName
         vProject.Id = pProjectId
         vProject.ParentEPSObjectId = pParentEpsObjectId
         vProject.StartDate = pPlannedStart
         vProject.FinishDate = pPlannedFinish
         vProject.OBSObjectId = pParentOBSObjectId
         vNewProject(0) = vProject
         Dim retVal As Integer() = gProjectService.CreateProjects(vNewProject)
         Return retVal(0)
    End Function
    And getting error message: Field not set:ParentEPSObjectId when creating Project.
    EPS Object ID i'm selecting from lookup. In this lookup datasource I have following fields from ReadEPS: ObjectId, Name, Id, ParentObjectID.
    As I understood, I should to get ObjectID of selected EPS and to set as parameter in CreateOneProject function. But it's not working.
    Could someone help me?
    Best regards,
    Dmitrij

    I found what was the problem.
    Did not specify following field: ParentEPSObjectIdSpecified = true. With this field I can save.

  • Create table field (not record) using ADDT software

    Hi,
    I wondered if anyone can give me detailed help on how to create a table field on-the-fly instead of creating records, using ADDT software.
    For Example:
    I have two tables.
    One table holds language names and codes, ie Australia and AU for the shortened code.
    The other table holds country descriptions, but each table field is the shortened country code (in this case AU)
    So what I want to do, is when I add a new language in the admin (ie, France) then it will create france in table 1, and also create the table field FR in table 2.
    I am not up on programming, so if anyone can detail as much as possible, you will be saving my bacon here.
    Many thanks
    Mark

    Hi.
    Sounds like what you need is a "foreign key" in the detail table that points to the id of the country in the country table.
    ADDT is perfect for this even if the documetation (and this klunky forum) is now third class.
    I suggest that you read this http://help.adobe.com/en_US/Dreamweaver/9.0_ADDT/help.html?content=MXK3_052000_MX_K3_cont rol_panel.htm
    Make special note of Step 2, item 5, second bullet point.
    (Note item 4 demonstrates the point about pathetic documentation)
    This would be applicable to your Detail Table that needs to have its foreign key pointing to the id of the country table.
    For example, consider two tables with these fields:
    Countries:
    id_cou (the record ID)
    name_cou (the name of the country)
    isocode_cou (the ISO code for the country eg: AU for OZ)
    Details:
    id_det (the record ID)
    idcou_det (the foreign key which is the ID in the Countries table - so this is an interger field - not a text field)
    detailfield1_det (some detail info)
    detailfield2_det (some more detail info)
    etc
    etc
    So in the Dynamic LIst Wizard for the Details list you make sure that the foreign key points to the primary key of the Countries record.
    Now, here is the neat thing: When you get to creating the form for the Details table the foreign key gets displayed as a menu showing the actual names of the countries listed in the countries table.
    Experiment with that and see how you go.

  • Fields not getting displayed in AdvancedTable

    I have created AdvancedTable region following the steps given in help of Jdeveloper.
    Under advancedTable I have created 3 columns, one having a messageChoice item and rest two items are messageTextInput.I have set the ViewObject property of AdvancedTable and have also set the viewAttributes for items.
    But when I run the page, It does not display any fields of AdvancedTable. It just gives the table outline and text that is set for table empty property.
    I have also executed the VO in processRequest of page's controller.
    What could be the reason for the fields not been displayed?
    Thanks in advance,
    Mitiksha

    You should provide the ability to create rows, you can do it on the table by making the table editable and putting a Add another row or you can choose to add it in a drill down create page.
    You can also add a set of new rows initially by creating and inserting rows in the vo in your PR.

  • Text Fields Not Showing in Design or Live View

    Hello Everyone,
    I have run into a problem trying to create a simple contact form through Dreamweaver CS6.  I have two text fields for Name & Email, and 1 text area for Comments.  The issue I am running into is that the text fields are not showing in Design or Live view.  I have set-up all variables required for the server for the form to work... but that should not have any effect on the text field showing...  I tried uploading my contact page with the same result of no text fields showing...
    What is really laughable is that the "text area" I placed in my form for Comments shows up in Design & Live view just fine.  I am thinking that I am missing something, but just do not know what exactly.  The form is styled through CSS.
    Here is the form code:
         <div id="CRDForm">
           <form action="http://www.sweetformimi.com/formmail/formmail.php" method="post" enctype="application/x-www-form-urlencoded" name="contact" target="_self" id="contact">
        <input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT,AUTH_TYPE,REMOTE_USER">
        <input type="hidden" name="recipients" value="[email protected]" />
        <input type="hidden" name="subject" value="Contact Form" />
             <label><p>Your Full Name
               <input name="Name" type="text" id="Name" size="40" /></p>
             </label>
             <label><p>Email
             <input name="email" type="text" accesskey="2" tabindex="2" title="Email" value="Email"></p>
             </label>
             <label>Comments<br />
             <textarea name="comments" cols="40" rows="10" accesskey="3" tabindex="3" title="Comments"></textarea>
             </label>
             <input name="submit" type="submit" accesskey="4" tabindex="4" title="submit" value="submit">
           </form>
        </div>
    Are there other variables I should be thinking about in the rest of my site?  I am using a fluid grid layout.  I have CSS for desktop, tablet, and phone devices.  I also have a primary CSS file that imports all three.  The sites structure was done by using <header>, <article>, <footer>, and of course <div> tags. 
    Has anyone ever experienced the "text fields" not showing up before? Is it a simple fix as reinstalling Dreamweaver CS6?  Finally, another thing I should mention is that I did have a previous version of Dreamweaver on my comp, which was CS3.  I did not uninstall that before installing the newer version.  I assumed (and I could be wrong here) that it would automatically replace the older version.
    I apoligize for it being long winded, but I am looking for some help on this issue...
    Thank You

    Hey thank you osgood for the reply!
    When I look at code for long hours it sort of blurs together, and I miss things... I think that happens to the most of us
    Ya I found what was blocking my text fields in my desktop.css
    I primarily work through code view, and currently working on quite a few projects kind of makes your eyes miss the small errors.
    Thanks again!

  • My app went from working fine to: Id field not defined for cfc Path.to.my.ORMCfCPag when I restarted

    Hi everyone,
    I have a CF9 ORM problem that I haven't been able to figure out and thought I'd see if you had any idea. I have seen a few postings talking about a "similar" problem but none of them correctly resolved this particular issue. I appreciate any help you can offer.
    I recently created a CF9 app where I generated scripted ORM CFCs for my app using ColdFusion Builder. It worked great and my app was completely working. However, when I was adding some enhancements, I ran into an error when I restarted the CF app server. Here's the message I keep getting:
    "Id field not defined for cfc Path.to.my.ORMCfCPage. Either the table should have a PK column mapped to a cfc field OR at least one field should be specified as id."
    My App.cfc file only had orm enabled (no other mappings) when it was working. I've since tried specifying things like the cfc location etc. and it still hasn't helped.
    // MORE DETAILS:
    - When my app was working, I had moved it to 2 other servers. I had this error on both of those but not on my local copy. They all use the exact same database.
    - The last change I made before the error was adding a generator="identity" field to my generated ORM beans. Once I got the message, I tried changing it back and restarting again but still got the error.
    - I've also made sure all of the Adobe tags are in my web root (as suggested in a prior posting about this problem). I've search all over for a solution and nobody has a solution posted online that works so far.
    Do you have any idea why this is happening?
    Thanks!
    Jeff

    Quick thought and probably not relevant, but do you have this.ormsettings.savemapping set to true in your Application.cfc? I've fallen foul of this before - once CF has generated the hbmxml files and saved them to disk you can make all kinds of changes to your code which won't make a difference as it'll continue to read from the file versions, but only for certain properties and methods at times it seems.
    Long shot I know, but I found CF ORM to be a nightmare for seemingly random caching.

  • Schedule Lines not created from MRP

    Hi !!
    I have a finished product ""111-2523-64"" and in its BOM i have a semifinished product ""111-2523-64-010"" produced(Inhouse)& three raw materials .
    For the Raw Materials I have made the scheduling agreement & source list with indicator ("2"" create schedule lines automatically""
    Problem -: Now when I run the MRP using T-Code MD02 the system is planning the finished & semifinished product 
    *but no schedule lines are created for the raw materials.*
    Please Guide , Itz very urgent.
    Regards
    Rahul Bhardwaj
    9909986406

    Dear Rahul,
    When u r running MRP maintain '3' for Delivery Schedules Field under MRP Control Parameters ( T Code MD02). Sheduling Agreement should be valid. If there is sufficient stock on hand compared with the requirement then system will not create any Schedule Lines. In material master of raw Materials on MRP2 view Procurement Type should be Maintained as 'F'. If u have maintained 'E' or 'X' then MRP run will not create schedule lines.
    Regards
    Sunil Kumar

  • I can not create a new user account on eprint

    i can not create a new user account on eprint. I have been trying for over an hour and it repeats telling me that my email addresses are not entered correctly, however they match. ? 

    I have tried to create an account via ePrintCenter and it seems that the published application has several flaws in interpreting the provided input.
    1) In the Filed for last Name I enter my last name, which consist of only Alph Characters. The form however thinks that there is some sort of special character and rejects my Input.
    2) E-Mail address. is not identical; OK, so I do a quick OCR on the E-Mail and guess what they are identical. Again the form Fails to recognize this.
    3) Enter a password (2 Fields) and a third is displayed which is marked as "*required" but is not labeled as to what the required info could possibly be. Or is it a 3 password confirmation box, who knows.
    All I know is that a simple registration is a major pain with this HP site.
    Any Help as to how to alleviate this would of course be greatly appreciated.

  • Custom field not found in in the definition of EAI Integration Component

    Hi,
    I added a custom field to Account with integration tag "FirmsOfficesType". I got an error when I'm adding an account:
    Element with XML tag 'FirmsOfficesType' is not found in the definition of EAI Integration Component 'Account'(SBL-EAI-04127)
    Here is the soap message for adding a account:
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Header>
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" s:mustUnderstand="1">
    <wsse:UsernameToken>
    <wsse:Username>user</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">passwd</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </s:Header>
    <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <AccountInsert_Input xmlns="urn:crmondemand/ws/ecbs/account/10/2004">
    <ListOfAccount xmlns="urn:/crmondemand/xml/Account/Data">
    <Account>
    <Status>Active</Status>
    <PrimaryBillToCity>KANSAS CITY</PrimaryBillToCity>
    <PrimaryBillToCountry>USA</PrimaryBillToCountry>
    <PrimaryBillToPostalCode>64150</PrimaryBillToPostalCode>
    <PrimaryBillToState>MO</PrimaryBillToState>
    <PrimaryBillToStreetAddress>1805 ABC ROAD</PrimaryBillToStreetAddress>
    <PrimaryBillToStreetAddress2>STE 300</PrimaryBillToStreetAddress2>
    <ExternalSystemId>OF222652</ExternalSystemId>
    <IntegrationId>OF222652</IntegrationId>
    <Location>OF222652</Location>
    <MainPhone>+1 1235877526</MainPhone>
    <AccountName>ABC Inc</AccountName>
    <AccountType>INDEPENDENT BD A</AccountType>
    <FirmsOfficesType>Branch</FirmsOfficesType>
    <FirmName>ABC SECURITIES CO</FirmName>
    </Account>
    </ListOfAccount>
    </AccountInsert_Input>
    </s:Body>
    </s:Envelope>
    thx

    Hi
    Please go through the related pointers ->
    The OSS note 672960 has already indicated you need to use BADI to address it.
    For Search criteria
    You can also use user-defined fields as search criteria. To do this, you have to set fields XINPUT and XDISPLAY to 'X' in table ET_FIELDS for the fields you want to use in BADI BBP_CUF_BADI_2 in method MODIFY_SCREEN. The fields defined this way are displayed if you choose the 'Extended search' link.
    Re: Custom field in Create Bid Invitation..
    Re: Search Help for Purchasing Group..
    Re: urgent help request - How to add custom fields to  header BID.
    Re: New Screen with table control information in Process Bid Invitation
    Do let me know.
    Regards
    - Atul

Maybe you are looking for

  • Need help to upload Excel Chinese data into Oracle

    Hello I am very new at internationalization. We are writing an application that reads Chinese data from a Microsoft Excel file and writes it out into Oracle 8i. This is what we have done: 1. Use JDBC-ODBC driver to read the Excel data directly from .

  • How do unregister Adobe Premiere 6.0?

    I own a copy of Adobe Premiere 6.0 for Windows that I purchased several years ago.  After purchasing it, I installed and registered it.  I have since gotten rid of that Windows PC (after uninstalling everything first).  I would like to give the Adobe

  • How to go from the output data to a standard t code

    Hi , I have created  an alv report . The fields of output are : vendor num I cocode I PO number . 0011             2001       450003201 I want that when i double click on PO num 450003201 , then the standard screen of ME23n conatined the data of this

  • Redo Log - Storage Consideration

    I have one question about redo Log storage guidelines, that i red in one article on metalink In that article recommended place redo log on raid device level 1 (*Mirroring*), and NOT recommended place it on raid 10 or 5 If you know - explain detailed

  • How to convert Ms Word (.doc) file to Protected pdf

    Hi all, Is anybody out there could help me on how to convert Ms Word (.doc) file to protected pdf file using java? May be there are some jar file I need to download or any tools you used before? Thanks in advance... =)