OnLoadProgress Target

I am trying to set up a loading bar within a movie clip that
is loading an external image.
When I try this code, however:
bigImageListener.onLoadProgress = function(_target:MovieClip,
_loadedBytes:Number, _totalBytes:Number):Void
trace("target = " + _target);
I never get the right path for the target MC. In fact, when I
add
trace("typeof = " + typeof(_target))
I get "typeof = String" as the result. How can that be?
I know that's not the most detailed example of code in the
world,
but has anyone seen anything like this before?
I want to do something seemingly simple like
_target.loadbar._xscale = amt_loaded;
but the _target variable never points to the correct movie
clip.
Thanks.

I solved my own problem (stupidity). My habit of prefixing my
function arguments with an underscore resulted in an argument named
"_target". Obviously that term has other uses in Flash and that's
what was causing my bugs.

Similar Messages

  • Help please! Trying to re-produce an effect I've found!

    I'm in the middle of putting a website together for a client
    and shes asked that this effect be included:
    http://www.designersguild.co.uk
    ......the images changing. I cant work out if its a tween of
    some sort or just a fade.........whether its done in flash or
    photoshop?
    Any help is VERY much appreciated
    thanks
    Rach xxxx
    PS - great forum

    you mean that cross fade? Check out this tutorial:
    http://tutorials.learnflash.com/tutorials/flash/bettertransitionss.html
    I wrote a simple class bellow to do just this, if you want to
    use it, just drop it in your project and and then all you need is
    an empty mc on the stage and the following code:
    //init the crossFadeViewer
    var fadeDuration:Number=1000; //fade duration in ms
    var crossFadeViewer = new CrossFadeViewer(mc, fadeDuration);
    //load image:
    var url:String; //set this to the url of your img
    crossFadevViewer.showImage(url);
    //class CrosFadeViewer
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    dynamic class CrossFadeViewer{
    //private var _target:MovieClip;
    private var _target:MovieClip;
    private var _mask:MovieClip;
    private var _container1:MovieClip;
    private var _container2:MovieClip;
    private var _currentContainer:MovieClip;
    private var _previousContainer:MovieClip;
    private var _movieClipLoader:MovieClipLoader;
    private var _fadeDuration:Number=1;
    public function
    CrossFadeViewer(target:MovieClip,fadeDuration:Number){
    //trace("CrossFadeViewer()");
    _target=target;
    _fadeDuration=fadeDuration;
    //create containers
    _container2 =
    _target.createEmptyMovieClip("_container2",_target.getNextHighestDepth());
    _container1 =
    _target.createEmptyMovieClip("_container1",_target.getNextHighestDepth());
    _movieClipLoader = new MovieClipLoader();
    _movieClipLoader.addListener(this);
    _currentContainer = _container1;
    _previousContainer = _container2;
    public function showImage(url:String){
    //trace("CrossFadeViewer.showImage("+url+")");
    if(_currentContainer == _container1){
    _currentContainer =_container2
    _previousContainer= _container1;
    else{
    _currentContainer = _container1;
    _previousContainer = _container2;
    _currentContainer._alpha = 0;
    _currentContainer.swapDepths(_previousContainer);
    _movieClipLoader.loadClip(url,_currentContainer);
    public function onLoadProgress(target, bytesLoaded,
    bytesTotal){
    //trace("onLoadProgress()"+ bytesLoaded +" / " +
    bytesTotal);
    public function onLoadComplete (target){
    //_currentContainer._alpha=100;
    //trace("onLoadComplete()");
    fadeIn();
    private function fadeIn():Void{
    new
    Tween(_currentContainer,"_alpha",Regular.easeIn,0,100,_fadeDuration,true);
    If you need AS3 version of this, I can share it as well. Hope
    this helps.

  • Multiple Preloaders for Multiple Movie Clips

    Designed in Flash 8, the site's timeline is all in Scene 1
    and is comprised of an introduction, which contains a short video,
    and 6 movie clip categories that the user selects to view. Since I
    want the intro to play as soon as possible, I'd like to limit the
    first preloader to just the video in the intro and not
    _root.getBytesTotal. Then, as the viewer watches this short video,
    the rest of Scene 1 movie clips will keep on loading. After the
    intro, the viewer will choose which of the 6 categories to view.
    These categories are identified with buttons which play the
    particular movie clip. Since I don't know the order of the
    categories they will select, I thought there should be a separate
    preloader for each category. Hopefully, after they view a category,
    the rest of the categories will have loaded and the loading time
    will be nil. The design for the preloader is comprised of a status
    bar and a percent loaded. Is there a way to limit the
    _root.GetBytesTotal to specific frames? I know I could break these
    categories up into separate SWF files but then I loose the
    advantage of one loading while another is being viewed.

    MovieClipLoader is a built in class of functions that will
    allows you to easily load Media (swfs/jpgs) from external sources.
    This will create a MCL object
    var mcl:MovieClipLoader = new MovieClipLoader
    We want the MCL object to receive events for any movie that
    is loaded into the main timeline
    mcl.addListener(this);
    Ok. now we have a movie clip loader that is able to recieve
    events. Since we want to show the progressive download and want to
    do something with that content after it loads, we need to declare
    two event handlers onLoadProgress and onLoadInit. onLoadProgress is
    pretty straight forward. onLoadInit executes it's action as soon
    all of the AS on frame 1 of its time has finished loading. In this
    case, we want two different things to happen. 1st, load the first
    clip and show it.... 2nd, load all remaining clips into the buffer.
    But first, lets declare those next...
    function onLoadProgress( target:MovieClip,
    bytesLoaded:Number, bytesTotal:Number):Void {
    // standard preloader code goes here
    function onLoadInit( target:MovieClip ):Void {
    // display the clip - this will be as easy as just calling
    our loadClip function for the mcl...more on that in a minute
    // If you want something special to happen, i.e. movie fades
    in or a mask is applied to it, you'd do that here.
    Now all we need to do is call the loadClip member function
    for the MovieClipLoader. Just replace the two parameters with the
    location of the swf and then the name of the instance you want it
    to load into
    mcl.loadClip( "myswf.swf", targetMovieClip );
    The other movie clips are now a breeze as well. For each
    button, just add an on(release) or onRelease = function (depending
    on your situation) to just call that mcl.loadClip() line from up
    above. Just change the movie you want loaded.
    Let me know if you need more help...

  • Need help loading .swfs one by one, in specific order

    i have been trying to figure this out for weeks now, and have
    even posted on other forums about this, but nobody seems to be
    willing to help me. i have a main swf, which is the basis for my
    image gallery. once this page loads, a thumbnail should start
    loading with a preloader displaying the precentage loaded. once the
    percentage hits 100%, the image shows up, and the next thumbnail
    starts, and so on. there are 15 thumbnails total that have to be
    loaded. each one should load with a 10 pixel gap all around, and i
    want to have 5 images load per row. i think i need to create empty
    movie clips for each thumbnail to load into, but i'm not sure.
    hell, i don't even know how to code this so it will work correctly.
    would someone be willing to put this together for me? i am a
    beginner actionscripter, and if people simply tell me "add this
    line in so this will happen," i will have no idea what to do, so
    that is why i need the code put in for me. i'm hoping someone here
    is nice enough to do this for me, because being ignored on two
    other forums has made me just want to say "screw it."
    so PLEASE, can someone help me?
    i have uploaded my files into a .zip file. i have only
    uploaded 6 of the pictures, so that i can see if the code (that
    someone will hopefully make) works when i asked for 5 thumbnails
    per row.
    file is located here:
    http://www.arielseri.com/fla_files.zip

    i completely understand. i've actually come up with a
    semi-working solution!
    i have 15 thumbnails total, but when i play the movie, all 15
    load on one line and after 5 show up, the rest go off the stage. i
    would like to set it up so that there are 5 .swfs per row. i have
    one main .swf file, and two .as files. the code for each is as
    follows (the ========== is just to separate the code):
    main .swf code (called test.swf):
    ==========
    fscommand("fullscreen", "false");
    fscommand("allowscale", "false");
    // A container clip for our thumbnails
    var thumbnails_mc:MovieClip =
    this.createEmptyMovieClip("thumbnails_mc",
    this.getNextHighestDepth());
    // An array holding the paths to our thumbnails
    var thumbnailPaths_arr:Array = ["1.swf", "2.swf", "3.swf",
    "4.swf", "5.swf", "6.swf", "7.swf", "8.swf", "9.swf", "10.swf",
    "11.swf", "12.swf", "13.swf", "14.swf", "15.swf"];
    // Our ThumbnailManager
    var thumbnailManager:ThumbnailManager = new
    ThumbnailManager(thumbnails_mc, thumbnailPaths_arr);
    ==========
    ThumbnailManager.as code:
    ==========
    import Thumbnail
    class ThumbnailManager
    private var counter:Number = 0;
    private var root_mc:MovieClip;
    private var thumbnailPaths_arr:Array;
    public function ThumbnailManager (target:MovieClip,
    paths:Array)
    root_mc = target;
    thumbnailPaths_arr = paths;
    (thumbnailPaths_arr.length > 0)? createThumbnail() :
    null;
    private function createThumbnail ():Void
    var thumb:Thumbnail = new Thumbnail(this,
    thumbnailPaths_arr[counter], root_mc, counter);
    counter++;
    public function onThumbnailLoaded ():Void
    if (counter < thumbnailPaths_arr.length)
    createThumbnail();
    else
    ==========
    Thumbnail.as code:
    ==========
    import AsBroadcaster
    import ThumbnailManager
    class Thumbnail
    public var addListener:Function;
    public var removeListener:Function;
    public var broadcastMessage:Function;
    private var thumbnailWidth:Number = 88;
    private var thumbnailHeight:Number = 61;
    private var thumbnailOffsetX:Number = 10;
    private var thumbnailOffsetY:Number = 10;
    private var view_mc:MovieClip;
    private var image_mc:MovieClip;
    private var loader_mcl:MovieClipLoader;
    public function Thumbnail (manager:ThumbnailManager,
    url:String, target:MovieClip, d:Number)
    AsBroadcaster.initialize(this);
    this.addListener(manager);
    render(url, target, d);
    private function render (url:String, target:MovieClip,
    d:Number):Void
    view_mc = target.attachMovie("thumbnail", "thumb_"+d+"_mc",
    d);
    view_mc._x = (d * thumbnailWidth) + (d * thumbnailOffsetX);
    view_mc._y = 0;
    image_mc = view_mc.createEmptyMovieClip("image_mc",
    view_mc.getNextHighestDepth());
    image_mc._x = 0;
    image_mc._y = 0;
    loader_mcl = new MovieClipLoader();
    loader_mcl.addListener(this);
    loader_mcl.loadClip(url, image_mc);
    public function onLoadError (target:MovieClip,
    error:String):Void
    broadcastMessage("onThumbnailLoaded");
    public function onLoadProgress (target:MovieClip, bL:Number,
    bT:Number):Void
    public function onLoadInit (target:MovieClip):Void
    broadcastMessage("onThumbnailLoaded");
    ==========
    can anyone help me out with what code to put where? i have
    uploaded a .zip file which contains all of the files here:
    http://www.arielseri.com/thumbnails.zip

  • MovieClipLoader and checking whether clip was previously loaded

    Hi,
    I'm using a preloader and MovieClipLoader to seemingly good effect and I have an ending sequence to my preloader where it plays out once the target clip is loaded. The ending sequence features within the preloader itself (preloader_mc.endingClip). preloader_mc plays through its frames with:
    function onLoadProgress(target, loadedBytes, totalBytes){
    target.stop();
    target._visible = false;
    var StepUpBytes = totalBytes/100;
    stepFrame = Math.floor(loadedBytes/StepUpBytes);
    if(stepFrame<1){
      stepFrame = 1;
    preloader_mc.gotoAndStop(stepFrame+1); 
    until it gets to 100% and then gets to a frame telling endingClip to play. All good unless the target clip is already loaded. Then what happens is that the preloader jumps to 100% and only plays the ending sequence. I would like to have a way of checking to see if the target clip has already been loaded so as to avoid displaying only this ending portion of the preloader.
    In onLoadProgress I tried:
    if((loadedBytes == totalBytes) && (target._width > 0)){
      preloader_mc.removeMovieClip();
    This isn't working but I'm confused because for each of my targets I have an empty clip and when a new one is loaded, the current one is made _visible = false. I therefore thought the (target._width > 0) bit would work since the empty clip would already house the target? Trace returns zero for width value and returns different values for loadedBytes and totalBytes even if I revisit a freshly loaded clip.
    The loadClip is triggered by an onPress event as described here:
    navMenu.navClip.Section3But.onPress = function  () {
    startPreload("flash/construction.swf");
    function startPreload(url){
      loader_mcl.loadClip(url, ConstructionClip);
    this.enabled = false;
    onEnterFrame = function (){
      PropDevClip._visible=false;
      ProjManClip._visible=false;
      DesignClip._visible=false;
      delete onEnterFrame;

    HI kglad,
    Thanks for the help on this one but I decided to go with a different method in the end since the target clips are relatively small so I went with a simple timing method where if the target is loaded within 500ms (not likely in my part of the world) or obviously if it's already loaded, the visual preloader is not visible since it isn't really needed.
    OnPress calls:
    function startTimer(){
    _global.startingTime = new Date();
    Then within onLoadComplete, I have:
    var elapsedTime = new Date().getTime() - startingTime.getTime();
         if(elapsedTime < 500){
         preloader_mc._visible = false;
         }else{
         preloader_mc._visible = true;

  • Apple Mini DVI to DVI Adapter to connect Win7 tower to iMac / Target Display Mode

    I currently run Windows on bootcamp on the iMac (Mid-2011), although the tasks I perform (3D modelling, rendering and such) cause the Mac to get very hot, and as a result hae a slight burn mark on the LED LCD screen.
    I am buying a Windows machine, and am to uninstall bootcamp and use the Mac purely for OSX, but use the iMac screen as a monitor for the tower using Target Display Mode. My issue is - the Windows 7 tower only has DVI output. And as I understand, the Mid-2011 iMac only supports Target Display Mode via a thunderbolt cable.
    My question is - Will the Apple Mini DVI to DVI adapter allow me to connect the DVI-only tower to the iMac? Thanks in advance x

    Oh, I should mention also that the iMac is the 27" model. Mid-2011 3.4Ghz Intel Core i7 with 4GB RAM and 1TB Harddrive. And ATI HD5450 1GB Graphics.

  • Report  for bom wise target and actual cost as well as qty at line item

    Dear Experts,
    Is there any standard tcode for bom wise target and actual cost as well as qty at line item level for the month.
    there is one tcode s_alr_87013127 but user has to double click in order to get line item details.
    I want to see line item wise breakup/bom wise target and cost cost as well as qty.
    Thanks in advance.
    regards
    RK

    Dear experts,
    I am still looking for a revert.
    regards
    RK

  • Spawn jobs are not getting priority and target servergiven at selection scn

    Hi Abapers,
    I am scheduling main program as a job in backend through FMs JOB_OPEN, JOB_SUBMIT and JOB_CLOSE with priority and target server taken from user at selection screen through SE38,after executing the job,job will generate the spawn jobs (i.e child jobs). The spawn jobs  also be scheduled with same priority and target server from taken user. But after completion of main job execution, the spawn jobs are not generating with same priority and target server taken from selection screen. May be its getting refreshed.
    Please give me an idea how the spawn jobs also have to get the same priority and server of main job?
    Please reply as soon as possible. I need it urgently.

    Hi,
    I have used below statements for ADD EXTRACT and ADD REPLICAT.
    ------Extract
    ADD EXTRACT ext_1, TRANLOG, BEGIN NOW
    -------Data Pump
    ADD EXTRACT pump_1, EXTTRAILSOURCE /app/ggs/trail/local_trail_1/ta, BEGIN NOW
    -------Replicat
    ADD REPLICAT rep_1, EXTTRAIL /app/ggs/trail/remote_trail_1/tb, BEGIN NOW, CHECKPOINTTABLE ogg.tarun_chk
    Yes, i have tried tutorial at Oracle Learning Library.
    Thanks
    Tarun
    Edited by: user8886876 on Feb 12, 2012 9:56 PM

  • Error while updating to target

    Hi Friends,
    Im trying to load the data from the DSO to the cube, while loading the data im getting a error "Error while updating to target CUBE Name".
    when i check the message in error stack im getting this "Value 'Complaints Resolution for Activity ' (hex. '0043006F006D0070006C00610069006E007400730020005200') of characteristic ZWF_NAME BRAIN 60"
    I found a notEe 1148007, this not says that
    "A program to write data is generated for each InfoCube that contains data (type "Standard"). The name of this program is stored in the table RSDCUBELOC.  When you activate an InfoCube again, the name of this program may inadvertently be deleted.
    In the DTP monitor, this error occurs in the "Update" step and message RSBK 241 is displayed: "Error while updating to target G7SD0C05 (type INFOCUBE)"
    I have checked the table RSDCUBELOC and i can see the program entry there and after that i have reactivated the cube and reloaded the data but im still getting the same issue.
    Can anyone pls suggest me how to resolve this issue?.
    Thanks in advance
    BN

    Hi,
    It is issue with the Lowe case letters of a particular info object.  You have to write a routine to convert those lower into upper.
    reason is if you chack IOB properties Lower case might be unchecked and the data you are getting in lower case.
    Let us know the details if you still have any issues.
    Reg
    Pra

  • Error while Importing a Table in To Target Module

    Hi All,
    Iam getting follwong error msg while importing a table in OWB Target Module.
    API4806: Object description is not allowed to be translated before object business name. Please give a translation to the business name first.
    why I am getting this error ?
    Rajesh

    Guys,
    I am able to solve the problem. I think the problem is Language settings difference between Database and OWB repository.

  • Target coupons will no longer print....error message?

    I get this message when I try to print Target coupons now. I have the latest version of Java. I used to be able to print coupons no problem, but something has changed and I don't know how to fix it. I did figure out that the icon represented in the error message belongs to Java VisualVM, but even when I try to open that through Finder, it acts like its going to open by "bouncing" in the dock, but then disappears without opening at all. Any ideas??
    Thanks!

    What is the exact wording of the error message?

  • Creation of Target group.

    Hi All,
    I having one urgent requirement, we have maintained the Ztable for maintaning the information of Vehicles against Business partners.
    The Fields in the said Ztables are Vehicle type, vehicle Reg Number and BP number.
    I want to send the mails using target group to customer who is having Perticular vehicle type for that i have created Infoset using the Ztable, then i have created the data source for target group still i m not getting the desired result !!!!!!
    please anybody tell me that i  missing any of step for above requirement ???
    how to link up the BP to Ztables fields ???
    How to create the said Target group ???   
    Regards,
    Dipesh

    Hi,
    You can try this alternative solution:-
    Instead of maintaining vehicle type etc in Z table, please crate it as "attribute", and assign it to Business Partners.
    You can use CRMD_PROF_BP transaction to assign Attributes to Business partners.
    Based on the attributes , you can subsequently create the "target group".
    Regards,
    PD
    Pl. Reward points if it helps !!

  • Error in creation of target node

    Sender MessageType:
    1 .Root 1..1
      2. Message header 1..1
              3 -code
               3-Name
              3-HeaderNote
    2. Data Range 1..1
          3-No
          3-type
      2. Invoice header 1..unbounded
          3 - Indicator
           3 -invoicetype
           3--invoicecode
           3 -number
           3 -no of line items
           3 -note
           3 *lineitem     1..unbounded
                4 -numb
         4  -type
    Receiver Message type
    1 Root 1..1
    2 * Message header 1..1
              3 -code
              3 -Name
         3-HeaderNote
    2*Invoiceconfirm 1..unbounded
               3-ReqID
              3 -ID
              3 -Typecode
               3-CateCode
               3-Note 
    Mapping : between sender receiver
    2*  Invoice header 1..unbounded          -
    >>&#61664; 2 *Invoiceconfirm 1..unbounded
           3- Indicator                                 -
    >>&#61664; 3-ID
           3 -invoicetype                             -
    >>&#61664; 3-Typecode
           3--invoicecode                            -
    >>3 -CateCode
           3 -number                                    -
    >>-&#61664; 3- ReqID
           3 -no of line items                           
           3 -note                                         -
    >>> 3-Note
           3 *lineitem     1..unbounded
                 4-numb
         4  -type
    <u>File Content Conversion:</u>
    Recordsetname: sender root
    NAmesapce: http:
    recordsetStructure : MessageHeader,1,DataRange,1,InvoiceHeader,*
    recordsetpermessage:1
    keyfieldname: keyfield
    <b>Parameters:</b>
    MessageHeader,3,DataRange,3,InvoiceHeader,*,LineItemOfInvoice,11
    MessageHeader.fieldNames = keyfield,Name,HeaderNote
    MessageHeade.keyfieldvalue=1
    MessageHeader.fieldSeparator= ~~
    MessageHeader.endSeparator=’nl’
    <b>DataRange.fieldNames =keyfield,type
    DataRange.keyfieldvalue=2
    DataRange.fieldSeparator =~~
    DataRange.endSeparator=’nl’</b>
    InvoiceHeader.fieldNames: Indicator,keyfield, invoicecode, number, no of line items, note 
    InvoiceHeade.keyfieldvalue=2
    InvoiceHeade.fieldSeparator =~~
    <b>There Is no error in filesender :</b>
    File is getting picked.
    <b>In sxmb_moni:</b>
    Cannot create target element /ns0:Root/ Invoiceconfirm /TypeCode. Values missing in queue context. Target XSD requires a value for this element, but the target-field mapping does not create one. Check whether the XML instance is valid for the source XSD, and whether the target-field mapping fulfils the requirement of the target XSD at com.sap.aii.mappingtool.tf7.AMappingProgram.processNode

    sender structure:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:CN_GoldenTax_SJJK0201FileMessage xmlns:ns0="http://sap.com/xi/AP/Globalization">
       <MessageHeader>
    <b>      <HeaderCode/></b>
          <HeaderName/>
          <HeaderNote/>
       </MessageHeader>
       <DataRange>
        <b>  <NumberOfInvoices/></b>
          <BeginningDateInvoices/>
          <EndDateInvoicesSelected/>
       </DataRange>
       <InvoiceHeader>
          <CancellationIndicator/>
          <GoodsListIndicator/>
          <InvoiceType/>
      <b>    <InvoiceTypeCode/></b>
          <InvoiceNumber/>
          <NumberOfLineItems/>
          <InvoiceDate/>
          <TaxMonth/>
          <BillingDocumentNumber/>
          <NetVATamount/>
          <TaxRate/>
          <TaxAmount/>
          <ClientName/>
          <ClientTaxCode/>
          <ClientAddressPhone/>
          <ClientBankAccount/>
          <SellerName/>
          <SellerTaxCode/>
          <SellerAddressPhone/>
          <SellerBankAccount/>
          <Note/>
          <NameofInvoiceIssuer/>
          <NameofVerifier/>
          <NameofCollector/>
          <LineItemOfInvoice>
             <DiscountRowSymbol/>
             <ProductDescription/>
             <Specification/>
             <UnitsofMeasure/>
             <Quantity/>
             <NetVATamount/>
             <TaxAmount/>
             <TaxRate/>
             <UnitPrice/>
             <ModeOfUnitPrice/>
             <ProductTaxItem/>
          </LineItemOfInvoice>
       </InvoiceHeader>
    </ns0:CN_GoldenTax_SJJK0201FileMessage>
    Receiver structure in Sxmb_moni:
      <?xml version="1.0" encoding="utf-8" ?>
    - <ns:CN_GoldenTax_SJJK0201FileMessage xmlns:ns="http://sap.com/xi/AP/Globalization">
    - <MessageHeader>
    <b> <keyfield>201</keyfield></b>
      <HeaderName>19980201</HeaderName>
      <HeaderNote>2</HeaderNote>
      </MessageHeader>
    - <DataRange>
    <b> <keyfield>2</keyfield></b>
      <BeginningDateInvoices>19980501</BeginningDateInvoices>
      <EndDateInvoicesSelected>19980531</EndDateInvoicesSelected>
      </DataRange>
    - <InvoiceHeader>
      <CancellationIndicator>1</CancellationIndicator>
      <GoodsListIndicator>0</GoodsListIndicator>
      <InvoiceType>0</InvoiceType>
    <b>  <keyfield>1306981140</keyfield></b>
      <InvoiceNumber>00010004</InvoiceNumber>
      <NumberOOfLineItems>1</NumberOOfLineItems>
      <InvoiceDate>19980512</InvoiceDate>
      <TaxMonth>05</TaxMonth>
      <BillingDocumentNumber>96110002</BillingDocumentNumber>
      <NetVATamount>76233.35</NetVATamount>
      <TaxRate>0.17</TaxRate>
      <TaxAmount>11076.66</TaxAmount>
      <ClientName>1</ClientName>
      <ClientTaxCode>321000789010005</ClientTaxCode>
      <ClientAddressPhone>12</ClientAddressPhone>
      <ClientBankAccount>123</ClientBankAccount>
      <SellerName>12</SellerName>
      <SellerTaxCode>130601000000000</SellerTaxCode>
      <SellerAddressPhone>233352051</SellerAddressPhone>
      <SellerBankAccount>2345326113357211</SellerBankAccount>
      <Note>234</Note>
      <NameofInvoiceIssuer>1</NameofInvoiceIssuer>
      <NameofVerifier>2</NameofVerifier>
      <NameofCollector>3</NameofCollector>
      </InvoiceHeader>
      </ns:CN_GoldenTax_SJJK0201FileMessage>
    If I use this in test of mapping : It gives error inovicetypecode not created.
    As u can see it has keyfield in sxmb_moni instaead.
    Howsover if I remove keyfieldwith invoicetypecode It works fine.
    So i think the name is not matched.
    So in conversion parameter how I cann retain the name insted of keyfield.
    As I also want to use the keyfieldvalue to identify a record in file

  • Problem in creation of target with the generated target message

    Hi,
    I’m doing File-to-File content conversion scenario.
    I’m able to see successful message in SXMB_MONI. Target message also created (Request Message Mapping) according the requirement.
    I’m using lastfieldOptional option in source content conversion.
    Adapters are running fine without content conversion failure..
    But the target file is not created.
    Could you pls anyone gives the reason or suggest any other things I need to verify.
    Thanks,
    Venu.

    Hi,
    do you see any errors in adapter <b>message</b> monitor:
    http://hostname:portnumber/MessagingSystem/monitor/monitor.jsp
    Regards,
    michal

  • Can I install to a target disk?

    I was going to help a friend with her machine, a tower G5 but lo and behold, I haven't got an extra monitor and my machine is an iMacG5.
    Can I make hers a target drive and then install the MAC OSX update somehow on her machine?
    I don't know if I can get the combined update (she has 10.2 installed and I want to go to 10.4.10) as an image so I can update her machine via target mode.
    Anyone know about this?

    You could in theory run an update on her machine in Target Disk Mode from yours. However, updaters only works within a release version as denoted by the number after to "10." I.e., her computer is 10.2 (Jaguar) and you are proposing on running the 10.4 (Tiger) updater (it is for 10.4.11 I believe) and the updater won't work. A Tiger updater will only update an earlier version of Tiger, etc.

Maybe you are looking for

  • How to adjust Advance or Payment on Account against an Invoice for Customer

    Hi, I have to adjust, the Payment taken from the Customer as Advance or Payment on Account, against a particular invoice. How can i do the same in the system for the particular customer? Please suggest. Thanks in advance. Rachit Rastogi

  • Sharepoint 2013 changing the width of columns in a list

    Hi,  I would like to know if it is possible to change the width of columns in a custom list in sharepoint 2013. I have tried to load it in Sharepoint Designer 2010, but it will not allow me. Therefore, I can only use SPD 2013. Thanks

  • Entity object control hints not propagating to ui component

    hi there, i have had no problem with entity object label control hints propagating to ui components... but it would appear that if i add the labe lcontrol hint after the view and ui component are in place then the control hint is not proagating to th

  • GTK2 upgrade breaks Firefox 3.6.15

    I am still using Firefox 3.6.15 due to some problems I had with FF4. I am also using KDEMod3. The latest gtk2 upgrade removes the forward/back page arrows from FF. I tried all the fixes on the forum from the last time this happened (November 2010) bu

  • Windows 7 Compatiblity Center and Creative

    Windows 7 compatibility center lists Creative's cards as compatible, this is incorrect. Anyone having issues should visit http://www.microsoft.com/windows/compatibility/windows-7/en-us/default.aspx?and chose "Hardware" in the left dropdown box, then