Detail of transaction

From where i can get the details of transaction (like a/r invoice, cheques of payments, incoming payments. etc) done in a BP ACCOUNT ??? And also from where i can get the report containg the pending payments of customers and vendors???

Hi,
try this SP you will get details of entries.
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER procedure [dbo].[Sp_Optional_Statistics Entry wise Details]
@FromDate Datetime = null,
@ToDate Datetime = null,
@ProjCode nvarchar(20) = null
as
begin
SELECT T1.DocDate ,count(t1.docnum),
--t1.docnum,
t1.project,T0.[ObjectCode], T0.[Series], T0.[SeriesName],
-- T0.[InitialNum], T0.[NextNumber], T0.[LastNum] , T0.[NextNumber]- T0.[InitialNum]  As Total,
case when T0.[ObjectCode]=13 then 'A/R Invoice'
when T0.[ObjectCode]=14 then 'A/R Credit Memos'
when T0.[ObjectCode]=18 then 'A/P Invoice'
when T0.[ObjectCode]=19 then 'A/P Credit Memos'
when T0.[ObjectCode]=-2 then 'G/L Accounts Opening Balance'
when T0.[ObjectCode]=24 then 'Incoming Payment'
when T0.[ObjectCode]=30 then 'Journal Entry '
when T0.[ObjectCode]=46 then 'Outgoing Payment'
else '0' end as DocumentType
FROM NNM1 T0
inner join oinv T1 on T1.Series=T0.series
where T1.DocDate
between (select case when Coalesce(@FromDate,0) != 0 then Convert(varchar,@FromDate,110) else T1.DocDate end) and
(select case when Coalesce(@ToDate,0) != 0 then Convert(varchar,@ToDate,110) else T1.DocDate end)
and t1.project=(select case when Coalesce(@ProjCode,'0') != '0' then @ProjCode else t1.project end)
group by T1.DocDate,T0.[ObjectCode], t1.project,T0.[Series], T0.[SeriesName]
--,t1.docnum
--, T0.[InitialNum], T0.[NextNumber], T0.[LastNum]
union
SELECT T2.DocDate,count(t2.docnum),
--t2.docnum,
t2.project,T0.[ObjectCode], T0.[Series], T0.[SeriesName],
--T0.[InitialNum], T0.[NextNumber], T0.[LastNum] , T0.[NextNumber]- T0.[InitialNum]  As Total,
case when T0.[ObjectCode]=13 then 'A/R Invoice'
when T0.[ObjectCode]=14 then 'A/R Credit Memos'
when T0.[ObjectCode]=18 then 'A/P Invoice'
when T0.[ObjectCode]=19 then 'A/P Credit Memos'
when T0.[ObjectCode]=-2 then 'G/L Accounts Opening Balance'
when T0.[ObjectCode]=24 then 'Incoming Payment'
when T0.[ObjectCode]=30 then 'Journal Entry '
when T0.[ObjectCode]=46 then 'Outgoing Payment'
else '0' end as DocumentType
FROM NNM1 T0
inner join opch T2 on T2.Series=T0.series
where T2.DocDate  between (select case when Coalesce(@FromDate,0) != 0 then Convert(varchar,@FromDate,110) else T2.DocDate   end) and
(select case when Coalesce(@ToDate,0) != 0 then Convert(varchar,@ToDate,110) else T2.DocDate   end)
and t2.project=(select case when Coalesce(@ProjCode,'0') != '0' then @ProjCode else t2.project end)
group by T2.DocDate,T0.[ObjectCode], t2.project,T0.[Series], T0.[SeriesName]
--,t2.docnum
--, T0.[InitialNum], T0.[NextNumber], T0.[LastNum]
union
SELECT T2.DocDate,count(t2.docnum),
--t2.docnum,
t2.project,T0.[ObjectCode], T0.[Series], T0.[SeriesName],
--T0.[InitialNum], T0.[NextNumber], T0.[LastNum] , T0.[NextNumber]- T0.[InitialNum]  As Total,
case when T0.[ObjectCode]=13 then 'A/R Invoice'
when T0.[ObjectCode]=14 then 'A/R Credit Memos'
when T0.[ObjectCode]=18 then 'A/P Invoice'
when T0.[ObjectCode]=19 then 'A/P Credit Memos'
when T0.[ObjectCode]=-2 then 'G/L Accounts Opening Balance'
when T0.[ObjectCode]=24 then 'Incoming Payment'
when T0.[ObjectCode]=30 then 'Journal Entry '
when T0.[ObjectCode]=46 then 'Outgoing Payment'
else '0' end as DocumentType
FROM NNM1 T0
inner join ORIN T2 on T2.Series=T0.series
where T2.DocDate   between (select case when Coalesce(@FromDate,0) != 0 then Convert(varchar,@FromDate,110) else T2.DocDate   end) and
(select case when Coalesce(@ToDate,0) != 0 then Convert(varchar,@ToDate,110) else T2.DocDate end)
and t2.project=(select case when Coalesce(@ProjCode,'0') != '0' then @ProjCode else t2.project end)
group by T2.DocDate, T0.[ObjectCode], t2.project,T0.[Series], T0.[SeriesName]
--,t2.docnum
--, T0.[InitialNum], T0.[NextNumber], T0.[LastNum]
union
SELECT T4.DocDate ,count(t4.docnum),
--t4.docnum,
t4.project,T0.[ObjectCode], T0.[Series], T0.[SeriesName],
--T0.[InitialNum], T0.[NextNumber], T0.[LastNum] , T0.[NextNumber]- T0.[InitialNum]  As Total,
case when T0.[ObjectCode]=13 then 'A/R Invoice'
when T0.[ObjectCode]=14 then 'A/R Credit Memos'
when T0.[ObjectCode]=18 then 'A/P Invoice'
when T0.[ObjectCode]=19 then 'A/P Credit Memos'
when T0.[ObjectCode]=-2 then 'G/L Accounts Opening Balance'
when T0.[ObjectCode]=24 then 'Incoming Payment'
when T0.[ObjectCode]=30 then 'Journal Entry '
when T0.[ObjectCode]=46 then 'Outgoing Payment'
else '0' end as DocumentType
from NNM1 T0
inner join ORPC T4 on T4.Series=T0.series
where T4.DocDate   between (select case when Coalesce(@FromDate,0) != 0 then Convert(varchar,@FromDate,110) else T4.DocDate   end) and
(select case when Coalesce(@ToDate,0) != 0 then Convert(varchar,@ToDate,110) else T4.DocDate   end)
and t4.project=(select case when Coalesce(@ProjCode,'0') != '0' then @ProjCode else t4.project end)
group by T4.DocDate,T0.[ObjectCode], t4.project,T0.[Series], T0.[SeriesName]
--,t4.docnum
--, T0.[InitialNum], T0.[NextNumber], T0.[LastNum]
union
SELECT T5.RefDate,count(t5.transid),
--t5.transid,
t5.project,T0.[ObjectCode], T0.[Series], T0.[SeriesName],
--T0.[InitialNum], T0.[NextNumber], T0.[LastNum] , T0.[NextNumber]- T0.[InitialNum]  As Total,
case when T0.[ObjectCode]=13 then 'A/R Invoice'
when T0.[ObjectCode]=14 then 'A/R Credit Memos'
when T0.[ObjectCode]=18 then 'A/P Invoice'
when T0.[ObjectCode]=19 then 'A/P Credit Memos'
when T0.[ObjectCode]=-2 then 'G/L Accounts Opening Balance'
when T0.[ObjectCode]=24 then 'Incoming Payment'
when T0.[ObjectCode]=30 then 'Journal Entry '
when T0.[ObjectCode]=46 then 'Outgoing Payment'
else '0' end as DocumentType
from NNM1 T0
inner join OJDT T5 on T5.Series=T0.series
where T5.RefDate   between (select case when Coalesce(@FromDate,0) != 0 then Convert(varchar,@FromDate,110) else T5.RefDate   end) and
(select case when Coalesce(@ToDate,0) != 0 then Convert(varchar,@ToDate,110) else T5.RefDate   end)
and t5.project=(select case when Coalesce(@ProjCode,'0') != '0' then @ProjCode else t5.project end)
and T5.transtype=30
group by T5.RefDate,T0.[ObjectCode], t5.project,T0.[Series], T0.[SeriesName]
--,t5.transid
--, T0.[InitialNum], T0.[NextNumber], T0.[LastNum]
UNION
SELECT T6.DocDate,count(t6.docnum),
--t6.docnum,
t6.prjcode,T0.[ObjectCode], T0.[Series], T0.[SeriesName],
-- T0.[InitialNum], T0.[NextNumber], T0.[LastNum] , T0.[NextNumber]- T0.[InitialNum]  As Total,
case when T0.[ObjectCode]=13 then 'A/R Invoice'
when T0.[ObjectCode]=14 then 'A/R Credit Memos'
when T0.[ObjectCode]=18 then 'A/P Invoice'
when T0.[ObjectCode]=19 then 'A/P Credit Memos'
when T0.[ObjectCode]=-2 then 'G/L Accounts Opening Balance'
when T0.[ObjectCode]=24 then 'Incoming Payment'
when T0.[ObjectCode]=30 then 'Journal Entry '
when T0.[ObjectCode]=46 then 'Outgoing Payment'
else '0' end as DocumentType
from NNM1 T0
inner join ORCT T6 on T6.Series=T0.series
where T6.DocDate  between (select case when Coalesce(@FromDate,0) != 0 then Convert(varchar,@FromDate,110) else T6.DocDate  end) and
(select case when Coalesce(@ToDate,0) != 0 then Convert(varchar,@ToDate,110) else T6.DocDate  end)
and t6.prjcode=(select case when Coalesce(@ProjCode,'0') != '0' then @ProjCode else t6.prjcode end)
group by T6.DocDate,T0.[ObjectCode], t6.prjcode,T0.[Series], T0.[SeriesName]
--,t6.docnum
--, T0.[InitialNum], T0.[NextNumber], T0.[LastNum]
UNION
SELECT T7.DocDate ,count(t7.docnum),
--t7.docnum,
t7.prjcode,T0.[ObjectCode], T0.[Series], T0.[SeriesName],
--T0.[InitialNum], T0.[NextNumber], T0.[LastNum] , T0.[NextNumber]- T0.[InitialNum]  As Total,
case when T0.[ObjectCode]=13 then 'A/P Invoice'
when T0.[ObjectCode]=14 then 'A/R Credit Memos'
when T0.[ObjectCode]=18 then 'A/R Invoice'
when T0.[ObjectCode]=19 then 'A/P Credit Memos'
when T0.[ObjectCode]=-2 then 'G/L Accounts Opening Balance'
when T0.[ObjectCode]=24 then 'Incoming Payment'
when T0.[ObjectCode]=30 then 'Journal Entry '
when T0.[ObjectCode]=46 then 'Outgoing Payment'
else '0' end as DocumentType
from NNM1 T0
inner join OVPM T7 on T7.Series=T0.series
where T7.DocDate  between (select case when Coalesce(@FromDate,0) != 0 then Convert(varchar,@FromDate,110) else T7.DocDate  end) and
(select case when Coalesce(@ToDate,0) != 0 then Convert(varchar,@ToDate,110) else T7.DocDate  end)
and t7.prjcode=(select case when Coalesce(@ProjCode,'0') != '0' then @ProjCode else t7.prjcode end)
group by T7.DocDate,T0.[ObjectCode],t7.prjcode, T0.[Series], T0.[SeriesName]
--,t7.docnum
--, T0.[InitialNum], T0.[NextNumber], T0.[LastNum]
end
--exec [Sp_Optional_Statistics Entry wise Details] '3/22/2009','3/23/2009' ,***

