PLD-How to increments rows of accounts in O/g payment.

Dear friends,
1) In outgoing payment PLD.I have made NOT visible as
Repeatative area Header0 ,and Repeatative area0.
2)Now if i will make Outgoing payment checkon ACCOUNT,for
that if i am designing PLD.So taken Account code,account name
from VPM4 table.
3)If i am selecting only one account ,in outgoing payment.
System shows me correct way.
4)But if there are more than one account in outgoing payment,
system shows only first account.
5)My question is that how to make increments ,accounts in PLD.
Regards,
Mahesh.

Hi Mahesh,
IF you need Outgoing Payments row details. Try to Create Query Print Layout Designer(QPLD).
If you need to Print rows of Accounts in Outgoing Payments.
Try this Query and you will design QPLD.
SELECT T0.DocNum, T0.DocDate, T0.CardCode, T0.CardName, T0.Address, T1.AcctCode, T1.AcctName,
T1.Descrip, T0.CashAcct, T0.CheckAcct, T0.Comments, T0.DocTotal,  CASE WHEN T0.CashSum > 0 THEN 'Cash'
WHEN T0.CreditSum > 0 THEN 'CC' WHEN T0.TrsfrSum > 0 THEN 'WIRE' ELSE 'Check' END AS 'Mode'
FROM OVPM T0
LEFT JOIN VPM4 T1 ON T0.DocEntry = T1.DocNum
INNER JOIN OPID T2 ON T0.PIndicator = T2.Indicator
WHERE T0.[DocNum]>='[%0]' and T0.[DocNum]<='[%1]' and T2.[Indicator]='[%2]'
ORDER BY T0.[DocNum]
If you need to Print rows of Accounts and Cheque Details in Outgoing Payments.
Try this,
SELECT T0.DocNum, T0.DocDate, T0.CardCode, T0.CardName, T0.Address, T1.AcctCode, T1.AcctName,
T1.Descrip, T0.CashAcct, T0.CheckAcct,
T4.[DueDate],
T4.[CheckNum],
T4.[BankCode] as 'Bank Name',
T4.[Branch],
T4.[AcctNum] as 'Check A/C No.',
T0.[CheckSum],
T0.[CashSum],
T0.[TrsfrSum],
T0.[TrsfrDate],
T0.[Comments],
T0.DocTotal,  CASE WHEN T0.CashSum > 0 THEN 'Cash'
WHEN T0.CreditSum > 0 THEN 'CC' WHEN T0.TrsfrSum > 0 THEN 'WIRE' ELSE 'Check' END AS 'Mode'
FROM OVPM T0 full outer JOIN VPM1 T4 ON T0.DocEntry = T4.DocNum
LEFT JOIN VPM4 T1 ON T0.DocEntry = T1.DocNum
INNER JOIN OPID T3 ON T0.PIndicator = T3.Indicator
WHERE T0.[DocNum]>='[%0]' and T0.[DocNum]<='[%1]' and T3.[Indicator]='[%2]'
ORDER BY T0.[DocNum]
Regards,
Madhan.
Edited by: Madhan Babu C on Aug 19, 2009 11:07 AM

