Months_Between inconsistency

Hi all,
I have come across a strange behavior of Months_Between function.
CREATE TABLE getbucket_TEST
AS
SELECT TO_DATE('31-DEC-2009','DD-MON-YYYY') + LEVEL DT
FROM   DUAL
CONNECT BY LEVEL <= 366*6;
SELECT DT - TO_DATE('28-feb-2010','DD-MON-YYYY') DT_DIFF,
       MONTHS_BETWEEN(DT, TO_DATE('28-feb-2010','DD-MON-YYYY')) mon_DIFF,
       DT, TO_DATE('28-feb-2010','DD-MON-YYYY') as_on_dt
FROM   getbucket_TEST;
DT_DIFF     MON_DIFF     DT     AS_ON_DT
28     1     28-MAR-10     28-FEB-10 --check the difference
29     1.03225806451612903225806451612903225806     29-MAR-10     28-FEB-10
30     1.06451612903225806451612903225806451613     30-MAR-10     28-FEB-10
31     1     31-MAR-10     28-FEB-10 --check the difference
..In this case, if I use Months_Between to generate bill on every occurrence of whole number, it would be generated twice in a month, why does it give this kind of output?
*009*

009 wrote:
28     1     28-MAR-10     28-FEB-10 --check the differenceCheck documentation:
MONTHS_BETWEEN returns number of months between dates date1 and date2. If date1 is later than date2, then the result is positive. If date1 is earlier than date2, then the result is negative. <font color=red>If date1 and date2 are either the same days of the month or both last days of months, then the result is always an integer.</font> <font color=blue>Otherwise Oracle Database calculates the fractional portion of the result based on a 31-day month and considers the difference in time components date1 and date2.</font>SY.

