What is use of PD sub module and  integration swithces in HR ?

Dear SAP-HR Experts .
(a) What are the integration swithces in HR .
like Integeration with in Sub modules of HR.
(b) what is use of PD sub module ?
Some t-codes of PD module , infotypes or Tables .
Plz it is urgent .
Regards : rajneesh

check
V_T77SO there u can find
i will let u know

Similar Messages

  • Simple way to use the Photo Gallery Module and flexslider to create an editable image slider?

    I want to offer an image slider that my clients can easily update themselves through the Admin. Ive researched it alot and I know it can be done using web apps but does my cliently seriously need to pay over $400 a year for the webcommerce option just to have an updatable image slider?? I find that unrealistic. Does anyone know how to set this up using the photo gallery module and "flexslider" so clients on the business marketing plan can have access to a simple and clean editable image slider?
    Any BC experts that can help would be greatly appreicated!
    Thankyou

    Not an expert, but I think what you're looking for is a slider that can get its list of photos from an XML file.  The Photo Gallery module can produce an XML file.

  • SAPGUI_PROGRESS_INDICATOR what is use of this fun module when sending data

    dear ,
    what is use of
    SAPGUI_PROGRESS_INDICATOR  fun module when sending data to FTP SERVER . POINTS MUST BE GIVEN

    Dear ,
    when i am trying to send data in internal table of type charterter declared below(i.e iresult) to FTP SERVER program giving the DATA ERROR = 3 when 'FTP_R3_TO_SERVER' fuction module is exected and file it not creating in ftp server . plz help me pointS must be given .
    the FTP_CONNECT ,FTP_COMMAND function modules are executing properly giving handle 1 and its sy-subrc = 0 .
    when 'FTP_R3_TO_SERVER' is executed it is giving SY-SUBRC = 3 ( DATA ERROR ) i.e it is failing to out internal table data in FTP SERVER . PLZ HIDE ME ITS URGENT .
    THIS IS CODE I USED .
    DATA : BEGIN OF iresult OCCURS 5,
    rec(450),
    END OF iresult,
    DATA :
    dest LIKE rfcdes-rfcdest VALUE 'SAPFTP',
    compress TYPE c VALUE 'N',
    host(64) TYPE c.
    DATA: hdl TYPE i.
    DATA: BEGIN OF result OCCURS 0,
    line(100) TYPE c,
    END OF result.
    DATA : key TYPE i VALUE 26101957,
    dstlen TYPE i,
    blob_length TYPE i.
    host = p_host .
    DESCRIBE FIELD p_password LENGTH dstlen IN CHARACTER MODE.
    CALL 'AB_RFC_X_SCRAMBLE_STRING'
    ID 'SOURCE' FIELD p_password ID 'KEY' FIELD key
    ID 'SCR' FIELD 'X' ID 'DESTINATION' FIELD p_password
    ID 'DSTLEN' FIELD dstlen.
    CALL FUNCTION 'FTP_CONNECT'
    EXPORTING
    user = p_user
    password = p_password
    host = host
    rfc_destination = dest
    IMPORTING
    handle = hdl
    EXCEPTIONS
    not_connected = 1
    OTHERS = 2.
    IF sy-subrc = 0.
    CONCATENATE 'cd' ftppath INTO ftppath SEPARATED BY space .
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    handle = hdl
    command = ftppath
    TABLES
    data = result
    EXCEPTIONS
    command_error = 1
    tcpip_error = 2.
    IF sy-subrc = 0 .
    CLEAR result .
    REFRESH result .
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    handle = hdl
    command = 'ascii'
    TABLES
    data = result
    EXCEPTIONS
    command_error = 1
    tcpip_error = 2.
    IF sy-subrc = 0 .
    DESCRIBE TABLE iresult LINES lines.
    blob_length = lines * width .
    clear : lines.
    Delete the existing file
    CONCATENATE 'del' ftpfile INTO delfile SEPARATED BY SPACE.
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    handle = hdl
    command = delfile
    TABLES
    data = result
    EXCEPTIONS
    command_error = 1
    tcpip_error = 2.
    *End of deleting the existing file
    CALL FUNCTION 'FTP_R3_TO_SERVER'
    EXPORTING
    handle = hdl
    fname = ftpfile
    blob_length = blob_length
    TABLES
    blob = iresult
    EXCEPTIONS
    TCPIP_ERROR = 1
    COMMAND_ERROR = 2
    DATA_ERROR = 3
    OTHERS = 4.
    IF sy-subrc 0 .
    WRITE 'Error in writing file to ftp' .
    ELSE.
    WRITE 'File downloaded on the ftp server successfully'.
    ENDIF.
    ENDIF.
    ELSE.
    WRITE : 'Path on ftp not found : ' , ftppath .
    ENDIF.
    CALL FUNCTION 'FTP_DISCONNECT'
    EXPORTING
    handle = hdl.
    CALL FUNCTION 'RFC_CONNECTION_CLOSE'
    EXPORTING
    destination = 'SAPFTP'
    EXCEPTIONS
    OTHERS = 1.
    ELSE.
    WRITE 'Could not connect to ftp' .
    ENDIF.
    ENDFORM. " FTPFINANCEACCESS_DOWNLOAD
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF screen-name = 'PASSWORD'.
    screen-invisible = '1'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.

  • WHATS THE USE OF TABLE STRIP CONTROL AND TABLE VIEW CONTROL

    WHATS THE USE OF TABLE STRIP CONTROL AND TABLE VIEW CONTROL

    Subhash,
    You create and distribute a model in BD64. The details of that are stored in this tables.
    A model gives you the details of the sender / receiving systems and what are the message types that are getting transferred between these systems.
    Regarding the IDOC segments issue, can you explaing how are you triggering the IDOC and which message / idoc type you are dealing with.
    Regards,
    Ravi
    Note :Please mark the helpful answers
    Message was edited by: Ravikumar Allampallam

  • Using Attachment Interface in Module and Calling other module conditionaly

    Hi Experts,
    I am currently working with a module where I need to work with attachments coming with emails.
    Can any one please help me , how can I use the different methods of this interface?
    My requirement is to read only the content type of the attachment, taking only the content of the attachment.
    we have two methods in this interface-   getContentType() and getContent() , I think this will serve the purpose.  we have another method  toString() - will this method return the content of the attachment as a  String?
    in the below code fragment-
    Message msg = (Message)inputModuleData.getPrincipalData();
    Payload payload =msg.getDocument();
    will return the main document as XMLPayload.
    can I use this
    Attachment attachment= msg.getDocument();
    and use the method as -
    String str= attachcment.toString(); ---> will this return the attachment content as String ?
    any code fragment for these method in Attachment interface will be helpful.
    I need another help- is it possible to call the adapter module in the next sequence from the previous module code conditionally?
    e.g- I have written I custom module where I need to restrict the processing of the next module ( e,g- payloadswapbean) conditionally? like- the payloadswapbean will called only after certain verification of the attachment other wise it will not be called.
    Request your help
    Thanks to all
    Sugata B Majumder

    Hi All,
    I forgot to update one thing, I am using PI 7.0 SP15, and I am interested only dealing with the the Attachment contents, what I just found that Attachment interface is not possible to use in PI 7.0 as it requires the operational mapping level check - Read Attachment. 
    Is there any way so that the content of attachment can only  be get and the content type of the attachment?
    I want to use this custom module before the payloadswapbean.
    Request your help
    Thanks
    Sugata B Majumder

  • What is use of J1IS in Sales and in j1is why base value is blocked ?

    Hi,
    What is use of J1IS in Sales ?
    tell me procedure why it is used in sales ?
    When these are used ?
    DLFC Factory sales and Stock transfers
    GRPO Goods Receipts
    MATD Material Document
    OTHR Other
    When we used this J1is we gave document reference OTHR and all necessary things but in next screen
    all Material Related fields are empty and base value is blocked why it is blocked ?
    I observe previous documents in that previous documents they used MATD But NOW it is not Taken it is allowed only OTHR.
    Please provide me answers.
    Regards,
    Basha.

    Hi Mandy,
    You can do this:
    On the MDM Console, right click on the Repository -> Properties -> PDF -> Allow invalid PDFs -> Yes .
    Alternatively,
    You can also find some information about it on https://service.sap.com/srm within this link on the left frame go into
    mySAP Supplier Relationship Mgmt --> mySAP SRM in Detail --> SRM 5.0 --> Catalog Content Management --> SRM-MDM Catalog and you will get the document.
    Hope it helped.
    Regards,
    Krutarth

  • What is the Difference between WSN Module and Pioneer

    I am confuse on the usage between LabVIEW WSN Module and LaBVIEW WSN Pioneer in some texts. Please, forum I need clarification on it.
    Ilublessing
    Solved!
    Go to Solution.

    Hello, llublessing,
    It is the same thing. The pioneer name will be removed in the future completely as the product matures. This modules allows you to program using LabVIEW directly on WSN nodes! Hope this helps!
    http://www.ni.com/labview/wsn/
    Cheers
    Corby
    WSN R & D Product Support Engineer

  • Simple question: using mainstage as sound module AND run multi tracks live

    i want to play live, using my mac book pro, mainstage as a sound module while running several (audio) outputs/tracks at the same time. is this possible and how is it done? i don't want to change to ableton live! thx a bunch everyone!

    If doing vocals and latency is a problem, you can also experiment with taking your live (dry) signal direct (if you interface allows this) into your mix, which will be zero latency. Live signal also goes through MainStage to apply effects such as reverb and delay, and you feed the wet only signal to a separate "vocal fx" mix channel.
    Of course, you can't apply plug-in based eq and compression to the realtime signal (or your back to the latency problem), you would have to rely on hardware/mixer for that. I have experimented with this method with good results...
    Others have reported not being bothered by the amount of vocal latency, but I wonder...

  • What to use, to remove finger prints and screen clean

    HI all
    I am wanting to know what the best thing is, to remove finger prints off my MBP and generally keeping the screen clean. I do use that cloth that came with my MBP. Sometimes I need to rub it a few times to remove finger prints, but is there any liquid of spray or anything anyone recommend. Or what would be the best way? I know the manual says use a damp cloth. But I am worried if its damp a little it wont work, or if its too damp it might damage my screen?
    Message was edited by: abz latif

    Here's the "official" word:
    http://support.apple.com/kb/HT3226
    You have to click a few "disclosure triangles" in the document to view the details.

  • What to use to create a picture and video slideshow/presentation?

    I was curious as to what someone would use in order to create a picture and video presentation/slideshow?
    I think that iPhoto does a good job with getting all your pictures in order, and then using the templates and choosing your music to create a slideshow. However, if one wanted to include some video and narration into the slideshow, I imagine that they would need to use iMovie as well.
    I know that you can drop images into iMovie as well, and I think they are automatically given Ken Burns effect, but if you have a lot of images, I think it gets pretty tedious working with all those photos, when iPhoto will already do all of that for you.
    So, long story short. I would like to make a presentation with video and images. I would like to use multiple songs, and possible trim the amount of each particular song down, so there is some sort of mix/flow from one song to the other. I would also like to be able to record a narration and include it in the slideshow. I know that iMovie does a lot of that...I saw the narration feature, and the ability to trim the songs back some, and include more than one song. It also has the ability to choose only the portion of video that I want. So would you pre-create the photo portion of your slideshow in iPhoto, convert it to a movie, and dump it into iMovie? That seems clunky.
    What process would you use? In my mind, I picture using a program that had some sort of timeline in order to be able to fine tune the audio and video, and iMovie has a timeline of sorts.
    Currently running iLife '09.
    Ian

    Ian
    I've been working for the last three weeks on a project like the one you describe. It turns out to be far beyond my limited competence, but I'm committed and have to trudge on.
    Mine may be a little different from yours in that it has the equivalent of 106 "slides." There are twenty video. The "stills" are either text I've made in Word and saved to iPhoto as a pdf doc or photos. I've engaged actors to read the text that goes with most of still-slides. I thought I could create individual slides with the sound 'attached,' string them together and then make a movie out of the Power Point or Keynote slide show.
    Nothing has worked so far.
    iMovie has been a special heartbreaker. I've had at least a half-dozen chats with Apple Care and a couple of trips to an Apple Store to solve one challenge after another.
    I can help with  Ken Burns. Tedious is not a strong enough word, and the 'help' menu is not helpful, because it is Wrong., The controls are NOT the least bit intuitive. In fact, they make no sense - at least to me.
    [I gave up on iMovie the first time because of Ken and the absence of intelligible instructions to make him leave.]
    (1) Not finding the control. "Help" says to click on the crop icon on the tool bar (between mic and i) or to type "C". All I get is the crop function - Ken is nowhere to be seen.
    (2) Finding it. The crop icon that should have been designated is accessible when you select a still photo. The hand icon appears; on the left side there is column of three icons. On top is Crop; the middle is the duration for the still - the default default is "4 s" // the bottom icon is the gear. Click the gear; there are four rows of choices; click the one at the bottom  "cropping, Ken Burns & Rotation". At the top left corner there are three boxes "fit | crop | Ken Burns"// select "Fit" and Ken Burns is turned off. Why is "fit" is the opposite of "Ken Burns"? I don't know.
    Here's a warning and a sad tale. I spent about three days getting the first 64 still/videos/transitions and audio clips assembled the way I wanted them.The audio for 65 went in okay and it looked okay, but nothing would make it play. 66 was okay but not 67 or any subsequent attempt - although the videos after 67 were okay.
    During my final Apple Care conversation the diagnosis was: "corruption." Start over again with a new project!
    I could select, copy and paste the visuals in those three moves, but the audios had to go over one at a time. Since you can't have two projects going at the same time, I'd have to copy one audio clip from the old project, select the new project and wait for it to come up, make the paste, and then wait for the old project to come up.
    So watch out. I gave up on iMovie because the recreation of a new project would be so agonizing and with such a big project, I don't know how to avoid "corruption" for sure, and neither did the guy at Applecare.  I switched to iPhoto, but after a day I realize that it's audio capability requires a process as tedious as trying to redo the iMovie.
    Final Cut Pro is probably the right program but that's a whole other thing.
    bhb

  • What i use to develop complex tree and table in my web application?

    hi guys
    simply most of my work in my web application will be depend on:
    1-tree
    2-table
    i need this tree and table deal with database table (or even tables) must be able to do every thing like add node/row/column, delete, update, drag-n-drop, various object nodes/cells like check-box, list, images...etc
    i used JTree and JTable then stoped because i faced problems in dealing with applet/database, and i really didnt see this is perfect way to do that even i agree that JTree and JTable are excellent objects. i also start using ajax tree but i didnt see it robust to have all this complicated work with database.
    by the way i need also master-detail UI table, but its easy to get this if i have good and flexable table object.
    my rest pages developed by jsp, servlet, javascript, html...etc
    so any suggestion to how i build this tree and table? i also heared about JSF, is it serve me?
    thanks

    so if the only way to use JTree and JTable,There are other ways, but they're not Java and might be more complicated.
    are there
    any links you have discussing dealing database with
    applet by keep applet away from direct connection to
    my database?I'm not aware of links, but it's common sense. You don't want to expose the DB server to the internet, and instead contact a server for authentication that then forwards the request to the DB.

  • Whats the difference between 2x4GB RAM modules and 4x2GB Ram modules?

    I need 8GB of RAM. If I get 4x2GB modules it is a lot cheaper. Is there any difference in performance if I have 4x2GB Ram modules instead of 2x4GB RAM modules? They both provide 8GB? Am I missing something here?

    From MacSales.com:
    Four or More FB-DIMMs installed provides for best performance. FB DIMM technology takes advantage of multiple channel access. Apple recommends the use of 4 or more modules to take advantage of this 256-Bit Wide memory architecture. Modules must be installed in pairs, each module is 64 Bits Wide + 8 Bits for Error Correction (ECC).
    Message was edited by: Russian Passion
    Message was edited by: Russian Passion

  • In r12 What is use of Purge log and Closed system alerts

    Hi
    In r12 What is use Concurrent reqest "Purge logs and Closed system alerts "
    is there any diffrence with "Purge Concurrent Request and/or Manager Data Program"
    we have to purge cm logs and data.
    '

    In r12 What is use Concurrent reqest "Purge logs and Closed system alerts "The concurrent program "Purge Debug Log and System Alerts" (Short name: FNDLGPRG) is the recommended way to purge messages. This program purges all messages up to the specified date, except messages for active transactions (new or open alerts, active ICX sessions, concurrent requests, and so on). This program is by default scheduled to run daily and purge messages older than 7 days. Internally this concurrent program invokes the FND_LOG_ADMIN APIs, which are described later in this document.
    Oracle® Applications Supportability Guide Release 12
    http://download.oracle.com/docs/cd/B40089_09/current/acrobat/120fndsupp.pdf
    is there any diffrence with "Purge Concurrent Request and/or Manager Data Program" This concurrent program is used to purge concurrent requests log/out file, and/or CM log files.
    we have to purge cm logs and data.Use "Purge Concurrent Request and/or Manager Data" concurrent program.

  • Examples for using function modules and BApis.

    My Dear FRNDS,
    I am very new to ABAP. And I have read the documentation for  function modules but i am not that clear to practice them.So I would be very happy if u people share a little bit of ur experience with me.
    Please provide me some examples of all the use cases in function modules and specially exception handling.
    Frnds, i am going to work with bapis so i feel practicing function module will give me a edge.
    and please tell me after calling a BAPI FM why we have to perform   'BAPI_TRANSACTION_COMMIT' and 'BAPI_TRANSACTION_ROLLBACK'.
    .Ur efforts  will be greatly rewarded.
    thx,
    reshali

    Hi,
    Please check this sample codes.
    DATA: BAPI_Z05DOGI_DELIVERY LIKE BAPIOBDLVHDRCON-DELIV_NUMB ,
    BAPI_Z05DOGI_HEADER_DATA LIKE BAPIOBDLVHDRCON OCCURS 0 WITH HEADER LINE ,
    BAPI_Z05DOGI_HEADER_CONTROL LIKE BAPIOBDLVHDRCTRLCON OCCURS 0 WITH HEADER LINE,
    BAPI_Z05DOGI_ITEM_DATA LIKE BAPIOBDLVITEMCON OCCURS 0 WITH HEADER LINE,
    BAPI_Z05DOGI_ITEM_CONTROL LIKE BAPIOBDLVITEMCTRLCON OCCURS 0 WITH HEADER LINE ,
    BAPI_Z05DOGI_RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE .
    CLEAR: BAPI_Z05DOGI_DELIVERY , BAPI_Z05DOGI_HEADER_DATA , BAPI_Z05DOGI_HEADER_CONTROL , BAPI_Z05DOGI_ITEM_DATA ,BAPI_Z05DOGI_ITEM_CONTROL , BAPI_Z05DOGI_RETURN .
    REFRESH: BAPI_Z05DOGI_HEADER_DATA , BAPI_Z05DOGI_HEADER_CONTROL , BAPI_Z05DOGI_ITEM_DATA , BAPI_Z05DOGI_ITEM_CONTROL , BAPI_Z05DOGI_RETURN .
    BAPI_Z05DOGI_DELIVERY = ZMM_WB1-ISSUE .
    BAPI_Z05DOGI_HEADER_DATA-DELIV_NUMB = ZMM_WB1-ISSUE.
    APPEND BAPI_Z05DOGI_HEADER_DATA.
    BAPI_Z05DOGI_HEADER_CONTROL-DELIV_NUMB = ZMM_WB1-ISSUE.
    BAPI_Z05DOGI_HEADER_CONTROL-POST_GI_FLG = 'X'.
    APPEND BAPI_Z05DOGI_HEADER_CONTROL.
    BAPI_Z05DOGI_ITEM_DATA-DELIV_NUMB = ZMM_WB1-ISSUE.
    BAPI_Z05DOGI_ITEM_DATA-DELIV_ITEM = 10.
    BAPI_Z05DOGI_ITEM_DATA-DLV_QTY = LFIMGGIA.
    BAPI_Z05DOGI_ITEM_DATA-SALES_UNIT = XTAB-MEINS.
    BAPI_Z05DOGI_ITEM_DATA-DLV_QTY_IMUNIT = LFIMGGIA.
    BAPI_Z05DOGI_ITEM_DATA-FACT_UNIT_NOM = UMVKZLIPS.
    BAPI_Z05DOGI_ITEM_DATA-FACT_UNIT_DENOM = UMVKNLIPS.
    APPEND BAPI_Z05DOGI_ITEM_DATA.
    BAPI_Z05DOGI_ITEM_CONTROL-DELIV_NUMB = ZMM_WB1-ISSUE.
    BAPI_Z05DOGI_ITEM_CONTROL-DELIV_ITEM = 10.
    BAPI_Z05DOGI_ITEM_CONTROL-CHG_DELQTY = 'X'.
    APPEND BAPI_Z05DOGI_ITEM_CONTROL.
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CONFIRM_DEC'
    EXPORTING
    DELIVERY = BAPI_Z05DOGI_DELIVERY
    HEADER_DATA = BAPI_Z05DOGI_HEADER_DATA
    HEADER_CONTROL = BAPI_Z05DOGI_HEADER_CONTROL
    TABLES
    ITEM_DATA = BAPI_Z05DOGI_ITEM_DATA
    ITEM_CONTROL = BAPI_Z05DOGI_ITEM_CONTROL
    RETURN = BAPI_Z05DOGI_RETURN.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT = 'X'
    IMPORTING
    RETURN = BAPI_Z05DOGI_RETURN.
    Go thru this link
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    BAPI_TRANSACTION_COMMIT
    Execute external Commit when using BAPIs
    This method executes a COMMIT WORK command. It is required for
    transactions developed externally to the R/3 System that change data in
    the R/3 System via BAPI calls.
    When you call BAPIs in your program that change data in the R/3 System,
    afterwards you must call this method to write the changes to the
    database.
    COMMIT WORK
    The statement COMMIT WORK completes the current SAP LUW and opens a new one, storing all change requests for the currenta SAP LUW in the process
    there are some FM that we use for creating trasaction . for example FM : that use for creating production order . if you execut the FM , the system will not create any data in the system so you need to excute the FM : BAPI_TRANSACTION_COMMIT to commit that creating the production order .
    in case of commit work, that is a syntax in abap program . if you use this syntax after you insert ,update or delete table in the sap ,system will do it immediately otherwise the system will do it after execution is complete.
    ROLLBACK WORK.
    for confirming or undoing database updates. COMMIT WORK always concludes a database LUW and starts a new one. ROLLBACK WORK always undoes all changes back to the start of the database LUW.
    Regards,
    Raj.

  • Why does my .vi not work when used as a sub vi

    I have a vi that produces a picture on the front panel. Displayed in the picture are solid grey levels for testing. Two grey levels are chosen inside the vi and then the picture flickers betwen the two. When I run the vi by itself it runs wonderfully, but when I run it as a sub vi it does not work. Even when I just place the sub vi in the block diagram and connect all of the controls and indicators up it doesn't work.When I use the highlighter it shows that the control values go into the sub vi and the sub vi lights up, but there is nothing output from the sub vi to the wired indicators. When I open up the Block diagram of the original vi from which the sub vi came, and highlight it while running the subvi, it
    shows that it is working with information running to all of the indicators. If I start a new program with only the sub vi in the block diagram and all of the controls and indicators connected, should it not behave as the sub vi? I will attach the vi that I am using as a sub vi, and I welcome anyone to place it in the block diagram of a new vi, connect all of the controls and indicators up and see if it works. I know that there is something completely obviopus that I am missing, but I can't see it. Any help would be greatly appreciated.
    Attachments:
    GL_Flicker.vi ‏74 KB

    I think the subVI is working just fine when called from the main. I think what you're expecting is an indicator on the main VI to update as the subVI runs. What you will see on the main front panel is just the last value that a subVI has. That is the intended behavior of subVIs and function calls in all other languages. If you want to to update a front panel indicator while a subVI runs, pass a reference to the indicator into the subVI and update that reference instead of the indicator on the subVI. The other way is via a global variable. I've attached a modified version of your porgram.
    Attachments:
    Pass_a_Reference.vi ‏11 KB
    GL_Flicker_mod.vi ‏66 KB

