Code formation

Hi Eswar,
could anyone check my code below and suggest the changes for it interms of performance wise and also the pattern of writting the code. i want to cross check my code before i go for testing
thanks in adance.
form checkdata.
data: wrecord type i.
data:
begin of tmpkey,
mandt like sy-mandt,
wmblnr like mseg-mblnr, "Material Document Number
wmjahr like mseg-mjahr, "Material Document Year
wzeile like mseg-zeile, "Item in Material Document
end of tmpkey.
select * from z4b2 into table t_z4b2.
describe table msegtbl lines wrecord.
if wrecord > 0.
loop at msegtbl.
clear tmpkey.
move sy-mandt to tmpkey-mandt.
move msegtbl-wmblnr to tmpkey-wmblnr.
move msegtbl-wmjahr to tmpkey-wmjahr.
move msegtbl-wzeile to tmpkey-wzeile.
read table t_z4b2 with key tmpkey.
if sy-subrc = 0.
delete msegtbl.
endif.
endloop.
endif.
endform. "CheckDat
form getibminfo.
data: wrecord type i.
describe table msegtbl lines wrecord.
if wrecord > 0.
loop at msegtbl.
refresh: t_val_tab.
call function 'QC01_BATCH_VALUES_READ'
EXPORTING
i_val_matnr = msegtbl-wmatnr
i_val_werks = msegtbl-wwerks
i_val_charge = msegtbl-wcharg
TABLES
t_val_tab = t_val_tab
EXCEPTIONS
no_class
internal_error
no_values
no_chars.
if sy-subrc = 0.
read table t_val_tab with key atnam = 'SUBLOTTYPE'.
if sy-subrc = 0.
if t_val_tab-atwrt eq sublottype.
move msegtbl to 4b2tbl.
append 4b2tbl.
clear 4b2tbl.
endif.
endif.
endif.
endloop.
endif.
refresh mkpftbl.
refresh msegtbl.
endform. "GetIBMInfo
*& Form GetSeqNo
form getseqno.
data: wcount(6) type n.
data: wrecord(6) type n.
describe table t_z4b2 lines wrecord.
read table t_z4b2 index wrecord.
write t_z4b2-wseqno+5(6) to wrecord.
wrecord = wrecord + 1.
describe table 4b2tbl lines wcount.
if wcount > 0.
loop at 4b2tbl.
at new wmblnr. wrecord = wrecord + 1. endat.
concatenate preatsg wrecord into 4b2tbl-wseqno.
modify 4b2tbl.
move 4b2tbl to z4b2.
insert z4b2.
clear 4b2tbl.
clear z4b2.
endloop.
endif.
endform. "GetSeqNo
*& Form PutInfo
form putinfo.
data: wrecord type i.
data: dtmp1(10) type c.
data: dtmp2(8) type c.
data: ttmp1(8) type c.
data: ttmp2(6) type c.
describe table 4b2tbl lines wrecord.
if wrecord > 0.
loop at 4b2tbl.
write 4b2tbl-wbldat to dtmp1.
concatenate dtmp16(4) dtmp1(2) dtmp13(2) into dtmp2.
write 4b2tbl-wbldat to ttmp1.
concatenate ttmp10(2) ttmp13(2) ttmp1+6(2) into ttmp2.
concatenate dtmp2 'T' ttmp2 '.000Z' into datetime.
at new wmblnr.
refresh wlines.
perform writeline1.
perform writeline2_1.
endat.
perform writeline2_2.
w_seqno = 4b2tbl-wseqno.
at end of wmblnr.
perform writeline2_3.
perform writeline3.
perform writefile.
endat.
endloop.
endif.
endform. "PutInfo

data : t_z4b2 type sorted table z4b2 with non-unique key wmblnr wmjahr wzeile.
select wmblnr wmjahr wzeile into corresponding fields of table t_z4b2.
if not msegtbl is initial.
loop at msegtbl assigning <l_msegtbl>.
read table t_z4b2 assigning <l_z4b2>
             with table key wmblnr = <l_z4b2>-wmblnr
                            wmjahr =  <l_z4b2>-wmjahr
                            wzeile = <l_z4b2>-wzeile.
if sy-subrc = 0.
delete msegtbl.
endif.
endloop.
endif.
endform. "CheckDat
form getibminfo.
data: wrecord type i.
dat : tl_val_tab_temp sort by wmatnr wwerks wcharg.
      tl_val_tab  sort by atnam.
