MFBF Conformation

Dear All.
Here we use z programs for conformation of Rem activated Materials (ZMFBF).
While Doing conformation for REM activated materials, the system allows me to do conformation only once for a planned order even though planned order is still Open.
Scenerio
Planned Order Qty : 100nos
First Conformation qty   : 10nos
After this i am not able to enter conformation again for the remaining qty. The order no is not visible in F4 option in Order No. field. Still if i give the same order no & during saving the data it throughs the message "Enter Valid Order No.". The Conformation report also shows only 10nos is conformed, What happens to the remaining qty, Why the order is getting closed.
Thanks in Advance
Regards,
V.Vinoth

Dear Vinoth,
If using Z - program for confirmation
Then you need to debug the program with help of technical person  and understand the program settings
Check whether the OSP2 settings are incorporated in Z-Program itself
If So check with technical person ( settings how plan orders reduced after confirmation )
Regards
Madhu

Similar Messages

  • Report for conformation cancelled process orders.

    Hi frnds,
    I need a report for orders which have got cancelled of confirmation.
    plz suggest...
    Robert.

    Dear,
    There is no standard report in SAP which shows Report for conformation cancelled.
    But you can check in order it self in COR2 good movement details.
    Or  check document in MB03
    Use CORS to reverse the phases.
    After canceling if you want to view it again then use CORT (here there is one check box named 'Reversed' means that phase is reversed).
    Or Please use user exit
    EXIT_SAPLCORF_404 Process order conf.: Customer specific input checks 2
    Regards,
    R.Brahmankar

  • DUMP in MFBF transcation

    Hi Folks,
    Users getting the frequent dumps in production systems. actaully we observed that dumps are coming when the users accessing the MFBF transaction manually when the batch job was running for backflush and NRIV (number ranges) table is getting locked.
    The dump details is:
    ABAP/4 runtime error DBIF_RSQL_SQL_ERROR
    Occurred on 16.04.2007 at 15:57:10
    >> Short dump has not been completely stored. It is too big.
    SQL error 60 occurred when accessing table "NRIV ".
    What happened?
    The database system detected a deadlock and avoided it by rolling back
    your transaction.
    Information on where termination occurred
    The termination occurred in the ABAP/4 program "SAPLSNR3" in
    "READ_NRIV".
    The main program was "SAPLBARM".
    The termination occurred in line 231
    of the source code of program "LSNR3F01" (when calling the editor 2310).
    The error occurred during batch input processing
    Source code extract
    002010 NRIV-TOYEAR = BNRIV-TOYEAR.
    002020 G_FOUND = YES.
    002030 WHEN 4.
    002040 WHEN OTHERS.
    002050 G_ERROR_IN_BUFFER = YES.
    002060 ENDCASE.
    002070 ENDIF.
    002080
    002090 IF BUFFER_ACTIVE = NO OR G_ERROR_IN_BUFFER = YES.
    002100 * Die Pufferversion ist nicht aktiv oder es wurde bereits
    002110 * ein Fehler im Puffer oder NrKreisServer festgestellt.
    002120 * Gⁿltiges NrKreisIntervall mit Bis-GeschΣftsjahr aus der
    002130 * DB ermitteln
    002140 *
    002150 SELECT * FROM NRIV WHERE OBJECT = P_OBJECT
    002160 AND SUBOBJECT = P_SUBOBJECT
    002170 AND NRRANGENR = P_NR_RANGE_NR
    002180 AND TOYEAR >= P_TOYEAR
    002190 ORDER BY PRIMARY KEY.
    002200 G_FOUND = YES.
    002210 EXIT.
    002220 ENDSELECT.
    002230 ENDIF.
    002240
    002250 IF G_FOUND = YES.
    002260 * Intervall lesen, um zu sperren
    002270 SELECT SINGLE FOR UPDATE * FROM NRIV WHERE
    002280 OBJECT = NRIV-OBJECT
    002290 AND SUBOBJECT = NRIV-SUBOBJECT
    002300 AND NRRANGENR = NRIV-NRRANGENR
    > AND TOYEAR = NRIV-TOYEAR.
    002320 IF SY-SUBRC <> 0.
    002330 MESSAGE E751 RAISING INTERVAL_NOT_FOUND WITH P_OBJECT
    002340 P_NR_RANGE_NR.
    002350 ENDIF.
    002360 ELSE.
    002370 MESSAGE E751 RAISING INTERVAL_NOT_FOUND WITH P_OBJECT
    002380 P_NR_RANGE_NR.
    002390 ENDIF.
    002400 ENDIF.
    002410
    002420 IF NRIV-EXTERNIND <> SPACE.
    002430 MESSAGE E752 RAISING NUMBER_RANGE_NOT_INTERN.
    002440 ENDIF.
    002450
    002460 * L&#931;nge (maximale Anzahl Stellen) der Nummern berechnen
    002470 G_NR_LENGTH = STRLEN( NRIV-FROMNUMBER ).
    002480
    002490 * Nummern in numerische Felder f&#8319;r sp&#931;tere Berechnungen &#8319;bernehmen
    002500 ASSIGN NRIV-FROMNUMBER(G_NR_LENGTH) TO <G_F>.
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0 SY-INDEX 1
    SY-TABIX 1 SY-DBCNT 1
    SY-FDPOS 32 SY-LSIND 0
    SY-PAGNO 0 SY-LINNO 1
    SY-COLNO 1
    Chosen variables
    Any help will get full points.
    Regards
    TAJUDDIN

    Hi Prabhu,
    This problem is in 3.1i for which there is no SAP note. Notes are available for 4.6c.
    Is there any possibility that we can modify the SAP note of 4.6c and implement in 3.1i?
    Regards
    TAJUDDIN

  • DUMP in the MFBF transaction

    Hi Folks,
    Users getting the frequent dumps in production systems. actaully we observed that dumps are coming when the users accessing the MFBF transaction manually when the batch job was running for backflush and NRIV (number ranges) table is getting locked.
    The dump details is:
    ABAP/4 runtime error   DBIF_RSQL_SQL_ERROR
           Occurred on     16.04.2007 at 15:57:10
    >> Short dump has not been completely stored. It is too big.
    SQL error 60 occurred when accessing table "NRIV ".
    What happened?
    The database system detected a deadlock and avoided it by rolling back
    your transaction.
    Information on where termination occurred
    The termination occurred in the ABAP/4 program "SAPLSNR3" in
    "READ_NRIV".
    The main program was "SAPLBARM".
    The termination occurred in line 231
    of the source code of program "LSNR3F01" (when calling the editor 2310).
    The error occurred during batch input processing
    Source code extract
    002010             NRIV-TOYEAR    = BNRIV-TOYEAR.
    002020             G_FOUND        = YES.
    002030           WHEN 4.
    002040           WHEN OTHERS.
    002050             G_ERROR_IN_BUFFER = YES.
    002060         ENDCASE.
    002070       ENDIF.
    002080
    002090       IF BUFFER_ACTIVE = NO OR G_ERROR_IN_BUFFER = YES.
    002100   *          Die Pufferversion ist nicht aktiv oder es wurde bereits
    002110   *          ein Fehler im Puffer oder NrKreisServer festgestellt.
    002120   *          G&#8319;ltiges NrKreisIntervall mit Bis-Gesch&#931;ftsjahr aus der
    002130   *          DB ermitteln
    002140   *
    002150         SELECT * FROM NRIV WHERE OBJECT    = P_OBJECT
    002160                              AND SUBOBJECT = P_SUBOBJECT
    002170                              AND NRRANGENR = P_NR_RANGE_NR
    002180                              AND TOYEAR   >= P_TOYEAR
    002190                       ORDER BY PRIMARY KEY.
    002200           G_FOUND = YES.
    002210           EXIT.
    002220         ENDSELECT.
    002230       ENDIF.
    002240
    002250       IF G_FOUND = YES.
    002260   *          Intervall lesen, um zu sperren
    002270         SELECT SINGLE FOR UPDATE * FROM NRIV WHERE
    002280                                     OBJECT    = NRIV-OBJECT
    002290                                 AND SUBOBJECT = NRIV-SUBOBJECT
    002300                                 AND NRRANGENR = NRIV-NRRANGENR
    >                                 AND TOYEAR    = NRIV-TOYEAR.
    002320         IF SY-SUBRC <> 0.
    002330       MESSAGE E751 RAISING INTERVAL_NOT_FOUND WITH P_OBJECT
    002340                                                    P_NR_RANGE_NR.
    002350         ENDIF.
    002360       ELSE.
    002370       MESSAGE E751 RAISING INTERVAL_NOT_FOUND WITH P_OBJECT
    002380                                                    P_NR_RANGE_NR.
    002390       ENDIF.
    002400     ENDIF.
    002410
    002420     IF NRIV-EXTERNIND <> SPACE.
    002430       MESSAGE E752 RAISING NUMBER_RANGE_NOT_INTERN.
    002440     ENDIF.
    002450
    002460   *    L&#931;nge (maximale Anzahl Stellen) der Nummern berechnen
    002470     G_NR_LENGTH = STRLEN( NRIV-FROMNUMBER ).
    002480
    002490   *    Nummern in numerische Felder f&#8319;r sp&#931;tere Berechnungen &#8319;bernehmen
    002500     ASSIGN NRIV-FROMNUMBER(G_NR_LENGTH) TO <G_F>.
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 1
    SY-TABIX 1                             SY-DBCNT 1
    SY-FDPOS 32                            SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1
    Chosen variables
    Any help will get full points.
    Regards
    TAJUDDIN

    Dear All,
    Notes are available for 4.6c version. This problem is in 3.1i and for this there is no note. Can we modify this 4.6c note and use in 3.1?
    Regards
    TAJUDDIN

  • Quantity is not getting conformed in sales order

    HI SD Gurus,
    i have one issue we are not able to solve i need your help, it is very urgent,
    My issue:we created sales order but quantity was not getting conformed is sales order even though we have enough stock
    but it was consumed the stock in MD04,
    we ran the SDRQCR21 program but issue is still exist,
    1. we checked all the ATP configuration  every thing is fine,
    2.we replicated the scenario in  quality it is working fine
    3.we try simulated in production but not conformed the stock
    4. total stock is in unrestricted only
    5. no block in sales order
    6. same material working fine with different plant
    7. in same plant different materials working fine
    available stock level in MMBE and MD04 is 330 qty unrestricted
    sales order created for 165
    then stock reduced in MD04 to 165,and sales order displayed in MD04 with quantity 165
    but it was not conforming the schedules in sales order(with any dates)
    I am requesting you to reply ASAP if any one faced the same scenario
    BR,
    CS

    Hi CS,
    Please check the stock availability in CO09. If CO09 shows available quantity as zero then the sales order quantity cannot be confirmed.
    Please review SAP Note Number 89362 - No confirmation despite available quantity/stock for further information on this transaction.
    You will also find further information in this document:
    http://scn.sap.com/docs/DOC-58040
    I hope this helps.
    Kind regards,
    Catherine

  • Loops won't conform to tempo

    When I drag a file from iTunes into Garage Band and drag into the loop browser, it won't let me choose Conform to Tempo. It worked the first few times I tried it but now something's changed. Anyone know what happened or what I should do?

    (you also don't want to drag it into the loop browser, you want to use the "add to loop library" menuItem)

  • Solution for: no audio in time line - conforming issues - unspecified error occurred

    these are all the same issue and i have the solution for it.
    Adobe has once again let down the non professional user but ignoring this bug. They have also deleted alot of my other posts on the adobe forums.. perhaps so you cannot receive help from me?? who freakin knows..
    b Problem:
    you import your footage and there is no audio in the time line. you see the audio clip there but no information in it. some people say its because of MPEG format but MPEG files works fine in Windows Movie Maker, Ulead, Pinnacle, Sony Vegas.. etc...
    let it be known that its an Adobe Premiere issue.
    b Solution:
    b step 1:
    close adobe premiere
    b step 2:
    open My Computer and go to tools at the top. From the drop down menu go to folder options. In folder options click the view tab. In the advanced settings section where it says 'Hidden files and folders' make sure 'show hidden files and folders' is selected.
    b step 3:
    open My computer and go to c:\ drive > Documents and settings. Now click into your user name (NOT 'All users') in my case its 'proGamer'. Now click into 'Application Data' > 'Adobe' > 'common' > 'Media Cache Files'.
    b step 4:
    in this folder find the files you were just trying to import by searching the name. in my case its file: 20081217030338. you will now see 3 different file types with the same file name you were importing: CFA, PEK, MPGINDEX. delete them all!
    b step 5:
    go back and open adobe premiere, open up your project again and it will automatically recreate those files you just deleted. hopefully correctly.
    b NOTE:
    If this hasn't worked then open your adobe premiere project, clear all trace of the files with no audio and start again from step 1. then after step 5 just import the files back into your project.
    This has proved to work with every file i've imported that had the audio not conformed.
    b your second option:
    simply play your clip in WMV or VLC or what ever player you use and record the audio in real time in stereo by using some music editing like cubase or logic audio. you can also use something more friendly like 'recordpad' found here: http://www.nch.com.au/recordpad/screenshots.html now you can buy it from these guys or get it how ever else you like
    lemme know how u go

    dmd,
    I've read plenty of places that they know about the bug and are going to fix it. Will from Adobe said so in a few older posts. It's also listed as an issue in the 4.0.1 readme.
    I agree that this is the most screwed up Adobe release ever but I doubt they're deleting your posts to hide it. Never know though.....
    "Adobe has once again let down the non professional user but ignoring this bug" I actually wish Adobe would forget the consumers and make Premiere Pro more friendly to professionals. Dozens of multimillion dollar movies have been edited with Avid and Final Cut over the past few years. Adobe doesn't put forth any effort make Premiere a pro application. Because they pander to the consumers and prosumers they end up messing up the product for everybody.
    Premiere Elements is for consumers, Premiere Pro should be for the 'Pros'

  • Are different frame rate clips automatically conformed to that of the project?

    I have a 25p project and have dropped in some clips shot at 30p.
    I thought I would have to conform those clips to play at 25p but they appear to be doing that already and to my surprise there is no orange render line above them.
    Is this correct and if so, would any other frame rates (50p or 60p etc.) be conformed to 25fps with no rendering required?

    YYes, clips conform to the project frame rate.

  • Using two facts of two different star schemas and conformed dimensions

    Hi,
    I've been working as developer and database designer for years and I'm new to Business Objects. Some people says you can not use two facts of two different star schemas in the same query because of conformed dimensions and loop problems in BO.
    For example I have a CUSTOMER_SALE_fACT table containing customer_id and date_id as FK, and some other business metrics about sales. And there is another fact table CUSTOMER_CAMPAIGN_FACT which also contains customer_id and date_id as FK, and some  other business metrics about customer campaigns. SO I have two stars like below:
    DIM_TIME -- SALE_FACT -- DIM_CUSTOMER
    DIM_TIME -- CAMPAIGN_FACT -- DIM_CUSTOMER
    Business metrics are loaded into fact tables and facts can be used together along conformed dimensions . This is one of the fundamentals of the dimensional modeling. Is it really impossible to use SALE_FACT and CAMPAIGN_FACT together? If the answer is No, what is the solution?
    Saying "you cannot do that because of loops" is very interesting.
    Thank you..

    When you join two facts together with a common dimension you have created what is called a "chasm trap" which leads to invalid results because of the way SQL is processed. The query rows are first retrieved and then aggregated. Since sales fact and campaign fact have no direct relationship, the rows coming from either side can end up as a product join.
    Suppose a customer has 3 sales fact rows and 2 campaign fact rows. The result set will have six rows before any aggregation is performed. That would mean that sales measures are doubled and campaign measures are tripled.
    You can report on them together, using multiple SQL passes, but you can't query them together. Does that distinction make sense?

  • Re-Conforming and Audio Bug nightmares

    Hi,
    First, let me say that I've searched throughly about those problems before I came in here.
    I own a company and we used to use FCP7 to edit our weekly show.
    I've moved all suites to Premiere CC 7.2.1
    Our workflow is a bit different than before, since PP can handle original files, in our case .mts sony AVCHD FullHD from FS700, NX70 a Handycam and the MP4 from GoPro Hero3.
    Our main problems right now have been:
    Re-Conforming:
    I've searched about this and these are the possibles solutions
    - Turn the creation of XMP off
    - Disable XMP metadata linking
    - Direct the cache and database files to the same external harddisk that our media is in
    - Direct the scratch disk to the same Harddisk as the media.
    - Media been on a Network volume and Computer clock / daylight saving time shifting.
    - Before opening a project in a different machine, make sure to redirect (to find) the cache to the disk your using
    I must say everything above was tested and dealt with but still. We have seen projects re-conforming by it self everytime we open PP. It normaly happens when moving from computer to another one. But sometimes happens on the same machine, between two days apart, with nothing different.
    And the re-conforming takes a lot of time.
    Audio Bugs:
    Sometimes the waveform doesn't show up. Now this has a workaround, just go to clip > audio options > re-render audio. But it's annoying.
    And more serious sometimes we got an audio looping 1sec over and over, even though the original is perfect, trying to re-render doesn't help. re-importing the clip doesn't help. Only deleting ALL the preview files (because you can't know which is which) that works.
    Is there anyone with solutions (definitive) for these problems?
    Regards

    Hi Jim,
    As I said, I'm using external USB 3.0 drives. No Network drives whatsoever.
    All these:
    System
    Projects
    Cache/Scratch
    Media
    Exports
    Are in the USB 3.0 Harddisk.
    If you are refering to the same drive as the OS that's not a solution as in some machines I have 160GB SSD.
    Cheers,

  • Why do I have to conform?

    I hope someone here can shed some light on my problem. I'm putting together an assemble edit for CG short that I'm help out on. We're in the process of locking each shot down to the exact frame count - which is where my problem comes in.
    The animatics that i'm being given are at 60fps encoded in Cinepak. The final delivery of the project is going to be 720p at 30fps. Whilst we edit the shots I've been putting the 60fps animatics straight into a 30fps sequence and all was going swimmingly until we came to lock down the frame count for each shot.
    When I import these animatics in my Bin in Final Cut Pro (I'm using 4.5), FCP seems to think these animatics are at 59.94fps. This is obviously an issue when doing a frame count.
    I have one clip that is eactly 66 frames long (I've counted them in QuickTime just to check) but when I bring them on to a sequence at 60fps in FCP, I seem to loose 2 frames as it's only 64 frames long. I tried converting the movie to 30fps and putting it into a 30fps sequence, but when I import that movie FCP seems to think it's at 30.97fps and instead of it being 33 frames long it's 31 frames long.
    The only way I can get FCP to recognise the animatic at a correct frame rate is to convert it to 30fps and then use Cinema Tools to conform the frame to 30fps. Then when I import it into my FCP project, it's correctly detected as 30fps and the frames are there.
    If I overlay a conformed and unconformed version of this movie in FCP the action doesn't seem to move, I just loose the frames from the end of the shot.
    So the questions I have are this...
    Why do I have to conform a clip to 30fps when it already is at 30fps for FCP to correctly recognise it's frame rate when QuickTime and Compressor seem to recognise the unconformed version as 30fps just fine?
    If I wanted to do a 60fps version how to I conform the framerate when Cinema Tools only can conform upto 30fps?
    And finally, why can't FCP just recognise the framerate of a QuickTime movie?
    I'm doing this all on a PowerMac G5 Dual 2.7Ghz with 2GB or RAM running Mac OS X 10.4.6.
    thanks in advance
    Andrew
    PowerMac 500GHz G4 DP & PowerBook 1.25GHz G4   Mac OS X (10.4.5)  

    Hey David,
    Thanks for your response, I know the workflow is a little unusual but so is the project.
    The reason the animatics are at 60fps is that they are motion captured and that was done at 60fps as they will be later used in a video game. The CG short is essentially a movie using the game assets and as it's 720p, it's 30fps.
    I would have probably gone for image sequences too, but I was working with different shots coming from multiple artists and they are using Maya on Windows which doesn't give you much choice output for the PlayBlasts (Animatics), it seem to like AVIs the best.
    Being that there was multiple revisions of each shot a day, to keep the files manageable we choose to do the PlayBlasts as Cinepak AVIs.
    The edit I was putting together was only ever going to be an assemble edit, so the final frame count for each shot could be determined and then the Maya scenes would be sent to a post house for rendering. The final short would be all the shots in order back to back.
    Hopefully that explains the strange workflow, if you have any tips on improving it if I have to do it again - please let me know.
    I guess the framerate quirks will really be one of those mysteries!

  • Why does Premiere Pro CS5 eat up space on my C drive when it conforms video files?

    Hey everyone. I have Premiere Pro CS5 with the latest update installed. I am running Windows 7 64-bit on a 120GB Corsair SSD drive. I have set my scratch disk video and audio previews to a different hard drive (F: drive). I have three questions:
    1. Why does Premiere eat up space on my C drive whenever it conforms the video files I import into my project?
    2. Where on my C drive can I find the folder that holds all these conformed video files that are taking up space on my C drive?
    3. How do I prevent Premiere from eating up space on my hard drive when it conforms the video files I import into my project? Is there some way to move whatever folder is eating up space on my hard drive when Premiere conforms the video files and tell Premiere to conform the video files on another hard disk so I don't lose precious space on my C drive?
    Okay, that's four questions but, can some please help me on this? Thanks.
    Okay, that's five questions.

    hello,
    i think you need to relocate you media  cache files to a separate drive other than your c: drive.
    in the hardware forum, Harm has done a wonderful job at advising on HDD setup, i think it mentions relocation
    of swap file, media cache, etc.  all which are defaulted to your c: in your user profile
    after relocating to different physical drives (all without partitions) performance usually increases
    Generic Guideline for Disk Setup  by harm
    hope this helps til someone else answers more
    good luck...
    j

  • Is there any way to change audio conforming in preferences?

    Hi
    I am uploading about 4 hours worth of footage for a new project to CS5 Premier Pro, and have found that I can only capture in 10 minute segments as when I capture anything longer due to capture/conform back up that inevitably occurs eventually PP decides that its not responding.
    Does anyone else experience this & is there some way I can turn off the conforming while I am capturing & then capture the whole project at once, like overnight while I am sleeping?
    thanks
    Mandi

    Mandy,
    As Harm points out, Conforming is necessary. What is happening is that the Audio is converted to 32-bit floating-point for accurate editing, and then the PEK (Waveform Display) file is created. You end up with a CFA and a PEK for each Audio Clip, and these will be located where you directed your Scratch Disks (files).
    I can only capture in 10 minute segments as when I capture anything longer due to capture/conform back up that inevitably occurs eventually PP decides that its not responding.
    This is an odd problem, and I think that Harm is correct, that you have an outside issue, causing this. Now, when you say "capture," you do mean "Capture" as from a miniDV tape camera over FireWire using the Capture module in PrPro, don't you? If you are not doing Capture that way, then you are Importing the files. If the latter is the process that you are using, can you give us the full details of those files?
    If the former, Capture, that should be in accordance with the Sequence's Capture settings.
    Good luck,
    Hunt

  • Is there a way to force PE7 to conform/recognize the audio on a file?

    I imported a .m2ts clip but it doesn't see the audio at all.  I've already verified the project settings so I know thats not it.  Is there a way to force PE7 to conform or recognize a file again?

    What is the Audio CODEC used in the muxed MPEG file? G-Spot should give you the full details. Where, exactly, did the files come from?
    PrE and PrPro can often have problems with muxed files. Much of that depends on the exact CODEC used with the Audio. One method would be to demux the file, i.e. elemental streams with video-only and audio-only. Another method would be to rip the Audio from the muxed file with a program like Audacity, and then Import that separately.
    Good luck,
    Hunt

  • Format of the initialization string does not conform to specification starting at index 97 while uploading .xlsx file

    Format of the initialization string does not conform to specification starting at index 97.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.ArgumentException: Format of the initialization string does not conform to specification starting at index 97.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    Since your post is off-topic, I am moving it to the
    off topic forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Maybe you are looking for

  • Duplicates in iphoto

    What is the best wat to get rid of duplicates in iphoto. They pictures were imported over as an untitled event and I already had the pictures in my library.

  • My iMac is freezing constantly

    I have a dual processor iMac that's maybe 4 years old, running Snow Leopard 10.6.8. Lately it freezes up about 6 times a day. Sometimes the cursor will grab onto a filename from a finder directory and display it along with the cursor which continues

  • Ilife backup file type?

    When i use the backup for ilife, it writes the files to some strange file type. does this mean that in twenty years when i try to look at my photos that i will have to have ilife software to open the files? if that is the case then that is fairly poo

  • Resume/restore a running process

    i issue a command within an applescript and at a later time, need to access this new running process to check on its status. is this possible? the command i am issuing is the HandBrakeCLI app which reencodes video's and can take many hours. the comma

  • IDVD project has skips in the music

    I have a 40 minute slide show with 500 photos and music - When I burn to DVD in iDVD I have two problems: 1. There are occaisional skips in the sound track when the music seems to stop for a few seconds then recover. This is ok but unprofessional. 2.