Format type Issue

Hi,
Our functional team has generated a customised report but it is getting truncated as when they are executing in background. The spool generated by the report doesn't show all the columns. The defined format type to the printer was X_65_255.
We tried creating new format types of higher colums i.e. Z :X_65_512 and Z :X_65_1024 but still the generated report is getting truncated.
The SAP version on which we are working is BBPCRM4.0.
Please let me know if you need any other information.
Thanks in advance
Sushant Goel
<< Personal information removed >>
Edited by: Rob Burbank on Nov 13, 2009 1:46 PM

Hi All,
The problem is resolved, please refer to the SAP Note 186603 for resolution.
Regards
Sushant

Similar Messages

  • Date Format type issue

    Ok I have a data base that for some reason dates are stored
    in a varchar field. the dates in the field look like this 20060809
    which is supposed to be 09/08/2006. Well I want to display the
    dates like that (mm/dd/yyy). But when I jus the date format of
    mm/dd/yyy I get something like 08/16/56824. So How can I display
    20060809 to read 09/08/2006?
    I appreciate any help! Thanks!

    20060609 is not a standard date style that CF date functions
    can
    understand. You will need to parse this into it's components
    and either
    use them directly or create a date object with them for
    future use. Our
    dates are often in this format so we have to do this all the
    time.
    <cfscript>
    DateVal = 20060809;
    yearVal = left(dateVal,4);
    monthVal = mid(dateVal,5,2);
    dayVal = right(dateVal,2);
    writeOutput(dayVal & "/" & monthVal & "/" &
    yearVal);
    dateObj = createDateTime(yearVal, monthVal, dayVal);
    writeOutput(dateFormat(dateObj, "dd/mm/yyyy");
    <cfscript>

  • Format type error

    I'm trying to use Dreamweaver CS3 to change the date format
    on a date but nothing changes when I click a format. Also I tried
    the Edit Format List and when I click the + to add a new format I
    get an error "Cannot find format type Date/Time".
    Any clues as to how to fix the problem
    Thanks
    Dave

    dmschenk wrote:
    > I went back into Dreamweaver 8 to try it and it actually
    did work, so I was
    > able to work around the problem but something really
    should be done to get
    > Adobe to look at the issue a little closer because the
    format function for date
    > does absolutely nothing in Dreamwever CS3
    You don't say which format function you're referring to, but
    if you have
    found a bug in CS3, report it:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Give reproducible steps in the bug report. It's only by
    reporting bugs
    that they will get fixed. CS3 went through very lengthy beta
    testing,
    but if no one actually used that feature, it will have been
    presumed to
    be OK.
    Often what happens is that something else is added or fixed,
    which has
    an unexpected knock-on effect. It's only when someone
    stumbles on it
    that the new problem comes to light.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • HD and EXT HD formatting types?

    Hi,
    I was hoping to get some answers on this. What is the difference between all of the HD format types you can do via the Disk Utility?
    HFS
    HFS Journaled
    HFS case sensitive, journaled
    Etc Etc...
    Thanks

    The non-descriptive answer is that Mac OS Extended (Journaled) is the one you'll want to use, unless you have a very specific reason to do otherwise.
    About journaling: http://support.apple.com/kb/HT2355
    Case-sensitive means you can have a volume called 'My Disk' and one called 'my disk' on the same drive. Can't be done on a boot drive. It's generally not a good idea and is primarily needed when you are running legacy Unix apps.
    A related issue (one you didn't raise) is partition scheme (in the Options section of the Partition tab). There, you will want GUID. If you need to boot an older system (PPC-based Macs) you can use the Apple Partition Map. There's also a Windows option (FAT32 format).

  • How to Change default format type in output device

    Hi all,
    I want to change the default format type from X_65_80 to another for all users.
    Can anyone tell me the process.
    Platform: SAP ECC 5.0 + Oracle 9.2.0.7 + HP UX
    Thanks in advance
    Regards
    Eshwar

    Hi Sam,
    Thanks for the reply.
    Where can I select the required format type as default for all reports.
    I have checked in SPAD -> Extended Admin -> Device Types -> Format Types. But I did not find any option to set the format type as default for all reports for all users.
    Regards
    Eshwar

  • Problem with new format type in spool

    Hi All,
    I have created new format type with 65 pages & 140 columns size. I have assigned it to corresponding device type which is copied from standard device type. Then i have assigned to output device type.
    But when i print using this new format type its printing in half of the page width. What should be dont if i want print in whole paper width.
    When i use standard format type x_65_132 , its printing in whole page width of 132 columns. But with my new format type its printing all line content , but its printing in very small font within half of the page width. It should print in whole page. Please help me to print in whole page width with bigger font as in 132 column options.
    Thanks in adavance.
    Vishal

    Norman,
    Thanks for ur reply.
    I have gone through all the stpes for creating new format.
    I don't know what is printer initialization string and the other escape sequences, how to get modified these please let me know.
    new format is working, but problem is its printing in half of the page width, i need to print in whole page width. Thanks.

  • MIME type issue in version 4.1/4.2 Compatibility Mode

    Problem: when displaying a PDF file, it displays OK as PDF if APEX 'Compatability Mode' = 'Pre 4.1', but displays as HTML when in either '4.1' or '4.2' mode.
    Apex: 4.2.2.00.11
    DB: 11gr2
    Web server: Apache on Linux
    More detailed description... this seems to be a MIME type issue related to APEX (or maybe DB) versioning.  The following code works as expected when run in 'Pre 4.1' mode - ie. it displays an appropriate PDF document in the appropriate Acrobat/other plugin in several browsers (Firefox/Opera/Chrome/IE).  But just by changing 'Compatability Mode' to '4.2' (or even '4.1'), it then downloads the file but displays it as a bunch of random characters, and the web page header MIME type is 'text/HTML'.
    Note: this also happens with other file types such as xls/doc/etc, but I expect fixing PDF should also fix these.
    I'm at a bit of a loss as to where this is happening, it seems there is a difference in the 'Compatibility Modes' between either the creating of the HTML header using 'OWA_UTIL.mime_header' or the component path it traverses before reaching apache.
    The only other thing I could think of is that we do a bit of redirection to display the PDF, though this seems like it might be a red herring.  Basically we use page 560 as a container, and then display the PDF with page 561 within a frame embeded within page 560.  So, on the page 560, which is the one we reference throughout the application, we have  a region with a source of '&lt;iframe src=?p=&APP_ID.:561:&SESSION.height="500" width="700"&gt&lt;/iframe&gt</pre>'.  Then on page 561, in a 'On Load - Before Header' process, we make the call to the code 'DOWNLOAD_APPLICANT_PDF' (below).
    Note: I did try calling 'apex_application.stop_apex_engine' after 'DOWNLOAD_APPLICANT_PDF', as suggested in a couple threads, but it didn't fix the problem, and caused a couple low-level system errors.
    Code:
    <pre>
      CREATE OR REPLACE PROCEDURE DOWNLOAD_APPLICANT_PDF ( p_doc_id IN   NUMBER
       AS
          v_length      NUMBER;
          lob_loc       BLOB;
          l_display_inline   CHAR := '1';
       BEGIN
          SELECT pdf_data, DBMS_LOB.getlength (pdf_data)
            INTO lob_loc, v_length
            FROM pdf_dest
           WHERE pdf_dest_id = p_doc_id;
          OWA_UTIL.mime_header ('application/pdf', FALSE);
          HTP.p ('Content-length: ' || v_length);
          HTP.p ('Content-Disposition:inline;filename="mydoc.pdf"');
          OWA_UTIL.http_header_close;
          WPG_DOCLOAD.download_file (lob_loc);
    END;
    </pre>

    Hi,
    for some background information about the above changed behavior, have a look at 4.2 Before Header Processes and Browser Security HTTP Headers of the APEX 4.1. release notes.
    Regards
    Patrick
    Member of the APEX development team
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • PO Condition Type Issue

    Hi All,
    I have encounter a PO condition type issue, hope to get someone to enlighten me.
    I have create both cuztomize condition type ZOT2 AND ZOT3. 
    With config in Control data 1
    Cond. Class - A Discount or Surcharge
    Calculat. type - B Fixed Amount
    Cond. category - B Delivery cost
    Group Condition
    Select for Group cond. & RoundDiffComp
    GrpCond.routine - 1 Overall Document
    ZOT2 in header condition should be divided into item via value.
    ZOT3 in header condition should be divided into item via quantity.
    Both condition type havemanually enter with value 300
    In the test PO I have created 3 materials:-
    Material     Quantity     Net Price     Item Net
    A     100     1,615.00     161,500.00
    B     100          16.15         1,615.00
    C     1000          16.15       16,150.00
    In the Item view calculation for both condition type as stated below:-
    ZOT2 - 270.27 : 2.70 : 27.03 (Ratios base on Value 100:1:10)
    ZOT3 - 270.27 : 2.70 : 27.03 (Rations base on Quantity 1:1:10) the amount result should be 25: 25: 250 but the result I get from the system for condition type ZOT3 is the same as ZOT2.
    Please advise how to reticfy the configuration. Thank you.

    Eugenia Foong Pui Mun wrote:
    Hi Shiva,
    >
    > I have try to config with the info you have suggested, but it does not seem to get the expected result.
    Hi Eugenia...
    I tested  scenario with values you have mentioned. It works perfect both ways. Pls follow this....
    1. Pls avert the changes I had suggested in my prev reply for changing the condition types. (group condition active, round diff condition & group cond routine, keep them as they are)
    2. While you enter value in header with condition type ZOT2. the value gets properly distribute by the ratio 100:1:10 and thats perfect......Now
    3. While you enter the values for condition type ZOT3 in the header...Pls note that your Total Qty is 1200 and the total condition value is 300 this means per unit qty the value is 300/1200 =0.25...
    Now while you enter the values for ZOT3 in the header, enter 300 in the Amount column and 1200 in the Per column, meaning that the total of 300 shoud be divided into 1200 units irrespective of quantities per Line Item
    Now check the results and you will have the distribution ratio 1:1:100
    NB:For ZOT3 (Qty base) to work the UoM for all the line items must be similar
    Pls check and revert
    Regards
    Shiva
    Edited by: Shivaspatil on Nov 24, 2011 12:42 PM

  • PS4 Party Chat NAT Type Issues

    Anyone else completely irritated and annoyed by the inability to party chat because of NAT Type? This is a ridiculous error I thought they'd fix in the next patch, turns out not. I have been unable to chat with anyone because of my NAT Type. I can play online and chat online just fine but party chat doesn't work. My NAT is Type 2. I don't want to hear I need to set up a static IP and DMZ blah blah blah. That stuff is way to complicated and shouldn't be necessary if I or any PS user should want to chat in a party. I had absolutely no issues on my xbox 360 chatting in a party and I'm on the same modem and internet router as it was.  I bought a PS4 to play and chat with friends and so far I haven't been able to chat with my friends at all. It's very irritating and annoying and I would like PSN to do something about it. A simple patch or anything to fix it, instead of being lazy and telling their 13 year old customers they have to set up static IP's and other ridiculous stuff. Please comment if you are having the same issues and hopefully Sony or PSN will see this and do something about it. I paid 400$ for a machine that requires me to hack into my own router in order to chat... Ridiculous. 
    Party Chat NAT Type Issues on PS4
    This issue has been reported to the network team who are investigating the cause of the problem. As a temporary fix you can normally fix the NAT type error by on or more users leaving and re-joining the party. 
     

    I draw your attention to the last paragraph where it states a NAT Type 2 connection means its connected correctly & optimal for gaming
    PS4 NAT Types:
    In the network settings of the PS4, it uses 3 different NAT types to classify how the PS4 is connected to the Internet:
    Type 1: The PS4 is sitting directly on the Internet with a public IP address. This setup doesn’t require NAT or inbound port forwarding and is used in scenarios where the PS4 is the only device wanting to use the Internet connection. This isn’t that common as most users share their Internet connection with other devices in their home.
    Type 2: This is the most common and ideal type where the PS4 is sitting behind a RG that is performing NAT. The PS4 will have a private IP address which is translated to a private or public IP address by the RG.
    Type 3: This usually implies you have a problem in the way the PS4 is accessing the Internet. This may be caused by a firewall or port restrictions. This isn’t ideal and will result in a sub-optimal gaming experience.
    The difference between a Type 2 and Type 1 NAT is usually physical and can’t be changed by settings alone. If you have a Type 2 or higher NAT type then you are connected correctly and can have an optimal gaming experience.

  • Oracle Number and Java Format Mask Issue

    I have a oracle number column, in my view object it is of type BigDecimal and the query column type is NUMBER
    I put the following format mask in the hints section
    #####.00
    with a format type of Number,
    Yet when I run the application, I always get the following error
    java.lang.NumberFormatException: For input string: "-3750.00"
    Anyone any ideas why this does not work?
    Regards
    Orlando

    Hi,
    try with <af:convertNumber>
    See:
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_convertNumber.html
    ADF 11.1.1.4.0 af:convertNumber not working with #,##,##,##,##,##,##0.00

  • [SOLVED] "No codec present that can handle the stream's type" issue

    Hello. I got a python program that would play musics on a website, which doesn't work for a "no codec present that can handle the stream's type" issue. I have installed things like gstreamer, gstreamer-plugins, gstreamer-python, gstreamer-ffmpeg, and libmpeg2, etc. However, this issue still remains. Would someone here be able to help?
    Here's the error message:
    ** Message: don't know how to handle audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)2, layer=(int)3, rate=(int)24000, channels=(int)2, parsed=(boolean)true
    Error: There is no codec present that can handle the stream's type. gstplaybasebin.c(2322): prepare_output (): /GstPlayBin:player
    Here's the program, written by a Chinese: https://github.com/zhendi/DoubanFM-CLI
    Edit:
    I'm able to play the musics on the websites via chromium.
    Edit:
    I tried to download the music, and use gst-launch-0.10 filesrc location=~/p535960.mp3 ! decodebin ! autovideosink, but only find these messages:
    Setting pipeline to PAUSED ...
    Pipeline is PREROLLING ...
    ERROR: from element /GstPipeline:pipeline0/GstDecodeBin:decodebin0/GstMpegAudioParse:mpegaudioparse0: GStreamer encountered a general stream error.
    Additional debug info:
    gstbaseparse.c(2695): gst_base_parse_loop (): /GstPipeline:pipeline0/GstDecodeBin:decodebin0/GstMpegAudioParse:mpegaudioparse0:
    streaming stopped, reason not-linked
    ERROR: pipeline doesn't want to preroll.
    Setting pipeline to NULL ...
    Freeing pipeline ...
    Last edited by lastland (2012-02-18 07:47:47)

    Sorry. I just found the reason. I missed gstreamer-ugly in this case.

  • Creating Format type for printing ALV output.

    Dear Friends,
        I am using a format type for printing ALV output print which displays 65 rows and 255 columns on DINA4 page. I want to create a format type which will print 65 rows and 310 columns on 'LEGAL' page format .
    So plz suggest the ways along with help links if any.
    Regards,
    Madan.

    Hi Mandan,
    As long as I know the maximum column for printing is 255.
    Might be you can split your output into 2 rows...
    Regards,

  • No message for validation error "format", type "date", field "date-expired"

    Dear
    Guys,
    i am getting the following error : ((No message for validation error "format", type "date", field "date-expired"))
    When trying to upload adobe connect 7 license to the adobe connect 7 configuration wizard. the problem occurs because my server was install on Arabic Saudi Arabia date format while installation, but if i change the windows date format to US then the problem still occurs, and formatting windows is not possible, could anybody help??
    Regards

    Thank you for replying,
    No i am not on host mode, a have installed it deferent times ago successfully, but the only problem now is that during the installation windows server 2008 the default language, time and date. Was set Arabic Saudi Arabia. And even changing it does not solve the problem, as i mentioned above.

  • Format Type Does Not Appear.  Can Only Export to PDF from InDesign.

    When I export a document from InDesign, I am unable to choose any other format besides PDF.  It does not give me the option to select a format type.

    I don't think that's what he means. Think IDML or Jpeg...
    See Replace Your Preferences

  • Cannot find format type named Date/Time

    Running latest Dreamweaver on Vista - I get a nasty pop-up
    window if I try to edit one of the predefined date formats -
    "Cannot find format type named Date/Time."
    I've tried deleting configuration setting to no avail. Anyone
    else experienced this problem or have any suggestions ?

    Hello
    It looks like that you had not installed the ADS(Adobe Document server) for the PDF type reports. Please check with your basis team if you want to configure ADS.
    If you need the output as a sapscript then please do the sollowing steps:
    (1) Execute transaction SM30
    (2) Enter 'Table/View' as V_T5F99OCFT
    (3) Select 'Maintain' option.
    (4) Select 'New Entries' option from the Application Too
    (5) Enter following entries:
         Logical Form Name    = HR_IN_EPF12A_99M
         Form Variant         = (Leave this field blank)
         End Date             = 31.12.9999
         Start Date           = 01.01.1990
         Form Type            = SAP Script (SSC)
         Def. Type            = (This field should be checke
         PDF Form Name        = HR_IN_EPF12A_99M
         SAP Script Form Name = HR_IN_EPF12A_99M
         Smart Form Name      = (Leave this field blank)
    (6) Save the entries
    The above example I have given you is only for the form 12A.
    You have to make entries for all the reports sapscript in this table.
    Please goto SE71 -> F4 -> Payroll -> Payroll India here you will find
    all the sapscripts you require.
    Regards
    Ramana

Maybe you are looking for

  • Creation of Purchase Order Instead of Purchase Requisition

    Dear Gurus,                     In Extended Classic Scenario we are using SRM 5.0 and ECC 6.0. we need to create only Purchase Order rather then Purchase Requisition. this is given as the development enhancement. can anyone of you tell me the procedu

  • Getting unexpected error message with exportpdf

    Export PDF is not working for me. says failed to export, unexpected error. tried several different pdf documents. not one would upload. Does this service actually work? and if so, how do I get it to work?

  • E-mail signup web form - Error message

    My index page has a newsletter signup web form. The workflow attached works, but when a user enters their e-mail and clicks "submit" they get an error message. I used a bc gurus template and this is the one thing I cannot find, how to change the link

  • Code to see the total of sales

    hi expert.. could anyone tell me what is the code to see the total of sales on this month ..? thank you very much..

  • Loving the Apple ios 7

    Before the forum posts start lets get a little information out.  I recommend you have your device plugged into the power outlet and this way your battery won't die while you are updating. The update takes roughly 1.5 hours to totally update to the ne