if not msegtbl is initial.
loop at msegtbl assigning <l_msegtbl>.
read table tl_val_tab_temp assigning <l_val_tab> with table key
wmatnr = <l_msegtbl>-wmatnr
wwerks = <l_msegtbl>-wwerks
wcharg = <l_msegtbl>-wcharg.
if sy-subrc <> 0.
refresh: t_val_tab.
call function 'QC01_BATCH_VALUES_READ'
EXPORTING
i_val_matnr = <l_msegtbl>-wmatnr
i_val_werks = <l_msegtbl>-wwerks
i_val_charge = <l_msegtbl>-wcharg
TABLES
t_val_tab = t_val_tab
EXCEPTIONS
no_class
internal_error
no_values
no_chars.
endif.
if sy-subrc = 0.
insert lines of t_val_tab into table tl_val_tab.
insert lines of t_val_tab into table tl_val_tab_temp.
read table tl_val_tab assigning <l_val_tab> with table key atnam = 'SUBLOTTYPE'.
if sy-subrc = 0.
if <l_val_tab>-atwrt eq sublottype.
move msegtbl to wa_4b2tbl.
append wa_4b2tbl to 4b2tbl.
clear wa_4b2tbl.
endif.
endif.
endif.
endloop.
endif.
refresh mkpftbl.
refresh msegtbl.
free : tl_val_tab,tl_val_tab_temp.
endform. "GetIBMInfo
*& Form GetSeqNo
form getseqno.
data: wcount(6) type n.
data: wrecord(6) type n.
describe table t_z4b2 lines wrecord.
read table t_z4b2 index wrecord.
write t_z4b2-wseqno+5(6) to wrecord.
wrecord = wrecord + 1.
if not 4b2tbl is initial.
loop at 4b2tbl assigning <l_4b2tbl>.
at new wmblnr. wrecord = wrecord + 1. endat.
concatenate preatsg wrecord into <l_4b2tbl>-wseqno.
move 4b2tbl to z4b2.
insert z4b2.
clear 4b2tbl.
clear z4b2.
endloop.
endif.
endform. "GetSeqNo
*& Form PutInfo
form putinfo.
data: wrecord type i.
data: dtmp1(10) type c.
data: dtmp2(8) type c.
data: ttmp1(8) type c.
data: ttmp2(6) type c.
if not 4b2tbl is initial.
loop at 4b2tbl.
write 4b2tbl-wbldat to dtmp1.
concatenate dtmp16(4) dtmp1(2) dtmp13(2) into dtmp2.
write 4b2tbl-wbldat to ttmp1.
concatenate ttmp10(2) ttmp13(2) ttmp1+6(2) into ttmp2.
concatenate dtmp2 'T' ttmp2 '.000Z' into datetime.
at new wmblnr.
refresh wlines.
perform writeline1.
perform writeline2_1.
endat.
perform writeline2_2.
w_seqno = 4b2tbl-wseqno.
at end of wmblnr.
perform writeline2_3.
perform writeline3.
perform writefile.
endat.
endloop.
endif.
endform. "PutInfo

