SHDB Issue with FS00 recording

Hi....
i have created Recording for FS00 Tcode through SHDB .. then create an ABAP program in which i have access data from text file success fully but i m unable to upload data .. kindly help regarding this issue.
Regards
Ammad
Edited by: Thomas Zloch on Apr 29, 2010 10:27 PM subject line enhanced

hello ammad,
try this snippet.
DATA : wa_ctuparams TYPE ctu_params.  
wa_ctuparams-DISMODE = 'A'.
wa_ctuparams-UPDMODE = 'A'.
wa_ctuparams-NOBINPT = 'X'.
CALL TRANSACTION 'FS00' USING BDCDATA OPTIONS FROM WA_CTUPARAMS.
Regards,
Sri
Edited by: srikanthn on Apr 30, 2010 12:54 PM

Similar Messages

  • Captivate 8 - Issues with correct recording of Software Simulations in monitor 2 (of 2)?

    I've been recording Software Simulations in monitor 2 (screen 2 of 2) and an application in monitor 2 to produce automatic demo, assessment and training output. It should be possible but the system doesn't capture all recordable actions (the result is 1 slide for each of demo, assessment and training versions with the ‘final’ screen view and one mouse movement). However if I shift my recording area to screen 1 (i.e. monitor 1) there are no issues. It can be worked around, however is there some other set-up option I'm overlooking?
    Thanks in advance for any input.
    Jenny

    Thank you so much for posting your question. I would have never stopped to think that which screen I was trying to record might make a difference. I was having huge issues with a software simulation not capturing all the necessary screen changes (on Monitor 2), but after reading your post, I moved it to Monitor 1, and it's working as it should again.
    You just saved me lots of frustration.

  • Issue with video recording in PhotoBooth

    Every time I record a video clip in Photo Booth I get the following issue. When I click the Stop button (after recording a few seconds of video) and the video clip descends into the tray below, the clip is blank (white) and freezes Photo Booth if I try to play it. If I delete the clip, pull it out of the Trash onto my desktop, and double click it, it will play just fine in a QuickTime window. Any thoughts on this issue would be greatly appreciated!

    Yes, I have just used the normal Video-object together with the normal trick to load Flash Video files with it. Nothing special only with a full URL for the play()-method. I have attached the source code for your convenience. The original files are edited in Premiere Pro CS4 and are based on one original ripped DVD vob file and a newly created Quicktime-based slideshow animation which has then be edited into one using Premiere.
    After that I  have selected the sequence of the Premiere project which I have exported using File > Export which is using Adobe Media Encoder. For the encoding I haved used the Export Settings: "Format FLV | F4V", Codec On2 VP6 and then altered the video size and bitrate so that the file size gets smaller this is for the Alzheimer08.f4v file. The other file used the H.265 Web Medium profile with also the video size and bitrate modified after it got encoded and uploaded to my webserver.
    The original files used by the Premiere Pro project are:
    VTS_01_1.dv
    Type: DV Stream
    File Size: 2.6 GB
    Image Size: 720x576
    Average Data Rate: 3.4 MB/Second
    Compressor: DV - PAL
    Quality: Normal (3.00)
    SLIDESHOW 2.mov
    Type: QuickTime Movie
    File Size: 3.2 GB
    Image Size: 720 x 576
    Average Data Rate: 3.4 MB/Second
    Compressor: DV - PAL
    Quality: Most (5.000)
    Above information is obtained in Premiere Pro by selected Properties-option of the submenu when selecting the file.
    Hopefully you can use this information but I could upload the original Premiere Pro project over the next few days. If you would be interested in it.
    FLA file: http://www.letslearn.it/dropbox/alzheimer.fla

  • Issue with audio recorded playing early on playback

    My system is a follows:
    2 x Quad 2.8 Mac Pro (3,1)
    8GB ram
    OSX 10.9.3
    Logic Pro X
    Sound - Line 6 UX1 / Focusrite Saffire Pro 40 (issue untested with this card)
    The issus - any audio I record (guitar/bass) plays a few milliseconds early (ahead of the beat) on playback. I keep having to move the region back a little to get the audio in time with the click (& no it's not my playing).
    I'm not sure if my setting are wrong or there  is something else going on here...
    I did a google & apple forum search but found nothing - anyone heard of this issue before? Or are my audio setting off?
    I've yet to try with my Saffire but will do so in the next few days...

    Hi Seeren - my recording delay is set to what it has always been - the minimum. To be perfectly honest Im not exactly sure how this should be set...

  • Re: Issue with multiple records loading into cube

    Hello Gurus,
    A report is run on a monthly basis for Billing commissions. Info cube has all the data related to the Billing commission.
    It has a custom field for total commissions for which the data gets populated from the DSO based on the Billing
    document conditions. Look up has been done for the total commissions field. Most of them are showing up
    the right values, but few billing documents are showing up the wrong values.
    I made an attempt by reloading  the effected Billing documents into Info cube, now the code works and
    total commissions are showing up right values. I tried selective deletion and loaded the data for the whole month,
    the billing documents again show up the wrong values. These billing documents show up the right values when
    they are loaded individually.I tried checking if the code was wrong, but it was working when the effected ones
    are loaded individually. Please let me know your suggestions on this. Thanks in advance

    Nanda,
    Please find the start routine below
    Z9SD_O21 = Billing document header
          L_ZUARC like /BIC/AZ9SD_O2300-INV_QTY,
           L_ZUART like /BIC/AZ9SD_O2300-KPRICE,
           L_ZCGU like /BIC/AZ9SD_O2300-KNVAL,
           L_ZCTU like /BIC/AZ9SD_O2300-KNVAL,
           L_ZCNU like /BIC/AZ9SD_O2300-KNVAL,
           L_ZCQU like /BIC/AZ9SD_O2300-KNVAL,
    FORM SELECT_POST_ST
        USING COMM_BILL_NUM LIKE /BIC/AZ9SD_O2100-DOC_NUMBER.
    *         COMM_BILL_DATE LIKE /BIC/AZ9SD_O2100-BILL_DATE.
       IF COMM_BILL_NUM <> /BIC/AZ9SD_O2100-DOC_NUMBER.
    *  OR COMM_BILL_DATE <> /BIC/AZ9SD_O2100-BILL_DATE.
         CLEAR /BIC/AZ9SD_O2100.
         SELECT SINGLE DOC_NUMBER /BIC/ZPOST_ST
         INTO (/BIC/AZ9SD_O2100-DOC_NUMBER,
    *          /BIC/AZ9SD_O2100-BILL_DATE,
               /BIC/AZ9SD_O2100-/BIC/ZPOST_ST )
         FROM /BIC/AZ9SD_O2100 WHERE
          DOC_NUMBER = COMM_BILL_NUM.
       ENDIF.
    ENDFORM. "SELECT_POST_ST
    *$*$ end of global - insert your declaration only before this line   *-*
    * The follow definition is new in the BW3.x
    TYPES:
       BEGIN OF DATA_PACKAGE_STRUCTURE.
          INCLUDE STRUCTURE /BIC/CS8Z9SD_O24.
    TYPES:
          RECNO   LIKE sy-tabix,
       END OF DATA_PACKAGE_STRUCTURE.
    DATA:
       DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
            WITH HEADER LINE
            WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    FORM startup
       TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
                MONITOR_RECNO STRUCTURE RSMONITORS " monitoring with record n
                DATA_PACKAGE STRUCTURE DATA_PACKAGE
       USING    RECORD_ALL LIKE SY-TABIX
                SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
       CHANGING ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    *$*$ begin of routine - insert your code only below this line        *-*
    * fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    * to make monitor entries
    * if abort is not equal zero, the update process will be canceled
    * DELETE DATA_PACKAGE WHERE STORNO = 'X'.
    * DELETE DATA_PACKAGE WHERE /BIC/ZPSTAS = 'A'.
    * CG: 07/02/07 Assign Summarization group for each partner function
    * based on Master Data.
       DATA: LV_LINES TYPE I.
       DATA: LV_RETURN(1).
       DESCRIBE TABLE DATA_PACKAGE LINES LV_LINES.
       IF LV_LINES > 0.
         CLEAR: LV_RETURN, SY-SUBRC.
         CALL FUNCTION 'Z_FIND_SUM_GROUP_2'
           IMPORTING
             MY_RETURN                      = LV_RETURN
           TABLES
             IT_DATAPACKAGE                 = DATA_PACKAGE
           EXCEPTIONS
             GENERAL_ERROR                  = 1.
       ENDIF.
       ABORT = 0.
    *$*$ end of routine - insert your code only before this line         *-*
    ENDFORM.

  • Cfgrid updating issue with multiple records

    I have a cfgrid within cfform, it fetches the records and shown in the screen properly. refer screenshot.
    have a new field "sortfield" as a editable field and updating the record as 1,2,3,4 (instead - 1,6,2,4) but after updated in the db. The datas updated differently and not clearly updating the relevant data in the relevant record in the sort field. value was shuffled sometimes.
    used the below code:
    http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c2 4-7acf.html
    under Update the data source with the cfquery tag

    I have a cfgrid within cfform, it fetches the records and shown in the screen properly. refer screenshot.
    have a new field "sortfield" as a editable field and updating the record as 1,2,3,4 (instead - 1,6,2,4) but after updated in the db. The datas updated differently and not clearly updating the relevant data in the relevant record in the sort field. value was shuffled sometimes.
    used the below code:
    http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c2 4-7acf.html
    under Update the data source with the cfquery tag

  • Project Server 2010 - Issue with correct recording of timesheet actual hours with decimals

    We have Project Server 2010 and are using the timesheet functionality for recording resource times/costs in the schedules.
    It has come to light only recently, that for one user, suddenly the times she is entering are not being summed up correctly. An image of her timesheet and the manage timesheet screens are shown below. Note she entered 9.5 hrs but the total that
    appears in the manage timesheet screen is 9.514hrs.
    If you look at the history of the previous weeks as well, the weird change toi the total hours has occurred in the previous 4 weeks as well.  I have no idea why this has started happening and am not aware of any change to the resource's details (apart
    from a change to her hourly rate).
    Has anyone experienced this before? 
    Thanks
    Peter

    We have this issue and are past the patch that discussed decimal rounding (April 2014, though it was more related to the application of resource rates).  This seems different from that noted rounding problem.
     We have at least three users (out of 625) that have this problem every week and it isn't always the same users.  If we re-enter the time and zero fill the cells for the problem task it will fix it. 
    It is almost like when a user deletes a value that it is leaving residual numbers in the field. 
    Our 2010 server version below which is through Sept 2014 CU:
    14.0.7132.5000 
    Any help on this would be appreciated.
    Thanks!

  • Issue with Smart Recorder

    Hi all - sorry if this is the wrong section.
    Could someone tell me if there's a built in recording duration limit in Smart Recorder? It won't let me record more than 3 hours and 8 minutes (I need to be able to record a 4 hour DJ set live).
    The drive i'm pointing it at has about 120Gb free so it should be ample for 4 hours.
    Any clues??

    Hi,
    You might want to switch to the 1st tab ("Record Now") and select WMA format or WAV format with a lower sampling rate / bit rate so that you can have more than 4 hours of recording (WMA format is preferred). Hope this helps.

  • Preview issue with software recording in Captivate

    i have a software recording w/ intro slides - it look fine in the filmstrip view but after the intro slides (once in software recording) it cuts off a significant portion of the screen from view. I recorded the application window and it was a web based application in case that matters.. Any help is appreciated!

    What recording mode did you selected?
    If it was an Event based recording mode (say Demonstration Mode) it might not have picked the events correctly, hence might not have captured all events?
    You said that you could see slides correctly in Filmstrip, does that mean content from filmstrip is not actually coming while previewing/publishing?
    Thanks,
    Anjaneai

  • Issue with fetching records when SalesForce Date Fields involved

    Using the Events application of Salesforce I enter a record of data.  The record has a Start Date of Monday and an End Date of Friday for a given week.  Crystal will not fetch/display the record in the report.  If I go back and change the Start Date and the end Date to teh same day, the record will print in Crystal.
    Is there some Date flag within Crystal that I need to toggle allowing a record to print based on date ranges?  I don't understand why a record would print when Start and End Date are the same but will not print when different?

    Here is the code....  I have also noticed that there are three fields - Start Date, End Date and Due Date.  Only when all 3 fields are set to the same value within Salesforce will the record print in Crystal.  I have tried removing any reference to the Date fields in the crystal report but its not helping
    www.salesforce.com
    SELECT Name, Id
    FROM   Account
    EXTERNAL JOIN Account.Id={?www.salesforce.com: Event.AccountId}
    www.salesforce.com
    SELECT ActivityDate, CAT_Type__c, Subject, Location, PO_Number__c, CO_Number__c, Is_Closed__c, Description, Submit_For_Invoice__c, Is_Scheduled__c, Status__c, RecurrenceStartDateTime, RecurrenceEndDateOnly, OwnerId, AccountId
    FROM   Event
    WHERE  (CAT_Type__c='Remote Support - Non Revenue' OR CAT_Type__c='Remote Support - Revenue' OR CAT_Type__c='Travel - Non Revenue' OR CAT_Type__c='Travel - Revenue') AND (Status__c='Closed' OR Status__c='Complete - Not Closed' OR Status__c='Open')
    EXTERNAL JOIN Event.AccountId={?www.salesforce.com: Account.Id} AND Event.OwnerId={?www.salesforce.com: User.Id}
    www.salesforce.com
    SELECT LastName, Id
    FROM   User
    EXTERNAL JOIN User.Id={?www.salesforce.com: Event.OwnerId}

  • Issue with RSA3 Records

    Hi,
          I am not getting exact records as in QMEL table. I have 2LIS_18_I3OPER which completely based on QMEL table. I have 260 records in QMEL but in the MC18I30OPR(2LIS_18_I3OPER ) I can see only 4 records in RSA3.
          I have more than 100 different Notifications in QMEL but in the strucuture I have only 4.
         Please give me your valuable solution to fix this problem.
    Thanks
    Dayaker Reddy.

    2LIS_18_I0NOTIF is a LO Cockpit Datasource....you must investigate if you need to initializ this datasource....if this is the case ....thas would be the reason for you loss data.....
    I never used 2LIS_18_I0NOTIF datasource....i have used some other datasources....Stocks 2LIS_03....QM 2LIS_05....and in all cases i had to initialize the datasource before use it.....
    You could initialize the data for you datasource in the same LO Cokcpit transaction in LBIW....you must investigate which data you mus initialize for your datasource
    I hope this helps you
    Regards

  • Issue with clearing previous record while uploading through LSMW

    Hi friends,
    I have created lsmw for hiring action using transaction PA40. i have a tab delimited flat file, when i run the lsmw script the first record is uploaded perfectly. However the upload halts for the second record, coz the previous record still remanins, is there an issue with the recording or do i need to clear anything?. How do i resolve  this one and continue uploading other records.
    Regards,
    Quavi

    Hi Friend,
    In the LSMW, Under the User menu you have Display Read Program and Display Conversion Program select this and open the respective program you feel having problem and put a break point in the Loop statement and debug. I will help you to identify the problem to resolve.
    Rgds,
    Jey

  • Issue with Dataflow Task in SSIS Package

    Hello Everyone,
    I have recently created an SSIS package to Load data from Flat file to SQL Server Table, it was working fine. Now I have bought a new laptop and copied the projects into this new system and changed all the connection managers(Flat files) accordingly. 
    Problem is, when I previously ran the package(With File1) in old laptop and check the distinct count on a table it was perfect, but when I ran the same package with same File on New Laptop, the Distinct count gives me an issue with particular record.
    Eg: Distinct Count with old laptop Run , 10,20,100
          Distinct Count with old New Run , 10,20,100  , 100
    There is a Space being generated for a particular record, when I run the package on new laptop with same File as old one.
    Any suggestions on this, I could not exactly figured out the Issue.
    Please Help.
    Thanks
    Thanks, Please Help People When they need..!!! Mark as answered if your problem is solved.

    You need to tell the responders here how exactly to reproduce your issue and provide the file.
    I do not know how the "distinct count" works.
    Seems to me it appears to be a database issue not SSIS.
    Arthur
    MyBlog
    Twitter
    When I perform the above query on old laptop, this gives me a result set of
    10
    20
    100
    When I perform the Same query on New laptop, this gives me a result set of
    10
    20
    100
    '100  ' (No Quotes please see the spaces generated)
    Thanks, Please Help People When they need..!!! Mark as answered if your problem is solved.
    Can you give us an idea of tasks you're having after the file source?
    Particulary see steps where you are doing some data manipulations.
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page
    I am using simple Flatfile source and oledb destination in here. this is causing issue, all the other tasks after this are loading perfectly except this.
    Thanks, Please Help People When they need..!!! Mark as answered if your problem is solved.

  • Sync issue with Outlook Calendar

    I just got my first BB - the Pearl 8120.  I installed the Desktop Manager v4.6 off the BB web on an XP tablet pc.  I set it up to syncronize with my outlook 2003.  The sync worked fine for the contacts, however, when it started syncing the calendar, it started up saying it was reading from MS Outlook Calendar and read through the items until it reached 2096/13344.  It stalled for about 30-45 seconds and then started up again until it reached 4613.  It stalled again, but started up again.  At record 6089, a message comes up that says "Intellisync - The operation terminated unexpectedly".  I push "ok" and it returns to the desktop manager.  If I push sync again, it comes up and says "Intellisync - unknown error reported".  I have to close out of the desktop manager and restart to have it sync again.  I tried syncing just the notes and it worked fine.  I also sync'd the tasks with no issues.  However, everytime I try syncing the calendar, it bombs out.
    I tried to see if there was a suspicious calendar entry in outlook, but I can't find which entry it is bombing out on (just the number - the entries listed in the log don't appear to be in a specific order).
    I turned off my anti-virus and had the same luck.
    I also went into the advanced section of backup and restore to delete the database (recommendation from BB website technical support), but there are no databases listed at all for the computer databases.
    I have been using hotsync from Palm to sync with my palm.  Active sync is also installed on my system.
    Any ideas?
    Solved!
    Go to Solution.

    Ok- I think I found a solution.  AT&T directed me to a BB document KB01451 which shows you how to turn on advanced logging capability.  Evidently, I had a few records in my Outlook database where the date codes were corrupted for some unknown reason.  I followed the directions to turn on the logging.  Then, do a sync.  After you get the error message, look in the tif.log using notepad and scroll to the bottom of the document.  Within the first few lines, you will see the subject line.  Go into Outlook calendar and go into the advanced find.  Type in the subject line and have the search look for the subject title.  If you have more than one entry with the same name, you can probably figure out the specific record with a location or some other identifying mark.  If not, you need to process all the records you found.  What I did was open up the record - each corrupted record had a reoccurance set.  I went into the reoccurance tab located under tools.  I selected ok and acknowledged the warning it would give me about changes to some events may be changed.  I then saved the appointment.  I then went into the directory of the logs and renamed the logs.  You can also just erase them if you don't want to keep track of them.  By the way, you will probably have to shut down the desktop manager and Outlook in between the errors - you may have to close outlook through the task manager as it gets hung due to the error.  You just have to keep going through the process until you find all the corrupted records - I had 6 in my file of 13k records.  I have no idea why this was happening - the records were from many years ago to a few weeks ago....not a good sign!!  My Palm didn't seem to have an issue with these records, so I don't know why they were an issue with the BB....but I am up and running after several hours of messing with this - hopefully this will help someone else.

  • Bios issues with k8n neo2, turn of memory test, and dmi pool data

    Hey guys.
    I recently flashed my bios to the 1.9's for the K8n neo2 running in my main machine.
    Everything went ok for the most part, though i had some issues with boot record, and boot.cfg file.  That stuff is all worked out now.
    However, with this bios, I constantly get the extended memory test, on my 2 gigs of ram.  The old bios i had, 1.4's, didnt do that.  Is there an option to turn that off?  I cant seem to find it any where?
    My 2nd question is this, after this bios upgrade, my verifying dmi pool data takes longer then it used to, if it even did it before, im not sure, because my boot sequence was much faster.
    How can I get rid of the "verifying dmi pool data" or speed it up?
    Thanks guys

    Tried to used the Bios 1c by Syar's. His bios is nice and easy. Maybe bould solve your problem.BTW do used liveupdate to flashed your Bios or is it manual? Stay away from using liveupdate as it causing a lot problems. Manual is the best way. Refer to my sig for the manual flashing. Here's the location of the files for the Bios 1C. Gd luck.
    https://forum-en.msi.com/index.php?topic=59711.0
    P/S: Create your own rig with details including the PSU and Bios revision and put in your signatures so others can help you.

Maybe you are looking for

  • Performance issues

    Hi, The program(developed by someother person) which was given to me is having performance issue. Its giving RUNTIME ERROR 'TIME LIMIT EXCEEDED'. Can u please suggest me in what way i can improve the performance of the program. please help me in reso

  • How can i export the data to excel which has 2 tables with same number of columns & column names?

    Hi everyone, again landed up with a problem. After trying a lot to do it myself, finally decided to post here.. I have created a form in form builder 6i, in which on clicking a button the data gets exported to excel sheet. It is working fine with a s

  • Sun ONE Directory SDK for C support on RHAs 4.0 and Win 2003 R2

    What version of Sun One Directory SDK supported on RHAS 4.0 and Windows 2003 R2. Please confirm. Thanks, Rahul

  • Why primaru key instace is null

    when i send parameters values of create method (create("suman","kumar")) through client file, it inserts data correctly in table but it gives following error(Table stru:- (id int auto_increment primary key, fname varchar(20), lname varchar(20)):- jav

  • Failed to control Internal Mic volume!

    Hi, I’m trying to run a JAVA application which control Microphone volume. I’ve tested and its working most of the sound device. But I’m facing problem with only SigmaTel which have Internal and External Mic. Only case, if Internal Mic is selected, I