PLD - Payment details view not smart way

Hi All / Expert,
I have problem with PLD which the customer/ vendor ref not display in correct way.
Payment details
A/P Invoices: 04526053 - RM 13,507.19; 04526052 - RM 2,4272.99
It should be like this :
Payment details                                        Amount
04526053          <blank>                          RM 13,507.19
04526052          <blank>                          RM 2,4272.99
Anyone can tell me how to setup/design it to be like that? I'm appreciated your help.
Thanks in advance.
uddin
Edited by: Muhd Mahyuddin Zakaria on Apr 21, 2008 6:15 PM
Edited by: Muhd Mahyuddin Zakaria on Apr 21, 2008 6:15 PM
Edited by: Muhd Mahyuddin Zakaria on Apr 21, 2008 6:16 PM

Dear Jimmy,
As your mention before, query PLD is seem as solution for this problem. I tried to use your sample query you had given before and assign it to report
(Query manager --> Create report). But, it failed to bring out any figure.
Dear Naveed,
I'm also tried this query but I failed because syntax IF and /
2. Create a query IF /$[/$20.45.0] = '18'
SELECT T0.NumAtCard FROM OPCH T0 WHERE T0.DocNum = /$[/$20.1.0] (Note that query is starting by identifying the doc type, this query is for A/P reserve invoice, you can have it for any doc type by changing the syntax)
Please advice. Thanks
Edited by: Muhd Mahyuddin Zakaria on Apr 23, 2008 11:41 AM

