Which Table i will Get the Name of Receipt Recipient in FBCJ

Hi Experts
Which Table i will Get the Name of Receipt Recipient in FBCJ
Transaction Code : FBCJ
Technical name : Name of Receipt Recipient
Field Name : BP_NAME
But it is not stored in TCJ_POSITIONS table
Regards
Jagadish

Hi,
Please check in TCJ_DOCUMENTS table, field name BP_NAME.
Regards
Radhika

Similar Messages

  • Which table i will  get the  status of the User decision Result status

    Hi Experts
    Which table i will  get the  status of the User decision Result status
    (eg : Inspection completion forced )
    This i can see in QA33

    Hi jag
    Ok fine actually it is not storing in any table...these r all text symols...if u see this program MQEVAF22...U EILL GET SOME IDEA
    CALL FUNCTION 'QAST_STATUS_CHECK'
           EXPORTING
                I_OBJNR          = QALS-OBJNR
                I_STATUS         = C_STATUS_PAKO
           EXCEPTIONS
                STATUS_NOT_ACTIV = 01.
      IF SY-SUBRC NE C_RC01.
        MOVE C_KREUZ TO L_STAT_PAKO.
      ELSE.
        CLEAR L_STAT_PAKO.
      ENDIF.
    Prüfen, ob Los bestandsrelevant ist
      MOVE RQEVA-STAT_BERF TO L_STAT_BERF.
    Prüfen, ob Los auf SKIP sitzt
      CALL FUNCTION 'QAST_STATUS_CHECK'
           EXPORTING
                I_OBJNR          = QALS-OBJNR
                I_STATUS         = C_STATUS_SKIP
           EXCEPTIONS
                STATUS_NOT_ACTIV = 01.
      IF SY-SUBRC NE C_RC01.
        MOVE C_KREUZ TO L_STAT_SKIP.
      ELSE.
        CLEAR L_STAT_SKIP.
      ENDIF.
      IF QALS-STAT35 >< C_KREUZ.
    VE noch nicht getroffen !
        IF     ( QALS-OFFENNLZMK > CI_0 OR QALS-OFFEN_LZMK > CI_0 )
           AND QALS-STAT13     = C_PPKTTYP-PHPR
           AND G_ANZAHL_PPKT_LOEVM > CI_0.
    Es wurden physische Proben storniert !              PRIORITÄT 1A
            MOVE TEXT-I17 TO RQEVA-INFO_LINE.  L_TEXT_NR = 'I17'.
        ELSEIF ( QALS-STAT14 = C_KREUZ AND QALS-OFFENNLZMK > CI_0 )
          OR ( L_STAT_PAKO = C_KREUZ
               AND ( QALS-OFFENNLZMK > CI_0 OR QALS-OFFEN_LZMK > CI_0 ) ).
    Prüfung wurde abgebrochen !                         PRIORITÄT 1
          MOVE TEXT-I04 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I04'.
          MOVE C_KREUZ TO L_ICON.
        ELSEIF G_ANZ_RUECK_MK > 0.
    Es wurden Merkmale rückgewiesen  !                  PRIORITÄT 2
          MOVE TEXT-I01 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I01'.
          MOVE C_KREUZ TO L_ICON.
        ELSEIF QALS-OFFENNLZMK > CI_0 OR QALS-OFFEN_LZMK > CI_0 .
          IF QALS-OFFENNLZMK > CI_0.
    Es sind nicht alle Merkmale abgeschlossen !         PRIORITÄT 3
            MOVE TEXT-I02 TO RQEVA-INFO_LINE.  L_TEXT_NR = 'I02'.
          ELSEIF QALS-OFFEN_LZMK > CI_0.
            MOVE TEXT-I05 TO RQEVA-INFO_LINE.  L_TEXT_NR = 'I05'.
          ENDIF.
        ELSEIF QALS-WERK NE QALS-WERKVORG.
        Prüflosmenge wurde umgelagert auf anderes Werk   Priorität 4
          MOVE TEXT-I16 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I16'.
        ELSEIF QALS-LMENGEIST > QALS-LOSMENGE.
        Istmenge im Los größer als Losmenge!             Priorität 5
          MOVE TEXT-I15 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I15'.
        ELSEIF L_STAT_SKIP    = C_KREUZ.
    Prüfverzicht: Los ist geskippt !                    PRIORITÄT 6
          MOVE TEXT-I03 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I03'.
        ENDIF.
      ELSE.
    VE getroffen bzw. eingetragen
       IF     ( QALS-OFFENNLZMK > CI_0 OR QALS-OFFEN_LZMK > CI_0 )
           AND QALS-STAT13     = C_PPKTTYP-PHPR
           AND G_ANZAHL_PPKT_LOEVM > CI_0.
    Es wurden physische Proben storniert !              PRIORITÄT 1A
            MOVE TEXT-I17 TO RQEVA-INFO_LINE.  L_TEXT_NR = 'I17'.
        ELSEIF ( QALS-STAT14 = C_KREUZ AND QALS-OFFENNLZMK > CI_0 )
          OR ( L_STAT_PAKO = C_KREUZ
              AND ( QALS-OFFENNLZMK > CI_0  OR QALS-OFFEN_LZMK > CI_0 ) ).
    Prüfung wurde abgebrochen !                         PRIORITÄT 1
          MOVE TEXT-I04 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I04'.
          MOVE C_KREUZ TO L_ICON.
        ELSEIF L_STAT_PAKO EQ SPACE
           AND ( QALS-OFFENNLZMK > CI_0 OR QALS-OFFEN_LZMK > CI_0 ).
    Es sind noch Langzeitmerkmale zu bearbeiten !       PRIORITÄT 2
          MOVE TEXT-I05 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I05'.
        ELSEIF L_STAT_BERF = C_KREUZ AND QALS-STAT34 EQ SPACE.
    Los ist bestandsmäßig noch nicht entlastet !        PRIORITÄT 3
          MOVE TEXT-I06 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I06'.
        ELSEIF QALS-WERK NE QALS-WERKVORG.
        Prüflosmenge wurde umgelagert auf anderes Werk   Priorität 4
          MOVE TEXT-I16 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I16'.
        ELSEIF QALS-LMENGEIST > QALS-LOSMENGE.
        Istmenge im Los größer als Losmenge!             Priorität 5
          MOVE TEXT-I15 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I15'.
        ELSEIF L_STAT_SKIP = C_KREUZ.
    Prüfverzicht: Los ist geskippt !                    PRIORITÄT 6
          MOVE TEXT-I03 TO RQEVA-INFO_LINE.    L_TEXT_NR = 'I03'.
        ENDIF.
      ENDIF.

  • ON WHICH TABLE WE WILL GET THE DATA

    HI
    I WANT TO KNOW ON WHICH TABLE WE GET THE  INFORMATON OF LOANS AND ADVANCES
    AND WHAT INFORMATION I HAVE TO GIVE A ABAPER SO THAT HE WILL PREPARE A REPORT ON SUNDRY ADVANCES  AND DEPOSITS
    ITS URGENT
    THANHS IN ADVANCE

    Hi Santosh,
    I am not sure whether you want the tables for HR loans and Advances to Staff or Loans in the Treasury Module. However, i have included all the tables for both modules.
    DIV01 - Loans: External usage types of a rental unit
    PA0045 - HR Master Record: Infotype 0045 (Company Loans)
    T506D - Conditions for Employee Loans
    T506R - National Reports and Screens for HR Loans
    T506S - HR Loans: Value Date for Each Payroll Area
    T5G70 - Official Rates for Beneficial Loans
    T5M_LO_INTERFACE - Loans: Relationship: WT & Pseudo-Split and Generated WT
    T7INJ1 - HR-IN: Section 24 details for Housing Loans
    T7INJ3 - HR-IN: Loans Dusbursement Schedule
    T7INJ5 - HR-IN: Loans Dusbursement Schedule
    TDA12 - Loans master data field control
    TDLOANFUNC - Flow Types per Application Subfunction for Loans
    TDMAHNS_MAN - Loans: Manual Dunning Level
    TDMAHNS_MANT - Loans: Text for Manual Dunning Level
    TDPZB - IS-IS Loans installation parameters for company codes
    TDPZZ - IS-IS Loans: Installation parameters on client level
    TDUSEREXIT14T - Pushbutton Text for Loans Master Data Tabstrip(User Exit 14)
    TVZ05 - Inc. Pmnts: Editing per Activity Type (Loans, Real Estate)
    VDARL - Loans
    VDARL_EU - Loans: Currency Data Before EURO Conversion
    VDDAB - Data Transfer - Loans - Flows - Actual Records
    VDDAST - TR-EDT: Transfer Loans
    VDDUNNPARAMETER - Parameters of Dunning Run for Treasury Loans
    VDHINT - Loans interested parties
    VDKOKO_EU - Condition Header Data Before EURO Conversion (Loans)
    VDKOPO_EU - Condition Item Data Before EURO Conversion (Loans)
    VDORDER_EU - Order Data for Borrower's Note Loans Before EURO Conversion
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • In which table I can get the Contact full name(First name and Last name)

    Hi,
    In  which table, I can get the field for Contact Person Full  name. In many tables Iam seeing FIRST NAME and LAST NAME as two fields.
    Regards
    Babu.

    You can use FM "CRM_BUPA_DESCRIPTION_READ".
    regard,
    vijay.

  • In Which Table  I Will get Reference Document for MIGO Transaction

    Hai Experts
    In Which Table  I Will get Reference Document for MIGO Transaction
    Regards
    Jagadish

    Hi,
    The 2 main tables for this MIGO Transaction are ,
    MKPF - Header table
    MSEG -  Item table
    Reference Document is XBLNR.
    Regards,
    Raj.

  • From which table we can get the Role of the User in SRM

    Hi  All,
        I need to prepare a report which displays the user and his role in srm. So from which table i can get  the role of the user if i have the Userid.
    Thanks
    Channappa Sajjanar

    Hi
    t- code
    SUIM->rOLES->BY USER ASSIGNMENT
    SELECT WITHASSIGNMENT OF USER = username
    AS A OUTPUT YOU MAY GET ROLE ASSIGNED TO THAT USER.
    if you want which FM - you debug while executing this report.
    regards
    Muthu

  • From which table can we get the status of sales order

    hi
    from which table can we get the status of sales order

    Hi
    Check the Table <b>VBUK for HEADER level status</b> of Sales order
    and <b>VBUP for Item level statuses</b>
    enter VBELN  = Sales order and VBTYP = C for sales orders
    as VBUK and VBUP stores all Sales documents like deliveries, Invoices, quotations, contracts etc
    <b>Reward points for useful Answers</b>
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • In which table can I find the name and surname  for a username ?

    Hello,
    I search the table with the master data of users. Specially I search the table where I can find the
    name, surname for a user.
    In which table can I find the name and surname  for a username ?
    Thanx in Advance

    Hello  everybody,
    thank you for the helpful informations.
    thank you very much
    with kind regards
    cetoman

  • From which table i will get PO tax amont and tax code name.

    HI all
    I"m giving date to develop one Z report.Where i will get the PO tax amonut(not condition amount).i need total TAX amount and TAX code..from where i can get these two??
    plz help me
    thanks
    ramesh reddy

    Hi
    for excise check table J_1IEXCHDR for header
    J_1IEXCDTL for item excise
    The Table name used to find the Tax Values are
    KOMV: Pricing Communications-Condition Record
    KONV: Conditions (Transaction Data)
    From the above tables you can refer the fields below.
    KAWRT
    KBETR
    Fetch the corresponding records based on the field
    KNTYP
    Search net you will get many threads on this

  • From which table i can get the long text

    Hi All
    I have created some long text through function module CREATE_TEXT And i am able to see the text in the transaction .
    My requirement is from which table i can get these stored long text???
    Any suggestions please.
    Thanks

    Appreciate your answers.
    I have checked the both the fields stxh as well as stxl but i am not able to find any text fields out there.
    My actual requirement is some third party software needs to b mapped the table fields in order to import it.
    So if i know the table fields that would be easier.
    Can you tell me y we can not read it from the tables?
    Thanks,
    @run.

  • From which table i can get the details of cancled documents

    Hi All,
    here is an quarry,
    Iam haveing an Z report on purchase tax which has all tax report.
    but now the user want to same details for cancled document
    also.So can any help me from which table i can fetch the data
    urgent ! pls help me out!
    Regards,
    Rajashekar

    Cancelled documents will not be stored in Diff tables..
    It will be stored in the Same tables..
    For PO
    EKKO header level
    EKPO  Item Level
    EKBE Po History
    Material Doc
    MKPF  Header
    MSEG Item
    Invoice
    RBKP  Header
    RSEG Item

  • Which table could i get the information of Sales org. and DC relationship?

    Thanks!
    And could you tell in what way could i found the corresponding table corresponding to any SPRO transactions??
    Thanks

    Hi,
    In the SPRO setting Press F1 and check technical details,you will find the corresponding table.
    Second way is if you do any changes in settings,then the request which is getting generated...in that request you can find the table name as well
    Reward points if useful
    Regards,
    Amrish Purohit

  • How to Find out the from which table we can get the following fields?

    The following fields are from invoice data
    How to  know or from which table we get the following fields:
    Header Details:
    Manifest:, Finance Control #:, Alternate SID:, Carrier:, Container/Trailer #:, Hazmat Code:, Harmonizing Code, Freight Forwarder, Fiscal Rep., Ship From,  Notify Party
    Item Details:
    VAT/Tax Rate %, VAT/Tax Amount, Measurements, Net Weight, Gross Weight
    thanks

    Dear Krishnama
    Place your mouse on the required fields and press F1.  A box with header Performance Assistant will appear in front of you where you select "Technical information" (icon like hammer and spanner). 
    You can now see what table it is.
    thanks
    G. Lakshmipathi

  • "Company tax id"  from which table we will get

    can any give the information where we get the "company tax id" for particular company
    EBS version --11.5.10.2

    Hi
    for excise check table J_1IEXCHDR for header
    J_1IEXCDTL for item excise
    The Table name used to find the Tax Values are
    KOMV: Pricing Communications-Condition Record
    KONV: Conditions (Transaction Data)
    From the above tables you can refer the fields below.
    KAWRT
    KBETR
    Fetch the corresponding records based on the field
    KNTYP
    Search net you will get many threads on this

  • Which table i can get the Equipment Number and description

    Hello Guys,
    Can any one help us i have Maintenance order number.For this i need to get the corresponding euipment number and description.Can any one tell me the table name for this .I want to fetch these details in the report.
    Regards
    Kumar

    Hello All,
    problem got resolved.Thanks
    Regards
    Kumar

Maybe you are looking for

  • Executing a stored procedure from an Ifs Program

    I have a need to execute a stored procedure in another schema within the same database, and I need to receive an OUT parameter to continue processing. The oracle.ifs.server.sql.IfsConnection is not in my class path. Can someone tell me which jar file

  • Payment term wrong in PO

    We have not included a payment term in the Vendor master.  When the PO was entered, a payment term was entered in the Header field.  However, when we took the print out of the PO, in the header the payment term ented in the PO header is printed.  But

  • How to create automatically users&roles in CUA and child systems

    Hi, i have a CUA on a 2 chlid R/3 systems (test and training) and 2 portal systems (test and training). i need to create a web application to create automatically users test and users training in CUA and see them in the R/3 chlid systems and at the s

  • Why activation is requiring in an application?

    Spoiler (Highlight to read) Hi all, I have built an application in LabVIEW 2011 platform. The vi inside this build consists of basic LabVIEW functions and some functions from Vision development toolkit. So at the time building the application I have

  • I keep have computer crashing and then the wheel whats going on Help

    I am in middle of game Computer starts with the wheel spinning Locks freezes and then I loose where I was Someone Help Please