Gneral ledger Report- Remarks Problem

Hi
I am placing Some remarks in Incoming / Outgoing Payment, that has to come in general ledger report so it will be very easy to identify what kind of Entry this. This we can do it by placing In Journal remarks , But problem is It is 50 Characters only. How to resolve this...
Giri

Hello Giri - we use the Journal Remarks field in all documents also to tie things together in the Document Journal, the BP Account Balance window, and many other places where the Journal Remarks are displayed...you did not say what kind of information, so I am just guessing you might be thinking along the same lines we already have...
I do not think there is any way to expand the field (SDK folks will tell you, if you need to go that route)...
BUT what the company did was decide to have a standard and specific field appear in each document's "journal remarks" for each work flow in SAP B1.  We also used the add-on package of BOYUM to make certain fields mandatory.  Then we wrote a procedure to replace the "journal remarks" with that standard.  For example, on the AR Invoice in the Sales - A/R module - the Customer Reference Number is set to mandatory.  When someone enters the Customer Reference Number, the system automatically replaces the SAP journal remark of "AR Invoice - Cust Number" with the Customer Reference Number ("NumAtCard") from the header of the AR Invoice.  When Incoming Payments are processed, the clerk copies that Journal Entry from the AR Invoice and pastes it in the Incoming Payment Journal Remark field...it works quite well...
As part of customer service, when the customer calls it is always good to reference their own information and look into the BP Accout Balance window or use Boyum's search function...
I know that does not solve your problem of making the Journal Remarks field larger, but maybe it is an alternative to look into???
Regards - Zal