Similar Messages

  • Hi i have moved from uk to india, i have changed my country in itunes store, when i am entering my payment details its not accepting it. more worse is all my applications which i have downloaded in uk are not working now. please suggest me a solution

    hi i have moved from uk to india, i have changed my country in itunes store, when i am entering my payment details its not accepting. more worse is all my applications which i have downloaded in uk are not working now. please suggest me a solution

    papillondefer wrote:
    I want to be able to keep app's, music, movies and my Cloud/Match exactly the same.  How do I do this?
    Because of different local copyright laws and licensing you cannot keep everything exactly the same except for iCloud, which is not affected. You will have to create a new Apple ID for use on the UK iTunes Store with a form of payment drawn on a local bank and an address in the UK. As long as you have downloaded all your purchases and the computer is still authorized to play all protected video content that won't change, however Apps may give you trouble when updating because once associated with an Apple ID you can only switch between stores every 90 days.
    As for iTunes Match you must contact Australian iTunes Store support to cancel the subscription and you will have to resubscribe on the UK store.

  • Win 7 File-Manager "Pages" column on details view not working.

    Hi, I'm using AA XI on Win 7.  I have a couple of advanced file managers (xplorer2 and XYplorer) that let you choose different columns for the the "Details View."  One of the built-in WIndows properties that can be used as a column is "Pages."  It shows the number of pages that a Word doc has, but does not show anything for PDF files.  One of the XYplorer forum members said that I need to install PDF-XChange, then the column support will be added to my computer...   Is there an Acrobat XI setting that will allow Windows to read the number of pages in a PDF?  Any other thoughts on this?  Many thanks. 

    Hi, I'm using AA XI on Win 7.  I have a couple of advanced file managers (xplorer2 and XYplorer) that let you choose different columns for the the "Details View."  One of the built-in WIndows properties that can be used as a column is "Pages."  It shows the number of pages that a Word doc has, but does not show anything for PDF files.  One of the XYplorer forum members said that I need to install PDF-XChange, then the column support will be added to my computer...   Is there an Acrobat XI setting that will allow Windows to read the number of pages in a PDF?  Any other thoughts on this?  Many thanks. 

  • Splitpage - details view not populating

    Hi,
    Can someone tell me what I am missing here.  I am using the splitpage.xaml page for the first time.  I have left it pretty much as default.  I have populated the Item list successfully but nothing happens when I click on an item.  I would
    have expected the details of that item to populate the Details view. 
    I would have expected that the below line in the Details view would have automatically populated the Details view with what is selected in the List view.  Or do I still need to do something in the ItemListView_SelectionChanged method?
    DataContext = "{Binding SelectedItem, ElementName=itemListView}"
    Maybe its something very simple I am missing. 
    Below is my item list and my detail list from the xaml - NB the item list populates fine.
    Thanks for any help.
    <!-- Vertical scrolling item list -->
    <ListView
    x:Name="itemListView"
    AutomationProperties.AutomationId="ItemsListView"
    AutomationProperties.Name="Items"
    TabIndex="1"
    Grid.Row="1"
    Margin="-10,-10,0,0"
    Padding="120,0,0,60"
    ItemsSource="{Binding Source={StaticResource itemsViewSource}}"
    IsSwipeEnabled="False"
    SelectionChanged="ItemListView_SelectionChanged">
    <ListView.ItemTemplate>
    <DataTemplate>
    <Grid Margin="6">
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto"/>
    <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Border Background="{ThemeResource ListViewItemPlaceholderBackgroundThemeBrush}" Width="60" Height="60">
    <Image Source="" Stretch="UniformToFill" AutomationProperties.Name="{Binding ErrorDate}"/>
    </Border>
    <StackPanel Grid.Column="1" Margin="10,0,0,0">
    <TextBlock Text="{Binding ErrorDate}" Style="{StaticResource TitleTextBlockStyle}" TextWrapping="NoWrap" MaxHeight="40"/>
    <TextBlock Text="{Binding UserMessage}" Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="NoWrap"/>
    </StackPanel>
    </Grid>
    </DataTemplate>
    </ListView.ItemTemplate>
    <ListView.ItemContainerStyle>
    <Style TargetType="FrameworkElement">
    <Setter Property="Margin" Value="0,0,0,10"/>
    </Style>
    </ListView.ItemContainerStyle>
    </ListView>
    <!-- Details for selected item -->
    <ScrollViewer
    x:Name = "itemDetail"
    AutomationProperties.AutomationId = "ItemDetailScrollViewer"
    Grid.Column = "1"
    Grid.RowSpan = "2"
    Padding = "60,0,66,0"
    DataContext = "{Binding SelectedItem, ElementName=itemListView}"
    HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto"
    ScrollViewer.HorizontalScrollMode="Disabled" ScrollViewer.VerticalScrollMode="Enabled"
    ScrollViewer.ZoomMode="Disabled">
    <Grid x:Name="itemDetailGrid" Margin="0,60,0,50">
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto"/>
    <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Image Grid.Row="1" Margin="0,0,20,0" Width="180" Height="180" Source="" Stretch="UniformToFill" AutomationProperties.Name="{Binding ErrorDate}"/>
    <StackPanel x:Name="itemDetailTitlePanel" Grid.Row="1" Grid.Column="1">
    <TextBlock x:Name="itemTitle" Margin="0,-10,0,0" Text="{Binding Title}" Style="{StaticResource SubheaderTextBlockStyle}"/>
    <TextBlock x:Name="itemSubtitle" Margin="0,0,0,20" Text="{Binding ExceptionMessage}" Style="{StaticResource SubtitleTextBlockStyle}"/>
    </StackPanel>
    <TextBlock Grid.Row="2" Grid.ColumnSpan="2" Margin="0,20,0,0" Text="{Binding InfoMessage}" Style="{StaticResource BodyTextBlockStyle}"/>
    </Grid>
    </ScrollViewer>

    Hi Ireland75,
    I don't think you need some events like Selection_Changed since the data is binding. Once you change the selection in ListView, the content for selected item will be also changed.
    I would suggest you to create a split template to see how it works instead of create a single Split Page on your project. You need binding things on to the item detail content, if you create a single split page, there is no test data.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • IR detail view not showing

    I have an interactive report that I would like to show in detail view.
    I have set enable detail view to Yes
    I have set before rows to <table>
    I have set for each row to <tr><td>#CREATED_ON#</td></tr>
    I have set after rows to </table>
    When I click on the detail view icon on the IR action bar nothing shows.
    I've also tried just some plain text in for each row <tr><td>Made it here</td></tr> still nothing
    Any suggestions?
    I'm on apex version 4.2.1.00.08
    Using Theme 26 (Productivity)
    DB 11gR1
    Thanks
    Wayne
    Edit: Found the problem - when using the wizard to create the report/form for some reason the detail view wouldn't work. Created report by hand detail view works just fine
    Edited by: wcoleku on Apr 15, 2013 11:09 AM

    Hi,
    Check the assign template code and ensure the CSS refrence starts with a leading slash. 
    e.g.  "/mycss.css"
    This might be the cause of this issue.  If still no luck please provide the url to the web app so we can help further.
    Kind regards,
    -Sidney

  • I've recently had my acrobat pro subscription stopped, yet my payment details have not changed

    Why was my subscription stopped and why would my payments be halted if my subscription details remain unchanged ?

    1st, this is the PREMIERE Pro video editing forum, not Acrobat Pro
    If you go to the Forums Index http://forums.adobe.com/index.jspa You will be able to select a forum for the Adobe product(s) you use
    2nd, all of these forums are user to user, not Adobe support... you need Adobe
    Adobe contact information - http://helpx.adobe.com/contact.html
    OR
    Next link has a "Chat Now" button near the bottom
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Apple ID and  card payment details seem not accepted

    Tried million times to submit my cc details and postcode from the capital of Maldives which repeatedly denied to accept my post code of Male' city. I think apple tech teams are not aware of our existence despite it is a frequent holiday spot for all tech billionaires. 

    Accepted form of payment
    http://support.apple.com/kb/HT5552

  • Error while creating money market transaction - payment details not retrieving from BP master data.

    Hello friends
                      I have error while creating financial transaction. Payment details are not retrieving from BP master data to creating financial transaction screen.
    No payment details entered for transaction
    Message no. FTR0030
    Please advise to set off this.
    Thanks & Regards
    Swami

    Dear Swami,
    Please select one payment details in Business partner and use assigned tab from top selection parameter from standing instruction to assigned bank details to product type.
    It will open other window like above example for each product of treasury, then assign bank details to product. Once assigned and save.
    System will pick payment details in deal automatically based on business partner.
    Hope this solve your issue.
    Regards,
    Jain
    Message was edited by: Jain Varghese

  • Payment Details not showing up

    When I go to my supscription status it says my account will automatically renew. I want to cancel because I don't want to get charged again. My payment details will not show up and there is no cancel button anywhere.

    I'm having the same problem and it's really getting on my nerves. Once I get it sorted spotify is going bye bye.

  • No Payment details in Check/payment advice note

    Hi Experts,
    I have done configuration for FBZP payment program. When I do payment proposal, there are no errors in the log, posting document is getting generated. But when I execute RFFOUS_C through SE38 and look for check/payment advice printing, the payment details are not getting included in check/payment advice, only standard forms and payment summary is displayed with current date and  correct check number.
    Can any expert suggest me where could be the problem. Early reply is very much appreciated.
    Thanks
    Srinivas

    Hi,
    Thanks for your reply. I have maintained form in said place and flagged the said check boxes and also maintained proper print controls. Because of this I could see the maintained form in spool but the problem is after successful payment run the payment details are not getting derived in the form.
    I do not know whethere is there any control where the payment details are sent to print program after successful payment run.
    Thanks
    Srinivas

  • Delete the payment details from a BPmaster data when there is still an deal

    Hi All ,
    what happens when i delete the payment details from a BP master data (counter party role in payment details tab ) when there is still an outstanding deal for this BP?
    Will this be reflected in the saved deal, so will the deal go into error after the payment details have been removed?
    I test this scenario in my dev system with following steps
    1. I create a deal with t code FTR_CREATE
    2. Delete all payment details from BP Master    (counter party role in payment details tab )
    3. i settle deal t code FTR_EDIT
    4. I run TBB1 to create a payment request
    5. then i run F111 and all required details and also payment request  system is create payment without any error
    all the able steps i did with out any error ... i think system should through error while running F111 t code because in BP master all data is deleted .
    so i want to know whether system  will through error mesg when we delete payment details from BP MASTER   
    regards

    Hi,
    The payment details are only a standing instruction which is captured by various create programs for respective financial transaction. Further, it is derived only once at the time of creation each time.
    Deleting payment details will not give you any error message for already created transactions, for new transactions, you may have to put it manually at the time of creation else will throw an error message with TBB1.
    Regards
    Prasad AV

  • 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

  • Can not update payment details

    I've been a CC subscriber since it began and last month funds were not in my account for the monthly subscription. Since then I have had an email to ask me to update my payment details. I know I probably shouldn't of done but I've waited until the last minute to do this. I have two days to make a payment so decided to update my details. I went to My Account - Plan Information - Update Payment info. I was asked for my password which I entered then proceeded to enter my payment details which are the same as previously. Then when you press save, nothing. Nothing happens. A message is at the top of page saying -
    We are still processing your payment.  Please check back in a few minutes or contact Customer Support.
    After I waited for an age, I checked back and the payment information hasn't changed. It has my card number checked out except the last 4 digits. My name isn't there and it says Amsterdam as my city which it isn't. I must of filled in the information 10 or more times and it doesn't change.
    I've tried Customer Services- chat and spoke to someone who said I will receive a call back. Still no call back after 3 hours when  I was told 10-15 mins.
    Any ideas what's going on? Is there any customer support I can contact directly?

    Change Payment Information
    Settings>iTunes and App Stores>Apple ID>View Apple ID>Sign-in>Payment Information

  • Day Limit in Change View "Terms of Payment":Details?

    What does exactly does the Daylimit field in
    "Change View " Terms of payment": Details "means?
    A detail explanation with an EXAMPLE is well appreciated.
    Thanks for your time

    Hi,
    The DayLimit Under Payment Term is Used to specify Perticular date to which you want the " Payment Term" or Condition should apply on the Invoice.  Explain you with simple example.
    Eg: 1.Payment Term 1001
    DayLimit 15
    Discount 2%  
    With the above inputs system Consider only the invoices posted on and before 15th date for 2% discount and for the Invoices posted after 15 of every month the said discount is not calculated or system will not consider the line for discount.
    Eg. Payment Term 1001
    Daylimit 31
    Discount 4%
    with the above inputs system consider's invoices posted from 16 to 31 dates for discount of 4%. 
    So If requirment is like this invoices posted on or before 15 should get 2% discount and invoices posted between 16 to 31 should get 4% discount then you can create the above manner.
    Hope you doupt is cleared .
    Thanks
    Goutam

  • Not able to display bar chart in details view

    Hi every one,
    I created Tiles and when click on Tile it is going to SplitContainer. in SplitContainer container i have two HTML views. I am trying to dispaly bar chat in Detail view. but its not displaying. Can you please help me?
    Here is my code.
    Here is my details view.
    <template data-controller-name="view.LrDetail">
      <div id="page" data-sap-ui-type="sap.m.Page" data-title="Leave Request" data-show-nav-button="true" data-nav-button-press="back">
      <div data-sap-ui-aggregation="content">
      <div data-sap-ui-type="sap.m.ObjectHeader"
      data-title-active="true"
      data-title-press="showRequestor"
      data-title="{lr>requestor}"
      data-number="{lr>days}"
      data-number-unit="days">
      <div data-sap-ui-aggregation="attributes">
      <div data-sap-ui-type="sap.m.ObjectAttribute" data-text="{path:'lr>type', formatter:'util.Formatter.lrType'}">
      </div>
      </div>
      <div data-sap-ui-aggregation="firstStatus">
      <div data-sap-ui-type="sap.m.ObjectStatus" data-text="{path:'lr>agoDays', formatter:'util.Formatter.agoDays'}">
      </div>
      </div>
      </div>
      <div id="reports" data-sap-ui-type="sap.viz.ui5.Bar">
      </div>
      </div>
      </div>
    </template>
    and here is my details controller
    onBeforeRendering: function()
      var oModel = new sap.ui.model.json.JSONModel({
      businessData : [
      {Country :"Canada",revenue:410.87,profit:-141.25, population:34789000},
      {Country :"China",revenue:338.29,profit:133.82, population:1339724852},
      {Country :"France",revenue:487.66,profit:348.76, population:65350000},
      {Country :"Germany",revenue:470.23,profit:217.29, population:81799600},
      {Country :"India",revenue:170.93,profit:117.00, population:1210193422},
      {Country :"United States",revenue:905.08,profit:609.16, population:313490000}
      sap.ui.getCore().setModel(oModel, "MyJSONModel");
      var dataset = new sap.viz.ui5.data.FlattenedDataset({
                dimensions : [ {
                  axis : 1,
                  name : 'Country',
                  value : "{Country}"
                measures : [ {
                  name : 'population',
                  value : '{population}'
                }] ,data : {
                  path : "/businessData"
      var chart = this.getView().byId("reports");
      chart.setDataset(dataset);
      chart.setModel(oModel);
    here is my output screenshot.
    Can you please help me where i am doing wrong.

    Hi Sakthivel Elango,
    My code is working in Normal view and displaying Chart. the same code put into detail view chat is not displaying. Inside HTML code i am posting please check the code.
    <div id="LrDetail--reports" data-sap-ui="LrDetail--reports" class="sapVizChart" style="width: 640px; height: 480px;">
       <div id="UIComp_0" style="position: relative; overflow: visible; font-size: 10px; box-sizing: border-box; left: 0px; top: 0px; width: 640px; height: 480px; display: none;">
          <div id="UIComp_1" class="UIComp_1-2ebc44e6-2f93-46d1-964e-e823b0afe432 v-viz v-bar" style="position: relative; overflow: hidden; font-size: 10px; box-sizing: border-box; display: block; width: 640px; height: 480px; -webkit-user-select: none; left: 0px; top: 0px;">
             <canvas style="width: 0px; height: 0px;"></canvas>
             <svg class="v-m-root" width="640" height="480" style="left: 0px; top: 0px; direction: ltr; position: absolute; box-sizing: border-box;">
                <defs></defs>
                <g class="v-m-title"></g>
                <g class="v-m-legends">
                   <g class="v-m-legend"></g>
                </g>
                <g class="v-m-main">
                   <g class="v-m-background"></g>
                   <g class="v-m-xAxis"></g>
                   <g class="v-m-yAxis"></g>
                   <g class="v-m-plot"></g>
                </g>
             </svg>
          </div>
       </div>
    </div>
    in this svg tags there is no bars.

Maybe you are looking for