Problem Child of the Century...

So, I've been having problems with myPod for a while (still have an unanswered question: http://discussions.apple.com/thread.jspa?threadID=1684130&tstart=0 ) and two days ago, I just wanted to throw the thing out of my dorm window.
I reloaded songs from my home library onto myPod and came back to college, all happy and content. However, I decided to put more songs onto it that I only had on this computer. So, I plug myPod into my laptop whilst it's waking up from hibernation and all of a sudden, the thing reverts to the wrong date and all my music is missing. Again.
Also, now when I look at the capacity of myPod in the Summary window, I have 13.67 of "other" on the thing. What is going on?!
http://i34.tinypic.com/21lli7k.jpg

If you are set to autosync your Touch it has screwed up your music index on your Touch. You will need to Restore it to reclaim that space and eliminate all the music you loaded from home. After restoring it, go to the summary tab of your Touch in iTunes and tick the box to manually manage your music and apply. In the future you will have to drag the music you want to your Touch and manually disconnect when you are done.

Similar Messages

  • Problem child

    We have a 9 seat xsan network used for video editing. All of the clients can communicate with our controllers with the exception of one. The problem child mount the san volume fine and I can authenticate to the machine for a minute or so after the client starts, but after that I can't. I can still ping the machine on both public and private ports and the san volume remains mounted and usable, but when I port scan I find that none of the ports are open (311 or anything else). I can flush the firewall rules with ipfw and no change. I've tried an xsan reinstall on the machine, but the same phenomenon occurs. The TCP/IP settings for this machine are configured exactly like all the others on the san and DNS is working as it should. Help! I'm really not sure what to do at this point. Any ideas or insight into this problem would be greatly appreciated.

    The problem child has grown up and is now ready to fully participate in san society. FWIW here's what I did to solve the communication errors. Perhaps all or only one of the steps is needed, but I tried everything I could think of to open the ports permanently, and after all of the changes, I restarted the machine and the ports were open continuously.
    First, I forced the MacOS firewall to open the ports by adding servermnrd to the list of apps to allow incoming connections. servermnrd is located in the usr/sbin hidden folder at the root. Second, while the network control panel is open, I deleted the network interfaces preference in the main library/preferences/systemconfiguration/ folder, and closed the control panel, which wrote a new preference. Third, I restarted the machine and flushed the PRAM (hold the opt-command-p-r keys while restarting and wait for a second audio chime). After the restart the ports are open continuously, and the MDC san admin app talks to the client as it should. No more problem child!

  • Had to restore ipod to factory settings child forgot passcode. did restore and trying to set up and keep receivng messagethere was a problem connecting with the server

    How do I fix this message. When trying to set up the  ipod again? There was a problem connecting with the server. please help

    Was this the error?
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server

  • How to add a child at the top of the z-order(above a mobile textinput field)?

    We posted a problem yesterday with PopupManager where in a mobile app, we experience some strange problems, and have had to make our own modal Alert panel to solve the problem.
    The problem now is that if the alert panel is displayed over a TextInput field(mobile android app), the text in the textinput  shows through the Alert panel, and is obviusly higher up in the z-order than our alert panel.
    The alert panel  was added as a child of the main app window, and is as far as we can tell the top level component.
    Since the PopupManager does not have this problem, there must be a way to add our panel so it is displayed over the mobile textinput field.
    Is there any way to accomplish this?
    Thanks,
    Bob
    EDT

    Hi Bob,
    I'd recommend posting for suggestion in the mobile development forum, but if you do suspect this is a bug please go ahead and open a new report at bugbase.adobe.com and include sample code so we can see what's going on.
    Thanks,
    Chris

  • Error #2025:The supplied DisplayObject must be a child of the caller - Removing Object from Array

    Hi guys, I'm pretty new to as3 and I'm trying to make a game where the player supposedly clicks on the stage and 3 towers which I've spawned dynamically should shoot towards the area. Everything works in terms of tower rotation, etc, but the bullets will not be removed from the stage when I exit the level into another scene. The boundary checking is fine, too.
    Here's a part of the code in the Main.as file.
    private function clickTower1(e:MouseEvent):void
    for each (var tower1:mcTower1 in tower1Array)
    var newLaser1:mcLaser1 = new mcLaser1();
    newLaser1.rotation = tower1.rotation;
    newLaser1.x = tower1.x + Math.cos(newLaser1.rotation * Math.PI / 180) * 40;
    newLaser1.y = tower1.y + Math.sin(newLaser1.rotation * Math.PI / 180) * 40;
    newLaser1.addEventListener(Event.ENTER_FRAME, laser1Handler);
    tower1BulletArray.push(newLaser1); stage.addChild(newLaser1);
      private function laser1Handler(e:Event):void
    //Make laser move in direction of turret.
    var newLaser1:MovieClip = e.currentTarget as MovieClip;
    newLaser1.x += Math.cos(newLaser1.rotation * Math.PI / 180) * laser1Speed;
    newLaser1.y += Math.sin(newLaser1.rotation * Math.PI / 180) * laser1Speed;
    //Boundary checking if (newLaser1.x < -50 || newLaser1.x > 800 || newLaser1.y > 600 || newLaser1.y < -50)
    newLaser1.removeEventListener(Event.ENTER_FRAME, laser1Handler); stage.removeChild(newLaser1);
    tower1BulletArray.splice(0, 1);
    I have a function called exitLevel, which basically, as the name states, exits the level when a button is clicked. It worked perfectly before I started coding the bullets.
        private function exitLevel(e:MouseEvent):void
    stage.frameRate = 6;
    gamePaused = false;
    clearLevel();
    gotoAndStop(1, 'exitLevel');
    btnExitLevel.addEventListener(MouseEvent.CLICK, levelSelect1);
      private function clearLevel():void
    stage.removeEventListener(Event.ENTER_FRAME, update);
    stage.removeChild(buttonCreep1); stage.removeChild(buttonCreep2);
    for (var i = creep1Array.length - 1; i >= 0; i--)
    removeChild(creep1Array[i]);
    creep1Array.splice(i, 1);
    //trace ("Creep1 Removed");
    for (var j = creep2Array.length - 1; j >= 0; j--)
    removeChild(creep2Array[j]);
    creep2Array.splice(j, 1);
    //trace ("Creep2 Removed");
    for (var k = tower1Array.length - 1; k >= 0; k--)
    removeChild(tower1Array[k]); tower1Array.splice(k, 1);
    for (var l = tower1BulletArray.length - 1; l >= 0; l--)
      stage.removeChild(tower1BulletArray[l]);
    tower1BulletArray.splice(0, 1);
    After debugging, it says the error is at the end, where i try to remove the child from the stage. What is wrong? Sorry, I'm a beginner at as3 so any answers might have to be spoonfeeding... I'll try to learn and understand, though. Thanks!
    I did take some of the code off of a guide on the web, and I don't understand it totally, so can someone explain to me what this code does as well? What is e.currentTarget? Thanks!
    var newLaser1:MovieClip = e.currentTarget as MovieClip;
    Here's the full .as file if anybody wants to take a look. http://pastebin.com/5ff4BQa5

    Hi, I managed to solve the errors (kind of) by using this code.
    for (var i:int = tower1BulletArray.length - 1; i >= 0; i--)
    if (tower1BulletArray.parent)
    tower1BulletArray[l].parent.removeChild(tower1BulletArray[l]);
    tower1BulletArray.splice(i, 1);
    However, the problem still persists that the bullets stay in the screen after I change the scene. Any solution? Thanks!

  • "Setup encountered a problem while validating the state of Active Directory: Exchange organization-level objects have not been created, and setup cannot create them because the local computer is not in the same domain and site as the schema master. Run se

    Team,
    I am trying to Install Exchange on my Lab, getting below error
    message.
    The Schema Role is installed on Root Domain and trying to install
    exchange on Child domain.
    1 Root Domain - 1 Child domain. both are located on single site.
    “Setup encountered a problem while validating
    the state of Active Directory: Exchange organization-level objects have not been created, and setup cannot create them because the local computer is not in the same domain and site as the schema master. Run setup with the /prepareAD parameter and wait for
    replication to complete.”
    Followed below articles:
    http://support.risualblogs.com/blog/2012/02/21/exchange-2010-sp2-upgrade-issue-exchange-organization-level-objects-have-not-been-created-and-setup-cannot-create-them-because-the-local-computer-is-not-in-the-same-domain-and-site-as-the-sche/
    http://www.petenetlive.com/KB/Article/0000793.htm
    transferred the schema roles to different server on root domain, still no luck.
    can someone please help me.
    regards
    Srinivasa k
    Srinivasa K

    Hi Srinivasa,
    I guess, you didn't completed the initial setup schemaprep and adprep before starting the installation. You can do it as follows:
    1. Open command Prompt as administrator and browse to the root of installation cd and run Setup.exe /PrepareSchema /IAcceptExchangeServerLicenseTerms
    After finishing this,
    2. Setup.exe /PrepareAD /OrganizationName:"<organization name>" /IAcceptExchangeServerLicenseTerms
    3. To prepare all domains within the forest run Setup.exe /PrepareAllDomains /IAcceptExchangeServerLicenseTerms. If you want to prepare a specific domain run Setup.exe /PrepareDomain:<FQDN of the domain you want to prepare> /IAcceptExchangeServerLicenseTerms
    4. Once you complete all of the 3 steps, install the pre-requisities for Exchange 2013
    5. Finally, run the setup program
    Hope this will help you
    Regards from Visit ExchangeOnline |
    Visit WindowsAdmin

  • Problem in designing the complex report for the client requirement

    Post Author: venkateshvarakala
    CA Forum: General
    Hi,
    I have problem in designing the report (Crystal Report 9.0) with multiple groups wih a sub report in each group with a a group header and footer with a
    detail section in each report.
    My requirement is as follows.1) Xxxx-sub reportwill have one header conetnt and footer content and detail ection in the middle grouped on one parameter2) Yyyyysub reportwill have one header conetnt and footer content and detail ection in the middle grouped on one parameter3) Zzzzzsub reportwill have one header conetnt and footer content and detail ection in the middle grouped on one parameter4)ABCdsub reportwill have one header one footer in group headers grouper on two prameters, My requirement demands customised detail section i.e.static conetent followed by detail section and a static conetnt(which should not repeat with child table records,should come only once with the a record and
    s) and detail section.
    example:
    main table of the sub report 4 has records m1,m2,m3,m4... and child table has
    m1c1m,m1c2,m1c3,m1c4,m2c1,m2c2,m2c3,m2c4,m3c1,m3c2,m3c3,m3c4,m4c1,m4c2,m4c3,m4c4...
    The staic content should come only with m1,m2,m3,m4 not with m1c1,m1c2....like this I need in two places in the same report which may have 500 recors printed in single report.
    all the above section should be suppressable with a condition including the top 3 reports.
    I am able to get the top 3 reports as per the requirement but my forth sub report is getting displayed after each sub-group 1,2,3 which is not happening with
    1,2,3. Only 4th set is repeating with 1,2,3.
    THis report is attached with 6 datasets.
    I linked the main report main table with 1,2,3 (main Table) report filling table but when I am trying to link the 4th table main table  I am able to link but
    I am not getting the result on the report.All the dataset has the one common column. sub report 1,2,3 are filled with common datasets with condition suppressing where as 4th report is filled with
    different results .
    1) My question is why the 4 the report is report is repeating with 1,2,3 why 1,2,3 are coming as expected.2) Is it possible to create
    Please help me in designing the report as per the requiremnt and suggest me if I need any design modifictions.
    Your suggestions and inputs are highy appreciated.Thanks for sparing time in going through my problem and I will be grateful if give solution and share if you have similar experiences.
    Thanks
    Venkatesh Varakala.

    If you create a multiprovider with the two ODS you won’t have this problem.
    Hope it helps.
    Regards.

  • Cannot remove display object: must be child of the caller

    ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
    at flash.display::DisplayObjectContainer/removeChild()
    at working_loader_container3_fla::MainTimeline/frame4()
    at flash.display::MovieClip/prevFrame()
    I have been getting this error after a bunch of different ways of trying this.  I am attempting to create a new instance of my movieclip which displays external images via xml. I want a new instance of the movieclip every other frame and need to be able to remove each instance on every other frame.  It will work going forwards, with a remove child call but as soon as I go back a frame, the error pops up.
    I tried using an if statement, but to no avail.
    I have attched an extremely rudimentary example of my issue, any help would be appreciated. The problem is best illustrated at frame 4 layer 2.

    Thanks for the help.  I finally got it to work. Below is what I put on the top layer.  I called the addChild() method after creating a new instance of my MovieClip class on each frame I wanted the images to appear on the second layer. Not the most elegant of solutions but worked.  (I'm a rookie.)
    next_btn.addEventListener(MouseEvent.CLICK, goNext);
    back_btn.addEventListener(MouseEvent.CLICK, goBack);
    function goNext(event:MouseEvent):void {
    nextFrame();
    if(currentFrame == 2)
    removeChild(container_mc);
    if(currentFrame == 4)
    removeChild(container_mc3);
    function goBack(event:MouseEvent):void {
    if(currentFrame == 3)
    removeChild(container_mc3);
    if(currentFrame == 5)
    removeChild(container_mc5);
    prevFrame();

  • Problem while reconciling the subcontracting purchase order

    Dear Sir,
           I am facing a problem while reconciling the subcontracting purchase order.
           Scenario : My subcontract PO is for 3 Nos of part A(finished goods)  & for which we sent 10 kg of child part B to the    
           Vendor.
           We did the GR partially i.e. 1 Nos at a time against which child part B is consumed as 10/3= 3.333333kg.
           After all the part are received, Vendors stock for part B still show 0.00000001kg. Hence we are not able to reconcile the
          full quantity.
         Is there a process to reconcile the remaining quantity. Please Advice.
    Thanks in Advance,
    Ritesh.

    Hi,
    There are two ways of handling this.
    1. TC:MB1B create a material document for reversing the vendor stock of 0.00000001kg using movement type 542.
    2. TC:J1IFQ reconcile the challan w.r.t above material document.
    3. TC:J1IF13 complete the challan
    4. Stock of 0.00000001kg from the plant can be corrected by physical inventory process citing the reason
    OR
    Cancell the last material document & challan assignment. Redo the GR (you can change the quantity of child manually to 3.333334 Kg)
    However, this situation can be avoided during MIGO itself. In the last GR when the system proposes child part quantity as 3.333333 Kg, you can change the quantity manually to 3.333334 Kg. 
    Regards,
    Krishna A S V

  • I have downloaded ios7.1 but the folders and the bar below have a grey color not transparent or even a blur color like all the iproducts (i have iPad 3) the problem was after the iOS7.1!! What shall i do?

    I have downloaded ios7.1 but the folders and the bar below have a grey color not transparent or even a blur color like all the iproducts (i have iPad 3) the problem was after the iOS7.1!! What shall i do?

    The following line tells me that this is not a template file, but a document created from a template called index.dwt
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    This means that you saved a child document as a template file at some stage.
    If you go to Modify->Templates->Detach from Template, you can remove the template structure from your document. All you then need to do is to re-save the document as a template.

  • Why can I not set a member attribute when there is only one child below the member?

    Why can I not set a member attribute when there is only one child below the member?The "member attribute" tab on the properties window of App Manager is grayed out. What am I forgetting?TIA,Craig Wahlmeier

    Most likely because Essbase is creating an implicit share relationship between the two members, which is causing the association tab to be grayed out. Tag the parent member with the "Never Share" attribute and see if that fixes the problem.Regards,Jade-----------------------------------Jade ColeSenior Business Intelligence ConsultantClarity [email protected]

  • Problems with software the update with Nokia 6233

    Problems with software the update with Nokia 6233
    Hello,
    I have so far some-paints tries my software to update.
    Each time the update procedure begins, sometime stands then on the telephone “test mode”.
    On the computer wars I the reference in the update manager “connection to the telephone broken off” and wants the update to again start.
    If I change my profile attitudes since that for example, then after a telephone restart again deleted.
    What there can I make?
    GreetingsMessage Edited by adisaily on 24-Aug-2007 09:03 AM

    It sounds like your 5800 has the earpiece fault that was common with 5800's made before February.
    You need to take it to a nokia care point for repair under warranty.
    Care points/service centres and repair info:
    UK • Europe • Asia-Pacific • USA •
    Canada • Middle East and Africa
    Elsewhere: Click here, select your country, go to the support section, then select repair.

  • Problem in displaying the TaxRate columns .

    Hi Experts,
                            I am having a problem in displaying the 'TaxRate', in this Query there are some different Taxrate's columns  like-  ' 'Basic Excise Duty BED@10 %',  ' Education ces@2% ' , 'Secondary Education Cess @1%',    etc.   only  4 -5  tax's value should display  at a  time  and rest of  the TaxRate's  columns whose value is NULL  should not display.
    So, I want to display only those TaxRate's  columns whose  value  is not NULL  and If there is  no value for any taxrate's column  in the data, then it should Display only 'Excempt' column.
    This is my query...
    SELECT DISTINCT OSTA.Code , ORPC.DocNum AS 'Debit Note No.', ORPC.CardName AS 'Name', ORPC.CardCode AS 'code', ORPC.NumAtCard AS 'Supplier Ref.'  ,
                          RPC1.Dscription AS 'Description of Goods', ORPC.Address, RPC1.Quantity, RPC1.Price AS 'Rate', RPC1.LineTotal AS 'Amount', ORPC.DocDate,
                              (SELECT DISTINCT TaxRate
                                FROM          RPC4
                                WHERE      (staType = - 90) AND (StaCode = 'BED@10') AND (DocEntry = RPC1.DocEntry)) AS 'Basic Excise Duty BED@10 %',
                             (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_8
                                WHERE      (staType = - 60) AND (DocEntry = RPC1.DocEntry)) AS 'Education Cess @2%',
                             (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_7
                                WHERE      (staType = - 55) AND (DocEntry = RPC1.DocEntry)) AS 'Secondary Education Cess @1%',
                             (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_6
                                WHERE      (staType = 4) AND (StaCode = 'CST2') AND (DocEntry = RPC1.DocEntry)) AS 'Central Sales Tax(CST)',
                             (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_5
                                WHERE      (staType = 1) AND (StaCode = 'VAT4') AND (DocEntry = RPC1.DocEntry)) AS 'Input VAT@5%',
                              (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_4
                                WHERE      (staType = 1) AND (TaxRate = 12.500000) AND (StaCode = 'VAT12.5') AND (DocEntry = RPC1.DocEntry)) AS 'VAT12.5%',
                           (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_3
                                WHERE      (staType = 18) AND (StaCode = 'Add2') AND (DocEntry = RPC1.DocEntry)) AS 'ADD Tax 1%',
                                  (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_2
                                WHERE      (staType = 7) AND (DocEntry = RPC1.DocEntry)) AS 'Excempt'
    FROM         OSTA INNER JOIN
                          RPC4 AS RPC4_1 ON OSTA.Code = RPC4_1.StaCode CROSS JOIN
                          ORPC INNER JOIN
                          RPC1 ON ORPC.DocEntry = RPC1.DocEntry
    WHERE     (OSTA.Code IN ('BED@10','eCess 2%','HeCess 1%','CST')) AND (ORPC.CardCode = 'V00308') AND (ORPC.DocNum = '9220004')
    Kindly help me to solve this problem
    Regards
    Rahul

    Hi rahul,
    Try this:
    SELECT DISTINCT T0.DocNum AS 'Debit Note No.', T0.CardName AS 'Name', T0.CardCode AS 'code', T0.NumAtCard AS 'Supplier Ref.'
         ,T1.Dscription AS 'Description of Goods', T0.Address, T1.Quantity, T1.Price AS 'Rate', T1.LineTotal AS 'Amount', T0.DocDate,
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0)FROM RPC4 WHERE RPC4.StaType = -90 AND RPC4.DocEntry = T0.DocEntry) AS 'Basic Excise Duty BED@10 %',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = -60 AND RPC4.DocEntry = T0.DocEntry) AS 'Education Cess @2%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = -55 AND RPC4.DocEntry = T0.DocEntry) AS 'Secondary Education Cess @1%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 4  AND RPC4.StaCode = 'CST2' AND RPC4.DocEntry = T0.DocEntry) AS 'Central Sales Tax(CST)',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 1  AND RPC4.StaCode = 'VAT4'AND RPC4.DocEntry = T0.DocEntry) AS 'Input VAT@5%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 1 AND RPC4.StaCode = 'VAT12.5'AND RPC4.DocEntry = T0.DocEntry) AS  'VAT12.5%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 18 AND RPC4.StaCode = 'Add2'AND RPC4.DocEntry = T0.DocEntry) AS   'ADD Tax 1%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 7 AND RPC4.DocEntry = T0.DocEntry) AS  'Excempt'
    FROM ORPC T0
         INNER JOIN RPC1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE  (T0.CardCode = 'V00308') AND (T0.DocNum = '9220004')
    FOR BROWSE
    Thanks,
    Neetu

  • I'm trying to set up my Ipod, but when I go to sign in with an apple ID it says 'Could not sign in: there was a problem connecting to the server'.

    I just bought a 3rd generation ipod touch. It was professionally refurbished. I'm trying to set it up, and everything seems to be working fine, until we get to the wifi. I live on campus and our wifi is username and password protected. I signed in and everything seemed to work fine, and in the top left hand corner I have all the bars for wifi. However, when I go to sign in with an apple ID it says 'Could no sign in: there was a problem connecting to the server'. I've tried turning it on and off again, tried signing on to our wifi again, but it all isn't working. What can I do?

    I also encountered the same problem. Try using a different email address or try signing in later.

  • Problem with Installing the Oracle8i PO into Windows ME

    I think I have the same problem as some of you had. Recently, I bought the Oracle Book and it has 3 discs: 1 for Oracle Developer 6 for Win 95 or 98, 1 for Oracle 8i PO (release 8.1.5) for Win 95, also 1 for Win 98.
    My computer had no problem when I installed the Or. Developer. However, my computer won't allow me to install the Oracle 8i PO Win 98 disc. Instead of that, I have no problem of installing the Oracle 8i PO Win 95 disc. After I installed the Win 95 disc with all correct configuration according to the instructions, I can not CONNECT to the database. So, is this mean the Windows ME is compatible with the Win 95 disc? Or my computer is "screw up"? Because I know Win Me is very much the same as Win 98. If I installed the Win 98 disc, it should be ok. Anyway, I installed the Win 95 disc successful, but can not CONNECT.
    So if anyone can help me out, or need a specific error message, I will post up next time. For now, I think I already gave you guys a "head-ache"... sorry.... Thanks all! Wait for your helps guys!

    What drivers are you attempting to install?
    - Peter

