RMS update to sequential file

RMS supports read/write using VBN number to a sequential file, which
means that it is possible to randomly update a sequential file in RMS.
There are some tricky issues around extending the file and setting the
EOF mark correctly if you are using a sequential file logically as a
block-addressable random access file, but for your case you
can probably ignore such things-- you will not be adding records, just
updating the one record, right? In order to do this, you would have
to dig into the RMS services manuals a little bit, but from a Forte
standpoint, it is the same: C Project code.
If you have some control over the legacy system: RMS supports "relative
files", which are record-addressable, random access files without
keys-- ie, the CORRECT file type to use in this case. Depending on
the app, there is a good chance that the very same application logic
which handles the "one-record" sequential file (3-gl level open, read,
write) will work the same for a "one record" relative file. With this
"change" to the legacy system, your job in the C-project interface code is a
little easier.
Dave

Hi,
Data : l_qty(16) type c,
       l_value(13) type c,
       l_dec(3)   type c.
loop at itab.
split itab-qty at `.` into l_value l_dec.
concatenate l_value `.` l_dec into l_qty.
Move l_qty to l_file.
Transfer l_file.
endloop.
close dataset.
Best regards,
Prashant

Similar Messages

  • Updating a sequential file in Polling - DB adapter

    Hi,
    I am using DBAdapter to poll a table in the database and i have chosen 'Update a Sequencing File' option as the operation to be performed after the read. I was running the process on my local bpel server and was able to select a file on my system. I need to deploy the process in another Env and i was wondering what kind of format should be followed for the path and the file name? How do i specify a remote file in here?
    The process remains in the off state as it is not able to recognize the file path. Please Help.
    Thanks,

    Hi there,
    the full path on the system where it is running must be provided.
    The 'Update a Sequencing File' is good for development but storing the value in a file somewhere on your system can quickly become a problem. The option 'Update a Sequencing Table in Another Database' gives you the non-obtrusiveness of the file based approach but stores the value in a database table. It is a little bit more work to set up but likely worth it over time.
    Thanks
    Steve

  • Error while updating a jar file

    I am trying to update a jar file using teh following command
    jar -uf project.jar fileMy.prop
    however while doing that i get the following error
    java.io.IOException: Error in writing existing jar file
    at sun.tools.jar.Main.run(Main.java:179)
    at sun.tools.jar.Main.main(Main.java:904)

    Perhaps some process (your java program perhaps) is still running that has the file open still? You'll need to shut down the process(es) that have it open. Or you don't have proper rights to the directory/file. Not a java issue.

  • Open all pages in a PDF and save them as sequential files

    I'm trying to make a script that will open all pages in a multi-page PDF and save them as sequential files, but I have had no luck with the simple script in the "Adobe Ilustrator CS5 Reference: JavaScript".
    there example to open a PDF to a designated page does not work for me in Illustrator CS 5.
    // Opens a PDF file with specified options
    var pdfOptions = app.preferences.PDFFileOptions;
    pdfOptions.pDFCropToBox = PDFBoxType.PDFBOUNDINGBOX;
    pdfOptions.pageToOpen = 2;
    // Open a file using these preferences
    var fileRef = filePath;
    if (fileRef != null) {
    var docRef = open(fileRef, DocumentColorSpace.RGB);
    if anyone can get me on the right path it would be appreciated.

    Hi DuanesSFK,
    you can open a PDF page on this way (tested with CS3 and 5):
    //OpenPDFpage2.jsx
    var uILevel = userInteractionLevel; 
    app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
    // Opens a PDF file with specified options
    var pdfOptions = app.preferences.PDFFileOptions;
    pdfOptions.pDFCropToBox = PDFBoxType.PDFBOUNDINGBOX;
    pdfOptions.pageToOpen = 2;
    // Open a file using these preferences
    //var fileRef = filePath;
    var fileRef = File("~/Desktop/YourOwn.pdf");
    if (fileRef != null) {
    var docRef = open(fileRef, DocumentColorSpace.RGB);
    app.userInteractionLevel = uILevel;
    To open all pages you have to loop through all pages etc.
    Easier for you:
    Search here in forum for the "open pdf" script  (I don't know the exactly name, it was written by CarlosCanto, ) This should always work for you.
    Have fun

  • List View: How to force update of *actual* file dates when sort by date?

    List View: How do I force and update of actual file dates when sort by date?
    When I go in, I often see the sort order and dates from 12-15 hours ago!
    not good

    Hi, did you ever get that Windows® Sharing thing worked out?
    On this problem, If it's just that you need the Finder to wake up to the fact that it needs to update the window give a try with Refresh Finder - 1.3...
    http://www.versiontracker.com/dyn/moreinfo/macosx/33066

  • Read data from a sequential file to fill an arrray

    I am trying to read data from a sequential file to fill an array and then use the array for calculations. I believe my program is reading the file; however when I try to use the data for calculations the results show up as boxes rather than numbers. Can someone please take a look and give me some insight into where I am going wrong. The sequential file has the following data:
    5.0
    5.35
    5.5
    5.75
    Here is my code from that portion of the program. I can send the entire program if necessary.
    private void calcResults(TextArea loanResults, double amount, double interest, int term ) throws IOException {
         DecimalFormat df = new DecimalFormat("$###,###.00");
         NumberFormat formats = new DecimalFormat("#0.00");
         StringBuffer buffer=new StringBuffer();
         loanResults.append("Month No.\tMonthly Payment\t\tInterest\t\tBalance\n");
         double monthlyPay = amount*Math.pow(1+interest,term)*interest/(Math.pow(1+interest,term)-1);
         monthlyPayment.setText("" + (formats.format(monthlyPay)));
         double principal= amount;
          * Loop through each month of a given loan
        int month;
         for (int i=0; i<term; i++)
    try {
         int j = 0;
         BufferedReader in = new BufferedReader(new FileReader("rates.txt"));
         String temp = "";
         while((temp = in.readLine()) != null) {     
            j++;
            strRate[j] = temp;
            RateValue1 = Double.parseDouble(loanAmountTxFld.getText());
            in.close();
             catch (FileNotFoundException e) {
                 System.out.println("Can't find file rate.txt!");
                 return;
          month= i+1;
          double rate =principal*interest;
          double balance=principal+rate-monthlyPay;
          loanResults.append((month) + "\t\t" + (formats.format(principal) + "\t\t"  + (formats.format(rate) + "\t\t"
                            + (formats.format(balance)     + "\n"))));
          principal=balance;
          GraphArea.append(formats.format(balance)     + "\n");
    *Method for determining which loan option was chosen
    private void calc() throws IOException{
      String interestTerms = (String) cOption.getSelectedItem();
      if (interestTerms.equalsIgnoreCase("5 yrs at 5.00"))
         calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), 0.05/12, 60);
      else if (interestTerms.equalsIgnoreCase("7 yrs at 5.35"))
        calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), RateValue1/12, 84);
      else if (interestTerms.equalsIgnoreCase("15 yrs at 5.50"))
         calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), 0.0550/12, 180);
      else if (interestTerms.equalsIgnoreCase("30 yrs at 5.75"))
         calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), 0.0575/12, 360);
      else if (interestTerms.equalsIgnoreCase("       "))
        calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), Double.parseDouble(loanInterestTxFld.getText())/100/12,Integer.parseInt(loanTermTxFld.getText())*12);
    }

    ok, I fixed my program per your suggestion and I still cannot get it to work. I get the same result where the ouput is just a bunch of boxes. I also tried to print to see what I am getting and all I see is the values of the array [5.0,5.35,5.5,5.75] but I cannot seem to pass that to the calculations. I wish I could figure this out. Does anybody have any suggestions as to what I am doing wrong. This is the portion of my code that I am having issues with:
    private void calcResults(TextArea loanResults, double amount,double interest, int term ) throws IOException {
         DecimalFormat df = new DecimalFormat("$###,###.00");
         NumberFormat formats = new DecimalFormat("#0.00");
         StringBuffer buffer=new StringBuffer();
         loanResults.append("Month No.\tMonthly Payment\t\tInterest\t\tBalance\n");
         double monthlyPay = amount*Math.pow(1+interest,term)*interest/(Math.pow(1+interest,term)-1);
         monthlyPayment.setText("" + (formats.format(monthlyPay)));
         double principal= amount;
          * Loop through each month of a given loan
        int month;
         for (int i=0; i<term; i++)
          month= i+1;
          double rate =principal*interest;
          double balance=principal+rate-monthlyPay;
          loanResults.append((month) + "\t\t" + (formats.format(principal) + "\t\t"  + (formats.format(rate) + "\t\t"
                            + (formats.format(balance)     + "\n"))));
          principal=balance;
          GraphArea.append(formats.format(balance)     + "\n");
    private void readFile() throws IOException
    try {
         int j = 0;
         BufferedReader in = new BufferedReader(new FileReader("rates.txt"));
         String temp = "";
         while((temp = in.readLine()) != null) {     
            strRate[j] = temp;
            j++;
    RateValue1 = Double.valueOf(((String)(strRate[1]))
    ).doubleValue();
    //        RateValue1 = Double.parseDouble(loanAmountTxFld.getText());
            in.close();
             catch (FileNotFoundException e) {
                 System.out.println("Can't find file rates.txt!");
                 return;
    *Method for determining which loan option was chosen
    private void calc() throws IOException{
      String interestTerms = (String) cOption.getSelectedItem();
      if (interestTerms.equalsIgnoreCase("5 yrs at 5.00"))
         calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), 0.05/12, 60);
      else if (interestTerms.equalsIgnoreCase("7 yrs at 5.35"))
        calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), RateValue1/12, 84);
      else if (interestTerms.equalsIgnoreCase("15 yrs at 5.50"))
         calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), 0.0550/12, 180);
      else if (interestTerms.equalsIgnoreCase("30 yrs at 5.75"))
         calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), 0.0575/12, 360);
      else if (interestTerms.equalsIgnoreCase("       "))
        calcResults(loanResults, Double.parseDouble(loanAmountTxFld.getText()), Double.parseDouble(loanInterestTxFld.getText())/100/12,Integer.parseInt(loanTermTxFld.getText())*12);
      }

  • Updating a jar file

    I am using the following ant file in eclipse to build jar files when I ask the project to be built
    <project name="atg" default="create-jar">
        <target name="create-jar">
            <jar jarfile="${jarlocation}/classesDAS.jar">
                <fileset dir="WebContent/WEB-INF/classes" includes="**/*.class"/>
                <fileset dir="WebContent/WEB-INF/classes" includes="**/*.properties"/>
            </jar>
        </target>
    </project>Is there a possibility that I modify this file to rather update jar files rather than creating new ones??????

    Something did occur to me.... If you use update, then
    presumably Ant works by taking newer/modified files
    that have timestamps after the modified time of the
    Jar... IF you were to move things around to other
    packages, or directories for non-class files, in your
    development process, then you could end up with
    duplicate items in different locations in the Jar,
    which could lead to hard to find bugs later if you
    forgot to update the paths elsewhere, or end up
    updating the wrong files. So IMO, it's safer all
    around to just let it create a new Jar so that it's
    always clean.Thanx all of you for taking out some time to advise me. I really appreciate that. The reason I am more interested in update is because of the situation I am trapped in. We are using a third party API to talk to the oracle database. Though I personally would prefer using JDBC myself but here I have no choice as its a decision made at much higher levels. Now there are advantages with this API that it maintains a cache and you donot have to do SQL queries all the time, but I was having problem since a few days as it would not always provide me with the right results. Since I was the one assigned to look into it I decided to decompile some of the classes and put them into a project in WSAD/Eclipse. Now there are thousands of classes in this jar file and I donot want to decompile all of them and add them to the project what I was wondering was to add this ant script to the project file add some debug statements and hopfully it would change only the files I want it to rather than creating a new jar file with just 10 files rather than all of them. This was the background of my question. So what do u suggest now. I donot want to do jar -uvf after moving class files everytime I compile thats why I wanted to use ant.

  • Error while updating the configuration files (MOB20003)

    hi,
    After installing the BI 4.0 server, i am trying to configure mobile using mobile server configuration tool. When i enter all the information for non Blackberry option as i would like to access through ipad, its giving me the error message" Error while updating the configuration files (MOB20003)" Please advise.

    Hi Somesh,
    If i am not wrong, only a war file deployment is needed to make ipad work.
    This happens with URL hitting directly on the Server.
    If you want to configure VAS and VMS servers, let us know what configuration settings have been done.
    Regards,
    Atul

  • Error message:The iPod cannot be updated. The file or directory corrupted..

    HELP!! error message: "The iPod cannot be updated. The file or directory is corrupted and unreadable."
    What do i do?!?! it wont let me update or ANYTHING, it wont even let me delete anything off of it. Its a 5th generation 30 gig about 1 1/2 years old. HELP?!?!
    5th generation 30 gig   Windows XP  

    Hi swiss22!
    Have you tried restoring your iPod? For instructions and info on how to restore an iPod, see this:
    Restoring iPod to factory settings
    If a restore doesn't help, then take a look at this post by Da Gopha:
    Da Gopha: Info on iTunes "corrupt" error messages
    -Kylene

  • "the ipod 'name' cannot be updated. the required file could not be found."

    PLEASE can someone help me out on a problem that is infuriating me?? i've not long had my 30GB 5th generation video ipod, and i can't get any photos or video to transfer onto it! when i connect my ipod and itunes opens up, an error message appears saying "the ipod 'name' cannot be updated. the required file could not be found". however, it updates my music no problem..
    i've reset my ipod, restored it and wiped all my music off and then transferred it all back on, downloaded the new ipod updater 28-06-2006 and made sure my ipod has the most recent software etc on there, but still no joy!
    i never had a problem transferring photos onto my old colour photo ipod (4th generation?), so it's really annoying that i have a supposed 'better' ipod now that won't do this for me!
    any help guys? please note, i am no techie - please put any advice in simple terms!
    Packard Bell desktop   Windows XP  
    Packard Bell desktop   Windows XP  

    Hello WGT52,
    It sounds like this error message is preventing you from syncing your content to the iPod. I would recommend the troubleshooting steps in the following article:
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • File updation in PDF File format:

    Hiii.....
                        If i do any type of updation in the pdf file, what are the effects of updation in its file format...?????
    And which type of updates can we do in pdf file. I know little bit about the links,comments,notes,bookmarks etc.. any thing else what can i do for updation then please tell me....thanks in advance.....

    Use this report - RSTXPDFT4

  • How do I update linked FM files without losing TOC entries or Map IDs?

    Hi,
    I'm using RH 10 with linked FM 11 files to create a WebHelp project and this is what happens when I do an update or force update of a linked file in the RH project:
    After the update, the topic that contains updated content gets deleted from project TOC in RH.
    After the update, any Map IDs assigned to the topic that contains the updated content are deleted.
    Can someone please advise how to update a linked file without losing TOC entries or Map IDs?
    Thanks a bunch!
    Gabe

    HI Gabe,
    You will want to link the TOC from FM in your conversion settings, and set the map id's via TopicAlias markers in FM.
    -Matt
    Matt R. Sullivan
    co-author Publishing Fundamentals: Unstructured FrameMaker 11
    P: 714.960.6840 | C: 714.585.2335 | [email protected]
    @mattrsullivan LinkedIn facebook mattrsullivan.com
    http://mattrsullivan.com/

  • I have been sampling new imported drum loops. And if I adjust region to song or time strecth it updates the audio file in the library. How to stop this? I lost the original setting to one loop. automatically doing it ??

    I have been sampling new imported drum loops. And if I adjust region to song or time strecth it updates the audio file in the library. How to stop this? I lost the original setting to one loop. automatically doing it ??

    This "original file cannot be found" thing happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • Necessary to "Update" old illustrator files?

    I have tons of files created in old illustrator 6.0 and now that I have a newer version of illustrator, specifically CS2, loaded on Mac OS X it's calling all of my illustrator files "Text Files."
    It says, "This file contains text that was created in a previous version of Illustrator. This legacy text must be updated before you can edit it." It asks you to either Choose Update or OK to update later.
    Should I take the time to update all of these files now? I'm just archiving them. I have thousands of files and it would take time to open them all and update each one. If I don't update now though, will I be stuck later in years to come, with files that won't open at all, as operating systems progress, etc?
    2) If I open a file, hit update and then hit save or save as, Logo A for instance will be renamed Logo A [Converted].ai - My question is should I just leave the brackets and the word converted or should I get rid of it?
    3) Also, if I open a file, hit update and then hit save or save as it goes to "illustrator Options". In this dialog box it defaults to "Use Compression". Should I just leave it checked or deselect it? (I'm scared of the word "compression" as I just spent the last several days decompressing old Disk Doubler files using an OS 9 emulator. I was lucky to be able to do this.)
    4) In this Illustrator Options dialog box it always gives me two warnings for these old files - The Document Raster Effects resolution is 72 ppi or less. What does this mean? Should I try and change it? If so, how? The other warning is "only fonts with appropriate permission bits will be embedded. What does this mean?
    Please keep answers as simple as possible. Thanks so much.

    Lala,
    Most of this just boils down to personal preference and/or common sense.
    I have tons of files created in old illustrator 6.0 and now that I have...CS2...Mac OS X [is] calling all of my illustrator files "Text Files."...Should I take the time to update all of these files now?
    That's just a file-association issue on the OS, mostly for icon and doubleClicking-to-open. It doesn't mean you can't open the file in a later version of the creating program. Here's the main thing: Can you still directly open AI 6 files in the current version of AI (CS5)? If yes (as I suspect), then whether you update all these files before archiving them or not is just a question of what you consider most convenient. Do you prefer to have all your archive files already updated to current-version AI, or do you prefer to update them on an as-needed basis?
    Personally, I opt for the as-needed route. I also have thousands of archive files. But I'm not going to open and resave them all (and mess with replacing legacy fonts, etc., etc.) with every new version of the host program. One could make a career of that. (And Illustrator is far from the only program I use.) In my case, the majority of those legacy files will never be needed again. Although I keep good backups, I always make it a point to make sure my clients know I am under no obligation to indefinitely archive my working files for their completed projects. (Anyone who takes on that liability, without being in that business and charging for it is flirting with disaster.) I provide the customer copies of what is necessary for the reproduction and uses he has contracted for, and he bears responsibility for redundant backup security of the files provided if he deems it necessary.
    I'm just archiving them. I have thousands of files...will I be stuck later in years to come, with files that won't open at all...?
    As long as the current version still supports the legacy format, it still boils down to whether you want to have all your archive files already updated or update them as-needed.
    Now, eventually a new version of the host program may completely break backward file compatibility with a legacy format. That actually happened once in the history of FreeHand when a major modernization of the program was done. If a FH user at that time chose not to update their legacy files, then they would have to do a 2-step update, first using the latest version that did maintained the legacy compatibility, then to the current version. Even then, I did not convert all my archives (especially those for long-inactive accounts.)
    The potential larger issue in that kind of scenario would be whether the "middle step" version of the host application will still run on the current-version OS. No one can predict that years and years in advance.
    (Aside: For that matter, what assurance do we have that the next computer technology that everyone flocks to--say, organic computing with true artificial intelligence--will not break compatibilty with every existing PDF, CD, DVD, hard disk, VHS tape, Flash drive, Zip drive, Syquest disk, SCSI device, and AI file on the planet? On the other hand, I'm still able to use FH11 without a hitch on Windows Vista--haven't tried it yet on Windows 7. I'd love to try a copy of Windows FH 8--that was a clean drawing program--but only have a Mac version.)
    It says "This file contains text that was created in a previous version of Illustrator. This legacy text must be updated..." It asks you to either Choose Update or OK to update later.
    Fairly recently (much more recently than version 6), Illustrator's very archaic text objects were updated to a...well...less archaic structure. For backward compatibility, Adobe included a "conversion" routine to give you the option of updating the older text objects. Understand, you can still open, work with, and even re-save the file with the legancy text objects if you have need to. So again, do you really want to do this to all your archive files?(Understand, the reason for the warning in the first place is that the changes affect spacing and therefore potentially line wrapping, and other type-specific things; so if you are truly "updating" the file, i.e.; making it Johnny-on-the-spot, ready-to-go print-ready, you may have some re-typesetting to do. Do you really want to do that on all your legacy files right now?)
    Logo A for instance will be renamed Logo A [Converted].ai ...should I just leave the brackets and the word converted...?
    That's also just up to you. Makes no functional difference. Appending the word "converted" is intended as a mere file naming convenience. (FileMaker does the same thing by default, for example, when opening an Excel spreadsheet and thereby converting it to a FileMaker database.) For one thing, it lets you save the new file to the same directory as the original file without overwriting it. (In the FileMaker scenario, I always delete the "converted" because the .xls and .fp7 file extensions themselves are going to prevent accidental overwrites. In Illustrator, I never keep the multiple-version files anyway, so I also delete the "converted".)
    ... it goes to "illustrator Options"...defaults to "Use Compression". ...I'm scared of the word "compression"...
    I'm not "afraid" of compression, but I never use application-specific file compression. It just creates other inconveniences in collaboration with others. For example, for many years Corel has provided the option of saving Draw files as compressed or not. It is a very common ocurrence for an AI user to receive a Draw file they should be able to open but can't, just because the Draw user forgot to not save it with compression (or didn't know better).
    Yeah, Adobe's marketing might like to think I and everyone else in the world uses only its products, but the real world (thankfully) still isn't that close-minded.
    The Document Raster Effects resolution is 72 ppi or less. What does this mean?
    See online Help for what Document Rster Effects setting is all about. You need to understand it; but it doesn't really have anything significant to do with the question of updating legacy files. 72 ppi is the default, so if you update a legacy file from a version that predates raster effects, that's the setting the new document is going to get. But since there were no raster effects in the old file, it has no real bearing. But that setting is something you should be familiar with regarding any file you are sending to print, regardless of when.
    The other warning is "only fonts with appropriate permission bits will be embedded. What does this mean?
    You're getting this when converting legacy AI files? An EPS or PDF file may have embedded fonts, but (correct me if I'm wrong) not an AI6 file, unless the "Save with Acrobat compatibility" option was available in AI6.
    At any rate, that's nothing new. Some programs can try to embed fonts in a file to facilitate remote printing and display (but not editing) without having to do the old-world "bundle for output" routine. If you happen to be the typeface designer, of course, you may not be too happy about that. So such features have had to provide the typeface foundry an opt-out. Some typeface vendors are almost as piracy-paranoid as Adobe--much to the dissatisfaction of their legitimate customers. So there is a setting in font files that the font creator can set to disallow embedding of the font. One example of particular distress to me is ITC Officina. Nowadays, I make a point to never purchase fonts that can't be embeded in a PDF. So ITC (or whomever actually owns the thing now) has at least one unhappy legitimately-licensed customer who has stopped using one of his favorite fonts and won't buy an updated version unless and until this nonsense is corrected. Again, it's really a non-issue re file version updating. You can't do anything (well, anything practical) about a font that doesn't allow embedding anyway. The warning is just a "reminder"; it's a standard alert whenever saving a file in a format that tries to embed fonts.
    JET

  • How to update cgicmd.dat file during runtime?

    I'd like to know how do update cgicmd.dat file during runtime. For example, I run a report one.jsp as
    http://<machine>:<port>/reports/rwservlet?one.jsp&USERID=uid/pwd@db&DESTYPE=cache&mode=bitmap&desformat=htmlcss
    within this report there is a hyperlink to open another report named two.jsp.
    before creating this hyperlink, I'd like to update cgicmd.dat file with passed in userID, pwd, and connection, so two.jsp can use this key for userinfo
    so I can create hyperlink as follows
    srw.set_hyperlink('/reports/rwservlet?report=two.jsp'||
    '&cmdkey=userinfo&DESTYPE=cache&mode=bitmap&desformat=htmlcss');
    Thanks

    To my knowledge the cgicmd.dat is only read when the OC4J starts, so you would have to come up with another solution. Using Single-Sign-On (SSO) is quite a good idea, and it's there for cases like this.
    Regards,
    Martin Malmstrom

Maybe you are looking for

  • Automatic BOM Selection as per Stock availability

    Hi... I have a query.....How can i set an Automatic BOM selection as per stock availability Problem is that the client is having more than 1 type of raw material which can be used, so the user needs to consume the ROH as per the stock availability, i

  • New selection disappears from sectionlist when I add rules (was: New section in CSS)

    When I try to make a nex CSS for a section it disapeasr from the sectionlist before I start to add rules. Why? And why does my (succeded) CSS rules not show up in the codesection? <!doctype html> <html> <head> <meta charset="UTF-8"> <title>ATL Websid

  • Best practices Oracle Reports

    Hi Can any one point me in the direction of some useful internet resources which discuss commonly used best practices by Oracle reports developers. I look forward to reading your responses. Kind regards, NaranH

  • Is the Thunderbolt Display ever going to get a refresh?

    Assumed we'd see a thin version two summers ago when the thin iMacs came out. Nope. Assumed we see an update when the MacPro was released. Nope. Does anybody know if Apple is getting out of the stand-alone display business?

  • Render Lighting Effects

    For the first time ever I've been looking at (and trying to use) this effect in Photoshop. It seems like it could be good, but the method of moving settings and adjustments seems incredibly cheap and nasty. When you start to place a lighting effect o