FBCJC1 and FBN1 linking table and field

Dear
I am trying to link fields BELNR from BKPF table and field D_POSTING_NUMB from TCJ_POSITIONS table to get a report for displaying Addl. Text1 column in FBL3N report. 
BELNR is FI document number field and
D_POSTING_NUMB is internal document number field generated by the system while doing FBCJ.
In which table the link between FBCJC1 and FBN1 is stored?   What is the linking table for these two fields.  Early reply is highly solicited.
Regards

Hi Arvind,
I think, there is no one-to-one link between FBCJC1 and FBN1.
Every posting in Cash Journal will post the CJ document with the next available number in FBCJC1 and similarly the corresponding FI posting will post the FI document with the next available number in the interval in FBN1 assigned to the relevant document type.
Regards,
Shilpi

Similar Messages

  • How to Bind a Combo Box so that it retrieves and display content corresponding to the Id in a link table and populates itself with the data in the main table?

    I am developing a desktop application in Wpf using MVVM and Entity Frameworks. I have the following tables:
    1. Party (PartyId, Name)
    2. Case (CaseId, CaseNo)
    3. Petitioner (CaseId, PartyId) ............. Link Table
    I am completely new to .Net and to begin with I download Microsoft's sample application and
    following the pattern I have been successful in creating several tabs. The problem started only when I wanted to implement many-to-many relationship. The sample application has not covered the scenario where there can be a any-to-many relationship. However
    with the help of MSDN forum I came to know about a link table and managed to solve entity framework issues pertaining to many-to-many relationship. Here is the screenshot of my application to show you what I have achieved so far.
    And now the problem I want the forum to address is how to bind a combo box so that it retrieves Party.Name for the corresponding PartyId in the Link Table and also I want to populate it with Party.Name so that
    users can choose one from the dropdown list to add or edit the petitioner.

    Hello Barry,
    Thanks a lot for responding to my query. As I am completely new to .Net and following the pattern of Microsoft's Employee Tracker sample it seems difficult to clearly understand the concept and implement it in a scenario which is different than what is in
    the sample available at the link you supplied.
    To get the idea of the thing here is my code behind of a view vBoxPetitioner:
    <UserControl x:Class="CCIS.View.Case.vBoxPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:v="clr-namespace:CCIS.View.Case"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    d:DesignWidth="300"
    d:DesignHeight="200">
    <UserControl.Resources>
    <DataTemplate DataType="{x:Type vm:vmPetitioner}">
    <v:vPetitioner Margin="0,2,0,0" />
    </DataTemplate>
    </UserControl.Resources>
    <Grid>
    <HeaderedContentControl>
    <HeaderedContentControl.Header>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
    <TextBlock Margin="2">
    <Hyperlink Command="{Binding Path=AddPetitionerCommand}">Add Petitioner</Hyperlink>
    | <Hyperlink Command="{Binding Path=DeletePetitionerCommand}">Delete</Hyperlink>
    </TextBlock>
    </StackPanel>
    </HeaderedContentControl.Header>
    <ListBox BorderThickness="0" SelectedItem="{Binding Path=CurrentPetitioner, Mode=TwoWay}" ItemsSource="{Binding Path=tblParties}" />
    </HeaderedContentControl>
    </Grid>
    </UserControl>
    This part is working fine as it loads another view that is vPetioner perfectly in the manner I want it to be.
    Here is the code of vmPetitioner, a ViewModel:
    Imports Microsoft.VisualBasic
    Imports System.Collections.ObjectModel
    Imports System
    Imports CCIS.Model.Party
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' ViewModel of an individual Email
    ''' </summary>
    Public Class vmPetitioner
    Inherits vmParty
    ''' <summary>
    ''' The Email object backing this ViewModel
    ''' </summary>
    Private petitioner As tblParty
    ''' <summary>
    ''' Initializes a new instance of the EmailViewModel class.
    ''' </summary>
    ''' <param name="detail">The underlying Email this ViewModel is to be based on</param>
    Public Sub New(ByVal detail As tblParty)
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Me.petitioner = detail
    End Sub
    ''' <summary>
    ''' Gets the underlying Email this ViewModel is based on
    ''' </summary>
    Public Overrides ReadOnly Property Model() As tblParty
    Get
    Return Me.petitioner
    End Get
    End Property
    ''' <summary>
    ''' Gets or sets the actual email address
    ''' </summary>
    Public Property fldPartyId() As String
    Get
    Return Me.petitioner.fldPartyId
    End Get
    Set(ByVal value As String)
    Me.petitioner.fldPartyId = value
    Me.OnPropertyChanged("fldPartyId")
    End Set
    End Property
    End Class
    End Namespace
    And below is the ViewMode vmParty which vmPetitioner Inherits:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Collections.Generic
    Imports CCIS.Model.Case
    Imports CCIS.Model.Party
    Imports CCIS.ViewModel.Helpers
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' Common functionality for ViewModels of an individual ContactDetail
    ''' </summary>
    Public MustInherit Class vmParty
    Inherits ViewModelBase
    ''' <summary>
    ''' Gets the underlying ContactDetail this ViewModel is based on
    ''' </summary>
    Public MustOverride ReadOnly Property Model() As tblParty
    '''' <summary>
    '''' Gets the underlying ContactDetail this ViewModel is based on
    '''' </summary>
    'Public MustOverride ReadOnly Property Model() As tblAdvocate
    ''' <summary>
    ''' Gets or sets the name of this department
    ''' </summary>
    Public Property fldName() As String
    Get
    Return Me.Model.fldName
    End Get
    Set(ByVal value As String)
    Me.Model.fldName = value
    Me.OnPropertyChanged("fldName")
    End Set
    End Property
    ''' <summary>
    ''' Constructs a view model to represent the supplied ContactDetail
    ''' </summary>
    ''' <param name="detail">The detail to build a ViewModel for</param>
    ''' <returns>The constructed ViewModel, null if one can't be built</returns>
    Public Shared Function BuildViewModel(ByVal detail As tblParty) As vmParty
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Dim e As tblParty = TryCast(detail, tblParty)
    If e IsNot Nothing Then
    Return New vmPetitioner(e)
    End If
    Return Nothing
    End Function
    End Class
    End Namespace
    And final the code behind of the view vPetitioner:
    <UserControl x:Class="CCIS.View.Case.vPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    Width="300">
    <UserControl.Resources>
    <ResourceDictionary Source=".\CompactFormStyles.xaml" />
    </UserControl.Resources>
    <Grid>
    <Border Style="{StaticResource DetailBorder}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Text="Petitioner:" />
    <ComboBox Grid.Column="1" Width="240" SelectedValuePath="." SelectedItem="{Binding Path=tblParty}" ItemsSource="{Binding Path=PetitionerLookup}" DisplayMemberPath="fldName" />
    </Grid>
    </Border>
    </Grid>
    </UserControl>
    The problem, presumably, seems to be is that the binding path "PetitionerLookup" of the ItemSource of the Combo box in the view vPetitioner exists in a different ViewModel vmCase which serves as an ObservableCollection for MainViewModel. Therefore,
    what I need to Know is how to route the binding path if it exists in a different ViewModel?
    Sir, I look forward to your early reply bringing a workable solution to the problem I face. 
    Warm Regards,
    Arun

  • JOINING local table and DB Link table performance

    Hellou everybody,
    can somebody tell me how it is work in Oracle DB when you want to join some local table and DB Link table for example:
    Select a.col1, b.col2
    from local_table a , remote_table@dblink b
    where a.key = b.key;
    and when I use DRIVING_SITE hint and the all data from remote table is transforming (pushing) into my DB (in some temporar space), it will transform although Indexes from remote table?
    So when I use some JOINS, this joins will be fast enought? Will they using remote table indexes to query the data or not?
    Thank you for response.
    Zoffob

    user10708026 wrote:
    Is it as simple as:No. Use:
    UPDATE  habitationalsupplement live_hab
       SET  primaryheatingapparatuscode = (
                                           SELECT  hab_backup.primaryheatingapparatuscode
                                             FROM  habitationalsupplement@backupdb hab_backup
                                             WHERE hab_backup.itemobjectid = live_hab.itemobjectid
                                               AND hab_backup.itemversionnumber = live_hab.itemversionnumber
      WHERE (itemobjectid,itemversionnumber) IN (
                                                 SELECT  hab_backup.itemobjectid,
                                                         hab_backup.itemversionnumber
                                                   FROM  habitationalsupplement@backupdb hab_backup
    /SY.

  • Inbound delivery no to GRN linking tables and fields

    hi guys,
    can u help me tofind out list of GRNs for a particulaar inbound delivery no.
    which tables and fields used for the same.
    my MKPF / MSEG table doesnot contain any inbound delivery no - reference, if it is configuration issue , please provide me some tips to find solution.
    regards,
    Giri

    SAP doesnot save the inbound delivery if u do pgr from migo. For this u have to do the development and can update the delivery number in delivery note field . for this use implement the badi MB_MIGO_BADI . In this there is structure GOITEM use in methods in this field VLIEF_AVIS contains the delivery number . I also faced same problem and i have to do this development for one of my client.

  • Query builder and multiple linked tables...

    Hi all,
    I have a database with a large table (50+ fields) and lots of tables (at
    least 10 tables) linked to the bigger one.
    I can link 7 or 8 tables using Query builder but after that, it gets slow
    and slower.
    I can't link other tables since it appear to hang.
    How can I solve this?
    Here is a sample of the large table (articles):
    - id_art
    - code_art
    - material_id_art (fk)
    - color_id_art (fk)
    - finishing_id_art /fk)
    - and so on... with other fields set as foreign keys.
    The color table is:
    - id_col
    - colid_col
    - name_col
    - language_col
    The table view is:
    id_col colid_col name_col language_col
    1 1 rosso it
    2 1 red uk
    3 1 rojo es
    The other tables follow the same color table specification.
    I would like to obtain all articles with color_id_art field equal to the
    color.colid_col field AND color.language_col equal to a session variable
    (language). This session variable contains 'it', 'uk', or 'es', depending
    on user selection on other pages.
    I can use query builder to do something similar with few tables but when
    the linked tables are 10 or more the query builder began to slow down too
    much and is totally unusable.
    Is there a way to create such a query manually?
    I'm not a SQl programmer so, I have not all the knowledge to do this.
    Can anyone point me in the right direction or point me to some tutorial
    about such a problem?
    I thank you in advance.
    tony

    Ciao Tony,
    Well, the main table is 4000+ records
    I´ve heard of other users having similar issues with this (or more) amount of data, what´s not surprising, because every time you´re making a change to your query, the Query Builder tries to refresh the browser
    I think that the problem is related to too much inner joins and too many WHERE clauses with AND condition
    maybe this might add to the problem, but I´m pretty convinced that the major bottleneck is the substantial amount of records your main table has.
    Günter, can I ask you how would you manage a multilingual product catalog where the main table (products) has lots of linked details tables (color, finishing, structure...) to be translated on a number of languages?
    this is indeed a little tricky by nature, however I think that storing e.g. all the international color names in a table is too complicated, when you could simply...
    a) check the currently running language session variable
    b) define a PHP if/else condition which will "virtually" translate the stored "id_col" values, example:
    if ($_session['language'] == "uk") {
    $pattern = array("1", "2", "3", "4");
    $replace = array("red", "blue", "black"', "green");
    $colors = str_replace($pattern, $replace, $row_queryname['columnname']);
    else {
    $pattern = array("1", "2", "3", "4");
    $replace = array("rosso", "blu", "nero"', "verde");
    $colors = str_replace($pattern, $replace, $row_queryname['columnname']);
    3. later in your page "echo" the alias variable $colors, which should return different results depending on the currently active language session variable
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Link tables and chart in checking register

    So I've watched the tutorials, read the guide and looked online and I still connot do the following, it's about a year and a half of trying.  I have used the checking register to keep track of monthly expenses.  Here's what I want:
    More categories on the pop up menu - I can do this
    Link the smaller categories table to a achart - I can do this
    Link the categories from the pop up menu on the big table to the categories on the small table and then to the chart - Nope
    Anyone?

    Allen? Devin?,
    It's not automatic, but not difficult either.
    Add a new row to the little Account Categories table. Click the Add Row button.
    Typ3 in your new category name and then you'll have this:
    Next Copy the new category name text. Select the Pop-Up cells and go to the Cells Inspector. Click the plus sign to add an entry to the list and Paste your new category into the list.
    Click on the Pie Chart to highlight the Chart range in the Account Categories table. Drag the lower right corner down to include the row of the new category.
    That's it.
    Jerry

  • Video and audio linking problem, and others?

    So, I am having 2 main problems. When I first started using FCE everything was great. Then, I changed some settings, and for some reason, it doesn't work like I want it to. So, my first problem is linking. When I import, it is automatically unlinked, but I think FCE thinks that it is! When I do press Apple L (shortcut to link video and audio) it still isn't linked! How can I get it to link?
    My 2nd problem may be linked to the first. When I want to make a cut right on the playhead, it is really hard to get it on the playhead. Previously, it would just snap on the playhead if I got close, and now it doesn't! How can I get it to snap better?
    Thanks for all the help!

    1) Make sure linking (Shift-L) is turned on before you add your clip to the timeline. To manually link audio tracks to your video tracks select the two and go to +Modify > Link+ (Command-L).
    2) Make sure snapping is turned on in the timeline. Hit the "N" key to toggle it on or off.

  • How to copy and paste a table and pictures from pdf files to word using MacBook pro 10.5.8

    Hi Guys,
    I want to copy tables out of a PDF document onto a word document. I only get the text and not the table when I copy and paste. I would also like to know how I can do the same with pictures or diagrams in PDF to word.
    Regards,
    Craig

    You can take picture of anyhting from any document using Command + Shift + 4. Hold all three at the same time and your mouse will turn into a little plus sign where you can then drag across anything you'd like to take picture of it. The picture will be placed on your desktop.
    See if that works for you.

  • Parse SQL query and extract source tables and columns

    Hello,
    I have a set of SQL queries and I have to extract the source tables and columns from them.
    For example:
    Let's imagine that we have two tables
    CREATE TABLE T1 (col1 number, col2 number, col3 number)
    CREATE TABLE T2 (col1 number, col2 number, col3 number)
    We have the following query:
    SELECT
    T1.col1,
    T1.col2 + T1.col3 as field2
    FROM T1 INNER JOIN T2 ON T1.col2=T2.col2
    WHERE T2.col1 = 1
    So, as a result I would like to have:
    Order Table Column
    1 T1 col1
    2 T1 col2
    2 T1 col3
    Optionally, I would like to have a list of all dependency columns (columns used in "ON", "WHERE" and "GROUP BY" clauses:
    Table Column
    T1 col2
    T2 col1
    T2 col2
    I have tried different approaches but without any success. Any help is appreciated. Thank you in advance.
    Best regards,
    Beroetz

    I have a set of SQL queries and I have to extract the source tables and columns from them. In a recent db version you can use Re: sql injection question for this.

  • TCS 5 RoboHelp and FrameMaker links work and then stop

    Hi,
    I installed TCS 5 after installing a trial of RoboHelp 11.  After I installed, I opened a project from TCS 4 and I was able to update an existing linked FM book and Link to new files.    The FM files were converted ot FM 12 and the RoboHelp project was converted to RoboHelp 11.
    Now, when I reopen the RoboHelp project, I cannot update or link to FrameMaker documents.
    I am running Windows 7. I run both RH and FM as administrator and I have owner permissions to the Adobe folder.
    I tried uninstalling and reinstalling TCS 5 and the behavior is consistent.  Is there some registry entry or something i should look for?
    Lauren

    First my client, then I saw the exact same thing.
    One day the project worked perfectly, then the next day the linking options were all unavailable. It's as if Rh decided it was no longer associating with Fm.
    Oddly, another client team member was unaffected.
    I'm trying to track down the issue. Did you resolve the linking problem?

  • Backup and restore georaster table and rdt table by image id

    Hellow everyone,
    I want to backup my georaster table and rdt table by the Specified image id and also can use these georater rows to restore? How can I do? the geraster table structure is as follows:
    image_table
    id NUMBER,
    filename VARCHAR2(255),
    raster SDO_GEORASTER
    Best Regards,
    Lin

    ylin wrote:
    Hellow everyone,
    I want to backup my georaster table and rdt table by the Specified image id and also can use these georater rows to restore? How can I do? the geraster table structure is as follows:
    image_table
    id NUMBER,
    filename VARCHAR2(255),
    raster SDO_GEORASTER
    Best Regards,
    LinIf I understand you correctly, There is no specific issue if you want to export table with spatial data - It is the same as with normal tables.

  • How to I link Slaes Orders and Price Assurances - Table VBAK Field AUART

    Hello,
    Using T-code VA43 I can enter a contract number (we call it a Price Assurance#) and then I can see the information I need 1 for one.  I can also pull this info out of the VBAK and VBAP tables using the doc type ZQ in the field AUART.  What I am trying to do is link all of these document types to their sales orders, AUART=TA, and then finally link them to the invoices but I am having trouble doing it.  Can someone help me figure out how to link the sales documents types ZQ to their corresponsing TA types?  From there I can link the billing documents to them.
    Thanks,
    Sean

    Hi Sean,
    As per my understanding of your question is about copy controls,where you copied the standard quantity contract type CQ and
    named it as ZQ,now you want to link it up with order type TA(Standard Order),for this you need to maintain copy controls
    between your contract and order.Use T.code VTAA select your contract type and sale order type maintain copy controls *(copy
    standard CQ - TA and rename it as per your document type) the you need to maintain copy controls between TA to LF use
    T.code VTLA the delivery to invoice use T.code VTFL.
    Search in Forum or Google for better understanding of copy controls.
    Regards
    Ram

  • User defined field in SD and its link to Value field in COPA (??)

    Dear All,
    We have created one "Z" field i.e. user defined field and its in VBRP Table. This is a quantity field. to update the values in this field we have used an exit in sales and distribution module. Now, by defining this exit values are correctly populated in VPRP table on line item basis.
    Requirement here is we need to get this field in COPA, for same i have carried out the quantity field assignment to value field (KE4M).
    Even after this configuration profitability segment is not updated.
    Regards,
    Sayujya
    Edited by: sayu on Mar 15, 2010 10:13 AM

    In the past I did something similar and had to use function module EXIT_SAPLKEAB_001 in enhancement COPA0002 to populate the field.  To use this exit you'll first need to add a user exit id to your valuation strategy (transaction KE4U).  The help on the function module is pretty good, but if you run into a problem let me know.
    thanks,

  • Individual object and BP link table in CRM

    Hi,
    We are downloading the serial number and serial number configuration from ECC to CRM as Iobjects.In table level Iam seeing the Iobject in COM_TA_R3_ID.
    I want to see the Business partners(sold to party,ship to party,bill to party) associated with the Iobject in table level.
    Can any one suggest me the tables.
    Regards
    A.Sureshbabu.

    Hi PePe,
    In our case we are using Object only in Interaction center and not Ibase. Like you know, In the Account Identification screen for product confirmation I have two options, one is Ibase and another is Object. Iam using Iobject and searching the object based on Partner or serial number or material.
    Now when I download Serial number from ECC, Iam seeing the BP attached to it in BDOC level and want to see it in table level in CRM.The table for Iobject is COM_TA_R3_ID.
    Pl suggest me.
    Regards
    A.Sureshababu.

  • Benefits and Payment - overview table and drop down are not populated

    Hi All,
    Overview dropdown and table are not getting populated. I have checked the flow of code in Web Dynpro
    1)Vcrem2Comp
    2) Component FcRepFramework
    Tried to check whether these values are coming from ABAP side by using
      wdcomponentapi message manager.
    Please guide
    Regards,
    Ganga

    Below is the code i am using:
        @Override
        public void start(Stage stage) throws InterruptedException {
            // create the scene
            stage.setTitle("Test");
            Pane stackPane = new Pane();
            Browser browser = new Browser();
            stackPane.getChildren().add(browser);
            Rectangle2D primaryScreenBounds = Screen.getPrimary().getVisualBounds();
            webScene = new Scene(stackPane, primaryScreenBounds.getWidth(), (primaryScreenBounds.getHeight()-50), Color.web("#666970"));
            //webScene.getStylesheets().add(this.getClass().getResource("main.css").toExternalForm());
            stage.setScene(webScene);
            stage.show();
    class Browser extends Region {
        final WebView browser = new WebView();
        final WebEngine webEngine = browser.getEngine();
        public Browser() {
            //apply the styles
            getStyleClass().add("browser");
            // load the web page
            String url = "http://localhost:8000/myApp";
            webEngine.load(url);
            //add the web view to the scene
            getChildren().add(browser);
    When i run with normal url, the drop down are coming in bigger font size and bold. But when i run through Javafx, the drop down list items are coming as small size and normal font. I can provide the screen shots but not sure how to paste the images here or attachments. Let me know if any more information is required.

Maybe you are looking for

  • GRC NFe 2.0 20 - Serviço de assinatura digital não acessível

    Senhores, Encontrei diversos post sobre esse problema, porem nenhum específico para o meu problema. Meu landscape é ECC 6.0 700 SP 22 (SAP_APPL 603 - SP 6 - SAPKH60306) -> GRC/PI SAP NetWeaver 7.0 (SLL-NFE - Release 100 - SP 0015/SAP_ABA - 700 SP 22)

  • How to export multiple photos in LR 5 inside of a custom frame?

    Hello, I photographed a photo booth for a dinner. I made a PNG frame and I want to export every photo inside of this frame that I made. (see below) How would I do this? I thought about making a script in Photoshop and exporting each individual photo

  • Different ways to retrieve CRMOD data

    here's my business requirements...I want to create leads, accounts ...etc. and I want to send that data to EnterpriseOne My question is what's the most popular way to retrieve data from CRMOD please? Do you have a web application sitting on a web ser

  • Assigning two alignment rules to a table

    Is it possible to create a table where each columnn is left justified, and yet centered with in it's column? I know I can use tabs to accomplish this, but my company is creating a large product catalog where we would like to avoid manually changing t

  • Cascading LOV without setting autosubmit to be "true"

    Does anyone know how to make the cascading LOV works on a JSF page without setting the autosubmit to be true? Here is my usecase: An entity X has attribute A, B, C, in which the LOV of attribute C is dependent on A; however, all A, B, C are mandatory