Create remoteObject with ActionScript, not MXML

I want to use remoteObject with ActionScript only, no MXML:
private function initializeRemoteObject():void {
            _remote = new RemoteObject();
            _remote.source = "AMFProxyObject";
            _remote.endpoint = "http://localhost/linktoMyAMFServer";
            _remote.destination = "zend";
            _remote.showBusyCursor = true;
public function getIAllData():void {
            initializeRemoteObject();
            var token:AsyncToken = _remote.getAllDataFromStoryTable();
            //token.result = getDataHandler;
I am stuck here because I don't know the proper syntax to handle the result
private function getDataHandler ()void
///////////////    I just want to convert the MXML code below to ActionScript   \\\\\\\\\\\\\\\\\\\\\\
<mx:RemoteObject id="zendRemoteObject" destination="zend" source="AMFProxyObject"
        endpoint="http://localhost/linktoMyAMFServer"         
        result="resultHandler(event)">
        <mx:method name="getAllDataFromStoryTable" result="getDataHandler(event)"/>
        </mx:RemoteObject>
Thanks very much. This is driving me nuts, particularly since I couldn't find any help online by googling.

Try using a Responder, specifically an AsyncResponder.
   var token:AsyncToken = _remote.getAllDataFromStoryTable();
   var responder:AsyncResponder = new AsyncResponder( resultHandler, faultHandler );
   token.addResponder( responder );
   public function resultHandler( event:ResultEvent, token:Object=null ):void
      Alert.show( "RESULT: "+ event.result as String );
   public function faultHandler( event:FaultEvent, token:Object=null ):void
      Alert.show( "FAULT: " + event.fault.message );
The following documentation may be helpful:
http://www.flexafterdark.com/docs/ActionScript-Responder
I hope that helps...
Ben Edwards

Similar Messages

  • Want to add an image but with actionscript not a s:Image

    hi. i've looked for a good answer but can't seem to find one...i have a few images i want to add to my app at run time and don't want to use a whole lot of <mx:Image> components...just want to do it with actionscript. i get to the point where i've got an Image object and embedded the source of the Image object but don't know how to add the Image to the display list? thx

    on the same issue...i'd like to use some of the functions of the Sprite class....so i've got my image and added that to a Sprite object but can't seem to add the Sprite to any of the spark/mx containers...keep getting this error:
    Main Thread (Suspended: Error: addChild() is not available in this class. Instead, use addElement() or modify the skin, if you have one.)
    spark.components.supportClasses::SkinnableComponent/addChild
    play/init
    play___play_Application1_creationComplete
    flash.events::EventDispatcher/dispatchEventFunction [no source]
    flash.events::EventDispatcher/dispatchEvent [no source]
    mx.core::UIComponent/dispatchEvent
    mx.core::UIComponent/set initialized
    mx.managers::LayoutManager/doPhasedInstantiation
    mx.managers::LayoutManager/doPhasedInstantiationCallback

  • Add states with ActionScript, because MXML states occupying space

    I have my States setup with MXML fine, but I noticed that even though the State is not currently set, it is occupying space and leaving a huge empty gap in my layout.
    I want the State to not occupy the space when it is not the active State.
    I think using ActionScript to dynamically add the State when it is needed will solve the problem. What is the ActionScript code to add States (to replace all the State MXML code below)?
    <mx:Labe text="No State should be visible and don't occupy any space" />
    <mx:states>
    <mx:State name="{displayThisState}">
    <mx:AddChild>
    </mx:AddChild>
    </mx:State>
    </mx:states>
    Thanks.

    I'll recommend you to use a ViewStack instead of States, States in Fx 3 are kinda diffucult to declare and manage as your app grows. Fortunately in the Flex SDK 4 there will be a much simpler syntax to declare states.

  • Create transaction with variant not working

    Hello!
    Here's my issue -- I have a program that, right now, is more of a shell than anything else.  It is to access the HR Logical Database PNPCE, and to help filter the data I pull back, I created a Selection View with a couple of additional fields.  I put the necessary values in these fields and saved it as a Variant.
    All I want to do is create a transaction to run my program and start it using my Variant to fill in these additional fields.  Using SE93, I can create a plain transaction with no problem.  However, if I click the "Start with variant" drop-down field, I get a response that says screen 1000 (my default Selection Screen) has no variants.
    At first we thought there was some client-side things needing configuration, but if I go create a quick-and-dirty program with a single Selection Screen value (no Selection View) and a Variant, SE93 sees the variant with no problems.  So I'm wondering if maybe it has something to do with the fact that I'm using a Selection View.  Unfortunately, I'm so new to ABAP, I'm completely stuck on how to proceed.
    Any suggestions?  Thank you so much!

    Saquib, thank you SO much!  You're right -- that worked.
    As a relative newbie to SAP R/3 and ABAP, I'm new to little quirks like this.  In other examples, the list (F4) does show the variants.  For some reason, this one didn't.  I entered it anyway, saved, and ran the transaction, and it popped up with the fields populated from the variant.
    Again, kudos and thank you so much.  Points duly awarded.

  • X / Y positioning with actionscript not working

    Hi all,
    I've got a panel with id="myPanel".
    I'm trying to move it on the Application canvas to x/y using
    actionscript function:
    public function movePanel():void
    myPanel.x = 100;
    myPanel.y = 100;
    and it doesn't budge.
    I've tried setting autoLayout = "false" in the panel, in the
    panel's parent, etc. Nothing.
    Inside mx:Application I've used
    applicationComplete="myPanel.x = 100; myPanel.y = 100" and it works
    only once, but then I can't move it again using actionscript on an
    event.
    I've made the application layout absolute, and I've also
    tried removing all layout properties to see if that would help, but
    it doesn't.
    I've tried wrapping it in an mx:Canvas and moving the canvas
    by its ID, but nothing.
    I must be missing something obvious, because it seems that it
    should be simple.
    Any pointers are appreciated. Thanks.
    RFX

    yu.wei.qian.07,
    Thank you my friend, for your advice...
    I got it working, but the cause is still a mystery.
    I tested out a new application just for moving around stuff
    and it was working fine, so I went back and tested it again in my
    main application, and it worked with a test button that I placed on
    the canvas and it worked... so I looked a little deeper, and the
    linkbutton that I was first using to call the function had other
    functions in the click event, e.g. click = "function1();
    function2(some parms, some parms); movePanel();"
    The above didn't work... went into pulling hair out mode,
    testing all kinds of different configs like I stated in the above
    posts, then tried the click="movePanel();" by itself, and it
    worked.
    Ok... so then I try click = "movePanel(); function1();
    functon2 ... etc", and it works.
    Soooo, now the behaviour of the click is calling the
    movePanel function first, and it's setting the x/y with no problem,
    and the other functions are still working as before. No idea why.
    No errors reported either.
    Anyway, thanks again for the advice.
    RFX

  • Can't create playlist with music not on computer

    Hi All,
    I have tried a search and so far have not found an answer, hence the post.
    New to iPod.
    -Have successfully transferred all music to iPod from computer and CD collection
    -I imported all CDs via IMPORT CD feature on iTunes, then deleted the imported music off of my computer once music was transferred to iPod.
    I can drag a song to a playlist from iPod library if song exists on computer, but not if the song only exists on my iPod. Am I doing something wrong? I have 100s of CDs...there is no way I can leave all of my imported CDs on my computer hard drive.
    Any help is appreciated...thanks!

    Bob,
    As Larry said already: it is NOT safe to have your music only on your iPod. Unless you can spare the time and import them all over again. Get an external drive. Solves your problem with storage and is a lot safer than having your music on the iPod alone. Read the posts of people with malfunctioning iPods and no back up of their music.
    JJ

  • Can't access object using "id" or "name" if created with actionscript

    How can you register an instance of an object with actionscript so that it's id or name value is accessible?
    I included a simple example where a Button is created using mxml and in the same way it is created using actionscript.  The actionscript object is inaccessible using it's "id" and "name" property.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
                   creationComplete="application1_creationCompleteHandler(event)">
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                protected function application1_creationCompleteHandler(event:FlexEvent):void
                    import spark.components.Button;
                    var asBtn:Button = new Button();
                    asBtn.label = "actionscript";
                    asBtn.x = 200;
                    asBtn.id = "asButton";
                    asBtn.name = "asButtonName";
                    addElement(asBtn);
                    trace("mxmlButton="+this["mxmlButton"].label); // returns: mxml  label
                    //trace("mxmlButton="+this["asButton"].label); // returns runtime error: ReferenceError: Error #1069: Property asButton not found on TestId and there is no default value.
                    //trace("mxmlButton="+this["asButtonName"].label); // returns runtime error: ReferenceError: Error #1069: Property asButtonName not found on TestId and there is no default value.
            ]]>
        </fx:Script>
        <s:Button
            id="mxmlButton"
            label="mxml label"
            alpha="0.8"/>
    </s:Application>

    Hi Dan,
    It is a very rare occurrence when I miss not being able to access an object (object property, really) using the ["name"] notation for objects created using actionscript.
    In MXML the compiler is conveniently adding an attribute to the class with the same name as the id, so you can conveniently refer to it using the [] notation. While we explicitly specify an application container to use, the MXML compiler creates a custom container which is a derivative of the base container and to that it adds properties for the children declared in MXML. I guess it also effectively calls "addElement" for us when  the container is being constructed.
    Your example assumes that using "addElement" to add the button to the application container is the same as declaring a variable (ie property ). It isn't, so there's no point in looking for an property of the name "as3Button" using the [] notation, because it doesn't exist. The container is managing a collection of children in it's display list and that's not the same as being accessible as properties of the container.
    Generally speaking, accessing properties using the ["name"] syntax isn't necessary.
    Paul
    [edit: you may wonder why "addElement" doesn't conveniently also add the "id" attribute to be an property of the container class. Unfortunately, it can't because the container class would need to be dynamic and it's not. A further complication would be that adding properties at runtime would invite naming clashes at runtime with associated mayhem. MXML can do this because the compiler generates the class and can trap name duplication at compile time.
    Great question, BTW.
    -last edit changed my "attributes" to be "properties" in line with Adobe's terminology]

  • Adding mxml form with actionscript

    In my application, I have a form that is generated with an
    accodion and a repeater. The repeater is used to generate the
    number of forms needed based on the number of children in the xml
    dataprovider. Now what I would like to do is to add new forms with
    actionscript and a button. Can this be done? Here's to code:
    <!--Create an accordion for Contacts-->
    <mx:Accordion width="360" height="610" x="837" y="10"
    backgroundColor="#FFD897" cornerRadius="5" borderThickness="3"
    id="contactAccordion" creationPolicy="auto">
    <mx:Repeater id="repeat"
    dataProvider="{populateContactXML}" >
    <mx:Form xmlns:mx="
    http://www.adobe.com/2006/mxml"
    id="contactForm" width="360" height="585" borderStyle="none"
    backgroundColor="#E1E1E1" cornerRadius="5" borderThickness="3"
    label=" >
    <mx:FormHeading id="contactHeading" label="Contact
    Information"/>
    <mx:FormItem label="Contact Type" width="290" x="790"
    y="10">
    <mx:FormItem id="address1Item" label="Address 1"
    width="290">
    <mx:TextInput id="address1" change="onChange(event,
    event.currentTarget.repeaterIndex, 'Address_1')" width="183"
    borderStyle="solid" cornerRadius="5"
    text="{repeat.currentItem.@Address_1}" >
    <mx:Script>
    <![CDATA[
    public function onChange(event:Event, idx:int,
    str:String):void
    populateContactXML[idx]["@" + str] =
    event.currentTarget.text;
    trace("index = ", idx);
    tmptxt3.text = "index = " +idx;
    ]]>
    </mx:Script>
    </mx:TextInput>
    </mx:FormItem>
    </mx:Form>
    </mx:Repeater>
    </mx:Accordion>

    Hi,
    All you need to do is add a node (XMLList) to your
    populateContactXML object (make sure populateContactXML is a
    XMLListCollection and not an XMLList so that binding works
    flawlessly) on the click of a button.

  • Create an image with ActionScript

    How do you create an image with ActionScript? The image is
    located at an url that is not guaranteed to be on the same server.
    I would prefer something that is compatible with previous
    versions of the Flash player.
    If you could point me to some tutorial or show me how it is
    done.
    Thanks

    This is suuuuuuuuuuuuper basic, you just have a movieclip on
    the stage and the URL of any image on the internet/local computer
    function loadImage(imageUrl:String,
    holder_mc:MovieClip):Void{
    holder_mc.loadMovie(imageUrl);
    Fill the two parameters with the 1. image url and 2.
    movieclip that holds the image
    It will load the image into it. Much more in depth tutorials
    and stuff can be found all over the place, just google it.
    Sam

  • I have a new email address. Changed this on my itunes account. On iPhone deleted old icloud account and created new with new email. I have set find my phone to on. When I download music it no longer goes to icloud an does not show up on my iphone.

    I have a new email address. Changed this on my itunes account. On iPhone deleted old icloud account and created new with new email. I have set find my phone to on. When I download music from itunes it no longer goes to icloud an does not show up on my iphone.

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • Question: Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages? - Problem: I have 1400 e-mails with attachments that need to be conv

    Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages?
    - Problem: I have 1400 e-mails with attachments that need to be converted into pdf and the attachments cannot be embeded.
    System: PC Windows 7 using Acrobat X Prof. - Thank you!

    Hi ,
    There is an option of embedding index for faster search while converting email to a PDF .
    However I am not sure that will serve your purpose or not .
    I would recommend you to get in touch with Microsoft support as well .
    Meanwhile I'll work on it and get back to you in case I get a desired solution .
    Regards
    Sukrit Dhingra

  • ORA-27054: NFS file system where the file is created or resides is not mounted with correct options

    Hi,
    i am getting following error, while taking RMAN backup.
    ORA-01580: error creating control backup file /backup/snapcf_TST.f
    ORA-27054: NFS file system where the file is created or resides is not mounted with correct options
    DB Version:10.2.0.4.0
    while taking datafiles i am not getting any errors , i am using same mount points for both (data&control files)

    [oracle@localhost dbs]$ oerr ora 27054
    27054, 00000, "NFS file system where the file is created or resides is not mounted with correct options"
    // *Cause:  The file was on an NFS partition and either reading the mount tab
    //          file failed or the partition wass not mounted with the correct
    //          mount option.
    // *Action: Make sure mount tab file has read access for Oracle user and
    //          the NFS partition where the file resides is mounted correctly.
    //          For the list of mount options to use refer to your platform
    //          specific documentation.

  • With  'BAPI_REQUISITION_CREATE' not able to create service line item

    Hi Experts
    Please help me with this.
    Am working with 'BAPI_REQUISITION_CREATE'. Able to create PR ( with constant data) but the service line item is not seen with ME53N. No error message displayed. Have checked the SAP note 420331.
    The code is as below:
    move '9' to  it_BAPIEBANC-ITEM_CAT. 
    move 'sdfgsdfgdfsg'  to     it_BAPIEBANC-SHORT_TEXT. 
    move 'F' to it_BAPIEBANC-ACCTASSCAT.
    move 1 to       it_BAPIEBANC-QUANTITY.
    move 'M2' to      it_BAPIEBANC-UNIT.
    move '1'  to  it_BAPIEBANC-DEL_DATCAT. "it_file-del_date_cat
      move sy-datum to      it_BAPIEBANC-DELIV_DATE.
      move '100CC' to        it_BAPIEBANC-MAT_GRP.
      move '1CEN'  to it_BAPIEBANC-PLANT.
      move 'CIVIL' to it_BAPIEBANC-PREQ_NAME.
        move '1001' to it_BAPIEBANC-PURCH_ORG.
      move 'P11' to it_BAPIEBANC-PUR_GROUP.
      MOVE 'NB' TO it_BAPIEBANC-DOC_TYPE.
    MOVE 'X' TO it_BAPIEBANC-GR_IND.
    MOVE 'X' TO it_BAPIEBANC-IR_IND.
    CALL FUNCTION 'NUMBER_GET_NEXT'
           EXPORTING
                NR_RANGE_NR = '01'
                OBJECT = 'SERVICE'
           IMPORTING
                NUMBER = v_packno
                RETURNCODE = RCODE.
      it_BAPIEBANC-PCKG_NO = v_packno.
      MOVE '00010' to it_BAPIEBANC-PREQ_ITEM.
      APPEND it_BAPIEBANC.
      CLEAR it_BAPIEBANC.
      move '000001000341'  to  it_BAPIEBKN-ORDER_NO.
      move 'AMINFRA'  to     it_BAPIEBKN-COST_CTR.
      move '0040401100' to    it_BAPIEBKN-G_L_ACCT.
      MOVE '00010' to it_BAPIEBKN-PREQ_ITEM.
      MOVE '01' to it_BAPIEBKN-SERIAL_NO.
      APPEND it_BAPIEBKN.
      CLEAR it_BAPIEBKN.
    move v_packno to IT_BAPIESLLC-PCKG_NO.
    IT_BAPIESLLC-subpckg_no = v_packno + 1 .
    move '0000000001' to IT_BAPIESLLC-LINE_NO.
    move '0000000000' to IT_BAPIESLLC-EXT_LINE.
    MOVE 'sdfgsdfgf'  TO  IT_BAPIESLLC-SHORT_TEXT.
    IT_BAPIESLLC-OUTL_IND = 'X'.
    IT_BAPIESLLC-FROM_LINE = '1'.
      APPEND IT_BAPIESLLC.
      CLEAR IT_BAPIESLLC.
    **service with master
      IT_BAPIESLLC-PCKG_NO = V_PACKNO + 1.
      IT_BAPIESLLC-subpckg_no = 0 .
      move '0000000002' to IT_BAPIESLLC-LINE_NO.
      move '0000000010' to IT_BAPIESLLC-EXT_LINE.
      move '000000000003000193' TO  IT_BAPIESLLC-SERVICE.
      MOVE 'sdfgsdfgf'  TO  IT_BAPIESLLC-SHORT_TEXT. "it_file-DESC(40)
      MOVE 1      TO  IT_BAPIESLLC-QUANTITY. "it_file-QTY
      MOVE 'M2'      TO  IT_BAPIESLLC-BASE_UOM. "it_file-UNIT
      IT_BAPIESLLC-UOM_ISO = 'MTK'.
      MOVE 1      TO  IT_BAPIESLLC-price_unit .
      IT_BAPIESLLC-GR_PRICE = 100.
      APPEND IT_BAPIESLLC.
      CLEAR IT_BAPIESLLC.
    service without master
      IT_BAPIESLLC-PCKG_NO = V_PACKNO + 1.
      IT_BAPIESLLC-subpckg_no = 0 .
      move '0000000003' to IT_BAPIESLLC-LINE_NO.
      move '0000000020' to IT_BAPIESLLC-EXT_LINE.
    move '000000000003000193' TO  IT_BAPIESLLC-SERVICE.
      MOVE 'sdfgsdfgf'  TO  IT_BAPIESLLC-SHORT_TEXT. "it_file-DESC(40)
      MOVE 1      TO  IT_BAPIESLLC-QUANTITY. "it_file-QTY
      MOVE 'M2'      TO  IT_BAPIESLLC-BASE_UOM. "it_file-UNIT
      IT_BAPIESLLC-UOM_ISO = 'MTK'.
      MOVE 1      TO  IT_BAPIESLLC-price_unit .
        IT_BAPIESLLC-GR_PRICE = 100.
      APPEND IT_BAPIESLLC.
      CLEAR IT_BAPIESLLC.
    it_BAPIESKLC-PCKG_NO = v_packno + 1.
    it_BAPIESKLC-LINE_NO = '0000000002'.
    it_BAPIESKLC-SERNO_LINE = '01'.
    it_BAPIESKLC-SERIAL_NO = '01'.
    it_BAPIESKLC-PERCENTAGE = '100'.
    it_BAPIESKLC-QUANTITY = 2.
      APPEND IT_BAPIESKLC.
      CLEAR IT_BAPIESKLC.
    it_BAPIESKLC-PCKG_NO = v_packno + 1.
    it_BAPIESKLC-LINE_NO = '0000000003'.
    it_BAPIESKLC-SERNO_LINE = '01'.
    it_BAPIESKLC-SERIAL_NO = '01'.
    it_BAPIESKLC-PERCENTAGE = '100'.
    it_BAPIESKLC-QUANTITY = 2.
      APPEND IT_BAPIESKLC.
      CLEAR IT_BAPIESKLC.
      CALL FUNCTION 'BAPI_REQUISITION_CREATE'   IMPORTING
         NUMBER                               = REQ_NO
        TABLES
          REQUISITION_ITEMS                   = it_BAPIEBANC
          REQUISITION_ACCOUNT_ASSIGNMENT      = it_BAPIEBKN
         REQUISITION_SERVICES                 = IT_BAPIESLLC
         REQUISITION_SRV_ACCASS_VALUES        = it_BAPIESKLC
        RETURN                               = IT_BAPIRETURN.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    Thnx and Regards
    Ebrahim

    First read [Note 499626 - FAQ: BAPIs in the service procurement|https://service.sap.com/sap/support/notes/499626] and especially  [Note 420331 - BAPI_REQUISITION_CREATE: Template for services|https://service.sap.com/sap/support/notes/420331]
    Regards,
    Raymond

  • A USB thumb drive with data created in Windows is not showing up on my desktop. Do I need a different driver or something?

    A USB thumb drive with data created in Windows is not showing up on my desktop. Do I need a different driver or something?

    OK in order to read those files you will need MS Office for Mac or install MS Windows on your Mac. You can get MS Office for Mac from anyone that sells Apple products. I would suggest the Apple Store, Best Buy, Amazon etc...For help getting the data from the memory stick I'd recommend visiting your local Apple Store or AASP and they can help you move it. It should be as simple as plugging the USB drive into your USB port and then open a Finder Window where you will see the drive on the left  pane. If you don't know what Finder is or how to open a new Finder window you need the sites I've noted below!!!
    Because you are new to OS X I would strongly recommend you bookmark and frequently visit the following web sites:
    Switch 101
    Mac 101
    Find Out How Video tutorials

  • Groups created with dscl not showing in WGM?

    When creating a group "testGroup1" via dscl as follows ...
          Dscl -udiradmin /LDAPv3/mac-mini.local -create /Groups/testGroup1
    The group shows up when running ...
          Dscl -udiradmin /LDAPv3/mac-mini.local -list /Groups
    However, in Workgroup Manager the new created group"testGroup1" does not exist.
    Is there a way to determine where exactly the newly created Group is located?
    I did notice that the Workgroup Manager directory location is /LDAPv3/127.0.0.1.
    Does the 127.0.0.1 have something to do with it?
    Also, if I try to run the following ...
          Dscl -udiradmin /LDAPv3/127.0.0.1 -list /Groups
    I get an error saying "Data source(/LDAPv3/127.0.0.1) is not valid.
    I know it's there because it shows when I run a different tool called Ldapmanager.
    But for some reason it's not showing in Workgroup Manager.
    I was wondering if there is some attribute (or something like that) that must be set when creating the group before it will show in Workgroup Manager.
    Or maybe the server needs to be rebooted before they show? I wouldn't think that would be necessary, unless the users are being loaded when Workgroup Manager loads.
    Any help would be greatly appreciated.
    Thanks,
    Zeek

    Hi David
    There is a configuration that needs to setup to turn on outbound delivery document number update in MD04.
    This means if there is an STO in MD04 which is converted into outbound delivery, MD04 should now show outbound delivery number instead of an STO
    Follow this path and set up the document type of your outbound delivery in it
    Logistics execution -> Shipping -> Basic SHipping Functions -> Availability Check and transfer of requirements -> transfer of requirements -> Determination of Requirement Types using transaction

Maybe you are looking for

  • Error while debugging AIR for IOS app

    I get the following error when attempting to debug my AIR-IOS app on an IPad 2. The weird thing is that the logfile mentioned does not exist. Any ideas? - Abey # A fatal error has been detected by the Java Runtime Environment: #  EXCEPTION_UNCAUGHT_C

  • Problem with using DTW for SAP BO PL11

    Hello, experts! I'm using SAP B1 8.8 PL 11, Microsoft SQL Server 2008 Standard Edition. I have a script, which put data for Item Master Data import into temporary table, after that I want to transfer this data via DTW into SAP B1 database. There are

  • Bapi or function module to update rstgr field in bseg table

    what is the bapi or function module used to update the fields in bseg table particularly "rstgr" field?

  • Can someone please tell me where I can see the history in youtube

    I would like to delete the history in youtube, can someone please help if it is possible?

  • Control file multiplexed RAID question

    2 node RAC. OEL 5. 11.2.0.2 Is there any cause for concern over design issues when placing multiplexed controlfiles on disks with different RAID types? I have FRA, REDO, VOTE and DATA disk groups available to me DATA is RAID 5, the rest are RAID 10.