Complete record is saving just in one (1st / A) cell of XL!

Hello
I have created a upload program, where in some custom master data will be uploaded from a input spread sheet into a custom table in SAP, pls. note this upload prog. is scheduled as back ground prog.
Here the input XL file saved in app server (one system is UNIX and another is Windows), from where my upload prog reads the data by using OPEN DATASET FOR INPUT sysmtax, well
Well, now I am trying to write error log,
1) into user's H drive (bcz user don't hv authorization to write any thing to C drive), by using FM of 'SAP_CONVERT_TO_XLS_FORMAT' but am getting CONVERSION_ERROR, pls. let me know is it bcz of that as am running the prog as back ground prog. and trying to save error log user's in H drive ? or any other reason?
2) Then, I switched to writing the error log in XL file back again in to another file in the same app server, by using OPEN DATASET FOR OUTPUT, but when we opened this XL file in APP server, we are seeing all the record in 'A' cell, I mean, all the text/record is saving in one cell i.e. 1st cell of XL
Pls. let me know does the OPEN DATASET FOR OUTPUT saves the record in 1st cell of XL? if so, how fix my issue?
Thank you

Please share your code.
Regards

Similar Messages

  • Can I record everything in just one slide?

    Hello,
    I’m trying to create an 30-second flash animation of
    our software, with some textual callouts. Since I’ve got the
    Adobe Technical Communication Suite, I figured I’d use
    Captivate for the job, but I’m new to it and can’t get
    my head around some things. If someone has the time to point me in
    the right direction, I’d appreciate it. I have tried checking
    the help and rummaging through forums, but still can’t get it
    to work the way I want.
    I’m using the “Full Motion Recording” mode,
    since our software is pretty interactive in real-time and I want to
    show that. All I want is to do is record about 30 seconds of me
    using our software, and afterwards add text callouts here and
    there, before exporting to an .swf file.
    Question 1: Captivate automatically chops up my recording
    into several “slides”, is there a way to make it put
    everything in just one slide? Or set the default time of a slide in
    order to get my entire recording in one single slide? The problem
    is, if I want to place a callout just between two slides…
    well, I can’t do that right? I just want one and the same
    timeline for my entire recording.
    Question 2: After the recording is done, is there a way to
    adjust the speed, or pause, certain segments of the recording? For
    example, if I realize that the viewer of my flash video needs a
    couple of seconds longer to read a certain callout, I want to
    “pause” or “extend” that point in the
    timeline for a bit. Can I do that, or do I need to record the
    entire thing from the beginning and actually pause myself at the
    appropriate time?
    I’d be thankful for all advice and suggestions. I
    realize I’m new to this, so any nudges in the right direction
    would be appreciated!
    /Tom

    Hey there Tom
    From my experience, the only time I need full motion is
    during a drag & drop or scrolling type of action when the view
    "moves" like a film.
    My suggestion is that you plan what you want to do (click
    here, then there, then select that button etc.)
    Step 2 is to start a new project and select "Demonstration"
    as the recording type, spec the size of the recording window if
    needed and start recording (You might want to use auto capture
    which would automatically record all interactions and key strokes,
    but please remember to "manually" capture certain screens using
    Print Screen e.g. after a drop down menu has opened.) (Hint 2 -
    Rather record too many screens than miss one critical one out)
    Step 3 would be to stop recording and edit the individual
    slides with captions, animations etc. At this stage, you can
    specify exactly how long each screen would display, when your
    captions etc appear and for how long they show.
    In summary, a decently built demo has a seperate slide for
    each change in what the user would see on the screen, with FMR
    being used to "tie together" 2 views where a movement action causes
    the transition.
    Hope this helps
    Andrew

  • Moving the 80 Million records from Conversion database to System Test database (Just for one transaction table) taking too long.

    Hello Friends,
    The background is I am working as conversion manager and we move the data from oracle to SQL Server using SSMA and then we will apply the conversion logic and then move the data to system test ,UAT and Production.
    Scenario:
    Moving the 80 Million records from Conversion database to System Test database (Just for one transaction table) taking too long. Both the databases are in the same server.
    Questions are…
    What is best option?
    IF we use the SSIS it’s very slow and taking 17 hours (some time it use to stuck and won’t allow us to do any process).
    I am using my own script (Stored procedure) and it’s taking only 1 hour 40 Min. I would like know is there any better process to speed up and why the SSIS is taking too long.
    When we move the data using SSIS do they commit inside after particular count? (or) is the Microsoft is committing all the records together after writing into Transaction Log
    Thanks
    Karthikeyan Jothi

    http://www.dfarber.com/computer-consulting-blog.aspx?filterby=Copy%20hundreds%20of%20millions%20records%20in%20ms%20sql
    Processing
    hundreds of millions records can be done in less than an hour.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to change a item property just for one record

    Hi,
    My Requirement is, when a new record is inserted i want item1 to be enabled(which is disabled by default) only for this new record. when I implement the following code, entire column is enabled intead of just for one record.
    The code I have written in WHEN-NEW-RECORD-INSTANCE trigger is
    app_item_property.set_property('block1.item1', ALTERABLE_PLUS, PROPERTY_ON);
    app_item_property.set_property('block1.item1', ENTERABLE, PROPERTY_ON);
    please help!
    Thanks
    Sunny

    The code I have written in WHEN-NEW-RECORD-INSTANCE trigger is
    app_item_property.set_property('block1.item1', ALTERABLE_PLUS, PROPERTY_ON);
    app_item_property.set_property('block1.item1', ENTERABLE, PROPERTY_ON);What is APP_ITEM_PROPERTY? This is not a Valid Oracle Forms Built-in. I don't see how your When-New-Record-Instance (WNRI) trigger will compile.
    To change the properties of a specific instance of an item you would use the Set_Item_Instance_Property built-in and then there are only a few properties you can change; which are: BORDER_BEVEL, INSERT_ALLOWED, NAVIGABLE, REQUIRED, UPDATE_ALLOWED and VISUAL_ATTRIBUTE. To make a specific instance of "ITEM1" Insertable and Updateable you would use the following:
    Set_Item_Instance_Property('YOUR_BLOCK.ITEM1', CURRENT_RECORD, INSERT_ALLOWED, PROPERTY_TRUE);
    Set_Item_Instance_Property('YOUR_BLOCK.ITEM1', CURRENT_RECORD, UPDATE_ALLOWED, PROPERTY_TRUE);However, if you have set the ENABLED property of ITEM1 to NO in the Forms Builder, you will not be able to "Enable" the item using Set_Item_Instance_Property. You will need to make the item Enabled and set the INSERT/UPDATE properties to NO.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Lost 2500 photos last night. Mt wife cut and paste a photo into power point for editing. then saved it as a photo. Now in iphoto there is just this one photo and the other 2500 have gone. Where have they gone???????

    Lost 2500 photos last night. Mt wife cut and paste a photo into power point for editing. then saved it as a photo. Now in iphoto there is just this one photo and the other 2500 have gone. Where have they gone???????

    To answer some basic questions posted to aid people in helping me. These are
    I believe it is version 11 of iphoto as i tried to update but it says it has the latest update and Mac is 2 weeks old from new.
    OS is Lion.
    I have just tried to look everywhere on the Mac to see where the photos might be.
    There are no error messages showing on screen and it was fine before my wife did what she did. Even though we have back -ups of 95% of the pictures. I would like to know what happened so that it won't happen again.

  • Results slide showing all question pool results not just the ones completed.

    I have several question pools which have the option to be taken independently or separately.
    If the user does not take all seven of the modules then the quiz results slide at the end is incorrect as it will report all of the questions not just the ones attempted.
    I have tried the Branch aware option in the quiz results option but that did not worth.
    It this an easy fix or does it require me to add a variable count for each correct answer.
    Many thanks
    Rick

    Branch aware should be just fine for that case, why do you tell it is not working? Branch Aware Quiz - Captivate blog
    When you say 'score slide is not reporting correctly', I had no such problems.
    You could create a custom score slide indeed, using variables, but what if you have to report as a SCORM? Only possibility in that case is Branch aware.

  • New records not saved

    there are 3 main data block in a form. Block A is master of block B(multiple row block) while B is master of C(multiple row block).
    Initially, I enter 1 row in A, 1 row in B and 3 rows in C. So, 5 records are saved. Anyway, when I execute the form later... and want to insert another row in B and another 3 rows in C. These new records are not saved.
    Can anybody help me on this ?
    Thanks,
    Shu Wen

    Howdy Howard (and others) -
    I was hoping someone would have an answer without generating an example, but I hi-jacked the demo and came up with one:
    http://apex.oracle.com/pls/apex/f?p=70849:9:16222360984434:::::
    Workspace: DenverScott
    UserName: Test_User
    P/W: Test123
    Page: 9
    Recreate Problem: Change the checkbox value of an item under OnChange and OnClick and press "Submit", only OnChange items actually change.
    On this report, the two columns "OnChange" and "OnClick" are the focus. They are both simple check boxes and basically have the same settings. They both call an empty javascript function "test_me(this)" when clicked. Difference is, the MRU works for the "OnChange" column, updates are applied. You can change the "Onclick" column and submit all you want and it does nothing.
    If you remove the event for OnClick="test_me(this);" from the "OnClick" column, the submit/updates work just fine.
    (If anyone changes the demo, please return to prior state for others to examine)
    Thanks,
    Scott

  • Export to AICC - Completion Records

    I have a situation where an AICC course produced by Captivate
    sends 2 completion records to LMS only sent if the person
    successfully completes the quiz. If the person taking the quiz
    fails the quiz, then only one completion record is sent. Here's the
    details scenario:
    1. The quiz has 5 questions.
    2. There is a 'submit' button one each question page.
    3. The passing grade for the quiz is set to 100%
    4. As soon as a user clicks on 'submit' for the very last
    question, two PutParam interaction records are sent to LMS with
    status = complete if the user receives 100% in quiz. Only one
    completion record is sent to LMS if the user fails the quiz.
    How can we control it so that only one record with status =
    complete is sent to LMS?

    if you don't suppress you will get in export sheet
    if you supress you will not get in export sheet......this is a default template of the designer
    if you want to suppress and hide duplicate in report and the export sheet should show all the data then you have to handle it with some formulas
    some thing like
    in report column have black color only for the 1st occurrence and display the value in white from then on...so that you report will looks like hiding the values except the 1st value...at the same time your export sheet show all the values.......
    This may help...
    Thanks,
    Ganesh

  • How to make RECORD for saving multiple rows for each employee..

    Hi,
    How can I create a record for saving multiple rows for each employee... (parent child relationship)
    I have created all required fields, then created a record, and then created a page. in that page i dragged-n-dropped a scroll area on that page and dropped all required fields from record into that scroll-area.
    whats is happening that its saving ONE (the first) record fine, but for the second record its not storing EMPLID for that row..
    Will I have to make some change at RECORD level ?
    OR Will i have to make some configuration in parent component ?

    Hi, the problem is solved. The record will be created in same way. just create more then one keys (allowing to make composite key in DB table)

  • My husband has an iPad and I just got one for me.  We both have the same e-mail address.  The message I get when I try to set my new one up is that the Apple ID is already in use.  How do I set up with our shared e-mail account

    My husband has an iPad and I just got one for me.  We both have the same e-mail address.  The message I get when I try to initiate setup is that the Apple ID is already in use.  Any ideas on how to complete the setup of the new iPad since we both share the e-mail account?

    If you selected open a new Apple ID account, go back a step and enter use existing Apple ID.
    You will have to set up a separate iCloud account or your iPads will mirror each other.

  • I just reset my 1st Gen iPod touch to factory settings.

    I just wiped my 1st gen iPod touch (my son gave it back after he got a new one for X-mas).  I now have the  "connect to iTunes" icon when I turn it on.  Recovery mode is what it is called I think.  When I plug it into my iMac running Lion, it isn't recognized at all.  I can't ge the computer to see it so I can restore it.
    Any thoughts????

    That happens some times
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • Output not getting proposed from a Purchase Order just for One vendor

    Hi All,
    We have an issue where in we have maintained a condition record with the access as "Purchase Doc type (NB) and Purchase Organization(XXXX):" pointing towards a "LS" partner function (ALE) and "4"
    We have also maintained Partner configuration correctly. The issue which happens only in Production and not in TEst systems which is " only for ONE VENDOR the output is not getting proposed and for the other vendors it is getting proposed correctly. We also have a requirement attached to the Output and we do not have any vendor specific logic.
    We also checked /Compared both the test and production system on Output Configuration as well as master data for VEndor and Info records and they seem to be ok.
    Does any one faced a similar situation why an Output would not propose just for one specific vendor?
    Would appreciate if any one can reply asap.
    Thanks,

    Then check with the requirement you are using bd64 is distribution model.
    Check with ur output type, requirement and output determination. ale service comes only in picture partner profile with outbound parameters.
    have u done the correct entries under message control in outbound parameters.
    thanks
    Aman

  • Download and convert Youtube video to MP3---Just with one click

    Download and convert Youtube video to MP3---Just with one click
    Last week, when wandering around the Youtube watch.com, I was enthralled with the theme song of "Lost", especially the words of the song "I found out, on the corner of first and amistad, where the west was all but won all weeklong, smoking his last cigarette, I said: "Where you been?" He said: "ask anything.""......"
    I couldn’t help expecting to save this song to my personal players. What a delightful thing listening to the song while walking or waiting for a bus! Okay, do you have the same experience as me? When hearing an exciting speech or dialogue, are you thirsty for downloading them and saving as your best memory?
    Download, convert Youtube to mp3?—yes, you can.
    Anna, one of my best friends, has posed a question "I have a Mac notebook and I only need the audio (mp3 music) of a certain Youtube movie, what shall I do?" The solution to the problem is shown as below:
    Step one: Install a Youtube Converter for Mac as follows:
    Step two: import the URL of Youtube video (or batches of URL) you wanna convert using "Add URL" icon. Select output format like audio (MP3) by "Settings" and customize your output file path with "Browse".
    Step three: If you want your output audio much better, you can set the audio resolution like Bit Rate, Channels or Sample Rate presented in the following picture.
    Step four: Click "Ok” button, it automatically download and convert your youtube videos simultaneously. After a few minutes, you can get the desirable audio (mp3) you want and enjoy it on any portable devices.
    Download, convert Youtube videos to iPod, iPhone, iPhone 3Gs, PSP, Creative Zen, Zune, iRiver, and etc. --- done by one click.
    Generally, if you want to download a Youtube video and then convert them to MP3 for your mobile devices, you need two Youtube tools: Youtube Downloader and Youtube Converter. But, now, with Pavtube Youtube Converter for Mac, you can both download and convert massive videos by clicking one "Ok" button.
    Now, all the best, you can enjoy versatile Youtube music at a waiting room, on a bus, traveling, walking around the park or lying on your bed..

    Youtube's ToU specifically state that downloads of any content is prohibited unless there is a download button available for a particular video.

  • With a PDF Dynamic form using show/hide actions, how to ensure that when the completed form is saved, closed and re-opened, the form still show the fields as before it was closed?

    With a PDF Dynamic form using show/hide actions, how to ensure that when the completed form is saved, closed and re-opened, the form still show the fields as before it was closed?
    I have developed a form with fields hidden by default, that become visible based on box ticked or radio button selections.
    My problem is that, when I close the form and re-open it, it comes back to it's default presentation, regardless of the information already recorded in the form (including in the now hidden fields.
    How to correct that
    Thanks in advance for any hint you can provide.

    I've had the same problem. This solved it...
    Go to the "Form properties..." in the File-menu. Select "Run-time" to the left and in the box "Scripting" Preserve scripting changes to form when saved: choose Automatically (Script-based state changes are saved locally in an insecure fashion. This option cannot be used for certified forms).
    Hope it works for you to...

  • CAN I ENLARGE THE SIZE OF ALL TRACKS AND NOT JUST THE ONE TRACK AT A TIME

    I would like to enlarge the tracks on the top half of the mix screen and not just the one track I'm working on. I find that most times I'm working in 2 or 3 tracks only and it would be great if I could enlarge the size of those to work with rather than the thin tracks they appear as. I realize if I click on one that it will appear larger below to edit but can I have all the tracks recorded appear larger?
    [email protected]
    Ross

    NO

Maybe you are looking for

  • Why Does One See References to Adobe Encore in the PrE Forum?

    Some forum subscribers have been puzzled at why Adobe Encore gets mentioned in the Premiere Elements Forum. There are some reasons, that many might not be immediately aware of, but first, let’s talk about what Adobe Encore is. Adobe Encore is a full-

  • ADF applicatiopn on Apache Tomcat server

    Hi all Iam intersted to know that can we deploy My ADF(genric applicaion) application containing task flows on my apache tomacat server . Thanks in advance Bipin

  • Delivery Complete Indicator

    Dear All, I have set delivery complete indicator in customizng for Plant in Inventory Management and also in Purchase Order still I am able to post multiple material documents with reference to the same Purchase Orde Item. What do this delivery compl

  • Non-Detected RAM

    I've got a 1.8 Dual G5 with 4x256MB RAM Modules already inside. If I move the pairs around the computer will not restart. I also purchased 2x1GB RAM Modules to upgrade the machine. If I put those in the machine w/out moving the others around it will

  • In Dreamweaver cc there is no spry widget, In Dreamweaver cc there is no spry widget

    How can i find a spry widget on dreamweaver cc