IDOC - Object filter setting

Dear all,
    when i use object filter in IDoc deployment, i find a special part in BD64. Normally just some fields in a filter group but sometimes a special part called 'Dependent on class membership' in it. It seems like a table but i don't know any details.  Please give me a guidance.

Hi, thanks and still some puzzles. Normally I can config some fields in BD59 and when create a filter group in BD64 these fields will be shown one by one. But sometimes at last line a special part 'dependent on class membership' will be displayed, this logon seems like a table. I mean how to control this portion in BD59? Thanks.

Similar Messages

  • IDoc object filter of BAPI

    Dear all,
       I want to add several fields in object filter of BD64, but there are some confusions due to I used a BAPI message type 'PROJECT'. It seems like different from normal message type. After i add items in BD59 for the message type 'PROJECT', i can not find these fields when i create filter group in BD64.
    Please give a guidance. Thanks a lot.

    Hi, thanks and still some puzzles. Normally I can config some fields in BD59 and when create a filter group in BD64 these fields will be shown one by one. But sometimes at last line a special part 'dependent on class membership' will be displayed, this logon seems like a table. I mean how to control this portion in BD59? Thanks.

  • BD64 'No filter set' not availible

    Hello friends,
    For each message type defined between a sender and a receiver, we can set set filters on specific fields of the message type so that IDocs be generated only when these specific values are matched. These filters are set by selecting the 'no filter set' text under message types in BD64. But for that IDoc 'LOISTD' is the 'no filter set' not included. Does anybody know how can i activate them?
    Best regards,
    Fatih

    Hi Raju,
    You can check the tables parameter COMMUNICATION_IDOC_CONTROL to check if any communication IDocs are created. If this is empty and sy-subrc = 0, you can conclude that processing did not have any error, maybe the IDoc filter took effect and did not generate any master Idoc.
    From the documentation of function module:
    In the table parameter  COMMUNICATION_IDOC_CONTROL the header records for the communication IDocs created are retturned. You can tell whether processing was successful from the field STATUS.
    Regards,
    Shyam.

  • Liquify as a smart object filter CS6

    I understand that I should be able to use Liquify as a smart object filter in CS6 however when I get a layer rendered as a smart object and attempt to use the smart filter Liquify is greyed out.
    my only opiton thus far has been to stamp it down and work on the stamped down layer.  Am I missing something .  I'm using Adobe Photoshop Version: 13.0.6 (13.0.6 20131025.r.54 2013/10/25:21:00:00) x64

    I think that is in the photoshop cs6 creative cloud verion 13.1 that the Smart object liquify was added.
    (not in the perpetual license versions of photoshop cs6)
    Also, it's in photoshop cc (photoshop version 14) as well

  • BACKGROUND PROCESSING, REPORT NOT LOADING, "OBJECT NOT SET TO INSTANCE..."

    Post Author: thecoffeemachine
    CA Forum: .NET
    I already posted this message in other Web sites, but I am almost getting crazy here and I need help:
    HI:
    The Web application I am testing was having several issues related to loading Crystal Reports. It was fixed and I do not know which of the 1000 things I did to fix it; but now it began, again, to have the same behavior after I had a conflict with another Web site that was in the same server.
    The thing is that I had another virtual directory where resided a copy of the same Web app. for testing purposes/working with the Visual Studio. The reports were loading all fine, very fast, all perfect... And suddenly the assemblies of one Web site and the other began to "blend" together and..... well the same behaviors appeared again. I tried to copy the last stable backup and rebuild the Web app... but it did not work.
    At the very first time that one requests the report, it shows without problem. At the second time it shows an error message related to "cannot submit to background processing", and sometimes "object not set to an instance.." ... and on the third time it just never shows up and the app. becomes unresponsive. I have to close the window and request the Web site again in another browser window. If I wish to see the report again I have to wait for hours until it shows it.
    I am using Visual Studio 2003 and the Crystal Report version that was shipped with that Visual Studio version. I am working with Windows Server 2003 and SQL Server 2000. Below is the VB code:
        Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load             Me.SqlConnection1.Open()
           Me.SqlSelectCommand1.Parameters("@CourseCode").Value = Request.QueryString("CD")         Me.SqlSelectCommandReferences.Parameters("@CourseCode").Value = Request.QueryString("CD")         Me.SqlSelectCommandTextbook.Parameters("@CourseCode").Value = Request.QueryString("CD")         Me.SqlSelectCommandObjectives.Parameters("@CourseCode").Value = Request.QueryString("CD")         Me.SqlSelectCommandTopicData.Parameters("@CourseCode").Value = Request.QueryString("CD") Me.SqlSelectCommandCourseOutcomes.Parameters("@CourseCode").Value = Request.QueryString("CD")
            Me.SqlDataAdapterMainData.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseSyllabusData")         Me.SqlDataAdapterReferences.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseReferenceData")         Me.SqlDataAdapterTextBook.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseTextbookData")         Me.SqlDataAdapterObjectives.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseObjectivesData")         Me.SqlDataAdapterTopicData.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseTopicData")
    Me.SqlDataAdapterCourseOutcomes.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseOutcomes")
            Dim myExportOptions As CrystalDecisions.Shared.ExportOptions         Dim myDiskFileOptions As CrystalDecisions.Shared.DiskFileDestinationOptions         Dim myExportFile As String         Dim myReport As New ABETFormat         myReport.SetDataSource(Me.DtsSyllabusCompleteData1)
            myExportFile = "C:UNTempPDF" & Session.SessionID.ToString & ".pdf"         myDiskFileOptions = New CrystalDecisions.Shared.DiskFileDestinationOptions         myDiskFileOptions.DiskFileName = myExportFile         myExportOptions = myReport.ExportOptions
            With myExportOptions             .DestinationOptions = myDiskFileOptions             .ExportDestinationType = .ExportDestinationType.DiskFile             .ExportFormatType = .ExportFormatType.PortableDocFormat         End With
            myReport.Export()
            Response.ClearContent()         Response.ClearHeaders()         Response.ContentType = "application/pdf"
            Response.WriteFile(myExportFile)         Response.Flush()         Response.Close()         System.IO.File.Delete(myExportFile)         Me.SqlConnection1.Close()
        End Sub
    I already have tried moving the Crystal Reports dll´s to the bin directory. ..... I have tried calling the Garbage Collector at page unload...I also have checked, inside the report, that the database is "up to date"... ... recycling the worker process of the IIS... etc...
    I see that, in debbuging mode inside the Visual Studio, when the page loads the debbuging window shows a message notifying that the symbols related to the Crystal Reports dll's could not be loaded.
    Should I need to modify the default properties of the database? I checked "database is case insensitive", "use indexes or server for speed".. I have tried checking and unchecking the box "performing grouping on server"
    Oh by the way, my report has about 4 subreports in it. Each report loaded shows 1 or 2 pages.
    ANY HELP WILL BE EXTREMELY APPRECIATED....
    MMS

    See  [Crystal Reports For Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23&overridelayout=true] article, page 107 and on for details on how to use Crystal reports in session.
    Ludek

  • Document(object, node-set)

    Using xsql 1.0.4.1, I'm having some trouble using the document(object, node-set) function defined in the XSLT 1.0 recommendation, sect 12.1:
    http://www.w3.org/TR/xslt#function-document
    I have a tag in my source xml document which contains a reference to another xml document. I want to construct an XPath expression for this other xml document. The path to the other xml document is specified relative to the source document.
    I'm doing something like this:
    Source Document:
    <blah>
    <some-tag redirect="answer.xml" />
    </blah>XSL:
    <xsl:template match="blah/some-tag">
    <xsl:variable name="redir" select="document(@redirect, / )" />
    <xsl:apply-templates select="$redir//somepath" />
    </xsl:template>
    ...However, Oracle XSLT always comes back with the following error:
    XSL-1013: Error in expression 'document(@redirect, / )'.I also get this error if I try
    document(@redirect, document(''))which is given as an example on pg 446 of Steve's book (but not what I want, since it resolves relative to the stylesheet).
    document(@redirect)works fine, but again is not what I want.
    Am I doing something wrong?
    Brian

    This is Oracle Bug# 1722555, hopefully which will be fixed in the 9.0.1.0.0 release. Currently the two-argument version of the document() function is not recognized properly.

  • 91 object not set in SAP BPC NW7.0

    Dear friends
    I am facing problem while logging on to BPC Administration
    even the BPC server Diagnostics all showing green color no error
    error ir
    91 object not set
    what could be the problem can anybody solve this problem
    Regards
    krishnamoorthy.p

    Hello krishnamoorthy.p,
    I hope the following might help BPC-Getting Error while connecting Application Set from BPC Administration .
    Best regards,
      Andreas

  • IDoc Object type

    What is an IDoc object type and how to create it.
    This is in redfernce to the seconfd screen a person has to enter when he is creating a new process code for inbound processing.

    Hi,
    If you see the F1 help for this field it says that "Object type contains the method and events for error  processing of IDOCs of s specific message type".
    Look at the inbound process code INVL. Hit the button right adjacent to the Function module for process code INVL. Here you can see how and what entries are made on this screen.
    Let me know if you have any question.
    Regards,
    RS

  • Router Filter Setting

    I need help on router filter setting.  I am using router model WRT160Nv3.  I have a very specific set of filtering requirements (see below) to be implemented.  I implemented all of them except the first one.  It is not clear to me how I could implement that.  I am including all the requirements because I think I run out of filtering policy (the router allows only 10 policies)
    Filtering requirements:
    1. Allow all machines access to internet from 3:00 to 4:00pm, and from 7:00 to 12:00 midnight (each policy can have only one time range)
    2. Block 6 different sites 24 x 7 (each policy can block up to 4 sites)
    3. Block 30 different keywords (each policy can block up to 4 keywords)
    Couple questions:
    1. What is the "combining" logic on multiple policies?  Are they AND together or OR together? Do ALLOW and DENY use the same or different logic?
    2. Each policy allows only one time range.  Does it mean that I have to split requirement 1 into 2 policies, one for each range?  If I use two policies,
        it seems the "combining" logic may be difficult?
    Thank you for your help in advance,
    AK

    Mario,
    I resolved my problem.
    Make sure your router is also WRT160Nv3.  My solution applies only to that model.
    There were couple things that I did:
    1. Reduced the number of keywords to be filtered so that they used up less policies.
    2. All policies have the same logics:
        If the conditions meet, it will apply the actions.  The conditions are: time range, site names, keywords, etc.
        The actions are allow or deny corresponding to the condition.
        For example, if one of the policy said site www.xyz.com would be blocked.  If the site occurred, that policy would
        fire and block the site.  That means the logic is OR among the policies.
    3. You can use up all the conditions in the same policy.  All the conditions are independent of each other.
        For example, each keyword is blocked independent of other keywords, regardless of the time range.
    4. I set up one policy with time range = 24 hours for allow.
        Then set up another policy with time range = 4:00pm to 7:00pm for deny.  That covered my time range requirements.
    5. Then I set up other policies to cover sites and keywords.  Since they were all independent to each other,
        as long as the condition occurred to any one of the policies, the policy would fire and perform the action.
    I hope that would answer your question.
    Andrew K

  • Why Does Video Stretch When Changing Filter Setting During Encoding?

    Hi,
    I've exported my video as h.264 720x480. I've burned it to a dvd. Looks pretty good but the brightness is too much. I re-exported as h.264 except this time I lowered the brightness slightly with the filter setting. (don't want to really touch project settings). Brightness is fine now, but the video stretched vertically for some reason. I played the two .mov files on my mac and the stretching definitely occurred during export.
    Any ideas what's happening here and what the solution is? I find this bizarre.
    Thanks!
    Steve

    Most YouTube content requires Flash ..  You're using Safari to view YouTube?
    If so ...
    Open System Preferences > Flash Player then select the Advanced tab.
    Click Delete All under Browsing Data and Settings
    Not empty the Safari cache.
    From your Safari menu bar click Safari > Preferences then select the Advanced tab.
    Select:  Show Develop menu in menu bar
    Now click Develop from the menu bar. From the drop down menu click Empty Caches.
    Quit and relaunch Safari then try a video.

  • How do i verify the filter setting set in SCXI 1102b module

    How do i verfiy the filter setting set in SCXI 1102b module prorammatically per channel
    Suresh Thangappan

    Hello Suresh,
    Thank you for contacting National Instruments.
    If you are using NI-DAQmx, you can use a channel property node to retrieve the cutoff frequency of your input filter. Please see the attached screen shot for details.
    In Traditional DAQ, use the AI Parameter.vi located under NI Measurements >> Data Acquisition >> Analog Input >> Advanced Analog Input >> AI Parameter. See the screenshot below for details.
    Let me know if you have any further questions.
    Sincerely,
    Sean C.
    Applications Engineer
    National Instruments
    Attachments:
    Filters.zip ‏41 KB

  • CO27 user filter setting

    hi all.
    After we upgrade sap from 4.6 to 6.0. co27 user filter has many change. when execute co27 into picking screen in 4.6. user may set "user filter " and save it.
    but sap 6.0 hasn't "user filter" set and save function.
    it is only use "SE38" to change program " RCNBF0IM"
    to set user filter .
    please give any advise.
    thanks!
    james

    The previous experiments were performed with Oracle 10i. I just saw that in Oracle 11.1.0.7 there is this new feature: "USER_FILTER is now sensitive to FORMAT and CHARSET columns for better indexing performance.".
    This seems to be exactly what I was looking for.
    Regards
    Stephan

  • Updating filter setting in Hottinger HBM software CATMAN from inside LABVIEW

    I know how to update CATMAN by itself. Does anybody have an idea how to change filter setting on the fly from inside Labview without having to stop my application and opening CATMAN doing the update then starting Labview back up. 

    Hi Hobart,
    Could you please describe a bit more as to how you are accessing the instrument or if you're using any drivers from the Instrument Driver Network?
    Aashish M
    Applications Engineer
    National Instruments
    http://www.ni.com/support/

  • Problem in HRMD_A Idocs: Object is Locked

    Hi Everyone,
    I would like to ask for assistance on the problem below.
    We've encountered almost everyday failed HRMD_A idocs. Almost all of the idocs have the same error message: "Object is Locked. A locked key has been set for the object."
    The object type is "P".
    Can you help us on how to solve this problem?
    Thanks in advance!

    Hi,
    For the locked object the sender system itself will not send the idoc.
    and hence the error for the lock object might have been seen in the sender system and not the receiver system.
    Yes you can process the idocs which are in error in the receiver system by frequently scheduling reports like
    RBDMANI2-Schedule update of idocs with errors and
    RBDAPP01- for ready for transfer idocs
    I suggest you use the bapi way of transferring data, where the receiving system reads data from the sender system once a day and reads only that data which is changed during that date.
    Regards,
    Divya

  • IDOC ORDERS Filter

    Hi,
    I have a problem with the filter of the idoc ORDERS because I have a filter
    on the segment E1EDP01 field LGORT.
    Question : If I want that every time the filter on the LGORT is not respected, the IDOC ORDERS is not generated, how do I make this.
    Because now, if the filter on the LGORT is not repected, the segment E1EDP01 is not generetad but the IDOC ORDERS yes and this is a problem.
    Thank you for your feedback.
    Denis

    Try to use the Filter Objects... or EXITS...
    TCodes: BD95, BD59, BD60

Maybe you are looking for

  • Print/Export on toolbar no functionality in Report viewer - please help

    I am not able to get any functionality out of the toolbar icons Print and Export on the crViewer built in toolbar.  When I click on the buttons I get the Yellow Java triangle in the bottom left corner.  The message details is "object does not support

  • Printing discs problem in My Image Garden

    Hello thank you for taking the time to read this As of today when trying to print to disc in My Image Garden I am getting the following message "Cannot print because a printer supported by this software is not installed" Its a bit of a puzzler as I h

  • Printing help

    Hi, first of all, I know that I don't have a Photo printer, but for now, this is what I have (I'm not a pro). I own the HP PSC 1410 (a All-In-One printer) and I want to print what I see in Lightroom (or near). And this might not be a Lightroom questi

  • Can a mba use an imac as an external display

    I have a PowerPC G5 iMac running Leopard and I'd like to use it as an external display for my new 2011 MacBook Air running Lion. Is this possible? What cable would be used? Any need for additional software?

  • CROSS TAB

    HI ABAP GURUS, I am fresher ,help me how to link the quick viewer in the cross tab format.