Similar Messages

  • Display Item details in transaction VF05N

    Hi,
    Is anybody is having any idea how we can display item details in transaction VF05N.
    Regards.
    Kusum.

    Hi,
    If your requirement is to display the item details of the billing Docs displayed in VF05N.
    Click on the billing document.
    Then press the  'Display Document Button'(Shift+F12)
    otherwise Please explain in detail.
    Regards
    Sandipan

  • I need details of transaction

    i need details of transaction this code..
    MB1C....
    i need technical information..
    eg. wht are tables are using this Transaction code. MB1C.

    Hi,
    ekko,                         " Bestellkopf
             ekpo,                         " Bestellposition
             bbefu,                        " Bestelldaten Umlagerbestellung
             ebefu,                        " Bestelldaten
             mcha,                         " Chargendaten
             mch1, 
    lagp,                         " Lagerplätze LVS
             ltbp,                         " Transportbedarfsposition LVS
             qmsp,                         " Spezifiaktionen
             usr05,                        " vorübergehend
             m_mebex,                      " Matchcode WE-Belege zu XBLNR
             lfa1,                         " Lieferantenstamm A-Segment
             lfm1,                         " Lieferantenstamm EKORG-Daten
             marc,                         " Materialstamm Werkssegment
             msku,                         " Sonderbestände beim Kunden
             mslb,                         " Sonderbestände beim Lieferanten
             prdkz,                        " Periodenkennzeichen MHD
             prdkzt.                       " Texte zum Periodenkennz. MHD
    Thanks,
    Anitha

  • TS1702 we had made a purchase of whats app for RS 55 but system has deducted from my accounts is Rs 60 on dated. Details is Transaction Date: 11/05/13  Transaction Amount: INR 60.00   Transaction Description: PGDR/APPLE ITUNES STORE-INR/11-05-2013 1

    we had made a purchase of whats app for RS 55 but system has deducted from my accounts is Rs 60 on dated. Details is Transaction Date: 11/05/13  Transaction Amount: INR 60.00   Transaction Description: PGDR/APPLE ITUNES STORE-INR/11-05-2013

    Since this is a user forum with only other users responding you will not get what ever the issue is resolved here
    When you get the email iTunes receipt for your purchase  you should find a "report a problem " along side the description of your purchase follow that link

  • TBB1 can post to ARsubledger without entering payment detail in transaction

    Hello,
    How does SAP post into AR subledger automatically without entering info in tab payment detail of the financial contract (ftr_edit)?
    Business partner is already linked with AR account in role TR0151 and update type is also configured as payment transaction in account determination.
    Is there any setting required?
    Regards,
    PNS

    Dear Ravi,
    I still wonder since in the past project, payment detail was not maintained at the contract level, but it could be posted by TBB1 with AR account and position account.
    Any clues?
    Rgds,
    PNS
    Edited by: PNS.TRM on Aug 29, 2011 2:47 PM
    Edited by: PNS.TRM on Sep 7, 2011 11:14 AM

  • Account Details page transaction link do not display anything

    Hi,
    I extended the TransactionTableVO to include new columns. Initially, whenever I click on the transaction link, I get an exception error. But I fixed it by commenting out functions that seem to overrride the original one (like setIrSalesOrder, setAmountDueRemainingFormatted etc). It worked for Payment transaction type but not for the other types like Credit Memo, Chargeback, Invoice, Debit Memo, etc.
    This Transaction link displays different pages according to the transaction type. I don't have any clue why it worked for Payment transaction type but did not work for the rest. There is no error just blank content.
    I opened the original TransactionTableVORowImpl.class and found the following code possibly related to this issue:
    public static String getStaticTransactionDetailsRegionCode(InvoiceTableVORowImpl invoicetablevorowimpl, String s)
    String s1 = null;
    if("INV".equals(s) || "GUAR".equals(s) || "CB".equals(s) || "DM".equals(s) || "DEP".equals(s))
    s1 = "ARITRANSACTIONDETAILSPAGE";
    } else
    if("CM".equals(s))
    s1 = "ARITEMPCMDETAILSPAGE";
    } else
    if("PMT".equals(s))
    s1 = "ARI_PAYMENT_DETAILS_PAGE";
    } else
    if("REQ".equals(s))
    s1 = "ARITEMPCMREQUESTDETAILSPAGE";
    return s1;
    public void setTransactionDetailsRegionCode(String s)
    setAttributeInternal("TransactionDetailsRegionCode", s);
    I checked the URL and it does contain the correct name of the page i.e. if it's an Invoice transaction type, it includes ARITRANSACTIONDETAILSPAGE in the URL. So it is getting the correct page to redirect to. The window title, however, contains the following:
    Message not found. Application: AR, Message Name: nullTitle
    Any assistance is greatly appreciated!
    N
    Edited by: pekochan on 25/11/2009 09:43

    I think I'm not passing the correct paramaters. I checked the URL and it's not passing any &Irtransactiontype. How can I check where this parameter is coming from??

  • Line item details of transaction in SAP POSDM

    Hi ,
    Can any body please tell me how to get the line items value of a particular transaction in POSDM. I think there is a Function Module that should be used. Can anybody please tell me the Function Module name.
    I have to get the sales value of each line item in a particular transaction in POSDM.
    P.S. I am an Abapper.
    Thanks in Advance !!
    Mayank

    Can you please tel me how you solved this issue?
    Edited by: Saranyadevi on Oct 10, 2010 10:08 AM

  • Analysis tab in item details of transaction WTY

    Hi All,
           We get pricing procedure details when we click on the analysis tab in the item details subscreen in WTY.We get the condition types and the associated movement of data.
    We have added a custom field to the communication strucuture KOMK,KONP,KOMG, and the same is present in the database table PVWTY. The same is present in the structure A997 also. If we see the technical details then the fields which are of concern to us are KOMK-(custom fieldname )  and A997-( custom fieldname ).But we are getting a warning symbol in the description part when we click on the condition type PRP4.
    I am not sure whether this is related to any missed out coding.I checked out that the routine 597 is assigned for the condition type PRP4.But the source code inside is the standard code and i am not sure how to include my custom field data here.Do i have to move this data through some exit or is this related to any configuration in SPRO...
    I am not able to figure out where and how i am supposed to move the data between the two structures as explained above. Hope that the above explanation gives an OK picture of what i need to achieve. Please help.
    thanks
    Nishanth

    Hi,
    You can try making the Date Field in Item Details  and Requisitioner as Mandatory if it serves your purpose for the situation - I .
    Please check the following :
    SPRO>IMG>MM>Purchasing>Purchase Requisition>
    Click on Define Screen Layout at Document Level
    Highlight the Document Type
    Go to Details and click on Deadline Monitoring
    Check the Date as Required Entry for Requisition, Delivery & Release Date.
    ( The user will need to Enter Release Date Manually)
    Similarly this can be maintained for RFQ and PO as well.
    This will give you the Tracking of the Processing Time with respective dates.
    Hope this helps,
    Best regards
    Amit Bakshi.

  • Details about transaction codes

    hi guru's
    i am new to the sap field, i want to know is there is any website or materials in internet for knowing only transaction codes.
    I completed upto define and assignment, next how to go about it?.
    Regards
    C. Mohanprabu

    Hi Mohanprabu,
    Go to T.Code se16 and type in CUS_IMGACH table.
    Execute.
    Paste IMG Activity and run.
    You will see Tcode that belongs to IMG Activity.
    SAP SD Tips by: Javier
    The most frequently used transaction codes are as follows:
    1. VS00 - Master data
    2. VC00 - Sales Support
    3. VA00 - Sales
    4. VL00 - Shipping
    5. VT00 - Transportation
    6. VF00 - Billing
    Others as follows:
    At Configuration:
    1. VOV8 - Define Sales documents type (header)
    2. OVAZ - Assigning Sales area to sales documents type
    3. OVAU - Order reasons
    4. VOV4 - Assign Item categoreies(Item cat determination)
    5. VOV6 - Scedule line categories
    6. OVAL - To assign blocks to relevant sales documents type
    7. OVLK - Define delivery types
    8. V/06 - Pricing
    9. V/08 - Maintain pricing procedure
    10.OVKP - Pricing proc determination
    11.V/07 - Access sequence
    Enduser:
    1. Customer Master Creation-VD01 and XD01 (for full inclu company code)
        VD02 - Change Customer
        VD03 - Display Customer
        VD04 - Customer Account Changes
        VD06 - Flag for Deletion Customer
        XD01 - Create Customer
        XD02 - Modify Customer
        XD03 - Display Customer
    2. Create Other material -
    MM00
    3. VB11- To create material determination condition record
    4. CO09- Material availability Overview
    5. VL01 - Create outbound delivery with ref sales order
    6. VL04 - Collective processing of delivery
    7. VA11 - Create Inquiry
        VA12 - Change Inquiry
        VA13 - Display Inquiry
    Sales & Distribution
    Sales order / Quote / Sched Agreement / Contract
    · VA01 - Create Order
    · VA02 - Change Order
    · VA03 - Display Order
    · VA02 - Sales order change
    · VA05 - List of sales orders
    · VA32 - Scheduling agreement change
    · VA42 - Contract change
    · VA21 - Create Quotation
    · VA22 - Change Quotation
    · VA23 - Display Quotation
    Billing
    · VF02 - Change billing document
    · VF11 - Cancel Billing document
    · VF04 - Billing due list
    · FBL5N - Display Customer invoices by line
    · FBL1N - Display Vendor invoices by line
    Delivery
    · VL02N - Change delivery document
    · VL04 - Delivery due list
    · VKM5 - List of deliveries
    · VL06G - List of outbound deliveries for goods issue
    · VL06P - List of outbound deliveries for picking
    · VL09 - Cancel goods issue
    · VT02N - Change shipment
    · VT70 - Output for shipments
    General
    · VKM3, VKM4 - List of sales documents
    · VKM1 - List of blocked SD documents
    · VD52  - Material Determination
    Thanks
    Mohan

  • Get operation details of transaction CO02

    Hello Experts,
    I need operation details of an production order (CO02).
    I try for BAPI and function modules and get the operation
    details also.
    But I need the value of user defined fields also, that I did not
    get through those BAPIs.
    If someone know about any of them then reply to this thread.
    Thank you in advance!!!
    Rock!

    Done

  • Fetching longtexttab details from Transaction BP at Runtime

    hi,
    my requirment is to fetch teh longtext data  from transaction BP.
    i have tried using READ_TEXT. but its displaying as entries not found.
    pls provide some pointer on it.
    my requirement is after the user enters in BP transaction and clicked the
    save button  i need to capture the longtext.
    thanks.

    Hi,
    I think i have given different FM for this context.
    If your requirement is to get the long text before it is getting saved to data base i think you can try out the following steps:
    1. Put the Breakpoint in FM CRM_BUPA_BDOC_BPS_FILL_DATA when you save BP.
    2. There in one line there will be a call to Subroutine find_all_bps.
    3. This sub routine is present in the program LCRM_BUPA_MWX_BDOC_OUTBOUNDF01.
    4. Form here there will be a call to subroutine chk_longtext_bp.
    5. Here you can be able to get the long text which is about to be saved.
    6. This subroutine is in program LCRM_BUPA_MWX_BDOC_OUTBOUNDF16.
    I hope this will get you the long text from BP transaction before saving to the database.
    Hope this helps.
    Venkat

  • ITEM detail for Transaction

    hellow gurus
    i'm workin on environment BW 3.5 and CRm 4.0
    now i have to create datasource for some Extra fields
    for that
    i have used followin tables
    CRMD_ORDERADM_H
    CRMD_INDEX
    but after using this in BW report i'm not able to get the item( Product )  level data
    and that's why it is comin with # , as Product level data cant find any link
    So
    kindly help me to get link between header and Item level data ..
    so dat i can create correct View
    Regards

    got the the table

  • Performance Transactions & Details

    Hai All,
    I am Farooq, the only individual for a Company working on ABAP from about 3 months. Please let me know all the details with Transactions of Performance Tuning, SQL Trace, & different other Traces.
    Now I have come across  <b>ST01, ST02, ST03, ST04, ST05, ST06, ST07, ST11, ST14, ST20, ST22, ST30, ST33, ST35, ST36, ST37, ST62</b>. I am hardly aware of anything in these. I know little about <b>ST05</b> only & very interested to learn much more.
    May be explaining all these may take much time & is not Possible here. So its OK even if U take your own time & send across any documents or mails to my ID, "[email protected]" when u r free. I would be very thankful to U. <b>THANKS a lot</b> in advance.
    Best Regards & wishes.
    Farooq

    Farooq,
    You can use SE30 for doing run time analysis of what is going on in the program which part has taken how much time .
    What is the data base time and what is program run time all details are available in this transaction.
    Using ST05 u can identfy which table is taking time to query, What index it is using .. by this we can decide to do secondary indexing in the table .
    At times it will also be neceesary from Basis side to re-build the index, re-build the statistics tables which will also improvise the performance .
    I will send u doucment  on performance tuning for programming.
    Regards
    R. Ramvelu
    [email protected]

  • Transaction Journal Report - Print Layout Design

    Hi all
    Is it possible to add Journal Entry Project Codes to this Transaction Journal Report (Print Layout Design)?
    I tried to add Journal Entry Project Codes to this system PLD but the result still not showing any Project Code.
    Kedalene

    Hi Kedalene Chong
    ou don't need a list of variables to use them. Simply go to View -> System Information so whenever you hover around a field with the cursor, in the left bottom corner of the screen you will see the details of that screen along with the variable number if it is a variable.
    So you will see something like:
    [Form=139 Item=29 Pane=0 Variable=91]
         -> in this case the variable number is 91 - use it in Print Layout Designer.
    So you can just use the variable specified in these details. When creating the print layout, just go back to your form, stand on a field with your mouse and you will see what variable to use.
    Also Check with the PLD Variables Note No 867048...
    Symptom
    Using system variables when designing a print template for the General Ledger report.
    Please note that variable numbers might change when upgrading to a higher version.
    Cause
    FAQ
    Solution
    Field Name
    Variable Number
    Posting Date
    62
    Due Date
    63
    Document Date
    112
    Series
    140
    Document Number
    141
    Transaction Number
    65
    Journal Voucher
    66
    Reference 1
    67
    Reference 2
    68
    Reference 3
    69
    Details
    70
    Transaction Code
    71
    Project Code
    72
    Costing Code
    73
    Offsetting Account
    74
    Indicator
    137
    Total (LC)
    75
    Debit (LC)
    96
    Credit (LC)
    95
    Balance (LC)
    76
    Total (SC)
    77
    Debit (SC)
    98
    Credit (SC)
    97
    Balance (SC)
    78
    Total (FC)
    79
    Debit (FC)
    100
    Credit (FC)
    99
    Balance (FC)
    80
    Creator
    138
    Internal Reconciliation
    131
    External Reconciliation
    132
    System variables from the Business Partner Master Data window available for use in the General Ledger report:
    Phone
    117
    Fax
    118
    Contact Name
    119
    Address
    120
    Sales Employee
    133
    Remarks
    134
    Full Address
    135
    Hope Hepful
    Regards
    Kennedy

  • How to skip first screen while calling transaction

    Hi all,
    I am using interactive alv.
    if i select one line and press details
    that must go to another screen.
    In that i must skip first screen and directly go to the details of that first screen.
    suppose i am using the code as follows
    call transaction mm01 and skip first screen
    this is giving me error.
    how to solve the problem.
    thanks and regards,
    giri.

    hi giri,
    For ur requirement, u can use SKIP FIRST SCREEN addition for CALL TRANSACTION Command.
    Before this, u have to use SET PARAMETER ID Command to pass the required values for transaction.
    Example, In transaction VA01, we have to set parameter AUN to pass the sale order number to the transaction.
    <b>
    AT LINE-SELECTION .
    SET PARAMETER ID 'AUN' FIELD w_vbeln.
    CALL TRANSACTION 'VA01' AND SKIP FIRST SCREEN .</b>
    where w_vbeln contains the sale ordre number. Now VA01 runs for this sale order number..... And AUN is the PARAMETER to be set before calling VA01 TCODE.
    similarly, check the PARAMETER associated with MM01 Tcode and initialize that parameter and call the code in the similar way.
    To check parameter Id of MM01,
    1) Enter MM01 Transaction
    2) Press F1 on Material Field
    3) Select Technical Info
    4) u can find Parameter ID associated with this field.
    check these links for full details.
    call transaction...
    http://help.sap.com/saphelp_47x200/helpdata/en/78/21761c51ce11d189570000e829fbbd/frameset.htm
    at line selection,
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba2c435c111d1829f0000e829fbfe/frameset.htm
    get/set parameter:
    http://help.sap.com/saphelp_nw04/helpdata/en/5b/7bc3775d1111d295ad0000e82de14a/frameset.htm
    Reward me if useful........
    Harimanjesh AN

