How to match BSIM with MSEG (match FI entries to MM entries)

Hello,
I have to make a custom report calculating opening, closing stock - its value and quantities (with respect to begin and end date) however taking into consideration only certain movement types. I need to neglect those entries from BSIM which have other movement types than the ones specified as a parameter but there is no BWART field in BSIM.
How can I match FI document entries(BSIM / BSEG) to MM document entries(MSEG) ?
Thanks.

Assuming its true ( 1MM doc = 1FI doc ), the question is how to match FI document item with MM document item ?
is it a rule that entries in fi docs are in the same order as entries in mm doc?
therefore a formula    (MM_entry * 2) = FI_entry would work but I'm kinda sceptical to assume that
Edited by: Bartosz Bijak on Jan 18, 2010 1:31 PM

Similar Messages

  • How to Synch Calendar with Outlook without Deleting Entries

    moved to "BlackBerry® Link" board

    If you are trying to share a calendar on your iPad to someone else's iMac they must also have an Apple ID. On the iPad tap the Calendars button then tap the blue arrow on the one you wish to share. Then tap the "Add Person..." button adding there Apple ID email address, an invite will then be sent to the other person.

  • How to match manufacturing costs with milestone billings

    How to match manufacturing costs with milestone billings

    Hi
    Inventory and WIP costs of Project Manufacturing are interfaced to Oracle Projects using the program - Cost Collector. I assume this same program will pick the EAM costs as well. Cost Collector should be run for the inventory organization after transactions were costed by Cost Manager. The transactions will be interfaced to PA Transaction Interface table. From there rub PRC: Transaction Import process to bring them into PA as expenditure items.
    Dina

  • How to match invoice with credit together

    I am new to this forum. In EnterpriseOne Accounts Payable function, is it possible to bring up both invoice and credit memo, to match the net quantity in the receipt?
    For example, invoice charges 5 pcs, then credits back -2 pcs, the receipt has the net 3 pcs.
    How do I bring up both invoice and credit to show the net charge of 3pcs, to match the receipt of 3?
    Thanks!

    Pls refer note: How Are Match Basis and PO Line Type Related for Invoice Matching? [ID 428303.1]
    regards,

  • How to match a fingerprint template from database ?

    i now can save a fingerprint template from database using this code..
    Dim fingerprintData As MemoryStream = New MemoryStream
    Template.Serialize(fingerprintData)
    fingerprintData.Position = 0
    Dim br As BinaryReader = New BinaryReader(fingerprintData)
    Dim bytes() As Byte = br.ReadBytes(CType(fingerprintData.Length, Int32))
    Dim cmd As SqlCommand = New SqlCommand("INSERT INTO fininger_table VALUES(@FIRSTNAME, @LASTNAME, @FINGERPRINT)", conn)
    cmd.Parameters.Add("FIRSTNAME", SqlDbType.VarChar).Value = CaptureForm.tboxFname.Text
    cmd.Parameters.Add("LASTNAME", SqlDbType.VarChar).Value = CaptureForm.tboxLname.Text
    cmd.Parameters.Add("FINGERPRINT", SqlDbType.Image).Value = bytes
    conn.Open()
    cmd.ExecuteNonQuery()
    conn.Close()
    and i fetch the data when the form is load..
    conn.Open()
    Dim cmd As New SqlCommand("SELECT * FROM Fininger_table", conn)
    Dim rdr As SqlDataReader = cmd.ExecuteReader()
    Dim MemStream As IO.MemoryStream
    Dim fpBytes As Byte()
    While rdr.Read()
    fpBytes = rdr("FINGERPRINT")
    MemStream = New IO.MemoryStream(fpBytes)
    Dim template As New DPFP.Template(MemStream)
    OnTemplate(template)
    ' template.DeSerialize(MemStream)
    End While
    rdr.Close()
    conn.Close()
    and now i'm stuck..i dont know how to match the fingerprint from the database to verify the user..
    plz help me out..tnx in advance
    btw im using a DIGITAL PERSONA FINGERPRINT READER..with the OTW SDK

    Hello My dear Brother 
                    I am zaid Ahmad khan would like to help you and this is the working code please see this and you will have the solution 
    Imports System.Data.SqlClient
    Imports DPFP
    Public Class Form1
        Private WithEvents verifyControl As DPFP.Gui.Verification.VerificationControl
        Private matcher As DPFP.Verification.Verification
        Private matchResult As DPFP.Verification.Verification.Result
        Private allReaderSerial As String = "00000000-0000-0000-0000-000000000000"
        Public template As DPFP.Template
        Private userTemplateColumn As String = "Template"
        Private userIDColumn As String = "ID"
        Dim bytes As Byte()
        Private Sub CreateDPControl(ByRef control As DPFP.Gui.Verification.VerificationControl)
            Try
                control = New DPFP.Gui.Verification.VerificationControl()
                control.AutoSizeMode = Windows.Forms.AutoSizeMode.GrowAndShrink
                control.Name = "verifyControl"
                control.Location = New System.Drawing.Point(0, 0)
                control.ReaderSerialNumber = "00000000-0000-0000-0000-000000000000"
                control.Visible = True
                control.Enabled = True
                control.BringToFront()
                Me.Controls.Add(control)
            Catch ex As Exception
                MessageBox.Show("exception")
            End Try
        End Sub
        Private Function ConnectString() As String
            Dim connectionString As String
            connectionString = "Server=localhost;database=bs;User ID=sa;Password=123"
            Return connectionString
        End Function
        Private Sub VerifyBiometric_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            matcher = New Verification.Verification()
            matchResult = New Verification.Verification.Result
            CreateDPControl(verifyControl)
        End Sub
        Private Sub verifyControl_OnComplete(ByVal Control As Object, ByVal FeatureSet As DPFP.FeatureSet, ByRef EventHandlerStatus As DPFP.Gui.EventHandlerStatus) Handles verifyControl.OnComplete
            Dim dataSet As DataSet = New DataSet()
            Dim adapter As SqlDataAdapter = New SqlDataAdapter()
            Dim sqlCommand As SqlCommand = New SqlCommand()
            Dim ctr = 0
            Try
                Dim max As Integer = 0
                Dim cn As New SqlConnection(ConnectString())
                cn.Open()
                sqlCommand.CommandText = "Select templateBytes7 from userthumbs where id='1029'"
                sqlCommand.CommandType = CommandType.Text
                sqlCommand.Connection = cn
                Dim lrd As SqlDataReader = sqlCommand.ExecuteReader()
                Dim usr
                While lrd.Read()
                    usr = lrd("templateBytes7")
                End While
                bytes = Nothing
                bytes = usr
                template = New DPFP.Template()
                template.DeSerialize(usr)
                'Perform match
                matcher.Verify(FeatureSet, template, matchResult)
                If matchResult.Verified Then
                    EventHandlerStatus = Gui.EventHandlerStatus.Success
                    MsgBox("Verified!")
                    Me.Hide()
                    MessageBox.Show("Done")
                Else
                    EventHandlerStatus = Gui.EventHandlerStatus.Failure
                    MsgBox("Please Try Again!")
                End If
            Finally
            End Try
        End Sub
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        End Sub
    End Class

  • How to match mm and fi value

    HI
    I have finished goods material, where my mm side stock value say rs 50,000 (in mb5b),
    how to compare the FI side values?? in whch tcode?
    i couldn't get the exact values in mb5l ... where to check ?? and how to match mm and fi to have similar value

    Hi,
    The variance due to
    -You have entered postings to the stock account manually.
    -The stock account includes not only stock postings, but also other postings. In this case, you should check the account determination in the Customizing for Valuation and Account Assignment. Make sure that the stock accounts are used solely for the transaction key BSX (stock postings).Check Account Determination
    -The account assignment for the stock accounts (transaction key BSX) was changed .
    Common selection parameters to execute MB5L transaction are
    -Company Code
    -Valuation Area( if your company code have different valaution area that depents on the way you want to get the output)
    -Period ( 3 options you have current period, previous period and previous year)
    -Below that you have different output options to select
    Then execute (F8)
    The list with overview of stock by account with MM value and FI value. The values of MM and FI must be the same.
    For a good practise don not post any adjustment accounts to the stock accounts.
    Regards,
    Krishna Kishore

  • How to match PR in AP module?

    Fixed Asset purchasing is done by creating a PR and no convertion to PO because our customer doesn't want to do the PO approval in such a situation. Then I have a question that how to match the AP invoice with PR in AP module?
    Does anyone meet such a need?

    Hello,
    I'm not good in Purchasing but look at
    Approve requisition without using any approval hierarchy
    especially
    "Hi
    If you define Approval Rules for a user giving him/ her enough approval rights so that the requisition created gets auto approved
    To do so create the Approval Authorization Rule and assign it to the job/ position of the user in question using the Assign Approval Groups form.
    Regards
    Akhil"
    Maybe you should post your question in Procurement You will get answer faster:)
    Regards,
    Luko

  • How to match invoice for service PO

    Hi,
    we have rasied a service PO for for 25 units for HR..but the supplier who provides the service completed the work in 16 hrs..
    as this is a service PO the invoice match option is with PO..so no receipt was created...
    now how can the invoice be created in the system...as the units in the PO differ..
    Mahendra

    Pls refer note: How Are Match Basis and PO Line Type Related for Invoice Matching? [ID 428303.1]
    regards,

  • How to match sound track to movie pictures? (the sound track is shorter)

    I have a sound (narrative) track of approx 1 hr which talks about the movie film. However the film I have, is a slightly different version, that is about 10 min longer then the sound track and I would like to restore the match, e.g. by something like cutting the sound track and inserting blanks, or cutting and moving the sound a couple of seconds. Note I'm totally new to Premiere V 10. I presume I would have to use start and end marks in the sound track and place the subsequent sound parts on a new sound (or narrative?) track (but it seems I will need to introduce additional silent parts, I cannot just move (drag?) the next sound track a couple of seconds to the left.
    I would guess there are a couple of easy tricks to achieve my goal.
    Thank you in advice.
    Rob Tausk

    Well well: not easy nor trivial at all, but I haven’t given up as yet! I’ll describe my workflow below.
    1.       Play video fragment, and comparing film picture and sound estimate position where I need to introduce a silent period and it length.
    2.       By double click play sound “comment track” on the monitor and set end stop (I would actually prefer if the sound track could be zoomed to more easily/accurately find best position)
    3.       Play mute sound clip in preview and set time length with end stop and close preview
    4.       Move mute clip to comment track, which has been shortened in step 2
    5.       Play main sound clip in Preview and set start point
    6.       Move this sound clip to comment track.
    But sometime things go slightly wrong, e.g. when moving mute or sound fragment to “comment track” I find that the video track cuts (not intended)
    Another difficulty I still need to master is related to the phenomena you mentioned before, related to moving sound clips, parts which were before the starting point show up (e.g. drag edges).
    I hope you can roughly follow my explanatory story (I realise writing such workflow is difficult and critically depends on the same use of words concepts definitions and jargon (note my Adobe Premiere Elements is in Dutch).
    I’d much appreciate your comments (maybe another software would be friendly to the inexperienced senior citizen)
    Van: A.T. Romano 
    Verzonden: woensdag 23 juli 2014 18:37
    Aan: Robert Tausk
    Onderwerp:  How to match sound track to movie pictures? (the sound track is shorter)
    How to match sound track to movie pictures? (the sound track is shorter)
    created by A.T. Romano <https://forums.adobe.com/people/A.T.+Romano>  in Premiere Elements - View the full discussion <https://forums.adobe.com/message/6576612#6576612>

  • Regular expression-- How to match whole word

    I use java.util.regex in my case,
    my problem is following:
    here is a sentence: "oRs As ordoRs"
    i use this pattern: (?!\w)oRs(?<!\w)
    the first word oRs should match, but why the third word also match?
    Maybe my problem also could be scribled as following:
    How to match whole word?

    here is a sentence: "oRs As ordoRs"
    i use this pattern: (?!\w)oRs(?<!\w)
    the first word oRs should match, but why the third
    word also match?What's even more interesting, there should be no matches at all! Just because the pattern is inherently inconsistent:
    the (?!\w) requires the next char to be a non-letter, but
    at the same time this char is reqired to be a letter 'o'.
    The same thing in the end: the last char should be 's' but not a letter. So the pattern must match nothing.
    Maybe my problem also could be scribled as following:
    How to match whole word?It's simple, use word boundaries - either directed ( "\<" and
    "\>") or undirected ("\b").
    The word pattern will look like "\b\w+\b" or "\<\w+\>"
    Test it here
    http://jregex.sourceforge.net/demoapp.html

  • How to link asset with purchase order and PO Item.

    Hello,
           I have to generate a report which contains columns
    Asset No , po no(ebeln) ,PO Item(ebelp),Material no etc
    My query is how to link asset with purchase order and      PO Item.
    I am selecting asset and po no. from anla  but how to get
    po item no(ebelp)?
    po line item is important in this report because every line item has differrent asset and material no.
    i tried to match asset no in mseg table but i am not getting asset no in mseg .
    how should i proceed ?

    Thanks Thomas & Srimanta for the quick response.
    When I checked EKKN table by entering PO there is no asset no. in anln1 field.
    Also I would like to add that, In me23n for a PO, account assignment category we are entering 'F' for internal order settlement.
    Where can i find the link between asset and po no(ebeln) and po item(ebelp)?
    Regards,
    Rachel
    Edited by: Rachel on Aug 11, 2008 7:23 AM

  • How to Compare date with Current system date in XSLT mapping.

    Hello Experts
    In a XSLT mapping program, I hava a filed, ZZOB which is giving some date.
    which I need to compare with the current date.
    Condition-
    ZZOB is greater than current date or ZZOBLIG = NULL
    Then go further statements.
    how can i campare with the current date?
    Please help.
    Thanks
    Balaprasad

    This example may help:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">
    <xsl:param name="currentDate"/>
        <xsl:variable name="firstDate" select="concat(substring($currentDate, 1,4),substring($currentDate, 6,2),substring($currentDate, 9,2))"/>
        <xsl:template match="/">
            <xsl:apply-templates select="//item"/>
        </xsl:template>
        <xsl:template match="item">
            <xsl:variable name="secondDate" select="concat(substring(submissionDeadline, 1,4),substring(submissionDeadline, 6,2),substring(submissionDeadline, 9,2))"/>
            <xsl:choose>
            <xsl:when test="$firstDate &gt; $secondDate">
                <xsl:call-template name="late"/>
                </xsl:when>
                <xsl:when test="$firstDate &lt; $secondDate">
                    <xsl:call-template name="ontime"/>
                </xsl:when>
                <xsl:when test="$firstDate = $secondDate">
                    <xsl:call-template name="same"/>
                </xsl:when>
                <xsl:otherwise>Monkeys<br /></xsl:otherwise>
            </xsl:choose>
        </xsl:template>
        <xsl:template name="ontime">
            This is on time
        </xsl:template>
        <xsl:template name="late">
            This is late
        </xsl:template>
        <xsl:template name="same">
            This is on time
        </xsl:template>
    </xsl:stylesheet>

  • How to use I18N with a custom validator?

    This is my custom validator:
        public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException
            Pattern pat=Pattern.compile(".+@.+\\.[a-z]+");
            Matcher m= pat.matcher(value.toString());
            if(!m.find())
                FacesMessage message = new FacesMessage("Not a valid e-mail address");
                throw new ValidatorException(message);
        }Instead of providing the text "Not a valid e-mai address", I'd like to get the text out of my ApplicationResources property file.
    How can I do this?
    I know how to use it with the provided validators, but not with own custom ones
    Please help me out, thanks

    I found a solution for this problem, I don't know it's best practice but here it is :
        public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException
            String errortext;
            Pattern pat=Pattern.compile(".+@.+\\.[a-z]+");
            Matcher m= pat.matcher(value.toString());
            if(!m.find())
                ResourceBundle bundle =
                ResourceBundle.getBundle("be.vdab.resources.ApplicationResources", context.getViewRoot().getLocale());
                errortext = bundle.getString("erroremail");
                FacesMessage message = new FacesMessage(errortext);
                throw new ValidatorException(message);
        }

  • Need an example how to use SCAN_Start with a callback function

    I would appreciate if someone helps me with a working example of how to use SCAN_Start with a callback function. I need just a basic functionality: to specify a channel list (with gains probably), to start a data acquisition task and to receive data buffers utilizing a callback function. t this time whatever I was trying to do caused computer hangups, though it is supposed to be one of the most regular tasks to perform.
    Thank you in advance,
    Mike

    Hello Mike,
    Thank you for contacting National Instruments.
    Attached is an example project which uses a callback function to begin analog acquisition (AI) by calling SCAN_Start. This project acquires from the first 2 channels on your DAQ device. Make sure to modify the device number in the code to match the number of your card.
    Let me know if you have any further questions...
    Sincerely,
    Sean C.
    Applcications Engineer
    National Instruments
    Attachments:
    Acquire_multichannel_61xx.zip ‏11 KB

  • How do I deal with Tokenized strings that are blank?

    I'm writing a little application that writes data to a file. It sends data to the file as a "|" delineated string. Then I use tokenizer to break up the string as follows:
    try {
                                  String searchtext = SearchTxt.getText();
                                  String tokenString = "";
                                  String[] returnData = new String[8];
                                  File filedata = new File("bigbase.txt");
                                  BufferedReader in = new BufferedReader(
                                  new FileReader(filedata));
                                  String line = in.readLine();
                                  while ( line != null) {
                                  Pattern pat = Pattern.compile(searchtext);
                                  Matcher mat = pat.matcher(line);
                                       if ( mat.find() ) {
                                       StringTokenizer t = new StringTokenizer(line, "|");
                                       maintextArea.setText("");
                                       int count = 0;
                                            while (t.hasMoreTokens()) {
                                                 tokenString = t.nextToken();
                                                 returnData[count] = tokenString;
                                                 maintextArea.append(tokenString + " ");
                                                 System.out.println(tokenString);
    etc etc etc
    The problem is that when the tokens are blank, I get an endless loop when I try to print out the data on that last line. How do I deal with Tokens that are blank so they don't endlessly loop my output?
    Thanks
    MrThis

    Most people would probably tell you to use:
    String.split(...);
    But I'm not most people and I wrote this class before regex support was added to the String class which is based on StringTokenizer but supports empty tokens:
    http://www.discoverteenergy.com/files/SimpleTokenizer.java

Maybe you are looking for

  • Safari 2.0.4 crashing

    I work for a school district with 200 iBooks with these specs running this version of the OS and this version of Safari. I'm starting to see this issue just today, but I've had several come in with it. I've repaired permissions, I've reset Safari, I'

  • No text shown in ALERT-Message in RWB-Inbox and via eMail

    Hi, we configured Alerting in XI giving conatiner elements in the title and long and short texts like &SXMS_ERROR_CAT& (actually we put all inside for testing purposes!). But when receiving the error message via eMail or in Alert-Inbox we only receiv

  • Onboard dvi port

    hello, i don't have sli, so from what i find the onboard graphics can be used for web surfing and general 2D apps. Can i use it? or is it only with the latest cards this works? i like the idea of putting the graphics card to sleep when it's not neede

  • Changing Printer in the PO master form

    Hi All,      we are SRM 5.5 ECS. we addded a new printer and would like to change default to the new printer. Please suggest where I could change the printer in SRM Master form/config. When users print PO, it should automatically default to new print

  • SQL*LOADER Conditional using conventional method

    I need load only the registers that have one determined value, using SQL*LOADER with conventional method. thanks