REQUEST VIEW를 MS APPLICATION로 DOWN시 .TXT로 CONVERT 되는 이유

제품 : AOL
작성날짜 : 2002-10-31
REQUEST VIEW를 MS APPLICATION로 DOWN시 .TXT로 CONVERT 되는 이유
===============================================================
PURPOSE
Concurrent Request Report를 Broswer가 아닌 MS Word나 MS Excel로 Viewing 하는 경우 Option에 따라 화면으로 직접 Open 할 수도 있고, Client PC로 down을 먼저 할 수도 있다.
PC로 down을 먼저 하는 경우 Request Output이 원래의 output 형식(ex.o1430443.out, o1432914.out)이 아닌 '..report_311002.txt'의 file 형식으로 나타나는데 그 이유를 알 수 있으면 수정도 가능하다.
일부 고객들이 이 Hardcoded된 convert 내용을 알고자 하거나 수정하고자 할때 이 불루틴을 이용하여 고객 스스로 원하는 내용을 적용할 수 있다.
Explanation
Concurrent Request Output file에 대한 handle은 'AFCPWFPB.pls' pls에서 하고 있다.
Package fnd_webfilepub의 내용중 procedure 'req_outfile_name'를 자세히 검토하면 여러 FNDWRR file이 .txt or .html or .pdf 등의 extension으로 convert 되는 이유를 알 수 있다.
procedure req_outfile_name( id IN varchar2,
outfile_name IN OUT varchar2) is
temp_name varchar2(40);
outfile_name IN OUT varchar2)is
temp_name varchar2(40);
file_type varchar2(10);
file_ext varchar2(10);
begin
select substrb(user_concurrent_program_name,1,30) || '_' ||
to_char(sysdate,'ddmmrr'), NVL(r.output_file_type, 'TEXT')
into temp_name, file_type
from fnd_concurrent_programs_vl p,
fnd_concurrent_requests r,
file_type varchar2(10);
file_ext varchar2(10);
begin
select substrb(user_concurrent_program_name,1,30) || '_' ||
to_char(sysdate,'ddmmrr'), NVL(r.output_file_type, 'TEXT')
into temp_name, file_type
from fnd_concurrent_programs_vl p,
fnd_concurrent_requests r,
fnd_file_temp t
where p.concurrent_program_id = r.concurrent_program_id
and p.application_id = r.program_application_id
and t.request_id = r.request_id
and t.file_id = id;
-- hardcoded values for file extentions needs to be removed in major
-- release.
if ( file_type = 'TEXT' ) then
file_ext := 'txt';
elsif ( file_type = 'HTML') then
file_ext := 'html';
elsif ( file_type = 'PDF' ) then
file_ext := 'pdf';
elsif ( file_type = 'PS' ) then
file_ext := 'ps';
elsif ( file_type = 'PCL' ) then
file_ext := 'pcl';
elsif ( file_type = 'XML' ) then
file_ext := 'xml';
end if;
outfile_name := temp_name || '.' || file_ext;
exception
exception
when others then
outfile_name := '';
end req_outfile_name;
Example
Reference Documents
-------------------

