Sales BOMs do not appear on picking lists

Hi Experts,  First post!  I notice that when I print a sales order and picking list, any Sales BOMs that are on the sales order do not appear on the pick list.  I think I understand correctly that this is because the sales BOMs are non-stock items, but for our purpose it is fine and important that we are able to show all the line items on a pick list. 
I am using SAP 2007 PL5.  Thank you.  Jason
Edited by: Jason Stansfield on Mar 15, 2008 4:09 PM

would any of the BOM types (Production or Template) be able to appear on a pick list?  I am not sure why SAP has this functionality given that a sales BOM insofar as I understand it, is just a collection of items which are actually stocked. In most cases out Sales BOMs do not even require any assembly. 
If the only way that this can be achieved is through a query print layout would any of the experts be able to offer any help on creating the query as my SQL is not so strong?
Many Thanks
Jason

Similar Messages

  • Delivery Notes Generation Via Pick List

    Am trying to generate delivery notes off pick tickets and i can't find any code example. I now came up with the following code but am having issues when items are in multiple Bin Locations.
    Public Sub Sales2Delivery() '(ByVal OrderID As String)
            Dim OrderID As String = ""
            Try
                Using connection As New SqlConnection(StaginConn)
                    'Dim command As New SqlCommand("SELECT DocEntry from ORDR with (nolock) WHERE NumAtCard = '" & OrderID & "'", connection)
                    Dim command As New SqlCommand("SET DATEFORMAT DMY; select distinct top 5 o.DocEntry, o.NumAtCard from ordr O with (nolock) join RDR1 R with (nolock) on R.DocEntry = O.DocEntry join OPKL P with (nolock) on P.AbsEntry = R.PickIdNo where u_shipstate = 'Delivered' and CAST(O.docdate as date) >= '30/04/2014' and P.Status = 'Y';", connection)
                    connection.Open()
                    Dim reader As SqlDataReader = command.ExecuteReader()
                    ' Call Read before accessing data.
                    While reader.Read()
                        Dim BusinessOrders As Documents = DirectCast(vCompany.GetBusinessObject(BoObjectTypes.oOrders), Documents)
                        Dim BusinessDelivery As Documents = DirectCast(vCompany.GetBusinessObject(BoObjectTypes.oDeliveryNotes), Documents)
                        Dim orders As Documents = BusinessOrders
                        orders.GetByKey(Convert.ToInt32(reader(0)))
                        OrderID = Convert.ToString(reader(1))
                        Dim Delivery As Documents = BusinessDelivery
                        Delivery.CardCode = orders.CardCode
                        Delivery.CardName = orders.CardName
                        Delivery.NumAtCard = orders.NumAtCard
                        'Delivery.DocNum = orders.DocNum
                        Delivery.HandWritten = BoYesNoEnum.tNO
                        Delivery.Series = 8
                        Delivery.DocDate = DateTime.Today
                        Delivery.DocDueDate = DateTime.Today
                        Delivery.TaxDate = DateTime.Today
                        Delivery.Address = orders.Address
                        Delivery.Address2 = orders.Address2
                        Delivery.Comments = "Based on Sales Order #" + orders.NumAtCard & "."
                        Delivery.DocCurrency = orders.DocCurrency
                        Delivery.DocDueDate = orders.DocDueDate
                        Delivery.DocObjectCode = SAPbobsCOM.BoObjectTypes.oDeliveryNotes
                        Delivery.ShipToCode = orders.ShipToCode
                        Dim lines As Document_Lines = orders.Lines
                        'If (count > 0) Then
                        '    lines.Add()
                        '    lines.SetCurrentLine((lines.Count - 1))
                        'End If
                        Dim oPickList As PickLists = DirectCast(vCompany.GetBusinessObject(BoObjectTypes.oPickLists), PickLists)
                        oPickList.GetByKey(orders.Lines.PickListIdNumber)
                        For i As Int32 = 0 To (lines.Count - 1)
                            If i > 0 Then
                                Delivery.Lines.Add()
                                Delivery.Lines.SetCurrentLine(i)
                            End If
                            ' Set the Current Lines on the order
                            orders.Lines.SetCurrentLine(i)
                            Try
                                oPickList.Lines.SetCurrentLine(i)
                                Delivery.Lines.BaseEntry = oPickList.Lines.OrderEntry
                                Delivery.Lines.BaseLine = oPickList.Lines.OrderRowID
                                Delivery.Lines.Quantity = oPickList.Lines.PickedQuantity
                                Delivery.Lines.BaseType = DirectCast(SAPbobsCOM.BoObjectTypes.oOrders, Integer)
                                Delivery.Lines.BinAllocations.BinAbsEntry = oPickList.Lines.BinAllocations.BinAbsEntry
                                Dim rs As SAPbobsCOM.Recordset = vCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                                rs.DoQuery("select itemcode, price, dscription from RDR1 R where R.LineNum = " & oPickList.Lines.OrderRowID & " and R.PickIdNo = " & oPickList.Lines.AbsoluteEntry)
                                While (rs.EoF <> True)
                                    Delivery.Lines.ItemCode = rs.Fields.Item(0).Value.ToString 'orders.Lines.ItemCode
                                    Delivery.Lines.UnitPrice = CType(rs.Fields.Item(1).Value.ToString, Double) 'orders.Lines.UnitPrice
                                    Delivery.Lines.ItemDescription = rs.Fields.Item(2).Value.ToString 'orders.Lines.ItemDescription
                                    rs.MoveNext()
                                End While
                                rs = Nothing
                            Catch ex As Exception
                                Continue For
                                My.Computer.FileSystem.WriteAllText(_LogPath, ErrDetails.ToString, True)
                            End Try
                        Next
                        If Delivery.Add() <> 0 Then
                            ErrDetails.AppendLine(" Unable to create Delivery note for Order: " & OrderID & " <br /> " & vCompany.GetLastErrorCode() & ":" & vCompany.GetLastErrorDescription())
                        Else
                            ErrDetails.AppendLine("Successfully created Delivery note for Order:" & OrderID) ' & " as requested by " & UserEmail & ".")
                        End If
                        orders = Nothing
                        Delivery = Nothing
                        BusinessOrders = Nothing
                        BusinessDelivery = Nothing
                        My.Computer.FileSystem.WriteAllText(_LogPath, ErrDetails.ToString, True)
                    End While
                    'orders = Nothing
                    'BusinessOrders = Nothing
                End Using
            Catch ex As Exception
                ErrDetails.AppendLine(" Error generating Delivery note for Order: " & OrderID & " <br /> " & ex.ToString())
                My.Computer.FileSystem.WriteAllText(_LogPath, ErrDetails.ToString, True)
            Finally
                If Not String.IsNullOrWhiteSpace(ErrDetails.ToString) Then
                    My.Computer.FileSystem.WriteAllText(_LogPath, (ChrW(13) & ChrW(10) & ChrW(13) & ChrW(10) & "Errors encountered while registering data on " & System.DateTime.Now.ToString("F") & ".Errors:" & ChrW(13) & ChrW(10) & Me.ErrDetails.ToString), True)
                Else
                    My.Computer.FileSystem.WriteAllText(_LogPath, (ChrW(13) & ChrW(10) & ChrW(13) & ChrW(10) & "Application Ran successfully on " & System.DateTime.Now.ToString("F") & "."), True)
                End If
            End Try
        End Sub
    The Error message am getting is 1470000368 - The quantity allocated to bin locations must be positive.

    Am getting this error now is
    "1470000341 - Fully allocate item "1017494" to bin locations in warehouse "Isolo". Issue is we have items in multiple Bin locations and the items have been picked via the pick ticket. Is it also possible to generate the delivery note off the Pick List.
    The new code am using is
        Public Sub Sales2Delivery() '(ByVal OrderID As String)
            Dim OrderID As String = ""
            Try
                Using connection As New SqlConnection(StaginConn)
                    'Dim command As New SqlCommand("SELECT DocEntry from ORDR with (nolock) WHERE NumAtCard = '" & OrderID & "'", connection)
                    Dim command As New SqlCommand("SET DATEFORMAT DMY; select distinct top 5 o.DocEntry, o.NumAtCard from ordr O with (nolock) join RDR1 R with (nolock) on R.DocEntry = O.DocEntry join OPKL P with (nolock) on P.AbsEntry = R.PickIdNo where u_shipstate = 'Delivered' and CAST(O.docdate as date) >= '30/04/2014' and P.Status = 'Y' and o.DocStatus = 'O';", connection)
                    connection.Open()
                    Dim reader As SqlDataReader = command.ExecuteReader()
                    ' Call Read before accessing data.
                    While reader.Read()
                        Dim BusinessOrders As Documents = DirectCast(vCompany.GetBusinessObject(BoObjectTypes.oOrders), Documents)
                        Dim BusinessDelivery As Documents = DirectCast(vCompany.GetBusinessObject(BoObjectTypes.oDeliveryNotes), Documents)
                        Dim orders As Documents = BusinessOrders
                        orders.GetByKey(Convert.ToInt32(reader(0)))
                        OrderID = Convert.ToString(reader(1))
                        Dim Delivery As Documents = BusinessDelivery
                        Delivery.CardCode = orders.CardCode
                        Delivery.CardName = orders.CardName
                        Delivery.NumAtCard = orders.NumAtCard
                        'Delivery.DocNum = orders.DocNum
                        Delivery.HandWritten = BoYesNoEnum.tNO
                        'Delivery.Series = 8
                        Delivery.DocDate = DateTime.Today
                        Delivery.DocDueDate = DateTime.Today
                        Delivery.TaxDate = DateTime.Today
                        Delivery.Address = orders.Address
                        Delivery.Address2 = orders.Address2
                        Delivery.Comments = "Based on Sales Order #" + orders.NumAtCard & "."
                        Delivery.DocCurrency = orders.DocCurrency
                        Delivery.DocDueDate = orders.DocDueDate
                        Delivery.DocObjectCode = SAPbobsCOM.BoObjectTypes.oDeliveryNotes
                        Delivery.ShipToCode = orders.ShipToCode
                        Dim lines As Document_Lines = orders.Lines
                        'If (count > 0) Then
                        '    lines.Add()
                        '    lines.SetCurrentLine((lines.Count - 1))
                        'End If
                        Dim oPickList As PickLists = DirectCast(vCompany.GetBusinessObject(BoObjectTypes.oPickLists), PickLists)
                        oPickList.GetByKey(orders.Lines.PickListIdNumber)
                        For i As Int32 = 0 To (lines.Count - 1)
                            If i > 0 Then
                                Delivery.Lines.Add()
                                Delivery.Lines.SetCurrentLine(i)
                            End If
                            ' Set the Current Lines on the order
                            orders.Lines.SetCurrentLine(i)
                            Try
                                oPickList.Lines.SetCurrentLine(i)
                                Delivery.Lines.BaseEntry = oPickList.Lines.OrderEntry
                                Delivery.Lines.BaseLine = oPickList.Lines.OrderRowID
                                Delivery.Lines.Quantity = oPickList.Lines.PickedQuantity
                                Delivery.Lines.BaseType = DirectCast(SAPbobsCOM.BoObjectTypes.oOrders, Integer)
                                'Dim rs As SAPbobsCOM.Recordset = vCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                                'rs.DoQuery("select itemcode, price, dscription from RDR1 R where R.LineNum = " & oPickList.Lines.OrderRowID & " and R.PickIdNo = " & oPickList.Lines.AbsoluteEntry)
                                'While (rs.EoF <> True)
                                Delivery.Lines.ItemCode = orders.Lines.ItemCode
                                Delivery.Lines.UnitPrice = orders.Lines.UnitPrice
                                Delivery.Lines.ItemDescription = orders.Lines.ItemDescription
                                '            rs.MoveNext()
                                '            End While
                                'rs = Nothing
                            Catch ex As Exception
                Continue For
                My.Computer.FileSystem.WriteAllText(_LogPath, ErrDetails.ToString, True)
            End Try
                        Next
                        If Delivery.Add() <> 0 Then
                            ErrDetails.AppendLine(" Unable to create Delivery note for Order: " & OrderID & " <br /> " & vCompany.GetLastErrorCode() & ":" & vCompany.GetLastErrorDescription())
                        Else
                            ErrDetails.AppendLine("Successfully created Delivery note for Order:" & OrderID) ' & " as requested by " & UserEmail & ".")
                        End If
                        orders = Nothing
                        Delivery = Nothing
                        BusinessOrders = Nothing
                        BusinessDelivery = Nothing
                        My.Computer.FileSystem.WriteAllText(_LogPath, ErrDetails.ToString, True)
                    End While
                    'orders = Nothing
                    'BusinessOrders = Nothing
                End Using
            Catch ex As Exception
                ErrDetails.AppendLine(" Error generating Delivery note for Order: " & OrderID & " <br /> " & ex.ToString())
                My.Computer.FileSystem.WriteAllText(_LogPath, ErrDetails.ToString, True)
            Finally
                If Not String.IsNullOrWhiteSpace(ErrDetails.ToString) Then
                    My.Computer.FileSystem.WriteAllText(_LogPath, (ChrW(13) & ChrW(10) & ChrW(13) & ChrW(10) & "Errors encountered while registering data on " & System.DateTime.Now.ToString("F") & ".Errors:" & ChrW(13) & ChrW(10) & Me.ErrDetails.ToString), True)
                Else
                    My.Computer.FileSystem.WriteAllText(_LogPath, (ChrW(13) & ChrW(10) & ChrW(13) & ChrW(10) & "Application Ran successfully on " & System.DateTime.Now.ToString("F") & "."), True)
                End If
            End Try
        End Sub

  • Sales order does not appear in MD04

    Hello,
    One of my sales order is not appearing in MD04. I found out that in the sales order, the requirment type is missing.Is this could be te resaon for sales order not to appear in MD04.
    2nd question) why requiremment type is not there in sales order. In my case, there is no entry in the item cat and mrp type table but in the strategy group in material master, the requirment type exists. so why the system is not showing requirment type in sales order by picking it up from the strategy group. in the item cat +mrp type table, the source is kept as "0", which means the system should pick the requirment type from strategy group . so why it is not picking if it is defined in straetegy group ?/
    Question 3) or is it that the sales orders appear in MD04 only after MRP run but then why other sales orders are apearing before MRP run.
    regards
    sachin

    Hi sachin,
    what planning strategy group is your are using.
    I assume plan stg grop is 20.
    Normal settings for 20 Paln stg grop in material master.
    1.Item category group (such as NORM) on the Sales Organization screen
    2. Set Plan stg = 20 at Mrp View.
    Requierment type fo customer requirement  = KE  assigned  for planning strategy 20 at customizing.
    For 20 plg stg  requiremnt type is   customer requirement type only.
    with above settingsif create sale order it will appear at Md04 before MRP run.
    u can see the customer requ type at "procurement tab "of sale order.
    For planning of material u have to maintain valid MRP type at Mrop view.
    i am not clear about ur second question.
    please comeback
    Regards
    Pradeep

  • Sales BOM Component not in order

    Hi All,
    I have created some Sales BOMs.
    I selected 3 Sales BOMs into Sales Order at one go using the block select. It is displayed without issue when there are no formatted searches setup at Sales Order row level. as shown below.
    SalesBom-01
      SalesBOM-01-Comp-01
      SalesBOM-01-Comp-02
      SalesBOM-01-Comp-03
    SalesBom-02
      SalesBOM-02-Comp-01
      SalesBOM-02-Comp-02
    SalesBom-03
      SalesBOM-03-Comp-01
      SalesBOM-03-Comp-02
      SalesBOM-03-Comp-03
    I have created 2 User-Defined Fields (both have formatted search setup to refresh by Item No).
    = Avail Stock (in Stock - Is Committed from OITM)
       FS = SELECT $[$38.33.number] - $[$38.34.number]
            $[$38.33.number] = In Stock field (std field in Sales Order row)
            $[$38.34.number] = Commited field (std field in Sales Order row)
    = Maximum Selling Price (gets from the Maximum Price List)
       FS = SELECT T0.Price FROM ITM1 T0  INNER JOIN OPLN T1 ON T0.PriceList = T1.ListNum
               WHERE T1.[ListName] ='Maximum Price' and  T0.[ItemCode] =$[$38.1.0]
    After implementing the 2 formatted search, the 1st Sales BOM is not properly displayed. see below example. The components for SalesBom-01 are displayed at the end of the SalesBom-03.
    SalesBom-01
    SalesBom-02
      SalesBOM-02-Comp-01
      SalesBOM-02-Comp-02
    SalesBom-03
      SalesBOM-03-Comp-01
      SalesBOM-03-Comp-02
      SalesBOM-03-Comp-03
      SalesBOM-01-Comp-01
      SalesBOM-01-Comp-02
      SalesBOM-01-Comp-03
    Does anyone have any advise the cause and how i can rectify it?
    Regards
    Jessie

    Hi Gordon,
    I am using 2007B SP0 PL10.
    I have already tried it in SBODemo_SG and customer's TEST database.
    Both are showing me the same results when the Formatted Search are setup.
    Rgds
    Jessie

  • Credit Card number entered CRM sales order is not appearing in R3 Sales ord

    Hi,
    We are entering our Sales orders in CRM which are gtting replicated to SAP R3,In the credit card scenario ,In some sales orders entered in CRM,where the Credit card numer has been entered,In some cases,the card numer is not appearing in R3 Sales order either in the overview screen or Payment card tab,due to ehich most of the times these cards fail authorization .
    Kindly let me know as to what could be the reasons as to why the card numer seen in CRM is not appearing in SAP R3,sales order?
    Appreciate your help on this.
    Regards
    Mohammed Roshan

    Hi All,
    Looking forward to your valuable inputs on this as to  how and why Credit Card number entered CRM sales order iwould not appear in R3 Sales order?
    Regards
    Mohammed Roshan

  • Direct sales line items not appearing in VF04 even if MIRO document created

    Hi,
    Some of the direct sales line item are mysteriously not appearing in VF04, even though the MIRO for the PO related to it is done. In some cases all the items of sales orders are not appearing in VF04 , in some cases it is happening randomly. Such items can be process manually through VF01 . Also if report SDVBUK00 is run , these line items are seen in VF04.
    Kinldy reply .
    Mamta

    Dear Uday Kumar Narayanappa ,
    I think as a consultant you have the say in deciding how the things should be mapped in SAP than the USER.
    I dont find any  reason other than having the same user id being shared between multiple users (and hence variant cannot be used).
    Anyways try this.
    Make a Z program copying VF04 .
    Give the Tcode which is agreeable for the users.
    In that Z program , write a code NOT TO CONSIDER documents of type ZNEW.
    Now limit the authorisation of this new program only to those users who doesnt not want to deal with ZNEW.
    Hope it helps.
    Thanks & Regards,
    Hegal K Charles

  • Treatment of exchange rate difference- company code not appear in the list

    Dear guru,
    I am configuring the treatment of exchange rate difference (SPRO> MM> LIV > Incoming invoice> configure how exchange rate differences are treated). However,the company codes that needed to be configured are not appear in the list. Please note that in the config screen, dont have the option of "New entry", we only set base on the list of existing company codes.
    Also, please be noted that we configured accounts for KDM, PRD in OBYC already
    Appreciate your respond.
    Thanks and best regards,
    Hong

    Hi,
    Check in table "T169P" & "T169V", whether your Co. code exists or not? If not then maintain following config settings.
    SPRO > Materials Management > Logistics Invoice Verification > Incoming Invoice
    > Maintain Default Values for Tax Codes (After maintaining this entry by "New Entries", it will start appearing for following options)
    > Configure How Exchange Rate Differences Are Treated
    > Configure How Unplanned Delivery Costs Are Posted
    > Edit PO Supplement Text in Invoice Verification
    > Set Check for Duplicate Invoices

  • Set  item categaries of sales order  is  not  relevant for picking

    dear friends:
       when i created the outbound delivery and must maintain the picking quantity of materails.i change the configration of system so that not nessesary maintain the picking quantity. set  item categaries of sales order  is  not  relevant for picking via t_code:vlop,what it effect .help me analyze it .
    best regards.

    Hello,
    In TA :OVLP   set/reset the indicator according to your requirement.
    In the case of outbound deliveries, only the delivery items that are relevant for picking are transferred to the Warehouse Management (WM) component. Certain items such as text items or service items (consulting activities) are not relevant for picking.(in those cases uncheck the box)
    In the case of inbound deliveries, this indicator controls whether the item is relevant for putaway.
    This indicator must be set in order for the item to be included in a Warehouse Management transfer order and then put away.
    Regards,
    Nisha
    @award pts if helpful.

  • I still use Aperture 2.1.4.  I need to export an image file with a CMYK profile.  Whereas a generic CMYK profile is listed in ColorSync Utility, it does not appear on the list of profiles in the edit portion of the export preset dialogue.  Help?

    I still use Aperture 2.1.4.  I need to export an image file with a CMYK profile.  Whereas a generic CMYK profile is listed in ColorSync Utility, it does not appear on the list of profiles in the edit portion of the export preset dialogue.  Help?  Is there some way to add the CMYK profile to the list of choices that are available in the export preset dialogue such that I can choose it?

    leonieDF
    Thanks for your response.  My profiles are located within color sync utility as you can see here:   
    These profiles do not respond to clicking and dragging.  Since they are all in one place, more or less, I'm reluctant to make further attempts to relocate them.  Accessing the CMYK profile is the first difficult experience I've encountered with this arrangement.  I have never needed the CMYK profile until recently, and that need has now past.  However, it remains a mystery to me as to why it does not appear with all the others on the menu of export choices in Aperture 2, or on the menu of profile assignment choices in the Preview application (where again all the other profiles are listed as choices).  I'm beginning to think my current set up will permit me to view an image that was created in CMYK space, but does not easily assign, or convert to that space.  I don't face these restrictions with all the others, so it remains a curious circumstance for me.  I anticipate upgrading my computer and software in the near future which might alleviate this issue altogether.  Again, many thanks for your attention to this matter.  The reach of this community is astounding.

  • I need to reset my security questions, I don't have a rescue email and I live in Lebanon (Does not appear in the list of countries for apple calls)

    Hi,
    I forgot my security questions and I don't have a rescue email setup.
    I serached the internet and the only solution I found for that is to call apple. The proble is there is no phone to call, they have to call you and there is a list of countries.
    I live in Lebanon and it does not appear in the list of countries listed for apple customer support call.
    How can I reset the security questions.
    thank you

    The Three Best Alternatives for Security Questions and Rescue Mail
        1. Use Apple's Express Lane.
              Go to https://expresslane.apple.com ; click 'See all products and services' at the
              bottom of the page. In the next page click 'More Products and Services, then
              'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
              ID security questions' and click 'Continue'.
         2.  Call Apple Support in your country: Customer Service: Contact Apple support.
         3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • ITunes Does Not Appear in the List of Default Programs?

    My wife is trying to get iTunes to be her default media player, using the instructions found at this link: http://support.apple.com/kb/HT3202.
    However, when she goes to the list of default programs, following steps 1 and 2 at that link, iTunes does not appear in the list.
    How can we correct this?
    Thanks very much in advance for any info.

    Vik-
    I was having this same problem. I understood how to change the default program but like yours my iTunes was not in the list so therefore I was unable to set it to default.
    This worked for me: (I have Vista)
    I checked for updates on my iTunes program and there was an overdue update. I installed and restarted iTunes. Then went to my Default Programs tab and followed the instructions just as described in the support material and after my installation of the newest update my iTunes was now listed in the lineup of available default programs.
    I hope this works for you as well!
    Thanks and good luck!

  • Taxcodes are not appearing in dropdown list PO & MIRO

    I have created new Taxcode but this taxcode does not appear in dropdown list at item details tab of PO creation screen. when enter manually taxcode system accepts but its not showing in dropdown list. similar is case when i check MIRO ..new created Taxcode is not appearing there. Could you please help me out to find solution

    Hi,
    In T-code OBZT select the transaction as "Relevant for all transaction against your tax code" then check the same in PO and Miro it will appear in the drop down list.
    Regards,
    Patil

  • The Shared option is not appearing in my list. I am turning it off and the back on and it is not appearing. Please HELP

    Been trying for anout 1 hour now and no joy. I am trying to transfer all my music and apps etc from my old laptop to my new and read home sharing would be the easiest. However I am switching home sharing on and it is not appearing on the list.
    Help would be appreciated.
    Thanks

    Device not detected in iTunes for Windows

  • Mail messages in my In Box are not appearing in the list of messages.

    Mail: SOME mail messages in my In Box are not appearing in the list of messages.  Instead, there's a blank line in its place if already read, or just the blue dot if unread.  But when I click on the line, the message's column/header detail appears (and I can open it).
    (Coincidental or not, immediately prior to this situation, I established a New Rule that mail coming from my son's email address should be Moved to the IN Box as they had been going to Trash.  None of the emails I'm questioning have any reference to his email address in them.)

    Continuation of info (from GDTGG): When I leave that mail message and click on a different one, the blank line marking its place once again appears for the message.  (There was a similar problem posted by someone else in 2009 entitled "Inbox Has Blank Lines" but with no apparent solution that I could find.)

  • Created new data source, does not appear in the list

    Hi I created a new data source using information provided in http://otn.oracle.com/products/reports/apis/pdstutorial/textPDS/PDS_1.html. But the new data source I created does not appear in the wizard. Could some body give me a clue? Can somebody point me to more detailed documentation on how to integrate a new data source into Reports Builder?
    thanks
    Srinivas

    Hi
    I desperately need help to troubleshoot why my data source is not appearing in the list eventhough I feel I have done things as per the tutorial. From reading the tutotial I am not clear -
    - If specifying an icon is mandatory. If I don't specify an icon my datasource should still appear right?..without an icon?
    - It is mandatory to implement the editor. I have hard coded things because I don't foresee any interaction by a user with the data source. There is just one column which WILL always appear if this DS is chosen.
    - Finally in the integration instructions(http://otn.oracle.com/products/reports/apis/pdstutorial/textPDS/PDS_5.html) they mention that the classes have to be compiled with "report build" , is that a tool?
    thanks
    Srinivas

Maybe you are looking for