Similar Messages

  • Special ledger report writter problem

    I use GR21 to create a report, in key figure section, I de-select BHSL, but when I save, it says:
    The key figure BHSL-I was automatically activated.
    so I can't de-selct BHSL, how can I de-selct BHSL?

    I have had the same issue.  There is no need to delete it and you cannot it.  Activating it would have no effect on whatever you are trying to do so leave it as it is and continue with your report definition.
    Elias

  • Paging Problem in Converted PLD2CR General Ledger Report

    dear expert,
    Now I'm trying to change the design of Converted PLD2CR General Ledger Report. At the time, I found some problem related paging. In my opinion, General Ledger report should be group with BP Code. In converted CR, I didn't see Group Idea. If you can, help me please. I'm waiting your response.
    Best Regards,
    zzymt

    Hi,
    Is it a paging problem or grouping problem? Have your checked PLD report?
    Please close your previous threads.
    Thanks,
    Gordon

  • Vendor Ledger Report

    Dear Experts
    I have to code a Vendor Ledger report.
    Can anyone help me what table i should use.
    Regards

    Hi,
    Try these Bapi..
    BAPI_AR_ACC_GETKEYDATEBALANCE
    BAPI_PROFITCENTER_GETDETAIL
    BAPI_PROFITCENTER_GETLIST
    Hope this will help you to solve your problem.
    Regards,
    Vijay

  • Showing wrong Balance in TB and Ledger Report

    Dear Experts,
    I am facing a problem in Trial Balance & Ledger report, In 4-5 accounts the debit balance and credit balance is same still showing balance of 0.01 or -0.01
    for example
    Account Head          Debit      Credit     Balance
    ED1051                                184.31     184.31     -0.01
    to nullify the effect if I debit this account with 0.01 then its displaying balance 0.01.
    what may be the reason?
    Thanks
    Kamlesh

    Hi Kamlesh,
    It sounds like there might be transactions in the db with more decimals than the current setting.
    You can check this in SQL (B1 will only display 2 decimals)
    If this is the case let us know the version you are using.
    Jesper

  • Ledger Report In Crystal Reporter

    Dear SAP B1 Experts.
    I generated a Ledger report in SAP B12007 B Inbuilt Crystal Reporter Addon , by linking JDT1 Table and OACT table. I am able to run report based on the From Date and Todate parameter and the informations are showing currectly.
    But the problem is I am not able to fetch the opening balnce for the sepecified account.
    For Eg :
    Ledger Report for Cash Account ,  Parameter is 01/05/09 to 31/05/09 . So as per my reports, it is taking only the trasnaction in between the parameter Date. Here if i able to fecth the opening balance (Sum(jdt1.Dr) - Sum(jdt1.Cr) which is less than the From Date. 
    Opening Balance = Sum(jdt1.Dr) - Sum(jdt1.Cr where Jdt1.RefDate < From Date Parameter.
    So in this scenario, what kind of formula should write to fetch the opening balance .
    Can anybody help me to sort out this issue.
    Thanks
    Regards

    declare @fr char(7)
    declare @to char(7)
    /select t.Refdate from ojdt t where t.refdate between '[%0]' and '[%1]'/
    set @fr=convert (char(7),[%0],20)
    set @to=convert (char(7),[%1],20)
    declare @PrCl dec(19,6)
    declare @de dec(19,6)
    declare @cr dec(19,6)
    declare @acc char(20)
    declare @Pracc char(20)
    Create table #W
      (Acc char(20), M char(7), Op dec(19,6),De dec(19,6),Cr dec(19,6),Cl dec(19,6) )
    Insert into #W (Acc,M,Op,De,Cr,Cl)
    SELECT T1.[Account],convert (char(7),T1.[RefDate],20)Mo,
      0,sum(T1.[Debit])De , sum(T1.[Credit])Cr,0
    FROM OJDT T0 INNER JOIN JDT1 T1 ON T0.TransId = T1.TransId
    Group by T1.[Account],convert (char(7),T1.[RefDate],20)
    Order By T1.[Account],convert (char(7),T1.[RefDate],20)
    Declare cu cursor for
    Select acc,de,cr from #W
      for update
    set @PrAcc=''
    Open cu
    Fetch next from cu into @acc,@de,@cr
    While @@FETCH_STATUS = 0
    Begin
    If @acc!=@PrAcc set @PrCl=0
    Update #W
       set op=@PrCl,
           cl=@PrCl-@Cr+@de
      where current of cu
    set @PrCl=@PrCl-@Cr+@de
    set @PrAcc=@acc
    Fetch next from cu into @acc,@de,@cr
    End
    deallocate cu
    Select * from #w
    where M between @fr and @to
    Drop table #W
    Run the above query

  • Cannot generate General Ledger report

    Hi Experts,
    I have a user with various authorizations, but should be authorized to run the General Ledger report. However, the system ask for authorization of General Ledger even if it is already authorized in the Authorization Module. We used document ownership and the user is also authorized in all reports. But still the authorization check appears.
    Is there any other pre-requisite authorizations to be able to run the General Ledger? We are using 8.8 PL12.
    Many thanks,
    Don

    Hi,
    Give Authorization to
    1. Chart of Account and Balance
    2. Business Partner and Balance
    If not working
    Remove the data ownership and check whether it is running..
    If running then the problem in Data Ownership only..

  • Error 131-85 when trying to run general ledger report.

    Hello when I try to run the general ledger report in SAP 8.8 I get the following error:
    Data is not available; modify the selection criter and re-enter [131-85]. I used to be able to run the report no problem, and I can also run it under other users and my test account with the same criteria and am ok. Can anyone help?

    Hi Jessica.....
    This error generally comes when your Selection Parameters are not OK.
    Please check the parameters or select all for from and to date period.....
    Also please check whether to that particular user Accounts are accessible or not for generation this report....
    Regards,
    Rahul

  • Dear Apple Support,  Good day to you. This is to report the problem i encountered when i updated my Ipad mini to the new IOS 8.1..  After the update my Ipad restart and after that it appears a picture that need to connect to itunes and need  to resto

    Dear Apple Support,
    Good day to you.
    This is to report the problem i encountered when i updated my Ipad mini to the new IOS 8.1..
    After the update my Ipad restart and after that it appears a picture that need to connect to itunes and need  to restore. So i connect it to itunes and wait to restore my ipad mini because it is not opening.
    After restoring it my ipad is now opening and it is like new that i need to set up again.
    I set up again until i reach the apple id and password.
    I put my below apple ID and password to unlock my ipad but it didn't work. The message i receive is "the apple ID cannot be used to unlock this Ipad.
    What will I do? Please help.
    Thank you
    Sent from my iPhone
    Begin forwarded message:
    From: Apple <[email protected]***>
    Date: October 9, 2013 at 11:53:53 PM GMT+4
    To: ****
    Subject: Your Apple ID was used to sign in to iCloud and iMessage on an iPad mini 
    Dear Leslie J.,
    Your Apple ID was used to sign in to iCloud and iMessage on an iPad mini named “Leslie Joye's iPad”.
    If you have not recently set up an iPad with your Apple ID, then you should change your Apple ID password. Learn more.
    Apple Support
    <Email Edited By Host>

    1. It is never a good idea to include personal info like your email address or Apple ID in a post on an open forum.
    2. The email you received DOES NOT say your Apple ID cannot be used to unlock this iPad. The email informs you that your Apple ID was used to unlock an iPad. Fortunately the iPad is yours. The message confirms that. If your Apple ID was used to unlock an iPad that was not yours your would then know to change your password. Since the iPad is yours you do not need to change your password.
    Is your iPad working?

  • How can I report a problem with downloading?

    I purchased a rather long album and halfway through downloading it gave me the message, "We could not complete your istore request. The network connection timed out. Error 8003." The only guidance it offers is to check the network connection. Nothing wrong there. Now I can get into the store and the balance of the album no longer shows up under downloads, just old stuff that really shouldn't even be there. I went into my account, and under purchase history clicked onto "Report a problem." All I got out of that is the same page minus the report a problem button.
    I'm frankly sick of this iphone and all the problems I've encountered with their upgrade failures, but this disappearig report a problem just tells me they really don't want to hear from you and no one is minding the store.
    Any other places to report a problem? Or advice onto how to get the missing songs?
    Thanks., I've just spent the last 1-1/2 hours on this board and going back and forth in the istore and am very frustrated.

    Click here and fill out the form for assistance.
    (35548)

  • HT5429 How long after you report a problem does it take for the fix to be picked up in maps?

    How long after you report a problem does it take for the fix to be picked up in maps? The street I live on is misspelled. It's shown as one word, but it should be two words. Maps cannot find the address when it is spelled correctly, so I have it purposely misspelled it as one word in my contacts, which helps for the most part, however it still tries to place my home on an entirely different street all together. Fortunately this new random street is at least close to where I live. When I used to spell my street correctly with two words, maps would try to send me to the next town over. So it kind of works, as long as I misspell my street, and ignore the fact that it is showing where I live to be a couple of streets down from where I actually live. I live in Connecticut - not in the most populated of areas, but not in the middle of nowhere either. Amazingly enough Google Maps will correctly find my address whether it's spelled with one words or two words. Google Maps also shows my apartment complex, which Apple Maps does not. I really wish Apple would just do a quick pass of the area to fix these issues. I’ve reported the problem several times, months ago. How long will it take for there to be a fix? I keep trying to use the Apple ecosystem, but Google is clearly the better solution for me.

    Apple does not do the GIS data for maps. That comes from 3rd party vendors like Tom Tom. I have read it takes some time to update map data. The only thing you can do is report it.
    Not to belittle your complaint, but on my end it is Apple that is clearly better. When looking at my house in Google, the satellite photo is more than 4 years old, and the Apple one is much newer. I can tell because of the condition of my home and the neighbor's. They had an above ground pool which was removed 4 years ago and it shows on the Google Map. I had remodeling and roof work done to my home that started 3 years ago and Apple's satellite view showed this work done, which took over a year to complete. I live in the middle of a block in a rural town. Both Apple and Google split the block into 100 parts and put my home close to the beginning of the block instead of where it actually sits. I've reported it to both Google and Apple and no one has changed. Just one of those things. But, keep your chin up, it will get corrected eventually.

  • Business One C# DI API's for General Ledger Report?

    I am working on the General Ledger Report and unable to find the DI API's for C# for the following cases. If somebody can point me the API's, that would be really helpful. I have handle to the logged in company.
    Get all ChartOfAccounts
    Get AccountSegmentations
    Get BusinessPartners
    Get JournalEntries_lines
    I am new to SAP. The documentation is bit unclear. I am using the following code to load the objects. Now it is unclear how to loop through the journalvouchers to load all the lines one by one.
    SAPbobsCOM.AccountSegmentations segmentations =  oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oAccountSegmentations);
                SAPbobsCOM.AccountSegmentationCategories categories = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oAccountSegmentationCategories);
                SAPbobsCOM.BusinessPartners partners = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oBusinessPartners);
                SAPbobsCOM.JournalVouchers vouchers = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalVouchers);
                SAPbobsCOM.JournalEntries jEntries = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries);
                SAPbobsCOM.JournalEntries_Lines jLines;

    Hi,
    Are you trying to run the report via code?  If so, you can only do that using the UI objects as there is not DIAPI for reporting.
    You first need to activate the menu item for the report:
    connect.SboApp.ActivateMenuItem("13058");
    Once you've done that, you can get the active form which will be your criteria window, use the UIAPI to set your criteria and run the report by getting the OK button object and calling the Click method.
    David

  • General Ledger report with Op Bal , Trans Line Items and Closing Balance

    Hi Experts,
    My clients needs a General Ledger report which should show Opening balance and all transactions line items with closing figure in a single report for a fiscal year in the given date range wise. Can I get a report in standard sap. Waiting for your reply.
    Thanks in Advance,
    Arabinda Parida

    Hi Parida,
    There is no such report in SAP. Basically all standard report gives line items not with opening and closing balances. Anyway check mentioned transaction which may help to you.
    S_ALR_87012309....It is cash journal report. Anyway you can enter GL account get opening and closing balances with all relavent transactions.
    Regards
    Suma

  • Sub Report Performance problem

    Our current software configuration is Microsoft SQL Server 2008 R2 (10.0.2531.0) where our data is housed. Our User Interface is Microsoft Visual Studio 2008 (Visual Basic) and Microsoft .NET 3.5 SP1 platform.  We use Crystal Reports 2008 (12.0.0.683) to do our reporting.
    We upgraded from Crystal Reports XI and our reports are taking a long time to render?... Is there any evidence of other companies experiencing this trouble? Are there any degraded performance issues when moving from XI to 2008?
    In some cases we utilizing a small simple sub report.
    Any help appreciated. Thanks.

    Hi Billy,
    Subreports in detail sections are never a good idea. Example, you have 100 records returned int he main report and if that field is your subreport link it causes the subreport to run 100 times. Your database is being queried 101 times.
    Also, the default time out for database is typically 1 minute, could be you need to verify your report and database so CR can "clean up" any wrong pointers.
    It's always better to do the data collection server side if and when possible, after all that's what they do best.
    Not much detail to go on so I can't say if it's a report design problem other than the above or not. It could be also that .NET takes time to load all of the CR assemblies so depending on how you have your app configured depends on the delay. If you load a dummy report when your starts up to pre-load CR runtime then subsequent reports will be much faster.
    Also check off all of the Verify Database options, you may be telling CR to verify each time which on big databases can cause a delay also.
    Thank you
    Don

  • Interactive report performance problem over database link - Oracle Gateway

    Hello all;
    This is regarding a thread Interactive report performance problem over database link that was posted by Samo.
    The issue that I am facing is when I use Oracle function like (apex_item.check_box) the query slow down by 45 seconds.
    query like this: (due to sensitivity issue, I can not disclose real table name)
    SELECT apex_item.checkbox(1,b.col3)
    , a.col1
    , a.col2
    FROM table_one a
    , table_two b
    WHERE a.col3 = 12345
    AND a.col4 = 100
    AND b.col5 = a.col5
    table_one and table_two are remote tables (non-oracle) which are connected using Oracle Gateway.
    Now if I run above queries without apex_item.checkbox function the query return or response is less than a second but if I have apex_item.checkbox then the query run more than 30 seconds. I have resolved the issues by creating a collection but it’s not a good practice.
    I would like to get ideas from people how to resolve or speed-up the query?
    Any idea how to use sub-factoring for the above scenario? Or others method (creating view or materialized view are not an option).
    Thank you.
    Shaun S.

    Hi Shaun
    Okay, I have a million questions (could you tell me if both tables are from the same remote source, it looks like they're possibly not?), but let's just try some things first.
    By now you should understand the idea of what I termed 'sub-factoring' in a previous post. This is to do with using the WITH blah AS (SELECT... syntax. Now in most circumstances this 'materialises' the results of the inner select statement. This means that we 'get' the results then do something with them afterwards. It's a handy trick when dealing with remote sites as sometimes you want the remote database to do the work. The reason that I ask you to use the MATERIALIZE hint for testing is just to force this, in 99.99% of cases this can be removed later. Using the WITH statement is also handled differently to inline view like SELECT * FROM (SELECT... but the same result can be mimicked with a NO_MERGE hint.
    Looking at your case I would be interested to see what the explain plan and results would be for something like the following two statements (sorry - you're going have to check them, it's late!)
    WITH a AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_one),
    b AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_two),
    sourceqry AS
    (SELECT  b.col3 x
           , a.col1 y
           , a.col2 z
    FROM table_one a
        , table_two b
    WHERE a.col3 = 12345
    AND   a.col4 = 100
    AND   b.col5 = a.col5)
    SELECT apex_item.checkbox(1,x), y , z
    FROM sourceqry
    WITH a AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_one),
    b AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_two)
    SELECT  apex_item.checkbox(1,x), y , z
    FROM table_one a
        , table_two b
    WHERE a.col3 = 12345
    AND   a.col4 = 100
    AND   b.col5 = a.col5If the remote tables are at the same site, then you should have the same results. If they aren't you should get the same results but different to the original query.
    We aren't being told the real cardinality of the inners select here so the explain plan is distorted (this is normal for queries on remote and especially non-oracle sites). This hinders tuning normally but I don't think this is your problem at all. How many distinct values do you normally get of the column aliased 'x' and how many rows are normally returned in total? Also how are you testing response times, in APEX, SQL Developer, Toad SQLplus etc?
    Sorry for all the questions but it helps to answer the question, if I can.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)

Maybe you are looking for

  • Tdms-files: Is it possible to prevent LabVIEW and DIAdem from creating .tdms_index files?

    Hello, is it possible to prevent LabVIEW and DIAdem from creating .tdms_index files when opening/creating/editing a .tdms file? I think I have no benefit from the .tdms_index files because our applications create a lot of little .tdms-files (repeat m

  • Camera Roll vs Recently Added

    Since 'camera roll' has been replaced with 'recently added' on my iPhone, I can no longer distinguish between pictures I've taken on my iPhone and pictures that are being displayed from my iMac's iPhoto.  I don't want my new iPhoto pictures automatic

  • Multiple constraining classifiers in generic templates - compiler broken

    can not compile multiple constraining classifiers to a generic template if the classifier is defined in the template:      public <U, T extends U> void a() {} will compile. java language specification: 4.4 Type Variables says:      public <T extends

  • Project wise cost center

    Hello, Can we consider each project as a cost center in an organization? Thanks

  • UMELoginException: PASSWORD_EXPIRED

    Dear experts, I am facing problem while log-in to the Visual admin using the user "administrator" in our protal inastalled system. Following is the error: #1.5^H#00151778AF8C005B0000011000003CD20004730A14D9C060#1252387043523#com.sap.engine.services.s