Similar Messages

  • Hi, I cannot restart or shut down my MAC and get the message Geneio.it installer is cancelling your request. Please shut down and retry. However, I cannot seem to exit that application and I have no idea where it came from. Thanks

    Hi, I cannot restart or shut down my MAC and get the message Geneio.it installer is cancelling your request. Please shut down and retry. However, I cannot seem to exit that application and I have no idea where it came from. Thanks
    Could this be a virus?

    Hold down the Power button until the computer shuts down.
    The Safe Mac » Adware Removal Guide - Genieo
    The Safe Mac » Adware Removal Guide
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using Dr.Web Light from the App Store. It's free, and since it's from the App Store, it won't destabilize the system. If you prefer one of the better known commercial products, then Thomas recommends using Sophos.(Thank you to Thomas Reed for these recommendations.) If you already use Sophos, then be aware of this if you are using Mavericks: OS X Mavericks- Sophos Anti-Virus on-access scanner versions 8.0 - 9.1 may cause unexpected restarts
    From user Joe Bailey comes this equally useful advice:
    The facts are:
    1. There is no anti-malware software that can detect 100% of the malware out there.
    2. There is no anti-malware that can detect anything targeting the Mac because there
         is no Mac malware in the wild, and therefore, no "signatures" to detect.
    3. The very best way to prevent the most attacks is for you as the user to be aware that
         the most successful malware attacks rely on very sophisticated social engineering
         techniques preying on human avarice, ****, and fear.
    4. Internet popups saying the FBI, NSA, Microsoft, your ISP has detected malware on
        your computer is intended to entice you to install their malware thinking it is a
        protection against malware.
    5. Some of the anti-malware products on the market are worse than the malware
        from which they purport to protect you.
    6. Be cautious where you go on the internet.
    7. Only download anything from sites you know are safe.
    8. Avoid links you receive in email, always be suspicious even if you get something
        you think is from a friend, but you were not expecting.
    9. If there is any question in your mind, then assume it is malware.

  • Requesting to add week day view at drop down menu!

    I want you to add a week day view at drop down menu! of A6000 Plus Phone. It only shows the current day and month and years, butit would be easier if it shows the week day view!
    Link to picture
    Admin note; picture >100K converted to link.  About posting pictures in the forums.

    so it would be like 07-09-2015 THU! So lenovo if this modification setting is not included with the phone itself then can you please add this option at your next software updates. Thank you!

  • Re: [iPlanet-JATO] onBeforeRequest(); Finding requested view from requestContext

    The problem is that you don't know what the target view is until it has
    been forwarded to.
    Think about it... the request handling view bean (or command object) has
    the request handler that has the code that will ultimately forward to
    another view bean. This is code that you have written. So, until that
    forwardTo() is invoked, there is no notion of a "target page".
    What you do know is which "page" (view bean) the request is coming from
    (the handling view bean or command class). You can get this from the
    HttpServletRequest. The attribute name is "viewBean".
    So you can get the view bean name by doing the following in onBeforeRequest:
    <HttpServletRequest>.getAttribute("viewBean");
    But I suspect this is not going to solve your current issue.
    You could add the target page name to the page session. If there is more
    than one possible target page, it might get a little more involved.
    Let me know if the use of page session needs further explanation.
    c
    nickmalthus wrote:
    I am implementing a custom security model since the standard J2EE
    security model does not allow me access to the users password, which I
    need to log into a third party application. I have overriden the
    onBeforeRequest() method to check to see if the user is logged in, and
    if not, forward to the Login ViewBean. However, I need to determine
    what page/viewbean the request is attempting to access so I can let it
    pass through if it is accessing the Login viewbean and to forward to
    the requested view once the user is logged in. What is the best way to
    do this? I see no obvious uitility in the javadocs
    TIA
    For more information about JATO, including download information, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    I guess what I am thinking about doing is capturing the requested URL,
    i.e. /appname/modulename/RequestName. In the onBeforeRequest(). I
    would then check to see if the user is logged in, and if not, set the
    URL in the session(or page session of the Login bean) and forward to
    the Login viewbean using the viewbean manager. Inside the login view
    in the handleSubmit() method I would authenticate the user and then
    get the URL out of the session (or pagesession). I would then
    magically get the ViewBean/Command object for the URL or otherwise
    "forward the request" as if the user had typed in
    /appname/modulename/RequestName, which is the behavior I am trying to
    acheive.
    It turns out I cannot forward in the onBeforeRequest() as it will
    output the viewbean and then continue to process the request which in
    turn trys to do a RequestDispatcher().forward after data has been
    written to the stream which does not bode well with the servlet
    container. Thus, it appears I have no control of the request in the
    onBeforeRequest() method. Is this correct?
    In light of this new observation I am now going to create a base view
    class that all views will extend from and override the
    onSecurityCheck() method to forward to my login bean. If I can't find
    any other way, I will get the URL from the page session and do a
    response.sendRedirect() to the URL.
    Thanks for the help!
    --- In iPlanet-JATO@y..., "Craig V. Conover" <craig.conover@s...> wrote:
    The problem is that you don't know what the target view is until it has
    been forwarded to.
    Think about it... the request handling view bean (or command object)has
    the request handler that has the code that will ultimately forward to
    another view bean. This is code that you have written. So, until that
    forwardTo() is invoked, there is no notion of a "target page".
    What you do know is which "page" (view bean) the request is coming from
    (the handling view bean or command class). You can get this from the
    HttpServletRequest. The attribute name is "viewBean".
    So you can get the view bean name by doing the following inonBeforeRequest:
    >
    <HttpServletRequest>.getAttribute("viewBean");
    But I suspect this is not going to solve your current issue.
    You could add the target page name to the page session. If there ismore
    than one possible target page, it might get a little more involved.
    Let me know if the use of page session needs further explanation.
    c

  • Transport Request and Cross-Application techniques

    Respected Members,
    I want to know what is the difference between the transporting request and Cross-Application Technique( eg  ALE)
    Generally suppose you have made some object in development server and then a transport request will be created and through transporting to the production server same data can be transported to production server.
    Same thing we do with ALE also that we can transport the data from one server to another server or from one client to another client.
    THen what will be the difference between the transport objects and Cross-Application techniques.
    Clear this picture by giving your valuable answers.
    Thanks a Lot.
    Manish

    Hi Manish,
    The applications transferred through Transport Requests and the data passed through ALE or EDI are completely different technologies.
    The Transport requests transfer the programs and the configurations that you do within the development Server or rather the SAP system to the Production Server and then you execute them to get the desired result.
    On the other hand,ALE(Application Linking and Enabling) or EDI(Electronic Data Transfer) transfers the data or rather business documents(for example vendor payments or making the payme nt through cheques) from one system to another system,i.e different Landscapes.
    If suppose you want to transfer the data from one SAP system to another SAP system which are in completely different landscapes,then you use ALE and in case you transfer it from one SAP system to another Non-SAP system or vice-versa,you use EDI.
    Moreover,you cannot view the coding or the configuration part in case of ALE or EDI whereas you can view the same in terms of Transport requests.
    The landscape means all the clients within one SAP system.
    I hope I have made it In case you have any further clarifications,do let me know.
    Regards,
    Puneet Jhari.clear.

  • I have a Macbook Air purchased in 2011 in the US.  I am traveling in South Africa and am unsure if I need a step down voltage converter before I plug my laptop into the wall to charge it (using an outlet adapter).  Am I ok to just plug in?

    So standard electrical output from wall outlets in the US is 110V - 120V, and standard output from wall outlets in South Africa is 220V - 240V.  In SA I know I can plug in an iPhone using the iPhone charging cable and it will automatically step down the voltage, thus preventing my phone from overheating.  I cannot plug in a hairdryer or flat iron without step down voltage converter in SA.  Can I use the charger that came with my US 2011 Macbook Air and plug into a wall outlet in South Africa or do I need to purchase a step down voltage converter in order to charge my laptop while in SA?

    You only need a plug adaptor as long as the voltage is between 100 and 240 volts.
    (123957)

  • Re: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from requestContext

    If you want to stop a JATO request in its tracks, you have a little black
    magic at your disposal: you can throw a CompleteRequestException. This
    indicates to the JATO infrastructure that it should immeditately stop
    handling the request, but not generate an error, as the develper has taken
    full control. You can generally throw this error from anywhere, at any
    point--it is a RuntimeException, and is "tunneled" through other exception
    handlers where appropriate.
    In your scenario, you want to check if the user is logged in, and if not,
    save the target URL using the parsePathInfo() method. Then, forward to the
    login page and then throw a CompleteRequestException.
    Todd
    ----- Original Message -----
    From: "nickmalthus" <nickmalthus@h...>
    Sent: Monday, January 07, 2002 3:05 PM
    Subject: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from
    requestContext
    I guess what I am thinking about doing is capturing the requested URL,
    i.e. /appname/modulename/RequestName. In the onBeforeRequest(). I
    would then check to see if the user is logged in, and if not, set the
    URL in the session(or page session of the Login bean) and forward to
    the Login viewbean using the viewbean manager. Inside the login view
    in the handleSubmit() method I would authenticate the user and then
    get the URL out of the session (or pagesession). I would then
    magically get the ViewBean/Command object for the URL or otherwise
    "forward the request" as if the user had typed in
    /appname/modulename/RequestName, which is the behavior I am trying to
    acheive.
    It turns out I cannot forward in the onBeforeRequest() as it will
    output the viewbean and then continue to process the request which in
    turn trys to do a RequestDispatcher().forward after data has been
    written to the stream which does not bode well with the servlet
    container. Thus, it appears I have no control of the request in the
    onBeforeRequest() method. Is this correct?
    In light of this new observation I am now going to create a base view
    class that all views will extend from and override the
    onSecurityCheck() method to forward to my login bean. If I can't find
    any other way, I will get the URL from the page session and do a
    response.sendRedirect() to the URL.
    Thanks for the help!
    --- In iPlanet-JATO@y..., "Craig V. Conover" <craig.conover@s...> wrote:
    The problem is that you don't know what the target view is until it has
    been forwarded to.
    Think about it... the request handling view bean (or command object)has
    the request handler that has the code that will ultimately forward to
    another view bean. This is code that you have written. So, until that
    forwardTo() is invoked, there is no notion of a "target page".
    What you do know is which "page" (view bean) the request is coming from
    (the handling view bean or command class). You can get this from the
    HttpServletRequest. The attribute name is "viewBean".
    So you can get the view bean name by doing the following inonBeforeRequest:
    <HttpServletRequest>.getAttribute("viewBean");
    But I suspect this is not going to solve your current issue.
    You could add the target page name to the page session. If there ismore
    than one possible target page, it might get a little more involved.
    Let me know if the use of page session needs further explanation.
    c
    For more information about JATO, including download information, pleasevisit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    If you want to stop a JATO request in its tracks, you have a little black
    magic at your disposal: you can throw a CompleteRequestException. This
    indicates to the JATO infrastructure that it should immeditately stop
    handling the request, but not generate an error, as the develper has taken
    full control. You can generally throw this error from anywhere, at any
    point--it is a RuntimeException, and is "tunneled" through other exception
    handlers where appropriate.
    In your scenario, you want to check if the user is logged in, and if not,
    save the target URL using the parsePathInfo() method. Then, forward to the
    login page and then throw a CompleteRequestException.
    Todd
    ----- Original Message -----
    From: "nickmalthus" <nickmalthus@h...>
    Sent: Monday, January 07, 2002 3:05 PM
    Subject: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from
    requestContext
    I guess what I am thinking about doing is capturing the requested URL,
    i.e. /appname/modulename/RequestName. In the onBeforeRequest(). I
    would then check to see if the user is logged in, and if not, set the
    URL in the session(or page session of the Login bean) and forward to
    the Login viewbean using the viewbean manager. Inside the login view
    in the handleSubmit() method I would authenticate the user and then
    get the URL out of the session (or pagesession). I would then
    magically get the ViewBean/Command object for the URL or otherwise
    "forward the request" as if the user had typed in
    /appname/modulename/RequestName, which is the behavior I am trying to
    acheive.
    It turns out I cannot forward in the onBeforeRequest() as it will
    output the viewbean and then continue to process the request which in
    turn trys to do a RequestDispatcher().forward after data has been
    written to the stream which does not bode well with the servlet
    container. Thus, it appears I have no control of the request in the
    onBeforeRequest() method. Is this correct?
    In light of this new observation I am now going to create a base view
    class that all views will extend from and override the
    onSecurityCheck() method to forward to my login bean. If I can't find
    any other way, I will get the URL from the page session and do a
    response.sendRedirect() to the URL.
    Thanks for the help!
    --- In iPlanet-JATO@y..., "Craig V. Conover" <craig.conover@s...> wrote:
    The problem is that you don't know what the target view is until it has
    been forwarded to.
    Think about it... the request handling view bean (or command object)has
    the request handler that has the code that will ultimately forward to
    another view bean. This is code that you have written. So, until that
    forwardTo() is invoked, there is no notion of a "target page".
    What you do know is which "page" (view bean) the request is coming from
    (the handling view bean or command class). You can get this from the
    HttpServletRequest. The attribute name is "viewBean".
    So you can get the view bean name by doing the following inonBeforeRequest:
    <HttpServletRequest>.getAttribute("viewBean");
    But I suspect this is not going to solve your current issue.
    You could add the target page name to the page session. If there ismore
    than one possible target page, it might get a little more involved.
    Let me know if the use of page session needs further explanation.
    c
    For more information about JATO, including download information, pleasevisit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

  • To get the invoice number of amount applied in view prepayment applications

    hi all
    In AP abc Manager-Invoices--when we give invoice number in the invoice number field we get to see supplier name etc in the same Invoices Form there is a
    tab called General from which we can get Amount Paid ,
    Similarly there is a tab called View Prepayment Applications ,when clicked on this tab we can see Amount Applied and invoice number corresponding to that amount applied
    KIndly help me from which table or view this invoice number can be obtained
    i got amount applied from the view AP_UNAPPLY_PREPAYS_V,but i cant find the invoice number.
    kindly guide
    thanking in advance
    Edited by: makdutakdu on Dec 19, 2011 11:29 AM

    Thanks Robin,
    i was able to get a work around for this. For the time being i am using the following code snippet, i will try using the one u sent an will see if this works too.
    // create nodeinfo object for the node that table will bind to
    final IWDNodeInfo nodeinfo = wdThis.wdGetContext().node<NODENAME>().getNodeInfo() ;
    //get the structure of the node
    final IStructure struct = nodeinfo.getStructureType() ;
    Iterator iter = nodeinfo.iterateAttributes() ;
    if (null != struct)
    totalFields = struct.getNumberOfFields();
    else
    for ( Iterator i = nodeinfo.iterateAttributes(); i.hasNext(); i.next() )
              totalFields++;
    for(count = 1; count <= totalFields; count++)
         fieldName = nodeinfo.getStructureType().getField(count).getName();

  • Table View in View-based Application

    Hi.
    I want to use an UITableView in a View-based Application.
    All examples I found are for Navigation-based Applications.
    I Found only one example for View-based Applications, but it create all components himself without the Interface-Builder.
    I search an example with Interface-Builder.
    My main problem is, when i create a view with Interface-Builder, the controller class does not inherit from UITableViewController.

    GrinderFX wrote:
    I want to use an UITableView in a View-based Application.
    Hi, and welcome to the Dev Forum!
    Firstly, I would point out that you don't need to use UITableViewController to control a table view. The table view controller is just more convenient. So for example, you could simply drag a table view from the library in IB and drop it onto your view. Then you could hook up the table view's dataSource and delegate outlets to the File's Owner. Then you would add the data source and delegate protocols to the @interface of your UIViewController subclass and add the required data source and delegate methods to the @implementation.
    I mention the above because building your table view that way is very instructive. If you want to learn more about table views in general I would recommend Chapter 8 of +Beginning iPhone Development: Exploring the iPhone SDK by Mark and LaMarche+, which includes 3 table view projects that don't involve a navigation controller.
    My main problem is, when i create a view with Interface-Builder, the controller class does not inherit from UITableViewController.
    Returning to your specific question, IB allows you to change the class of an object. Here are the steps to use the View-Based Application template as you described (In the following I'm using Grinder as the name of the project; e.g. the app delegate class is named GrinderAppDelegate, and the view controller subclass is named GrinderViewController):
    1) _Change parent of view controller subclass in your code_
    In GrinderViewController.h, you only need to change the superclass from UIViewController to UITableViewController:
    @interface GrinderViewController : UITableViewController {
    However it will be easier later on if you make new files from the UITableViewController file template:
    a) Ctrl-click on GVC.h and GVC.m in the Groups & Files tree; select Delete->Also Move to Trash;
    b) Ctrl-click on Classes; select Add->New File->iPhone OS->Cocoa Touch Classes;
    c) Select UITableViewController subclass from the right center panel and click Next;
    d) File Name: GrinderViewController.m; check Also create GrinderViewController.h;
    e) Make sure the name for these new files is exactly the same as the ones you deleted; if you make a mistake here, delete the new files and start over, because that name must be the same in several other files;
    f) Click Finish; the replacement files should now appear under Classes.
    2) _Change the view controller class in IB_
    a) Double click on MainWindow.xib under Resources in the Groups & Files tree;
    b) Make sure the MainWindow.xib window is open by selecting Window->Document from the IB menu;
    c) Locate the View Mode switch, upper-left, in the xib window, and select the Center position;
    d) The xib window should now be displaying two columns with small icons on the left;
    e) Select the Grinder View Controller icon;
    f) Select Edit-Delete to delete that icon;
    g) Select Tools->Library from the menu, and expand Controllers in the Library Panel;
    h) Drag a Table View Controller to the xib window and drop it right under the app delegate icon;
    i) Select Tools->Identity Inspector from the menu to open the Grinder View Controller Identity Panel (the new Table View Controller should still be selected in the xib window);
    j) Under Class Identity, select Grinder View Controller from the list; tab out of the Class field to be sure the selection is recorded;
    k) Ctrl-Click on Grinder App Delegate and connect the view controller outlet (ctrl-drag) to Grinder View Controller;
    l) Expand GVC in the xib window and delete the Table View icon (since we want it in the other xib file);
    m) Reselect the GVC icon and open the Grinder View Controller Attributes panel;
    n) Under View Controller, select GrinderViewController from the NIB Name list;
    o) In the Table View Controller IB Editor window, select GrinderViewController.nib to open the other xib file;
    p) Make sure the GrinderViewController.xib window is open in small icon mode as in steps b-d above;
    q) The class of the File's Owner should be GrinderViewController;
    r) Delete the View icon;
    s) Drag a Table View from the Library to where the View icon was;
    t) Ctrl-click on File's Owner and connect (ctrl-drag) it's view outlet to the Table View;
    u) Ctrl-click on Table View: connect both the dataSource and delegate outlets to File's Owner;
    v) File->Save both xib files.
    3) _Make some rows in the table view and test_
    a) Open GrinderViewController.m in Xcode;
    b) Add the commented lines (be sure to use the correct line for your target OS);
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 20; // <-- change to more than zero
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    // Configure the cell
    // add this line for OS 2.x
    cell.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    // add this line for OS 3.0
    // cell.textLabel.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    return cell;
    c) Build and Go.
    I should add that the procedure might be a little easier if you start with the Window-Based Application Template. But the above is good practice in editing xib files.
    Hope that's helpful!
    - Ray

  • View application pages - view forms views and application pages. enumerate lists

    view application pages - view forms views and application pages. enumerate lists, if we disable this permission in sharepoint then user gets blocked from getting into application pages which is good. But now I have few list view web parts on a page and user
    is not able to see those reports based on view. It shows working on it. As soon as I enable view application pages permission it works.
    I need a permission level -view forms views only.
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    Hi Amit,
    SharePoint has a feature called “ViewFormPagesLockDown” at site collection scope. After enabling the feature, all groups / users not having the “View Application Pages” permission will not be able to navigate to pages like “_layouts/viewlsts.aspx”
    or “pages/forms/allitems.aspx”.
    So, for your issue, please disable the ViewFormPagesLockDown feature via PowerShell command:
    $lockdownFeature = get-spfeature viewformpageslockdown
    disable-spfeature $lockdownFeature -url [the URL of your site]
    More information:
    http://sharepointtechie.blogspot.jp/2011/06/blocking-access-to-application-pages.html
    http://sureshpydi.blogspot.jp/2013/12/viewformpageslockdown-feature-in.html
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Step-down voltage converter or traval adapters?

    Hi,
    I am studying in Ireland with my iBook that I bought in the US - as well as a few other US electrical appliances. I have been using step-down voltage converters, but having problems. I just discovered today that I was using too many watts for the converter (the power adapter for the iBook uses 45 watts, and the converter suggests a max of 30 watts) but I am still not sure if that is why the converters keep breaking. The fuse seems to be fine (why I don't think the watts are the problem) and the first two converters broke after being used for a few months (but within a few days or hours of being used with a computer for the first time). So I was still of the conclusion that the converters were just going bad on their own - not built to last so long.
    Tonight I plugged my iBook in with a third, brand new converter and was part way through charging it up when the light on the charger went from amber to green and then off. Now this third converter does not seem to work anymore - and the fuse seems fine.
    So at this point I'm pretty sure it does have something to do with the computer - but am not really sure how to proceed. Has anyone else experienced similar difficulties? I see that Apple offers a set of Travel Adapters. Do you recommend them? Might this be the simples solution to these problems with the converters?

    Hi Oona,
    All Macs (except rev.A G5 iMacs and eMacs) have dual voltage/frequency PSU, and can be plugged anywhere in the world with no problem.
    —> You don't need any step-down voltage converter for your iBook.
    You just have to find a plug adapter or an Irish cord or power adapter (btw you can use the 65W too). Apple's Travel Adapter is fine, but you can find cheaper in Ireland, unless you need a model that you can use everywhere in the world?
    See this document
    - World Power Differences Can Limit International Product Use (KB #129)
    and check your other electrical appliances.
    The electrical info is printed somewhere: do not use the converter with the dual-voltage/frequency ones.
    About Apple Macs' electrical specs:
    - Apple Power Supplies: Changing voltage settings (KB #75099)
    Electrical info is always visible somewhere on all electrical appliances.
    Axl

  • A/p Down Payment Request and A/p Down payment Invoice

    hi All,
    I am Using SAP B1 2005B
    A/p Down Payment Request :-
    1.Wnen i want to give a 50% Advance Based on Purchase Order What is the Procedure. whether i have to use A/p Down payemnt request or A/p down payemnt invoice.
    2.whenever i am making down payment request there is no JE and There is No GL and BP affected.
    2.a. While making payment against down payment request there are 3 accounts hitted
    1.Bank Account.
    2. Bp(As Advance-Debit balance)
    3.GL linked with BP.(Acccounts payable).
    Is Correct or Not?
    3. While Making A/p Invoice can we pick this Advace in A/p invoice Entry and can we Adjust .
    at this stage Whenever i want to Check the balance of the BP should be Debit Balance(as Advance).
    A/p Down payment Invoice:-
    What is the Procedure, When it will be Used and What are the GL affected.
    Thanks & Regards,
    yusuff

    Hi,
    We are using A/p Down Payment Invoice where the entry is
    Party Credited
    Advance for capital purhase ie. ofset account is debited
    and making payment
    Party Debited
    Bank Credited
    and when linking with Invoice
    Advance for capital purhase ie. ofset account is credited
    GRNI of Asset A/c is debited.
    Here the main issue is in Party ledger its showing 1st credit and then debit and your requirement that Party should be shown debit balance it will be not there it will be in Offset account i.e "Advance for capital purhase ie. offset account"
    Now you have to generate query base report if you want to show advances given to party.
    This is what we are doing if there is any other possibility kindly revert back all experts.
    Thanks
    Kamlesh

  • Unable to receive special characters in XML using UTL_HTTP request from Other application

    Hi Team,
    We are using SOAP request in Oracle Application to Pull XML data from Other application.I am using below commands before receving response but still i am unable to receive special charcters/Spanish Charcters in XML.
    utl_http.set_body_charset(v_http_req, 'UTF-8');
    utl_http.set_header (v_http_req, 'Content-Type', 'text/xml');
    Thanks and Regards,
    Raghul

    Hello,
    Just when you think that you know everything, it is slammed in your face that you don't. The .Mac member name field in the System Preferences DOES NOT take your whole e-mail address. It only takes your user name or whatever comes BEFORE the "@" symbol. There was absolutely nothing wrong with my MacBook Pro (other than ther brain dead user).
    Sorry for wasting your time...
    If we learn from our mistakes, then I obtained my PhD years ago,
    Dr. Z.

  • I've downloaded Lightroom 5.6 today but it won't completely load before windows pops up and says that it has encountered a problem and is shutting the application down. What is my next step....thanks?

    I've downloaded Lightroom 5.6 today but it won't completely load before windows pops up and says that it has encountered a problem and is shutting the application down. What is my next step....thanks?

    If you use extensions like <i>Adblock Plus</i> or <i>NoScript</i> or <i>Flashblock</i> that can block content then make sure that such extensions aren't blocking content.<br />
    You can see the installed Firefox extensions in "Tools > Add-ons > Extensions".
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Viewing 2 applications on the 1 screen

    How do I view 2 applications on the one screen (IPhoto and Drop Box) - so that I can drag from IPhoto and drop into Drop Box?

    Drag the bottom right corner of the apps' window to resize it, then move it to the side draging the title bar.  Start the 2nd app and do the same.
    (resizing works with any edge in Lion).
    Regards,
    Captfred

Maybe you are looking for