Maybe you are looking for

  • User exit in CATS_APPR_LITE

    When transaction CATS_APPR_LITE is executed, the selection is done on the whole population. We want however to restrict the used population: when executing CATS_APPR_LITE, a Time Approver should only see the employees for whom he is allowed to approv

  • Abobe 9: Printing a PDF file using a DOS command

    I have Adobe 9.4.0 on a server and would like to print PDF files using a DOS command. The DOS command we are using is: start Acrord32.exe /T/S/h/O "C:\BO_Archival_Code_Deployment\Print\TINF018_C.pdf" "Lexmark T644 PS3 - 10.192.36.126" With this, we a

  • MB_MIGO_BADI

    Hi Experts, I have implemented badi "MB_MIGO_BADI" in ECC 6.0. I am using method "POST_DOCUMENT" to call another FM 'BAPI_KANBANCC_WITHDRAWQUANTITY'. But since the above BADI is called in Update Task, its giving error at runtime Error Info...   00 67

  • What is meant by Defining Common Data Area ??

    I have seen a code like this .... DATA: BEGIN OF COMMON PART FM06LCS2,         ( All the parameters /select-options are declared here)       END   OF COMMON PART. what is this ??? what for it is used ?????? My requirement is ..... To add one more Par

  • "If" in Formula in Bex

    Hi , I want to create a Formula in which I want to assign a value to a KF if a condition is satisfied... Any advise on how to write "If" statement in Formula in Bex ex: if char1 = "xyz" then KF = 0 Any help...