Similar Messages

  • My auto-indent and code formatting is not working.

    Usually on dreamweaver CS5.5 my code (html) would indent my <div> tags and align them up with the end div </div>. Not only were the <siv> tags formateed but various of others tags were as well.
    How Dreamweaver used to format my code:
    <head>
              <title>Example</title>
              <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
    </head>
    <body>
    <div id="outside_container">
              <div id="container">
                        <a href="#"><img src="images/logo.jpg" id="logo" /></a>
            <ul id="menu">
                      <li><a href="#"></a></li>
                      <li><a href="#"></a></li>
                      <li><a href="#"></a></li>                   
                        </ul>
            <ul id="right_menu">
                      <li><a href="#">t</a></li>
                      <li><a href="#">t</a></li>
            </ul>
            <img src="images/panel_home.jpg" id="panel" />
                        <div id="content">
                      <div class="column1">
                          <h2>Text</h2>
                    <p>Text Here</p>
                </div>
    Now it does not even format it so all of my code aligns on the left like so:
    <head>
    <title>Example</title>
    <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
    </head>
    <body>
    <div id="outside_container">
    <div id="container">
    <a href="#"><img src="images/logo.jpg" id="logo" /></a>
    <ul id="menu">
    <li><a href="#"></a></li>
    <li><a href="#"></a></li>
    <li><a href="#"></a></li>                   
    </ul>
    <ul id="right_menu">
    <li><a href="#">t</a></li>
    <li><a href="#">t</a></li>
    </ul>
    <img src="images/panel_home.jpg" id="panel" />
    Can anybody please help me?

    Did you try Edit > Preferences > Code Format > Indent?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Code Formating after Forum Software Upgrade

    Hello SCN Forum Administrators,
    it seems that all code formating which was done with the
    [code]
    Tags was not automatically converted during the Forum Software Upgrade. What can I do to correct my code in the Forum Topic Re: Display ALV GRID with PHP? The message was posted by myself but I can't edit it.
    Best regards
    Gregor

    Hi all,
    the new forum version does contain a filter that can handle the old &#91;code&#93; tags. The problem was that we had to turn it off because it permanently ran into Stackoverflow errors and thus bringing the whole landscape into trouble.
    Now we have to convert all the old &#91;code&#93; markup in all messages with the new &#123;code&#125; markup. We are currently testing this.
    In other words: &#91;code&#93; is no longer supported, the usage of &#123;code&#125; is recommended.
    Regards,
    Michael

  • Code formatting, indenting, and commenting

    This question was posted in response to the following article: http://help.adobe.com/en_US/flashbuilder/using/WSe4e4b720da9dedb5-25a895a612e8e9b8c8e-7fff .html

    MXML code formatting options are very limited in Flash Builder 4.5. Compare that to the vast amount of options you have to format Java code in Eclipse. I would expect more from a proprietary software.

  • Code formatting made thing worse

    After CTRL+ALT+L (Code Reformat) in JDeveloper 11g, things got worse:
    Eg.:
    http://i.imgur.com/pEKtS.png
    Normally it should like this (at least this is how other IDEs are reformatting code):
    http://imgur.com/MRSW0
    or this:
    http://i.imgur.com/Dkyry.png
    I've tried to fine-grain code formatting from: Tools -> Preferences -> Code Style but the results weren't satisfactory .
    Does anyone know where i can find a Code Style profile .xml file that won't mess the looks of my code, just like the default one did ?

    Hi,
    in 11.1.1.5, I quickly created
        public void mytest() throws FileNotFoundException {
            List credentialFiles = null;
            for (File f: credentialFiles){
               fis = new FileInputStream(f);
               String name = f.getName();
    new Departments(new Long(2236),
                    "Sales 33",
                    new Long(100),
                    new Long(200),
                    new EmployeesList());
    }Then I hit ctrl-alt-l and the outcome s
        public void mytest() throws FileNotFoundException {
            List credentialFiles = null;
            for (File f : credentialFiles) {
                fis = new FileInputStream(f);
                String name = f.getName();
                new Departments(new Long(2236), "Sales 33", new Long(100),
                                new Long(200), new EmployeesList());
        }Its not really what I would call worse
    Frank

  • Code Formatting Instructions for Developer Forums

    Although this topic only applies to the two Developer forums, the need for some upfront code formatting instructions in those forums is desperate. There may be hundreds of threads which include one or more messages on this subject. In my case alone, I've posted at least a dozen messages each containing these three lines:
    Paste your code here.
    Of course a quick search of either Dev forum on the keys +code formatting+ will find the above right away, but those who need help the most don't know code requires special formatting so won't be making that search. For the same reason, neither the excellent instructions in the User Tips Library nor the pertinent threads in this forum are likely to be discovered before they're needed. The +Help & Terms of Use+ FAQ might seem to be a good place for the instructions, but this has been proposed so many times before I'm sure it will never happen. The need is confined to the Dev forums afterall.
    I think the solution would be a permanent post (similar to +How to Post a new Topic+ in this forum) at the top of both Dev forums. I don't think most developers want to see instructions on any other topic at the top of the forums, but a brief note titled +How to Post Code+ might make everyone's life easier.
    Assuming most of the other developers agree, how could we make this happen?

    Thanks so much for helping with this, Nubz!
    Joerg's instructions are excellent. I refer to them often and I've had them bookmarked since I found Apple Discussions last year. The new Code section is great!! Very clear!
    Now we just need to find a way to get users to that page. Our problem has never been with users who are interested enough in Apple Discussions to visit the Tips Library. The unformatted code is coming from first-time users--not necessarily novice coders, but programmers of all skill levels who aren't coming here to learn about the forums or relate to the community. These folks are focused on their current project, may have found no answers anywhere else, and arrive here with tunnel vision. Often there's a language problem as well.
    The newly arrived OP will often start the thread with a page of unformatted code. Those of us with eyes used to filling in the missing brackets, indentation etc. can sometimes decypher the mess, but usually we need to give formatting instructions and ask the OP to repost. The frequency of this scenario has been increasing. Lately I've been posting those instructions almost once every day.
    Of course that's a good sign! We've been giving good service down there and the number of newcomers seems to be reflecting that. A big percentage have turned into regulars, so I think we have a very healthy forum. It's just the formatting cycle gets old, and the time and bytes add up too.
    My suggestion is this:
    One yellow moderator announcement that stays in the first position on the topic page for both dev forums. The subject line is:
    To format code: Paste your code here
    The user doesn't even need to open the message. Only developers will see this. No change to the page header is needed. If the user does open the message, a link will be provided to Joerg's tips.
    - Ray

  • Code formatting problem

    Is the code formatting buggy or is it just that I cannot seem to find the correct mix of settings? I hope it is the latter and that someone here may know how to get it
    After setting the settings I think I want I get a simple SQL formatted like this.
    {noformat}
    select username
    ,sid
    ,serial#
       from v$session
      where sid  = 11
      and(status = 'ACTIVE'
      or status  = 'INACTIVE')
    {noformat}Ignore the fact that the actual query may not be logical...
    The first problem is that the different columns are lined up to the left and not indented lika I would like them to be.
    The second (and much less important) is that the and/or are not indented like the keywords. I'd like to get the SQL to be formatted like this.
    {noformat}
    select username
           ,sid
           ,serial#
       from v$session
      where sid    = 11
        and(status = 'ACTIVE'
         or status = 'INACTIVE')
    {noformat}How can I make the code formatting result in the above SQL (especially the aligning of the columns)?

    Turloch,
    Thank you for the reply. I figured this may be a bug, so it is nice to have it confirmed. I can live with it not being correct as long as a fix will show up eventually.
    The problem with using tabs or large settings for space is that it causes other parts of PLSQL to look to spread out. One thing that happens is that the right justification of the keywords gets messed up. But I can make soem SQL look OK with it, but that is at the expense of getting other ones to not look good. For example if I get the columns to line up with a leading comma, the concatenation is not correct and vice versa. I also get SQL to look better, but then indentation in PLSQL is too agressive and looks very bad.
    I would like to be able to set and/or to be set to be handled as keywords so they too can be right justified. Columns (whether or not concatenated or separated with a comma) should be possible to align with the column in which the first column starts.
    While I'm at it, there seems to be an issue with the formatting of keywords such as inner join. I think inner too should be considered keywords so it can be right justified with other keywords. Same thing with subselects, they end up the the left of the right column of the keywords.
    I think the formatting features are really good now. There is still room for improvement to be able to control it enough to make it look exactly like I want, but it is getting close and flexible enough to allow many different ideas of how the template should be to be configured.
    Thanks,
    Mathias

  • Dreamweaver CS3 Code Formatting broken

    Hello, I am experiencing a huge deal of frustration with the
    way Dreamweaver improperly formats code. In particular, the UL / LI
    tags do not format correctly. Here is what I am trying to achieve:
    <ul>
    <li>
    TEXT
    </li>
    </ul>
    Now this pattern seems to correspond exactly to the preview
    that you see when you go to Preferences > Code Format > Tag
    Libraries, select the LI tag and choose Line Breaks: Before,
    Inside, After and Contents: Formatted and Indented.
    I have done this. I have also manually checked the .vtm file
    in username > Application Data > Adobe > Dreamweaver >
    Configuration etc.... and it corresponds to what I have set in the
    Prefs.
    However, when I use Design View to create the unordered list,
    OR even if I just TOUCH a properly formatted list in Design View,
    everything gets squeezed onto one line. I get this sort of thing:
    <ul> <li>TEST</li> <li>MORE
    TEST</li> </ul>
    Here is what I have tried unsuccessfully to date:
    1. Prefs > Code Formatting > Edit Tag Libraries...
    2. Prefs > Code Format > UNCHECK Do not include a break
    inside TD tag (I know, that's for TD, but I'm just trying
    everything(
    3. Prefs -> line breaks (tried Unix, Windows)
    4. Commands > Apply Source Formatting (messes up my entire
    code by putting everything inside the BODY tag on one line - in
    other words, my entire page goes on one line now!)
    5. Automatic Wrapping After Column 76 - this one is really
    stupid, it just does a HARD break on each line so when you turn it
    back off you have to go in and manually delete all these hard
    breaks now...
    There's a bunch of other small things I have tried, but
    needless to say, nothing appears to be working.
    Has no one else experienced this? Can you get Design View to
    properly format UL / LI tags? If so, then something on my computer
    is messed. But when I look at code generated by DW on some of my
    co-workers' computers, they also have the same problem - I just
    guess their tolerance for crappy code is higher than mine.
    I'm using DW 9.0 (CS3) build 3481.
    Please help! I have no hair left on my head to tear out and I
    may have to go further afield.... ouch!
    Thanks,
    Tom

    I just checked on DW CS4 and it's working as expected. If I
    change my LI
    entry in the Tag Libraries to Line Breaks: Before, Inside,
    After and
    Contents like you, I get your desired effect. Moreover, it
    doesn't revert -
    or worse if any changes are made, whether in Design or Code
    view. I know
    this doesn't help you verify or correct your CS3 issue, but
    at least you
    know there is an upgradeable light at the end of the tunnel.
    Best - Joe
    Joseph Lowery
    VP of Product Management, WebAssist -
    http://www.webassist.com
    Author, Dreamweaver CS3 Bible -
    http://www.idest.com/dreamweaver/
    "tomaugerdotcom" <[email protected]> wrote
    in message
    news:[email protected]...
    > Hello, I am experiencing a huge deal of frustration with
    the way
    > Dreamweaver
    > improperly formats code. In particular, the UL / LI tags
    do not format
    > correctly. Here is what I am trying to achieve:
    >
    >
    > TEXT
    > </li>
    >
    >
    > Now this pattern seems to correspond exactly to the
    preview that you see
    > when
    > you go to Preferences > Code Format > Tag
    Libraries, select the LI tag and
    > choose Line Breaks: Before, Inside, After and Contents:
    Formatted and
    > Indented.
    >
    > I have done this. I have also manually checked the .vtm
    file in username >
    > Application Data > Adobe > Dreamweaver >
    Configuration etc.... and it
    > corresponds to what I have set in the Prefs.
    >
    > However, when I use Design View to create the unordered
    list, OR even if I
    > just TOUCH a properly formatted list in Design View,
    everything gets
    > squeezed
    > onto one line. I get this sort of thing:
    >
    TEST</li>
    MORE TEST</li>
    >
    > Here is what I have tried unsuccessfully to date:
    >
    > 1. Prefs > Code Formatting > Edit Tag Libraries...
    > 2. Prefs > Code Format > UNCHECK Do not include a
    break inside TD tag (I
    > know,
    > that's for TD, but I'm just trying everything(
    > 3. Prefs -> line breaks (tried Unix, Windows)
    > 4. Commands > Apply Source Formatting (messes up my
    entire code by putting
    > everything inside the BODY tag on one line - in other
    words, my entire
    > page
    > goes on one line now!)
    > 5. Automatic Wrapping After Column 76 - this one is
    really stupid, it just
    > does a HARD break on each line so when you turn it back
    off you have to go
    > in
    > and manually delete all these hard breaks now...
    >
    > There's a bunch of other small things I have tried, but
    needless to say,
    > nothing appears to be working.
    >
    > Has no one else experienced this? Can you get Design
    View to properly
    > format
    > UL / LI tags? If so, then something on my computer is
    messed. But when I
    > look
    > at code generated by DW on some of my co-workers'
    computers, they also
    > have the
    > same problem - I just guess their tolerance for crappy
    code is higher than
    > mine.
    >
    > I'm using DW 9.0 (CS3) build 3481.
    >
    > Please help! I have no hair left on my head to tear out
    and I may have to
    > go
    > further afield.... ouch!
    >
    > Thanks,
    >
    > Tom
    >

  • Jdeveloper: Tool Preferences Code Editor Save Actions. Why no code format?

    For me Format and Organize Imports are the 2 main save actions?
    Can I write a plugin or something to have the code format working for me?
    Best Regards,
    JP

    Which version of jdev you are talking about?
    In 11.1.1.2.0 I can select reformat as save action.
    Timo

  • PLSQL Editor Code Formating Rules

    Hi,
    In the past I have used a tool for plsql development called PL/SQL Developer by AllAround Automations. It has a great "beutifier" featur that would allow me to customize some of my own code formatting rules. I've found a similar feature in jdeveloper for java code, but I would like to use the capabilities of jdev to do my pl development as well (just use one tool).
    If anyone has any insights into knowing if the rules can be modified so that when I choose the menu option "format sql", it allows me to customize as I don't like the default behavior.
    THanks

    Hi,
    which JDeveloper version are you on? I am asking because in JDeveloper 11 we use a snapshot of SQL Developer for PLSQL editing in JDeveloper. Can you have a look at this tool to see if the formatting is a you need it. If not, please post suggestions to
    http://www.oracle.com/technology/software/products/sql/index.html
    Frank
    Ps.: I checked teh formatting options in JDeveloper 11 and there are plenty of them

  • [bug] SQLDeveloper 1.5.4.59.40 - Code Formatting problem

    I've installed SQLDeveloper 1.5.4.59.40 and I have found that the code formatting does not format the query with the right case that I choose. I mean, in the option I set to put "SQL words" in uppercase but the formatter ignore this and do not change any case in the query.
    Beretta Costantino

    Hi this works for me.
    -Are you using SQL Formatter Other -> Force formatter on difference ?
    -Are you non USA, there could be a problem with USA strings being assumed and being wrongly used internally?
    --Turloch                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Code format options ---Version 1.5.1.

    Hi all,
    I am new to SQL Developer tool.
    Want to know where I can find settings for code formating options, like PL/SQL developer-Beautifier.
    Also, can we generate E-R diagram like in Toad.
    Tool Version 1.5.1.
    Thanks in advance.

    Better get version 2.1.1 or the latest 3.0 EA for more formatter options (inside the Preferences - Database - SQL Formatter).
    The EA's also have the Data Modeler incorporated, but you can get the last production version in stand-alone too.
    Read the online help inside sqldev for more info.
    Have fun,
    K.

  • ZIP code format for each country in SAP

    Please provide me the way to retrieve ZIP code format for each country in SAP.....

    Well Yash
    You might have noticed the checking rules in the same place. They are the ones which is used for checking formats. I don't know which internal table  (I doubt if there is one) holds the format data per country.  There are formal format checks for few specific countries like Canada, the Netherlands, Poland, Sweden, Slovakia, the Czech Republic, South Korea, and Portugal and I guess they are hardcoded.  Another thought is that Regional Structure Group related tables may hold this.
    If you have ABAPer by your side, check out Function module POSTAL_CODE_CHECK which is used in conjunction with the checking rules mentioned. This may provide you some clues.
    I am wondering why you need this info.
    If you need to set up your own config in Address Management than what is supplied in the standard,  then use the following path:
    SPRO/IMG/SAP NetWeaver/Application Server/Basis Services/Address Management
    Also go through the following OSS notes:
    1123588 - Postal code check for different countries
    1381564 - Postal codes

  • FM to covert Number into EAN 128 (Bar code format)

    Hi Experts,
                    Is there any FM available that can get input as a Number & convert it into Bar code format?
    <REMOVED BY MODERATOR>
    Thanks,
    neo
    Edited by: Alvaro Tejada Galindo on Jan 11, 2008 5:15 PM

    Thanks for the response Gordon.  I investigated your suggestion to use the barcode field on the item master and I get the same result.  In this scenario the barcode field would contain the same information as the item code field.  I am working on the B1 system remotely and do not have access to actually print the document.  Is it possible that the print preview actually shows the numbers but the printout will display the barcode?  I am going to have the group in India print the document to see if that is the issue.  Thanks for the help.  I am using the "user reports" pld.
    Edited by: Jordan Simons on Jan 22, 2009 11:45 PM

  • Convert message content to base64 code format.

    Hi,
    While sending the file to the target directory ,need to convert the content to base64 code format.How we  can achieve this.
    Regards,
    Hymavathi

    this is a duplicate thread :convert message content to base64 code format.
    Please close this one.

  • DW Edit - Preferences - Code Format Options

    Does anyone know the configuration file that Edit ->
    Preferences -> Code Format pulls the information from?
    I need to customize this piece for my users and default some
    options.
    thanks

    i wasnt able to find any registry info that you suggested. do
    you know of the exact key or path for the registry value you
    suggested?
    also, i was actually looking for the "general" options and
    not code format, my mistake. particularly i would like to uncheck
    "Use CSS instead of HTML Tags" and "Use <strong> and
    <em>..."
    there is no .htm or .js file in the configuration folder that
    pulls these values from?
    thanks

Maybe you are looking for