Maybe you are looking for

  • HT201263 after restarting and restoring ipod touch, display is still white screen

    after restarting and restoring ipod touch, display is still white screen. I have done this several times. One time, the display went to the home screen, but immediately went back to the white screen when I plugged it into the charge cord. The music c

  • Upgrading to OS 4.3, Podcast plays NO SOUND

    After upgarding to OS4.3, the economist podcast can't be played on iphone 4. I click the particular episode, it shows seconds and jump back listing screen. it plays but no sound at all click "Get More Episodes" a. shows "Canno't connect to iTuens Sto

  • Best way to implement view filtering when using AssocoationConsistent(true)

    Hi, I need to retrieve all existing rows on a table as well as all the newly created rows in the entity cache for a partial key. ExecuteQuery, with AssociationConsistent set to true, will return the rows on the DB and ALL the newly created rows in th

  • Hosting DXSI Web Services on Oracle AS 10.1.2.3 ?

    Hi Gurus, I am using Oracle AS 10.1.2.3 and it already hosting Oracle B2B. Is it possible to host DXSI Web Services on the same AS? Thanks in advance, Warm Regards, Suhas.

  • Static initializer error

    hi guys, can anyone explain what might cause the following error? i have the following classes class BonesPlayLevel { // execution reaches here ObjFigure.initJointedModel(); class ObjFigure { public static void initJointedModel() { // execution does