Similar Messages

  • OPEN_INTERFACE_REJECTS- INCONSISTENT SUPPL SITE

    Payables Open Interface Import program is throwing INCONSISTENT SUPPL SITE, when a third party vendor site code and third party vendor site id is passed along with matching PO number for creating an invoice for third party vendor site.
    Can any one let me know, how to resolve this issue.
    Thanks in advance

    Hi,
    this could be due to passing values which are not correct for the vendor_site_id field ....do compare this transaction with other transactions that are imported successfully past, so that we can narrow down on the data which is different ...
    Reference:
    Expense Report Export Rejects Expense Reports With 'Supplier Site Id And Supplier Site Code Do Not Match' [ID 1408830.1]
    Regards,
    Ivruksha

  • SAP System inconsistency for Inbound delivery / MIGO and a "sap note"

    Hello Friends ,
    After following SAP instruction on how to remove the inconsistency between posting GR through MIGO (Inv. mang.) and the reflection of the goods movement status in the inbound delivery document - done that using sap note 570991
    the problem is that the system start behaving in a weird way throwing unjustified Error messages for any suggested goods receipt using MIGO with reference to inbound
    for example after creating an inbound delivery document and trying to post it via migo , an error will pop up
    - Inbound delivery storage location cannot be changed to here Message no. VLA316
    the thing is i didn't even maintain any storage location entry up to that point and yet i cannot post any stock !!
    also another error  like
    - Inbound delivery batch cannot be changed to *** here
    which doesn't make any sense because there is not batches in the inbound document !!
    i think this behavior is coming from the "Document Flow Update for Stock Postings" inbound  indicator  at the shipping parameter at client level customization
    i need help on  how to overcome this annoying SAP Bug/Problem specially i am in a post go live critical situation

    Hi,
       The messages you mentioned were introduced to avoid inconsistency between inbound delivery and IM, through the note:  1050944 - GR for inbound delivery using inventory mgmt as of ECC 6.00
       If the messages are issued incorrectly, then you may check for SAP notes (I couldnt find anything relevant) or raise an OSS ticket to SAP.
    Regards,
    AKPT

  • Inconsistency between catalog authoring tool & Search engine

    Hi,
    We are on CCM2.0 and SRM5.0 with catalog deployment in the same client as SRM.
    In our implementation we are using master catalog and product catalog. We have very recently deleted around 65 items from our product catalog which is mapped to mater catalog and hence those 65 items are not found anymore in master catalog in CAT (Catalog authoring tool).
    This master catalog when published, we expect that these 65 products should not be available for end users.
    But end users can still see the deleted items through CSE (Catalog search engine). Thus there is data inconsistency between CAT & CSE.
    Has anyone faced similar issue before if yes can you please share the same with us.
    Edited by: Manoj Surve on Mar 24, 2009 7:05 AM

    Run TCODE SE38 program /CCM/CLEANUP_MAPPING to look for errors/orphaned records in test mode.
    If you want to clear out orphaned records uncheck the Test Mode but:
    Warning: This program can slow down a production system as it clears out the memory buffers for user catalog searches and these have to be built up again by the users doing searches.  This can be  hours to days depending upon the size of your system and the number of users.
    In Dev or UAt no problem.
    Hope this helps?
    Regards
    Allen

  • Inconsistency between get-childitem -include and -exclude parameters

    Hi,
    Powershell 2.0
    Does anyone else consider this a minor design bug in the Get-ChildItem command?  
    # create dummy files
    "a","b","c" | % {$null | out-file "c:\temp\$_.txt"}
    # this "fails", returns nothing
    get-childitem c:\temp -include a*,b*
    # this "works", returns desired files
    get-childitem c:\temp\* -include a*,b*
    # this "works", excludes undesired files
    get-childitem c:\temp -exclude a*,b*
    # this "fails", excludes undesired files BUT RECURSES sub-directories
    get-childitem c:\temp\* -exclude a*,b*
    I'm writing a wrapper script around the GCI cmdlet, but the inconsistency between the two parameters is problematic.  My end user will surely just type a path for the path parameter, then wonder why -include returned nothing.  I can't unconditionally
    add an asterisk to the path parameter, since that messes up the exclude output.
    I'm just wondering why Microsoft didn't make the parameter interaction consistent???  
    # includes desired files in the specified path
    get-childitem -path c:\temp -include a*,b*
    # excludes undesired files in the specified path
    get-childitem -path c:\temp -exclude a*,b*
    # combine both options
    get-childitem -path c:\temp -include a*,b* -exclude *.log,*.tmp
    # same as above, the asterisk doesn't matter
    get-childitem -path c:\temp\* -include a*,b*
    get-childitem -path c:\temp\* -exclude a*,b*
    get-childitem -path c:\temp\* -include a*,b* -exclude *.log,*.tmp
    # same as above, but explicitly recurse if that's what you want
    get-childitem -path c:\temp\* -include a*,b* -recurse
    get-childitem -path c:\temp\* -exclude a*,b* -recurse
    get-childitem -path c:\temp\* -include a*,b* -exclude *.log,*tmp -recurse
    If I execute the "naked" get-childitem command, the asterisk doesn't matter...
    # same results
    get-childitem c:\temp
    get-chileitem c:\temp\*
    If this isn't considered a bug, can you explain why the inconsistency between the two parameters when combined with the -path parameter?
    Thanks,
    Scott

    The Get-ChildItem cmdlet syntax is horrific for advanced use. It's not a bug in the classic sense, so you shouldn't call it that. However, feel free to call it awful, ugly, disastrous, or any other deprecatory adjective you like - it really is
    nasty.
    Get-ChildItem's unusual behavior is rooted in one of the more 'intense' dialogues between developers and users in the beta period. Here's how I recall it working out; some details are a bit fuzzy for me at this point.
    Get-ChildItem's original design was as a tool for enumerating items in a namespace -
    similar to but not equivalent to dir and
    ls. The syntax and usage was going to conform to standard PowerShell (Monad at the time) guidelines.
    In a nutshell, what this means is that the Path parameter would have truly just meant Path - it would not have been usable as a combination path specification and result filter, which it is now. In other words
    (1) dir c:\temp
    means you wanted to return children of the container c:\temp
    (2) dir c:\temp\*
    means you wanted to return children of all containers inside
    c:\temp. With (2), you would never get c:\tmp\a.txt returned, since a.txt is not a container.
    There are reasons that this was a good idea. The parameter names and filtering behavior was consistent with the evolving PowerShell design standards, and best of all the tool would be straightforward to stub in for use by namespace
    providers consistently.
    However, this produced a lot of heated discussion. A rational, orthogonal tool would not allow the convenience we get with the dir command for doing things like this:
    (3) dir c:\tmp\a*.txt
    Possibly more important was the "crash" factor.  It's so instinctive for admins to do things like (3) that our fingers do the typing when we list directories, and the instant failure or worse, weird, dissonant output we would get with a more pure Path
    parameter is exactly like slamming into a brick wall.
    At this point, I get a little fuzzy about the details, but I believe the Get-ChildItem syntax was settled on as a compromise that wouldn't derail people expecting files when they do (3), but would still allow more complex use.  I think that this
    is done essentially by treating all files as though they are containers for themselves. This saves a lot of pain in basic use, but introduces other pain for advanced use.
    This may shed some light on why the tool is a bit twisted, but it doesn't do a lot to help with your particular wrapping problem. You'll almost certainly need to do some more complicated things in attempting to wrap up Get-ChildItem. Can you describe some
    details of what your intent is with the wrapper? What kind of searches by what kind of users, maybe? With those details, it's likely people can point out some specific approaches that can give more consistent results.

  • Inconsistency between tbtco and tbtcs

    Hello guys,
    we have a big problem after our HWU upgrade.
    We have copied the content of tbtco into a new table tbtco_copy before the upgrade to save all the job entries.
    After this we have deleted the contant of tbtco. So we had no scheduled jobs for the HWU
    After the HWU we have copied back the content of tbtco_copy into tbtco.
    But now we have a inconsistency between tbtco and tbtcs. This means that all planed and released jobs are not starting (delay goes up).
    How we can start this jobs << Removed >>
    Br
    Christian
    Edited by: Rob Burbank on Apr 19, 2009 4:23 PM

    USer TR: SM65

  • New MBP -- Wireless Connectivity Inconsistent (Despite MBP's Claims)

    Have a new MBP, running 10.5.6 straight out of the box. All essential system updates have been downloaded and installed (one FCE update remains undownloaded). The Airport connection is tenuous -- it will stay connected to the internet for hours at a time, and then go out repeatedly. Every time it goes out, diagnostics claim it is connected, as does the Network dialogue in System Preferences, even when it is impossible to load any web page (or complete system update downloads!).
    A few things:
    1. At no point does the MBP indicate that it has lost a connection to the wireless network.
    2. While internet connection is lost on MBP, I am still able to connect wirelessly with my Powerbook, implying that internet connection/router/ISP is not to blame.
    3. I tried entering IP information manually, but to no avail. On a lark, I switched the IP address of the MBP with the PB, but PB continued to be able to connect to internet while MBP struggled.
    4. While internet connection via my secure wireless network is lost on MBP, I am able to connect MBP to a nearby unsecured wireless network (presumably a neighbor's). I have purposely not maintained connection to this wireless network for long stretches (though I'm using it now to compose this query), so I don't know that the connectivity issues are absent when connected to it, but I have not experienced any inconsistency when connected to it, even in phases when I am experiencing inconsistency with my secure network.
    5. My network is secured by way of a WEP 128-bit hexadecimal password. However, the settings under Network in System Preferences insist on calling it a WEP password, no matter how many times I change it to WEP 128 hex.
    6. On a couple of occasions, when experiencing proper connectivity on my secure network, I have tried locking the Network settings in System Preferences. Paradoxically, doing this seems to immediately disconnect me from the internet.
    That's all I can think of for now. This problem seems not unrelated to some other problems described in messageboards across the web, but I didn't see anyone outline the problem in the exact way that I've experienced it (nor have I seen a sure-fire solution posted to the problems I have read about).

    Folks: *there may be a power/signal issue going on here.* I had a similar problem of my network connection dragging to practically nothing when hooking up my LaCie external drive to the USB port. Please see my post below (link and text)
    http://discussions.apple.com/thread.jspa?messageID=9914924#9914924
    Folks:
    Apple needs to get on this issue fast; after turning off my N mode on my WRT160N Linksys Router, I got my packet speed back up to where it should be... HOWEVER I noticed another problem.
    When I hooked up my LaCie external drive (connected via USB), my packets on PING practically stall to nothing. I then eject the external USB drive and re-ping and I get acceptable packet speeds; I re-connect the LaCie external drive to the USB port and my PING crawls to nothing.
    There is CLEARLY a correlation between the network speed crawling to nothing while hooking up an external drive; possibly a power sink and/or signal interference on the Airport when hooking up a USB device? (or perhaps even Firewire 800 too?)
    I sure hope Apple is reading this one, because this could be a MAJOR issue that needs to be fixed ASAP.

  • Error while trying to choose query parameter Inconsistent input paramete

    I got error on PRD while trying to choose parameter before executing BEX query:
    101 Inconsistent input parameter (parameter: <unknown>, value <unknown>)
    100 Program error in class SAPMSYY1 method: UNCAUGHT_EXCEPTION
    Notes:
    the same functionality works fine in DEV environment.
    the other parameters on query in PRD work fine
    the parameter  with error based on custom hierarchy
    P.S. I heart BEx :]

    Hello,
    This problem has been solved before with notes 1236774, 1151320 & 1264213.
    Please check.
    Thanks,
    Michael

  • Inconsistency in GL account

    Good day sir/madam,
    I have a problem of GL account inconsistency. After merging company 2 years ago, the company did not use a company code XXX any longer. Along last year (2006), we did not post any amount to GL account 900000 (profit and loss) in any period that caused all the entries in trx FS10N blank. Somehow after closing the year of 2006 and opening the year of 2007, I found the amount of -768.200 IDR from balance carry forward line and all the other period of year 2007. I have no idea where the amount came from. Could you give me some info to investigate this problem so that we can find the activity that caused this problem happened.
    Thank you for your support.
    Regards.

    Hi,
    Try rerunning F.16 in test run/normal run and see if it shows again.
    Rgds.

  • CRM 2013 - Inconsistent javascript issue crash the web client and user needs to reopen

    Hello,
    We are using CRM 2013 on premise version and almost 600 users are using it. We have some inconsistent JavaScript issue (following is the log for same) which happens to users in a day or two. When this issue occurs user can not work in system and they have
    to open new instance of CRM.
    Does anybody knows about this error?
    <CrmScriptErrorReport>
      <ReportVersion>1.0</ReportVersion>
      <ScriptErrorDetails>
       <Message>Unable to get property 'location' of undefined or null reference</Message>
       <Line>1</Line>
       <URL>/_static/_common/scripts/main.js?ver=1676323357</URL>
       <PageURL>/main.aspx#313155368</PageURL>
       <Function>anonymous($p0,$p1,$p2){this.$3_3.get_currentIFrame()&&Mscrm.PerformanceTracing.write("Unload",this.$3_3.get_currentIFrame().src);this.$H_3=$p0.toString();this.$26_3();this.$1A_3();this.$1J_3();if($p0.get_isLocalServer())$p0.get_query()["pagemode"]="iframe</Function>
       <CallStack>
        <Function>anonymous($p0,$p1,$p2){this.$3_3.get_currentIFrame()&&Mscrm.PerformanceTracing.write("Unload",this.$3_3.get_currentIFrame().src);this.$H_3=$p0.toString();this.$26_3();this.$1A_3();this.$1J_3();if($p0.get_isLocalServer())$p0.get_query()["pagemode"]="iframe";addPassiveAuthParameters($p0);var$v_0=$p0.toString();if(IsNull($p2))$p2=false;var$v_1=this.$18_3($p0,$p2);if($v_1){if(this.$2z_3()){window.location.reload();return}this.$2d_3();this.$1s_3();Mscrm.PerformanceTracing.write("Navigate",$v_0);!Mscrm.Utilities.isIE()&&this.raiseEvent(Mscrm.ScriptEvents.UpdateTopLocation,null);this.$3_3.get_currentIFrame().contentWindow.location.replace($v_0)}else{this.$10_3();var$v_2=this.get_contentWindow().Sys.Application.findComponent("crmPageManager");if($v_2){!Mscrm.Utilities.isIE()&&$v_2.raiseEvent(Mscrm.ScriptEvents.UpdateTopLocation,null);var$v_3={};$v_3["sourceUri"]=Mscrm.Utilities.getContentUrl(null);$v_2.raiseEvent(Mscrm.ScriptEvents.IFrameReactivated,$v_3)}}window.self.InnerIFrameSrcChangeTimestamp=(newDate).getTime();this.title=$p1;if(window.LOCID_UI_DIR==="RTL"&&$p0.toString().indexOf("PersonalWall")>=0&&window.UseTabletExperience)this.$3_3.get_currentIFrame().style.position="RELATIVE"}</Function>
       </CallStack>
      </ScriptErrorDetails>
      <ClientInformation>
       <BrowserUserAgent>Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3)</BrowserUserAgent>
       <BrowserLanguage>en-US</BrowserLanguage>
       <SystemLanguage>en-US</SystemLanguage>
       <UserLanguage>en-US</UserLanguage>
       <ScreenResolution>1366x768</ScreenResolution>
       <ClientName>Web</ClientName>
       <ClientTime>2015-04-20T15:41:12</ClientTime>
      </ClientInformation>
      <ServerInformation>
        <OrgLanguage>1033</OrgLanguage>
        <OrgCulture>1033</OrgCulture>
        <UserLanguage>1033</UserLanguage>
        <UserCulture>1033</UserCulture>
        <OrgID>{E8BBA7AE-A552-DE11-B475-001E0B4882E2}</OrgID>
        <UserID>{614837CD-448B-DE11-A5E1-005056970D6C}</UserID>
        <CRMVersion>6.1.2.112</CRMVersion>
      </ServerInformation>
    </CrmScriptErrorReport>

    Are you on-premise, or on-line? : It's on-premise
    Can you reproduce it on-demand, or is it sporadic?: It's sporadic
    There is a mention of loading an iFrame in the error, do you have iFrames on the form that generates this error?
    It's not on specific forms, so can't identify that. Yes we have iframes on some forms.
    Does it happen on any/all entity forms, or specific ones?  Do the entity forms have any custom JavaScript on them?
    It's not on specific forms. And yes we have javascript on almost all forms.
    Do you have any network problems or slowness in your network? Does the problem happen when the network is busy?
    We need to check this on next occurrence.
    Do the users that see this error have any unusual add-ins or toolbars in their browser?  This is not for specific user. Its happening for all randomly.
    Have you tried other browsers like Chrome or FireFox and do users see the problem there as well?
    We need to check only for IE.

  • Open Order Quantity Inconsistent issue

    Hi,
    We are being using Open Order Quantity key figure in our BI model.Not Open Order Quantity key figure is inconsistent in BI system.
    It has been used in several places.Hence i don't want go for redesing it.
    Please some one can help me without creating new Open Order Quantity key figure.
    Answer would be greatly appreciated.

    Hi
    your query is not clear however making few assumption can give below inputs. Assume you are using LIS 11 extractor. Open order quantity varies from business to business , how do they actually define it.
    Get the extact definiton from business how they calculate open order quantity , accoridngly build the keyfigure. for example if open order quantity is orders for which status is not complete then quanity = open order quantity.
    EG: Using 2lis_11_VAITM
    Restrictted key figure = UVALL not equal to 'C' then KBMENG is open order quanity.
    Thanks,
    Monika

  • PL/SQL: ORA-00932: inconsistent datatypes: expected UDT got NUMBER

    Hi all,
    Wondering if you could assist? I'm exploring User Types and having a small problem. I'm getting the above error for a user type I have created which I'm calling in a function. Here's what my code looks like which I'm running the 'scott' schema for testing purposes
    SQL> CREATE OR REPLACE TYPE NBR_COLL AS TABLE OF NUMBER;
    2 /
    Type created.
    SQL> create or replace FUNCTION first_rec_only
    2 (
    3 NUM_ID IN NUMBER
    4 ) RETURN NUMBER IS
    5 v_num NBR_COLL;
    6 BEGIN
    7 select deptno into v_num from dept;
    8 RETURN v_num(v_num.FIRST);
    9 END first_rec_only;
    10 /
    Warning: Function created with compilation errors.
    SQL> show errors
    Errors for FUNCTION FIRST_REC_ONLY:
    LINE/COL ERROR
    7/4 PL/SQL: SQL Statement ignored
    7/11 PL/SQL: ORA-00932: inconsistent datatypes: expected UDT got
    NUMBER
    SQL>
    Any clues to what I'm doing wrong? Cheers.

    The deptno column is a number, you cannot directly select a number into your type, you need to use your type's constructor.
    Something like:
    CREATE OR REPLACE FUNCTION first_rec_only (NUM_ID IN NUMBER) RETURN NUMBER IS
       v_num NBR_COLL;
    BEGIN
       SELECT nbr_coll(deptno) INTO v_num from dept;
       RETURN v_num(v_num.FIRST);
    END first_rec_only;Note that although this will compile, it will throw ORA-01422: exact fetch returns more than requested number of rows when you run it. you need to either use the input parameter as a predicate on your query against dept, use rownum = 1 in the query or use bulk BULK COLLECT INTO, depending on what exactly you want to accomplish.
    John

  • PL/SQL: ORA-00932: inconsistent datatypes: expected REF got CHAR

    SQL> desc o.rel_module;
    Name Null? Type
    ID NOT NULL NUMBER(6)
    TYPE NOT NULL CHAR(7)
    BUILDDATE NOT NULL NUMBER(4)
    DESIGNROOT NOT NULL NUMBER(6)
    SQL> desc rel_module
    Name Null? Type
    ID NOT NULL NUMBER(6)
    DESIGNROOT NOT NULL NUMBER(6)
    REL_COMPOSITEPARTS REL_COMPOSITEPART_TAB
    SQL> desc REL_COMPOSITEPART_TAB
    REL_COMPOSITEPART_TAB TABLE OF REL_COMPOSITEPART
    SQL> desc REL_COMPOSITEPART
    Name Null? Type
    TYPE CHAR(7)
    BUILDDATE NUMBER(4)
    SQL> create or replace procedure rel_module_p
    2 as
    3 cursor c is select ID, TYPE, BUILDDATE, DESIGNROOT from o.rel_module;
    4 begin
    5 FOR i in c
    6 LOOP
    7 INSERT into rel_module(id,REL_CompositeParts,DESIGNROOT)
    Values (i.ID,REL_CompositePart_TAB(i.type,i.builddate), i.designroot);
    8 END LOOP;
    9 END;
    10 /
    Warning: Procedure created with compilation errors.
    SQL> show err
    Errors for PROCEDURE REL_MODULE_P:
    LINE/COL ERROR
    7/1 PL/SQL: SQL Statement ignored
    7/93 PL/SQL: ORA-00932: inconsistent datatypes: expected REF got CHAR
    Can you please tell me where needs correction.

    801556 wrote:
    Can you please tell me where needs correction.Just a fix would be:
    create or replace procedure rel_module_p
    as
    cursor c is select ID, TYPE, BUILDDATE, DESIGNROOT from o.rel_module;
    begin
    FOR i in c
    LOOP
    INSERT into rel_module(id,REL_CompositeParts,DESIGNROOT)
    values (i.ID,REL_CompositePart_TAB(REL_COMPOSITEPART(i.type,i.builddate)), i.designroot);
    END LOOP;
    END;
    /However, I'd assume what you want is:
    create or replace procedure rel_module_p
    as
    cursor c is select ID,CAST(COLLECT(REL_COMPOSITEPART(TYPE,BUILDDATE)) AS REL_CompositePart_TAB) REL_COMPOSITEPARTS, DESIGNROOT
    from rel_module
    group by id,DESIGNROOT;
    begin
    FOR i in c
    LOOP
    INSERT into rel_moduleX(id,REL_CompositeParts,DESIGNROOT)
    values (i.ID,i.REL_COMPOSITEPARTS, i.designroot);
    END LOOP;
    END;
    /SY.

  • Print Layout Designer - inconsistent output

    Hi,
    We have received consistent compaint from our client that the output of Print Layout Designer are inconsistent.
    Eg: The same PLD template is used for An invoice print out from 2 different workstation.  However, workstation A display the format properly, workstation B will have missing lines between boxes or the alignment is not displayed properly.
    We have also recently encountered the problem that our client export the invoice to Acrobat and then print it.  However, it displays properly for workstation with  Acrobat version 8, 9, but missing lines for version 7.
    Another scenario could be the form is displayed properly on the screen, but the physical print out to a printer is not consistent. 
    We really appreciate some share of thoughts here.  Is switching to other report writer, eg: Crystal Report, the only option?
    Edited by: Shwu Hua Gan on Aug 10, 2008 2:57 AM

    Gordon,
    Thanks for replying.
    This is what happen to our client.
    The font size of the customised PLD SAP Invoice is size 5.  In order to preview the layout, they have to preview in PDF, once they are happy with the details and then print.
    In some workstations, there are Adobe Reader version 8 or 9.  In a couple of workstations, there are Adobe Acrobat version 9.
    Let's say, there are 2 fields with the following properties:
    Field A, Left = 0, Width = 10.
    Field B, Left = 10, Width = 10.
    Adobe Acrobat version 9 display the border of the field properly.  However, those with Adobe Reader 8 / 9 will see gaps between fields.
    If we change them as follows the field the gap;
    Field A, Left = 0, Width = 10.
    Field B, Left = 9, Width = 11,
    Then those with Adobe Acrobat version 9 is missing the border for because Field A overlaps with Field B.  But Adobe Reader 8/9 will print fine.  It also works fine if user click 'Print Preview' as normal and then click 'Print'
    Does anyone knows whether this inconsistencies is caused by
    - printer drivers; or
    - Adobe; or
    - SAP Business One.

  • Inconsistency in MB5B Report

    Hi All,
    I am getting an inconsistency in MB5B report when i am running this report from begining it is  displaying as
    (01.01.0000 - Date, 000 - Stock, Unit Value, 9100 INR). I have checked this value 9100 in Line item display of stock account, this entry has been created by an MIRO which was having difference from GRN so the system has uploaded this value to stock. This entry was created in JAN 2011 but i m not been able to find it in MB5B. I want to know why  system has behaved in this manner please provide your valuable inputs.
    Thanks
    Rashid.

    Hi
    MB5B report shows only the stcok movements, i.e material document from receipts or issues or transfer posting, it does not show the documents that are generated suing the MIRO transaction as they are not movement related documents.
    The posting that has occured is only in the accounting documents.
    Thanks &  Regards
    Kishore

