Problem in script format

hi,
i am having problem in script , the problem is
s.no|    descriptio                           |   UOM                      |          Qty                   |             Rate           |          AMT            |
01     aaaaaaaaaaaaaaaaaaaaa       11.01                             17.28                     170000000               2400000
this is fine but when the 1st column is shot other also get affected.
s.no|    descriptio                           |   UOM                      |          Qty                   |             Rate           |          AMT            |
01     aa       11.01                             17.28                     170000000               2400000
and i cannot draw vertical line here .what is the solution for this.
Edited by: jaihind on Mar 6, 2010 12:21 PM
hi,
problem is if the description field is long then other coloum are comming fine but if description caloumn is small then other also get affected and its comes towards left .
Edited by: jaihind on Mar 6, 2010 12:22 PM

Hi
For this u can resolve by using the Formatting characters ......
This is your layout ..
s.no| descriptio | UOM | Qty | Rate | AMT |
01 aaaaaaaaaaaaaaaaaaaaa 11.01 17.28 170000000 2400000
Assume that   your field names like  
s.no      |  description  |    UOM      |    Qty      |      Rate      |         AMT       |
&sno&      &desc&         &UOM&       &Qty&         &rate&         &AMT&
asseme that  length of these fields(in characters) as per your requirement will be ...
s.no      |  description  |    UOM      |    Qty      |      Rate      |         AMT       |
8                  15                  5                8                 10                  15
For these use formatting characters    like   ...
              s.no      |  description      |    UOM      |    Qty      |      Rate      |         AMT       |
1stLine  &sno& ,,  &desc+0(15)&,,  &UOM&       &Qty&        &rate&         &AMT&
2ndline                 &desc+15(15)&     
&desc+0(15)&  -  it will print  first 15 characters from 0th position
&desc+15(15)&- From 15th position it will print 15 characters ..
Hope you resolve your issue
Let me know if Any concerns,.......