Maybe you are looking for

  • Sound just cut out.

    Hey. I own a Pavilion G6 (I think its the 1325ae) I've had it for around four months give or take. About two days ago I opened up my Calibre application (read books) and my Itunes just stopped playing. I thought at first that maybe it was because of

  • CS4 Set default file type when placing file

    The File->Place dialog box has a default file type of 'Importable files.'  Is it possible to set the default to All files (or anything else)?  Making the change manually does not seem to stick.  I have the same general question regarding File->Open. 

  • Backup photos from Photoshop Album 2.0

    I have previously backuped or burnt part of my photo collection, ca 2 years ago. All of the pictures that were burnt to a disc now have a small golden disc symbol in the top left corner of the thumbnail in PSA2. I now want to do the same with everyth

  • Webdispatcher SSL load balance server mismatch errors

    We are setting up a webdispatcher to access an Enterprise Portal with multiple instances.  Currently it is working but we are having to overide host mismatches.  in webdispacther log we see [Thr 4856] Mon Mar 07 11:38:02 2011 [Thr 4856] MatchTargetNa

  • No internet connection.  How do I get drivers for my printer installed on my computer

    I have an imac and Epson R2400 printer.  No internet connection so can't get the drivers downloaded at site where printer is.  I am able to get on the internet at the library and could download drivers to a flash drive if that is possible.  Then flas