Maybe you are looking for

  • Open POs, Sales Order and WIP Jobs

    Hello, Can some one help me with the query to find all open sales order, open purchase orders and open WIP jobs for an organization. Is there any way i can fetch this information from Oracle forms directly without running any backend query ? If yes,

  • EBiz 11i Integration and Printing with TOMCAT/COCOON

    Hi, I have successfully set up a TOMCAT/COCOON printing environment on a Red Hat LINUX server. I am able to produce PDF's from all of my APEX applications with the exception of those defined in our 11i (11.5.0) eBusiness application. I use the exact

  • Error 6 - Production Premium CS6 Mac

    My Mac Configuration I have CS5 Web Premium installed.  Tried to install CS6 Production Premium.  Everything except Premiere Pro and Prelude were installed ok (apparently). Got the following error: Exit Code: 6 Please see specific errors and warnings

  • 5 discs - Photoshop and Premiere Elements 10

    This came with 5 discs.  We've installed the disc for Windows 7 4 bit.  The last two discs say "content" on them.  Do we need to install these too?  Thanks in advance.

  • How to increase the charecteristic description length Copa report

    Hi All I built a copa report with material and customer as characteristics for a drill down report. Unfortunately, the total description of the material is not showing up in the report. Is there any way that we can increase the description field leng