Similar Messages

  • Script formatting

    Hi all , i got a problem in script currency format. in my user settings i am getting currency format as 1,000.00.This is what is required by the user. but in the user logon the setting is being displayed as 1.000,00.can anyone give how this is happening.

    Hi ,
    Step 1 : Go to SE11
    Step 2 : Open Table T005X  (Countries - decimal point and date format (SET COUNTRY))
    Step 3 : Go to utilities >>> table content>>>> create entries
    Step 4 : Enter The following and save :
               a) LAND - IN
               b) XDEZP - X
               c) DATFM - 1
    I hope your problem will be solved .
    Regards
    Jamal Ahmad Noorani

  • Problem with background formatting in pivot table

    Hello,
    I have a problem with background formatting in pivot table. I can't change background (light blue rectangular in upper left corner). Do you have any idea how to do it?
    Here is the link to the picture of the pivot table:
    http://img163.imageshack.us/img163/110/unledfyq.png
    I would be grateful for any help.
    Regards,

    Hey,
    Check this link once, you will need java script to acheive this:
    http://everythingoracle.com/obieehdom.htm
    scroll down to this topic: Parsing using HTML DOM
    Please award points if helpful.
    Thanks,
    -Amith.

  • Problem in script printing

    Hi Guru's
    I have a problem in script printing.
    The quantity and netprice are printing incorrectly. i.e., quantity should print as 1.000 where as it is printing as 1,000 and net price is printing as 5,30 instead of 5.30.
    I have checked in the owndata settings it is like 1,234,56.00.
    I would like to know whether any settings will be there or i need to do any modificatione
    Waiting for you reply.

    Hi!
    Here you can find the SAPScript formatting options.
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/803411454211d189710000e8322d00/content.htm
    If it is not good for you, you might code it in your printer program and put it into a character variable.
    Regards
    Tamá

  • Problem with date format when ask prompt web-intelligence

    Bo XIR2 with 5 SP. Instaled on Windows 2003 with support Russian.
    Inside BO every labels, buttons - use russian. But when invoke web-report and Prompt appear there is problem with date format.
    Looks like korean format of date 'jj.nn.aaa H:mm:ss'.  I see system settings of date in Win .. everything right
    What i have to do?
    Where i can change format date for bo?

    GK, try this...
    decode(instr(packagename.functionname(param1 ,param2),'2400'), 0, to_date(to_char(to_date(rtrim(packagename.functionname(param1 ,param2),'(PT)'), 'Month dd, yyyy "at" hh24mi'),'mm/dd/yyyy hh24mi'),'mm/dd/yyyy hh24mi'),
                                                                      to_date(to_char(to_date(rtrim(packagename.functionname(param1 ,param2),'(PT)'), 'Month dd, yyyy "at" "2400"')+1,'mm/dd/yyyy "0000"'),'mm/dd/yyyy "0000"'))-Marilyn

  • Problem with Date format

    Got one more problem Merilyn and Radhakrishnan...
    Regarding the soln y provided me earler with the thread "Problem with date format"...
    What is happening is....I am able to change the 2400 to 0000 but when it is changed from 2400 on jan 1st to 0000 the hour is changing but not the date....the date still remains as jan 1st instead of jan 2nd....
    Eg: Jan 1st 2400 -- changed to -- jan1st 0000
    instead of jan 2nd 0000
    Could you please help me in this issue...
    Thanks,
    GK

    GK, try this...
    decode(instr(packagename.functionname(param1 ,param2),'2400'), 0, to_date(to_char(to_date(rtrim(packagename.functionname(param1 ,param2),'(PT)'), 'Month dd, yyyy "at" hh24mi'),'mm/dd/yyyy hh24mi'),'mm/dd/yyyy hh24mi'),
                                                                      to_date(to_char(to_date(rtrim(packagename.functionname(param1 ,param2),'(PT)'), 'Month dd, yyyy "at" "2400"')+1,'mm/dd/yyyy "0000"'),'mm/dd/yyyy "0000"'))-Marilyn

  • Problem with date format dd/mm/yyyy. But I need to convert yyyy-mm-dd.

    Dear friends,
    I have the problem with date format. I receiving the date with the format dd/mm/yyyy. But I can upload to MySQL only in the format of yyyy-mm-dd.
    how should I handle this situation, for this I've created these code lines.But I have some problem with these line. please help me to solve this problem.
    String pattern = "yyyy-mm-dd";
    SimpleDateFormat format = new SimpleDateFormat(pattern);
    try {
    Date date = format.parse("2006-02-12");
    System.out.println(date);
    } catch (ParseException e) {
    e.printStackTrace();
    System.out.println(format.format(new Date()));
    this out put gives me Tue Apr 03 00:00:00 IST 2007
    But I need the date format in yyyy-mm-dd.
    regards,
    maza
    thanks in advance.

    Thanks Dear BalusC,
    I tried with this,
    rs.getString("DATA_SCAD1")// where the source from .xls files
    String pattern = "yyyy-MM-dd";
    SimpleDateFormat format = new SimpleDateFormat(pattern);
    try {
    Date date = format.parse("DATA_SCAD1");
    System.out.println(date);
    } catch (ParseException e) {
    e.printStackTrace();
    System.out.println(format.format(new Date()));
    this out put gives me Tue Apr 03 00:00:00 IST 2007
    But I want to display the date format in yyyy-mm-dd.
    regards,
    maza

  • Error while opening pdf in reader in windows 8:Can't open this file. There's a problem with file format

    I have a problem with a pdf file which does not open with reader in windows 8 but it opens properly with adobe pdf reader. All other pdf can be opened in reader.But when i open a pdf(see this link for pdf for which i got error http://incometaxsoft.com/temp/Form.pdf)
    it gives error as "Can't open this file. There's a problem with file format".
    The same file opens properly in adobe pdf reader.You can check the pdf file which i have mentioned in the link above.But the reader which comes with windows 8 can open some other pdf in the same PC.What may be the error causing this??

    This has turned out to be an enormous issue for me as I sell PDF files as ebooks. I have done a fair amount of investigating this for my system.
    My files have to be compatible not just across readers but across operating systems.
    To date, I have over 200 PDFs that have functioned flawlessly across Mac, PC (Windows 7 and below), Android, iPhone/iPad, Linux.
    I personally test my PDFs using a variety of readers and PDF editors including
    PDF XChange (my favorite)
    Foxit (runner up for me and I recommend for most people)
    Adobe (the bloated monster)
    Nitro 9 (great for moving graphical elements around)
    ABBYY
    And the Nuance PDF Create toolsets
    Those are off the top of my head. There are a bunch on Android that I test with too.
    I am running the Windows 10 Pro Tech Preview and I have this same problem so I know it isn't fixed yet in any kind of pre-release way (-sigh-)
    Here is what I've learned for my situation
    The PDFs I created using NUANCE'S PDF CREATE PROFESSIONAL VERSION 8
    all fail using the built-in Windows 8/10 PDF reader.
    When I look at the PDF properties for these Nuance created files, the underlying engine used to write them is called "ImageToPDF". Using ABBYY it indicates their own engine as does everyone else that I've tried. It is easy for you to check to see
    what created your PDF by doing a "Control D" (look at the document properties). Perhaps there's a common engine causing issues.
    If I use the exact same source files to create a PDF using any of my other tools I have no issues. I checked the PDF versions made by the tools and they are all set to 1.5.
    A customer mentioned being able to convert them in a way they worked by saving them without having to do any kind of extraction, but I have not been able to duplicate that. Perhaps he did a "print" which seems like it could work.
    In summary, the workaround everyone is talking about, using an alternate reader, of course works. But not everyone wants to change.
     The culprit I have found is my Nuance PDF Creation tools that are using the ImageToPDF engine.
    I hope it gets FIXED as I really don't want to have to regenerate all of my PDF files.

  • A Problem with Region Format Settings

    Hi!
    I have a peculiar problem with Region Format settings on my iPod touch (Settings > General > International > Region Format). It appears that iPod touch can support more region formats than it is stated on that list. Once I registered my iPod, I selected my location, Lithuania, and it automatically set (I think because of this action, and not another, like my PC settings) Region Format to Lithuanian. Although it is nonexistent on the menu list! Good news!
    However, the problem is that while I explored my iPod I accidentally checked another region, and there is no "cancel" option. So my region switched to another. And now I am not able to switch it back to Lithuanian again because there is no such selection (reset or restore didn't help).
    Has anybody any suggestions how could I return to my preferred region format (Lithuanian)? Thanks!

    thats interesting. I think the ipod took those settings from your computer/mac.
    anyway, shouldn't there be something near you that has the same region format settings? maybe you can just use something that's exactly the same.
    and btw: some of the regions have arrows next to them which brings you to subregions of that region. maybe you should check that out?
    otherwise ... well ... I think only a restore would bring back the original settings.

  • Problem About Date Format in Dashboard

    Hi All:
    I still have problem about date format in dashboard and dashboard prompt. When I use cast(dealdate as date) in dashboard prompt(coloumn formula of deal_date) and filter view(In edit view of filter coloumn formula) Then It converts the date format from mm/dd/yyyy to yyyy-mm-dd But I want format in dd-mm-yyyy.
    ANd also one problem more that is when I use cast function in filter coloumn formula then how I give alias to it. Because it shows same like that cast(deal_date as date) on dashboard filter view.
    Pluzz help me to solve this problem
    Haroon

    Changing the ini files should change the date format. Have you amended the correct instances of the date format? In dbFeatures there is one for every ODBC connection.
    For example in my DBFeatures.INI
    [ DATA_SOURCE_FEATURE = ODBC_300 ]
    DATE_FORMAT = 'dd-mm-yyyy' ;
         TIME_FORMAT = 'hh:mi:ss' ;
         DATE_TIME_FORMAT = 'dd-mm-yyyy hh:mi:ss' ;
         IDENTIFIER_QUOTE_CHAR = '"';Also a file on the presentation side in OracleBI \web\Config called localedefinitions.xml.
    Inside that there appears to be defaults for localisations - maybe it is possible to amend your locale in the Administration settings of the dashboard.
    However, I haven't tried this sorry.

  • Script format question: Title over

    Question: In the script format when using a "TITLE OVER" is it a General, Shot or an Action format. Appreciate any input here, thanks.
    Rich

    It a good question, as it is worth thinking how the elements in our screenplays will be used down the line. So for example, although the formatting of making it a Shot certainly would put TITLE OVER in caps, and making it Action would allow the paragraph it is in to be lower and upper case, it better to think how the elements may be used as metadata when you move on from writing, rather than how they look on the page. The tags and elements will be used by others in many different ways as the script moves through the planning and shooting steps.
    Shot elements will be processed by an application like Adobe OnLocation which will create a placeholder shot for it for the shoot. That could be theoretically correct in this case as the title will need to be shot. However to answer your question I think General is the appropriate element, just as the Title and Author are General on the titlle page.
    Are there other elements of the screenplay that will need to be tagged in special ways so they are available as the right kind of metadata later in the production process?

  • Problem in date format in purchase order printout

    Hello Experts,
    We have problem in date format of some Purchase Order  in printout, the format of PO document date and delivery date are customized for example  PO document date Mar 02, 2011 and Delivery date Mar 15, 2011.
    In printout it shows:
    PO doc. date:  20, 3.02
    Delivery date: 20, 3.15
    How come this format? some PO's are ok in their date format.
    hoping your best solution to fixed this issue.
    Thanks

    Hi,
    1st get help from  ABAPer  & check how PO doc. date  & Delivery date of PO set in "PDF/Smart Form" which you used for PO print can be checked in NACE t.code with EF application for you PO output type.
    Also check  in t.code: SU3 , in the default tab how Date Format is selected for user.
    Regards,
    Biju K

  • Problem with email format in SBO Mailer

    Hi all.
    I use the SBO Mailer for send email. I can send and receive the mails but I have a problem in the format that SAP sent the email becuase put on tthe message before the line of signature a tag like " < BR "
    Anyone knows how to eliminate the line of the signature? I think the problem it´s with this line.
    Can you help me? Thanks a lot.

    Hi, I just write a little message and that´s it. In the mail appears my message and then '<BR' then a line and finally the signature. I tried to delete the signature but it´s the same problem
    Thanks

  • Problems reading RAW format after update 6.03

    I have problems reading RAW format images into Iphoto 9.6 after update 6.03 or maybe earlier updates (have not imported for a few months). The images show up like half, black or partly distorted. I use a Canon 5D mk2 camera. The images looks okey when read into a PC so I don´t think it is the camera or cables. It has been working very good before! I use a Powerbook pro 13 late 2011 with Yosemite 10.10.1.

    Try downgrading back to 6.02 by following the directions in this post by léonie:
    Apple image including Apple logo changes for feature 126 Apple image ends here
    Dec 28, 2014 7:36 AM
    Re: Digital Camera Raw Compatibility 6.02 - Nikon D800
    in response to ceylin.e
    [DocumentBodyStart:3bf5afd7-94e9-4fb4-acfa-7aa13198efec]
    Make a backup of your system and try to downgrade the RAW support to version 6.01
    To downgrade the RAW Support to the last version from before the last update try this:
    To reinstall the 'RAW Compatibility Update' it is necessary to uninstall the currently installed raw support. Otherwise the installer will rightfully say, that you already have the latest version installed.
    If your tests are showing that the problem happens also in a different user account, try this:
    The RAW support files are installed in the System Library in the folder "/System/Library/CoreServices" Folder:
    To open this folder, use the Finder's "Go" menu. Click the smiling Finder icon in the Dock to bring the Finder forward.
    Then type the keyboard shortcut ⇧⌘G  (for "Finder > Go > Go to folder")  and copy and paste "/System/Library/CoreServices" into the text field. Click the "Go" button.
    In the Finder window that will open, delete both the files "RawCamera.bundle" and "RawCameraSupport.bundle". You will have to enter your Administrator password. (don't empty the Trash, so you can put the files back, if need be)
    Download the current RAW support update from Apple's Support Site:
    Digital Camera RAW Compatibility 6.01 http://support.apple.com/kb/DL1777?viewlocale=en_US&locale=en_US
    In the Downloads folder you will find the disk image with the installer. Double click it to open and run and the installer.
    Then restart your Mac.

  • We are having some problems viewing wide format drawings in safari on the ipad - The images view fine on the computer... Any ideas?

    We are having some problems viewing wide format drawings in safari on the ipad - The images view fine on the computer... Any ideas?

    No, the site isn't Flash-based; it's a site I've visited on the phone dozens of times. This problem only started occurring a few days ago.
    I'm embarrassed to admit that the site is Popsugar.com, a celeb gossip site that I visit whenever I'm bored.

Maybe you are looking for

  • Performanc​e measuremen​ts

    Hello. I'm trying to verify the CMRR specifications for the NI PXI5922 Digitizer using the two channels in differential mode, but I don't reach the specification. The signal source is a PXI 5441 AVG.  The CMRR is measured by applying the same signals

  • Photoshop CS2 thumbnails not visible in Windows Explorer

    I have Photoshop CS2 running on XP Pro, and all of the thumbnail images for my PSD files show up as black squares in Windows Explorer.  The files I created in PS6 still show their thumbnail images, but once I load them into CS2 and save them, they're

  • Need information related to ETL_PROC_WID Column

    Hi I am New to DAC As well as OBIA i need to know about the ETL_PROC_WID Column and it's imporatance in DAC thank's in Advance ...

  • Is 2030 pixel too with for a browser fill??

    I need a painting as browser fill. I've tried 1400x1738 and hakked for "tile" and "position" to the left and for "scrolling" in the fill optinon in Muse But when I publisher the site, it comes a line about 30 cm on the right side, where the image beg

  • Solaris 10 SMA is dumping core. Have you installed net-snmp?

    It's only happening on afew of the many sparc Solaris 10 servers I support. Oracle no longer supports SMA and has suggested downloading and installing "publicly available 'net-snmp' software". I'm reluctant to download and install open source; the re