Similar Messages

  • I just made a new account and i placed the account in my ipod but now its asking me submit a payment method which i do not want to place because i do not want to purchase any app that requires money. how can i use my account without giving a payment metho

    now asks me to put in my payment method. i do not wish to place it in because i am not looking forward to purchase any app that needs to be paid for. How can i use my account but not give in my credit card data?

    Create a NEW account/ID using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before. Make sure you specify a birthdate that results in being at least 13 years old
      Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    More details of how:
    http://ipadhelp.com/ipad-help-tips-tricks/how-to-get-free-apps-from-the-app-stor e-without-a-credit-card/

  • How to Print the Account Balance in Outgoing Payment PLD

    Hello Experts
    How to Print the Account Balance in Outgoing Payment PLD
    Dixit Patel

    Hi,
    you can use udf in the outgoing payment to record  the vendor's account balance and then using the query FMS ;
    select balance from ocrd where cardcode = $[$4.0.0]
    Assign the query in the UDF so that each time after entering the vendor code, the balance appears.
    After add the payment, the balance is recorded.
    In PLD, you can create the UDF field to make the balance appears in the outgoing report.
    Rgds,
    JimM

  • How to make the GL account discription possible in FAGLL03 line item display?

    Dear Experts,
        Could you tell me how to make the GL account discription possible in FAGLL03 line item display?
        I checked the layout, there is no account discription.
        How should I do?
    Thanks!
    Xinling Zhang

    Hi
    One you execute FAGLL03, go to Settings>Layout>Current Header Rows
    You can add some predefine characteristics here.
    I am not sure why the hyperlink is not working at your end. But you can search the SDN for special fields in FAGLL03 and you can get lot of posts for this document.
    Regards
    Sanil Bhandari

  • How to hide rows?

    Hello folks,
    I just would like to know that how to hide rows except dbms_rls package? I mean, it has been said that I can hide rows to create views but lets said that I have got 200 students and each student can see only their rows in students table, in that scenerio I have to create 200 views, isn't it? I just would like to learn that how to hide rows with using views? Do you have any ideas?
    Note: I know dbms_rls package, except this solution I am tryin to find onather solution.
    Thanks a lot.

    Hi,
    Polat wrote:
    Hello folks,
    I just would like to know that how to hide rows except dbms_rls package? I mean, it has been said that I can hide rows to create views but lets said that I have got 200 students and each student can see only their rows in students table, in that scenerio I have to create 200 views, isn't it? No! As you realized, that's not practical.
    If every student is a separate Oracle user, the USER fucntion will return the name of the current user. A view definition can reference that function, like this:
    CREATE OR REPLACE VIEW view_x
    AS
    SELECT   *
    FROM    table_x
    WHERE   student_account  = USER;If you logged in to Oracle as POLAT, then the view will contain only rows where student_account='POLAT'.
    If you logged in to Oracle as SYSTEM, then the view will contain only rows where student_account='SYSTEM'.
    If students do not have thier own Oracle accounts, then they are probably authenitcated by some procedure in your package. That procedure can set a SYS_CONTEXT variable, or write data to a global temporary table, which you can then use instead of the USER function in view definitions.
    Note: I know dbms_rls package, except this solution I am tryin to find onather solution.Why can't you use dbms_rls, or why don't you want to use it? It's a very powerful tool, and not vey hard to use.
    I'm not saying there's never a good reason not to use dbms_rls; I'm just asking if you have one.
    I hope this answers your question.
    If not, give a specific example of what you want. Post CREATE TABLE and INSERT statements for some sample data for all tables involved. Identify 2 or 3 different students, and show what the contents of the view should be for each student, given the same sample data. If students do not log in to Oracle with their own usernames, then explain how you know which student is currently logged in.

  • 1 How to setup new company name   2 How to setup row, rock and bin

    Hi,
    Anybody who can help me how to setup new company.
    And also how to setup row, rock and bin because we need to assign a location for our spare parts inventory.
    Thanks in advance.

    Row/rack/bin sounds like an inventory system. For a simple system you might want to build your own from scratch, but for even a mid-sized company you really want a shrink-wrapped solution -- i.e. Oracle apps or SAP.
    You don't want to be figuring out how to model material transactions, move orders, etc. Nor do you probably want to dive into various cost accounting options.

  • How to retrive G\L Account name in printlaylout designer

    hai frnds,
    how to retrive G\L Account name in printlaylout designer, i am able to capture the G\L account code ,by linking this field how to get the G\l account name in PLD
    PLz help me .
    Regards,
    Naresh K

    U can try bringing the OACT Name field directly via DB field. if not created new DB Field, hold the Key 'ALT' and choose OACT - G/L Accounts table and select the account name field. make a relate to connection with ur Account code field.
    shall i ask in which PLD r u now?
    Regards,
    Dhana.

  • How to Increment a value automatically

    Hi,
    I have a table named "Tbl_Outdirection_Dtl" which contains the following fields
    Tbl_OutDirection_Dtl: Outyear, OUTNO, OTSERNO, DI_CODE,REPLYHDATE, INNO, INHDATE, IN_UD_UID, IN_REMARKS, SCLOSE, St_CODE, CONT_RECNUM.
    In this, the CONT_RECNUM is starting from 3200001 for the first record then it should be increment by one for the next new record. My Query is how to increment it automatically when I am trying to insert a new record with out mentioning this field?
    Please help me

    To add to Whitehat's comments - most of this table design does not seem correct from a standards perspective either.
    Tbl_OutDirection_Dtl: Outyear, OUTNO, OTSERNO, DI_CODE,REPLYHDATE, INNO, INHDATE, IN_UD_UID, IN_REMARKS, SCLOSE, St_CODE, CONT_RECNUM.Why the TBL_ prefix? It does not achieve anything ito scope, identification, usability or readability. It is useless. It is based on Hungarian notation that in today's software engineering environment, is just plain stupid. (and well-known programmers like Linux Torvalds has even worse names for it)
    What is the basic requirement for an object name (be that a hash table, a partition table, an index organised table or pipeline table function or whatever)? Describing accurately what that object is using a meaningful name. There is absolutely no need to identify the type of the object. (the type itself can easily change, but the object ito data model and attributes will remain constant).
    The column names are a mixed of "+let's use underscores+" and "+let's not use underscores+". The correct standard is using underscores and again, using meaningful names.
    For example, what does INHDATE means? And why does it not have underscores like the other columns? Compare that to for example HIRE_DATE that exactly tells you what the column contains.
    Note that the so-called standards you think you have learned and used with SQL-Server is not just not applicable - it actually does the converse of what standards do. It makes your code and data model more difficult to read, understand, and use.
    Basic SQL standards are simple. Meaningful names. Use underscores. Objects containing multiple entities (like employee rows for example), must be in plural - e.g. the ERD will describe the EMPLOYEE entity and the database model will contain the EMPLOYEES table.
    It is that easy and that simple.

  • How to increment the date using sequence?

    how to increment the date using sequence?
    01-jan-10
    02-jan-10
    30-jan-10

    794244 wrote:
    how to increment the date using sequence?
    01-jan-10
    02-jan-10
    30-jan-10This doesn't look like a task where a sequence is usefull.
    A sequence is a number generator that guarantees that multiple sessions will all get a different number.
    Even if the sequence is fetched for differnent users (=sessions) that the same time.
    This in turn means that the value returned by the sequence will depend on actions done in other sessions.
    Typical task: create a new unique primary key number. The number MUST be different in all sessions.
    In your case I guess that the same logic should work regardless of the session that executes it. So you need a "number generator" that works indepented from other session values. There are several ways to create such a numbered list.
    The basic idea is to create a select statement that simply returns as many rows as you need. And then use ROWNUM as the number generator. Examples how to do this have already been given. LEVEL works also in hierarchical queries.
    if my interpretation of your requirement is right, then all answers that really used a sequence seem to be wrong. Even if the output looks ok. At best they are just slow. To create new sequence values is a complex task and the database needs a little time for all the synchonization issues that come with it. At worst it will have gaps in the sequence because other sessions used the same value while the numbers were created.
    Edited by: Sven W. on Sep 20, 2010 2:08 PM

  • How can I have 2 accounts from 1 itunes account?

    We have an existing ipos touch account with my email that is linked to itunes.  We recently got an iphone and I wanted my son to have his own account with itunes separate from mine.  I changed one computer's itunes email address account then turned on sharing and now I am unable to use my old email and password to access my itunes. How can I create an account on one computer for my son and his ipod touch and maintain my itunes on another computer for only my iphone?

    get him his own computer.

  • How can i use my account without the billing info, as i do not have a credit card. and my shipping and billing info is under US. i'm in singapore. how do i change this?

    how can i use my account without the billing info, as i do not have a credit card. and my shipping and billing info is under US. i'm in singapore. how do i change this?

    If you are just visiting Singapore, then leave the account as it is. If you have moved there, then view your account using the iTunes app on a Mac or PC and change the country/region to your current location and address. If you do not have a bank card, you can fund your account using iTunes gift cards if available in Singapore.

  • How can I remove my account on an iPad and add an existing one

    how can I remove my account on an iPad and add an existing one

    Or, how can I change the account on an existing iPad without restoring / formatting it?

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

  • How can I use same account in 2 iphone with diff contact list?

    how can I use same account number but other all totally diff such as contact list, application, everything ..... I found that it's bad on IOS5.
    when I used IOS4 .. old verison, I can keep my phone in diff data. Afte upgrade IOS 5, it's bad. Even take photo, it can not focus zoom in and out.

    how can I use same account number but other all totally diff such as contact list, application, everything ..... I found that it's bad on IOS5.
    when I used IOS4 .. old verison, I can keep my phone in diff data. Afte upgrade IOS 5, it's bad. Even take photo, it can not focus zoom in and out.

  • How do I make one account's home folder visible to the other?

    How do I make one account's home folder visible to the other? Also, when I begin to delete an account, it asks if I want to either delete its home folder, keep it in the users folder, or save it in a disk image. I want to be able to see it from my remaining account once I delete it, so if I leave it in the users folder, would I be able to see all the files (right now I can't

    Use terminal to add ACL to the account,
    at the prompt:
    sudo chmod -R +a "<user> allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,file_inherit,directoryinherit" /User/<user_name> #yep, all that goes on one line!#
    #Replace <user> with the user name that you want to have file/folder privileges#
    #Replace <user_name> with the account you want to process#
    example:
    sudo chmod -R +a "sue allow list,add_file, .... deletechild,readsecurity,file_inherit,directoryinherit
    /User/joe
    #sue now gets full access to joe's files and folders#
    to remove:
    sudo chmod -R -a "sue allow list,add_file, .... deletechild,readsecurity,file_inherit,directoryinherit
    /User/joe
    You can add as many users as you want! Just lather, rinse repeat. That is how I share my itunes
    directory with the ones I want to share it with.
    That's the simplest way. ACL permissions overrule posix permissions.

Maybe you are looking for

  • Sharing Music: Some Songs Don't Show Up on 2nd Computer but Playlist Does

    I am sharing songs using iTunes between my Powerbook and my G3 B&W. On the Powerbook, I see all of the Playlists that are on the G3 but if I open SOME (not all) Playlists, there are no songs inside. The songs ARE on the hard drive, however, in the iT

  • Issues after Mountain Lion Update

    Hello, can someone please assist me with this error report I receive after trying to open the desktop and screen saver in system preferences? I also cannot open finder, it does not respond at all and when I start the computer, it does not show user a

  • Finding Max Date

    Hello, I need to write a query that will look at two tables - one of which contains event information (pk = event_id), the other containing event_id's and broker_id's. One broker may have attended one or more events. I need to find the most recent ev

  • Example for function module

    Dear Friends, Could you please provide me the abap code (Select * ) for the below. I want to make a data source using Functional module. and the data is (tabel~field) VBRK-VBELN VBRK-FKART VBRK-WERKS VBRP - POSNR VBRP-NETWR VBRP-WAERK Where VBRK-VBEL

  • Bringing already existing html pages into iWeb, possible???

    My sister is a graphic designer who created some html pages for me using Dreamweaver & GoLive. I want to update the text, images, and tables in these pages, and thought I could use iWeb, but it only wants to let me use it's templates. Am I doing some