File operation help required

hello gurus,
I want to check whether a perticular file present on the application server or not
if yes
I want to delete it.
if no
i want to create the file in append mode.
I know its a simple issue but still i havnt done file IO in sap yet so please help me in this issue.
Thanks in advence!!!

Hi Nikhil,
It is very simple.
1. open dataset <dset> for input.
    If the file is existing, you will get sy-subrc = 0, else sy-subrc = 8.
2. if sy-subrc = 0   DELETE DATASET <dset>
3. else.
    OPEN DATASET <dset> for APPENDING.
Ravi

Similar Messages

  • File to File interface - Help Required

    Hello All,
    We have the below business requirement:
    In the source directory, we would receive multiple .dat and one .txt files. Before picking up any of the file, we need to check whether the .txt file exists in the folder or not.
    If the .txt file exists, only then pick the .dat files and move them to target directory, else dont do any action until the .txt files comes into the folder.
    Also, the dat and txt files have to be moved to the target directory in a sequence(i.e. first the dat files have to be moved and then finally txt file has to be moved).
    Please help in providing an approach preferably with the standard sender file channel options.
    Thanks in advance.
    Regards,
    Subbu

    Try this option
    Source Directory: /yourSourceDir
    FileName : File1.xml
    In Additional Files:
    File List: File2.xml
    File2.xml.namePart - "File1.xml" = "File2.xml"
    File2.xml.optional - NO
    File2.xml.type - xml
    by having this settings, File1 will be picked only when File2 is placed in the folder.
    Regards

  • Internal Table Operation Help Required

    Hi
    I have to insert 8 counters p1-p8 in a field BANFN of ITAB1.
    Like this their are 3 more fileds.I have to show the no. for PR released frm JAN-DEC in ALV format.I had doen the calualation,but unable to insert these conters in ITAB1 to do final calculation & display the result.
    Please help me.
    I had used : insert p1 into itab1-banfn where sy-index 1.
    Like this I had tried out many comands,but al in vain.PLZ help me in this regard.
    Regards.
    Vipin

    There are 8 fileds in my internal table,in which 1st one is for MONTH(JAN-DEC).
    The ALV is only suppose to display 12 rows,containing each month per row.
    Now for each month I have to display the PR converted to PO & the avg lead time for each month.So I had calu all the data ,but now I have to insert 12 counters in 4 fields.one for No of PR converted to PO in each month,than one for AVG LEAD TIME for each month.so there has to be 12 + 12 counters for each row.Similar operation I have to perform for the PR pending fo PO.So there has to be 24 more counters for again 2 diff fileds.Now I had calcuated the data,but the problem is this ,,,,,how to insert each ctr in each row.
    EG: insert ctr1 into itab1-banfn where itab1-mmyy = 'January' or sy-index = 1.
          insert ctr2 into itab1-banfn where itab1-mmyy = 'Febuary' or sy-index = 2.
          move crt1 to itab1-banfn where sy-index = 1.
    None of the operation is working.
    Like this i have to insert 48 counters in all rows for these 4 diff fileds.
    Pl help me in thsi regard ,if possible.
    regards.

  • File Adapter help required.

    Hi All,
    My scenario:
    I have source txt file that is seperated by semicolon.
    I need to do Receiver determination that for some value it shoud go to Receiver A and for other value it
    should go to Receiver B.
    File that is reaching Receiver A and Receiver B should be again txt in nature.
    What can be solution for this?
    Regards

    Hi Anand
    So the approach will be:
    1. Sender File Adapter (File content coversion) -- from txt file to xml file
    2. Rec Determination --- for different Receivers
    3. Receiver File Adapter (File content coversion) -- from xml file to txt file
    Am I correct?
    Do you have blogs for this
    Regards

  • Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying "attempt to access invalid address" then "application not respo

    Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying “attempt to access invalid address” then “application not responding” Suggestions how to access would be much appreciated. Tks. Stuart

    What is the size of your hard disk?  PSE 4 is a very old program and I suspect it is not able to access the entire hard disk on your machine.  Just a thought here.

  • File Content Conversion. Help required

    Hi All,
    My scenario
    I have source text file. I need to do Receiver Determination based on some value.
    I need to send again text file at target side.
    My source txt file is:
    Condition:
    If :59:/1000001642 comes then send to Receiver A
    If :58:/9000001642 comes at that position then send to Receiver B
    Can you please tell me how to apply FCC at sender and receiver side as I am not able to
    do it.
    Regards

    Hi Rick,
    Can there be any way I can avoid FCC and do Rec Determination because I am required to
    do complex FCC at both source and target side.
    If you want XI to route a flat file (without FCC in file adapter), then I think you will need to do enhanced
    receiver determination.   It will have to be a java map since the input is still a flat file.
    http://help.sap.com/saphelp_nw04/helpdata/en/43/a5f2066340332de10000000a11466f/content.htm
    https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/3343
    There are many ways to handle this in java, but hereu2019s a simple example that should get you started.
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.io.PrintWriter;
    import java.io.StringWriter;
    import java.util.Map;
    import com.sap.aii.mapping.api.MappingTrace;
    import com.sap.aii.mapping.api.StreamTransformation;
    import com.sap.aii.mapping.api.StreamTransformationConstants;
    import com.sap.aii.mapping.api.StreamTransformationException;
    public final class AdvancedReceiverJava implements StreamTransformation {
         private Map _param;  
         public void setParameter(Map param) {
              _param = param;
         public void execute(InputStream in, OutputStream out) throws StreamTransformationException {
              //MappingTrace trace =  (MappingTrace)_param.get(StreamTransformationConstants.MAPPING_TRACE);
              BufferedReader reader = null;
              try {
                   reader = new BufferedReader(new InputStreamReader(in));
                   StringBuffer sb = new StringBuffer();
                   String line = null;
                   while ((line = reader.readLine()) != null) {
                        sb.append(line).append("\n");
                   String fileString = sb.toString();
                   //replace this with a call to value mapping for more configurable solution
                   String receiver = null;
                   if (fileString.indexOf("59:/100000164") > -1)
                        receiver = "receiverService1";
                   else if (fileString.indexOf("58:/9000001642") > -1)
                        receiver = "receiverService2";
                   else
                        throw new Exception("No receiver found in source file.");
                   StringBuffer xml = new StringBuffer();
                   xml.append("<?xml version='1.0' encoding='UTF-8'?>");
                   xml.append("<ns0:Receivers xmlns:ns0='http://sap.com/xi/XI/System'>");
                   xml.append("<Receiver><Service>").append(receiver).append("</Service></Receiver>");
                   xml.append("</ns0:Receivers>");
                   out.write(xml.toString().getBytes());
                   out.flush();
              } catch (Exception e) {             
                   StringWriter sw = new StringWriter();
                   PrintWriter pw = new PrintWriter(sw);
                   e.printStackTrace(pw);
                   throw new StreamTransformationException(sw.toString()); 
              } finally {
                   if (reader!= null) try { reader.close(); } catch (Exception e) {}
    -Russ

  • Download file from URL using ADF (urgent help required)

    We have the following requirement:
    On clicking a button we need to download the file present at a particular location(we have the URL).
    I have written the following in .jspx file :
    <af:commandButton  id="btn1" >
                        <af:fileDownloadActionListener contentType="text/plain; charset=utf-8" method="#{bean.getFile}"/>
    </af:commandButton>
    The corresponding method in bean is :
    public void getFile(FacesContext facesContext, OutputStream outputStream) {
    HttpServletResponse response = null;
    ServletOutputStream ouputStream = null;
    currUrl = getFileURL("ID", 281);
    response =
    (HttpServletResponse)FacesContext.getCurrentInstance().getExternalContext().getResponse();
    try {
    ouputStream = response.getOutputStream();
    ouputStream.write(this.getFileBytes(), 0,this.getFileBytes().length);
    ouputStream.flush();
    ouputStream.close();
    } catch (IOException ioe) {
    System.out.println("IO Exception");
    public byte[] getFileBytes() {
    URLConnection urlConn = null;
    InputStream iStream = null;
    URL url;
    byte[] buf;
    int byteRead;
    try {
    url= new URL("http://hjhj:34104/test.pdf");
    urlConn = url.openConnection();
    iStream = urlConn.getInputStream();
    buf = new byte[5000000];
    byteRead = iStream.read(buf);
    if (byteRead > 0) {
    System.out.println("Downloaded Successfully.");
    return buf;
    } catch (FileNotFoundException fnfe) {
    System.out.println("File not found Exception");
    fnfe.printStackTrace();
    } catch (Exception e) {
    System.out.println("Exception:" + e.getMessage());
    e.printStackTrace();
    } finally {
    try {
    iStream.close();
    } catch (IOException e) {
    System.out.println("IO Exception");
    e.printStackTrace();
    System.out.println("File");
    return null;
    The file is opening in same window but in some encrypted format. My requirement is to :
    1. Have a pop (as in Mozilla or IE) which asks if I want to save the file or open.
    2. Depending on that the file should be opened in pdf format and not in browser same window neither in browser tab.

    Jdev version : 11.1.2.1.0
    in .jspx file : we have a button. On clicking the button file from URL should be downloaded. I have used fileDownloadActionListener in commandButton. Corresponding code :
    <af:commandButton  id="btn1" >
                        <af:fileDownloadActionListener contentType="text/plain; charset=utf-8" method="#{bean.getFile}"/>
    </af:commandButton>
    in bean class : the method corresponding to fileDownloadActionListener is :
    public void getFile(FacesContext facesContext, OutputStream outputStream) {
         HttpServletResponse response = null;
         ServletOutputStream ouputStream = null;
         response =(HttpServletResponse)FacesContext.getCurrentInstance().getExternalContext().getResponse();
         try {
              ouputStream = response.getOutputStream();
              ouputStream.write(this.getFileBytes(), 0,this.getFileBytes().length);
              ouputStream.flush();
              ouputStream.close();
              } catch (IOException ioe) {
                   System.out.println("IO Exception");
    public byte[] getFileBytes() {
         URLConnection urlConn = null;
         InputStream iStream = null;
         URL url;
         byte[] buf;
         int byteRead;
         try {
              url= new URL("http://hjhj:34104/test");
              urlConn = url.openConnection();
              iStream = urlConn.getInputStream();
              buf = new byte[5000000];
              byteRead = iStream.read(buf);
              if (byteRead > 0) {
                   System.out.println("Downloaded Successfully.");
              return buf;   
        } catch (FileNotFoundException fnfe) {
              System.out.println("File not found Exception");
         } catch (Exception e) {
              System.out.println("IO Exception");
    The URL given in the code is for a file which can be a PDF file or an EXCEL file.
    My requirement is when i click the button:
    1. A pop should come (as in Mozilla or IE) which asks if I want to save the file or open.
    2. if i click on save file should save in a particular location.
    3. if i click on open it should open as PDF/EXCEL format and NOT in browser.
    Message was edited by: 1001638

  • Help required in BR-restore

    dear experts,
    plz look on to log message.
    CDPRD:oraprd 60> brrestore -m full -b bdvslmwp.aft -c
    BR0401I BRRESTORE 6.40 (22)
    BR0405I Start of file restore: rdvsuwwe.rsb 2007-07-19 18.09.20
    BR0428W File /oracle/PRD/data/sapdata3/prd_1/prd.data1 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata3/prd_2/prd.data2 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata3/prd_3/prd.data3 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata3/prd_4/prd.data4 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd_6/prd.data6 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd_8/prd.data8 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd_10/prd.data10 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd_9/prd.data9 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd_7/prd.data7 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd_10/prd.data13 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd_10/prd.data12 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd_10/prd.data11 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata3/prd_5/prd.data5 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/prd640_1/prd640.data1 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/prd640_2/prd640.data2 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/prd640_4/prd640.data4 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata2/prd640_6/prd640.data6 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata2/prd640_8/prd640.data8 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata2/prd640_10/prd640.data10 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd640_12/prd640.data12 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prd640_13/prd640.data13 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata3/prd640_11/prd640.data11 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata2/prd640_9/prd640.data9 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata2/prd640_7/prd640.data7 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/prd640_5/prd640.data5 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/prd640_3/prd640.data3 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata4/prdusr_1/prdusr.data1 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/temp_1/temp.data1 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/undo_1/undo.data1 will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/system_1/system.data1 will be overwritten
    BR0428W File /oracle/PRD/origlogA/log_g11m1.dbf will be overwritten
    BR0428W File /oracle/PRD/mirrlogA/log_g11m2.dbf will be overwritten
    BR0428W File /oracle/PRD/origlogB/log_g12m1.dbf will be overwritten
    BR0428W File /oracle/PRD/mirrlogB/log_g12m2.dbf will be overwritten
    BR0428W File /oracle/PRD/origlogA/log_g13m1.dbf will be overwritten
    BR0428W File /oracle/PRD/mirrlogA/log_g13m2.dbf will be overwritten
    BR0428W File /oracle/PRD/origlogB/log_g14m1.dbf will be overwritten
    BR0428W File /oracle/PRD/mirrlogB/log_g14m2.dbf will be overwritten
    BR0428W File /oracle/PRD/origlogA/cntrl/cntrlPRD.dbf will be overwritten
    BR0428W File /oracle/PRD/data/sapdata1/system_1/cntrl/cntrlPRD.dbf will be overwritten
    BR0428W File /oracle/PRD/saparch/cntrl/cntrlPRD.dbf will be overwritten
    BR0280I BRRESTORE time stamp: 2007-07-19 18.09.20
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRRESTORE:
    c
    BR0280I BRRESTORE time stamp: 2007-07-19 18.09.27
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0280I BRRESTORE time stamp: 2007-07-19 18.09.27
    BR0407I Restore of database: PRD
    BR0408I BRRESTORE action ID: rdvsuwwe
    BR0409I BRRESTORE function ID: rsb
    BR0449I Restore mode: FULL
    BR0411I Database files for restore:
    /oracle/PRD/origlogA/log_g11m1.dbf
    /oracle/PRD/mirrlogA/log_g11m2.dbf
    /oracle/PRD/origlogB/log_g12m1.dbf
    /oracle/PRD/mirrlogB/log_g12m2.dbf
    /oracle/PRD/origlogA/log_g13m1.dbf
    /oracle/PRD/mirrlogA/log_g13m2.dbf
    /oracle/PRD/origlogB/log_g14m1.dbf
    /oracle/PRD/mirrlogB/log_g14m2.dbf
    /oracle/PRD/origlogA/cntrl/cntrlPRD.dbf
    /oracle/PRD/data/sapdata1/system_1/cntrl/cntrlPRD.dbf
    /oracle/PRD/saparch/cntrl/cntrlPRD.dbf
    BR0419I Files will be restored from backup: bdvslmwp.aft 2007-07-17 20.20.27
    BR0416I 35 files found to restore, total size 264320.932 MB
    BR0424I Files will not be decompressed
    BR0421I Restore device type: tape
    BR0102I Following backup device will be used: /dev/nst0
    BR0103I Following backup volume will be used: PRD2170707 (2007-07-17 20.20.27)
    BR0280I BRRESTORE time stamp: 2007-07-19 18.09.27
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRRESTORE:
    c
    BR0280I BRRESTORE time stamp: 2007-07-19 18.09.40
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0126I Unattended mode active - no operator confirmation required
    BR0208I Volume with name PRD2170707 (2007-07-17 20.20.27) required in device /dev/nst0
    BR0280I BRRESTORE time stamp: 2007-07-19 18.09.40
    BR0226I Rewinding tape volume in device /dev/st0 ...
    BR0351I Restoring /oracle/PRD/sapbackup/.tape.hdr0
    BR0355I from /dev/nst0 ...
    BR0241I Checking label on volume in device /dev/nst0
    BR0209I Volume in device /dev/nst0 has name PRD2170707 (2007-07-17 20.20.27)
    BR0280I BRRESTORE time stamp: 2007-07-19 18.10.05
    BR0199I Volume label checked successfully
    BR0351I Restoring /oracle/PRD/data/sapdata3/prd_1/prd.data1
    BR0355I from /dev/nst0 ...
    BR0278E Command output of 'LANG=C cd /oracle/PRD/data/sapdata3/prd_1 && LANG=C cpio -iuvcB prd.data1 < /dev/nst0 && LANG=C mt -f /dev/nst0 fsf 1':
    cpio: warning: skipped 79322336 bytes of junk
    cpio: warning: skipped 542681129 bytes of junk
    cpio: warning: skipped 169089187 bytes of junk
    cpio: warning: skipped 4490772 bytes of junk
    cpio: warning: skipped 7297164 bytes of junk
    cpio: warning: skipped 3571036 bytes of junk
    cpio: warning: skipped 32560979 bytes of junk
    cpio: warning: skipped 2376064 bytes of junk
    cpio: warning: skipped 1269138 bytes of junk
    cpio: warning: skipped 613734 bytes of junk
    cpio: warning: skipped 13541613 bytes of junk
    cpio: warning: skipped 10854153 bytes of junk
    cpio: warning: skipped 80328255 bytes of junk
    cpio: warning: skipped 3251134 bytes of junk
    Found end of tape.  To continue, type device/file name when ready.
    BR0280I BRRESTORE time stamp: 2007-07-19 18.23.46
    BR0279E Return code from 'LANG=C cd /oracle/PRD/data/sapdata3/prd_1 && LANG=C cpio -iuvcB prd.data1 < /dev/nst0 && LANG=C mt -f /dev/nst0 fsf 1': 1
    BR0359E Restore of /oracle/PRD/data/sapdata3/prd_1/prd.data1 from /dev/nst0 failed due to previous errors
    BR0397E Verification of backup of /dev/nst0 using DBVERIFY failed due to previous errors
    BR0406I End of file restore: rdvsuwwe.rsb 2007-07-19 18.23.46
    BR0280I BRRESTORE time stamp: 2007-07-19 18.23.46
    BR0404I BRRESTORE terminated with errors
    this is the message i'm getting while i try to restore my DBA in sap crash.
    i'm not able to restore the DBA
    plz help us in this condition.
    by
    raghav

    you posted here too?

  • Build a tool for controlling a copy file operation base on its file size in any folder of Window Explorer

    Hi all,
    We are developing a tool which will control a copy file operation in any folder of Window Explorer base on file size limit.
    If these copied files are not satisfied the file size condition (its size is larger than a predefined value), the copy/move operation must not be executed.
    My question is that: "Are there any availability support of Windows API/tool for implementing this feature?"
    BR,
    Mr_Le

    Hi Mr_Le,
    Thank you for posting in the MSDN forum.
    Based on your description, I’m afraid that it is not the correct forum for this issue, since this forum is to discuss:
    Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    To help you find the correct development forum for this issue, please tell me the real project type (Winforms or others) and the real development language (C#, VB or others) you want to use.
    If you are not very sure that which kind of project fulfils this requirement, maybe the language development forum would be better for this issue:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=vslanguages&filter=alltypes&sort=lastpostdesc
    If there's any concern, please feel free to let me know.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • ISE integration with Mobile Device Management ( MDM ) help required

    Dear Techies,
         Am here bring to your notice an different issue and no much resources to support even in PEC or Cisco Document.
         We are conduction a Proof Of Concept (PoC) on  Secure Bring Your Own Device ( BYOD ) using Cisco ISE and gonna test all the scenarios like Wired, Wireless and VPN user access.
    Setup Brief :
    =========
          Our Setup has  ISE VM acting as Admin, Monitor and Profiling Device, we have NAC 3315 physical Appliance as Inline posture Device, Wireless LAN controller, Access point and the Identity source as Microsof Active Directory
         Having Plans to Integrate Mobile Device Management ( MDM ) and Citrix VDI setup also.
    Activity Brief:
    =========
         As of now we have tested the Wired Scenario Authentication and authorization for guest users and gonna carry out the profiling and posture.
    Clarifications Required
    ================
    Wired Scenario - Require some configuration / steps on how to carryout posture for the guest wired users i.e. LAPTOP.
    Wireless Scenario
    MDM can be integrated to ISE ? 
    How the MDM can be integrated to Cisco ISE configuration or Guide to show the same?
    What is the demarcation between MDM and ISE ( i.e. What is the role of ISE and MDM on Mobile Devices ) ?
    If MDM is available so then when the control of ISE ends, does MDM do management or ISE will do management of the devices ?
    Is MDM will do client provisioning or ISE should do ?
    Is MDM send or update patches of Mobile Devices ?
    As of now these are the scenarios, kindly revert if any good documents to show this or share your expertise on the Integration Part.
    Thanks for Reading...
    Arun

    I would like to avail your valuable inputs to understand on the  Client provisioning part for the Mobile Devices/ Laptop. I understand  from your reply that MDM integration is not available in the current  release ISE 1.1 - That is correct.
    Kindly let me know your views or any documents on the following scenarios with the current release in mind
    1. User  with Mobile devices connecting to Wireless  ( both Employee  and Guest ) , How the Flow differs for the Employee and Guest.  How the  client provisioning is done ( i.e. Like Posturing  or Compliance Check  ).
    The posturing and compliance check is done based on the user authentication information (i.e. AD memberOf vs Guest user) combined with the users endpoint (windows, mac osx, or a mobile device), ISE then has a few decisions to make based on the authorization policies. For example, if a Domain User coming from a Windows 7 machine joins the network, then can either use the nac agent, or the web agent. Then you can scan for registry settings, file settings, program requirements, hotfix compliance...and the list goes on. If the user fails a check then you can either assign an acl for the user so they only have guest access, or you can place them into a remediation vlan the options are entirely up to the requirements and however the solution is implemented.
    2. User  with Laptop  connecting to Wireless  ( both Employee  and Guest ). How the client provisioning is done ( i.e. Like Posturing   or Compliance Check ).
    Guests are usually redirected to the guest portal which they authenticate and their user group falls within the Guest container that is on the ISE internal database, that is usually coupled with an authorization profile that grants them internet access. For the client provisioning, that is usually done based on the operating system, via profiling (dhcp, and user agent string., netmap...etc) and can be fine tuned for all laptops or to a specific set of users based on their group membership.
    3. What are advantages of having ISE also in  place for Mobile devices, since most of the Mobile related tasks ( like  Authentication, Authorization, Profiling and  Posture ) are carried out  by MDM. I am checking for the significant advantage of having ISE for  Client network having only Mobile devices. Kindly clarify.
    Currently the advantage of Cisco ISE is that it supports profiling within wireless and really fits well within a network that has mostly Cisco products since they are all part of of the Borderless security initiative being driven on the backend. The product teams for wireless, wired, security (vpn..etc) and ISE are pretty close in building their solutions so that you can get connected with any device any where (sorry for the sales pitch). The latests wireless code is improving and is going to have support similar to the ios sensor for wired devices where dhcp, cdp, and other attributes can be sent in the radius packet for better profiling decisions. With integration for an MDM platform coming soon, and also support for TACACS rumored (have to verify with your account rep) you have options that really stand out from a unit that only supports MDM. Cisco ISE also comes with a wireless product ID so that makes the budget work when it comes to deploying ISE if you arent looking for enforcement on your wired devices.
    4. Do you recommend 802.1X Authentication to use for the Employee and Contractor? The Guest user  authentication as Open ?
    For internal users and vendors the best option by far is dot1x, almost all operating systems are capable of performing dot1x and the 1.1.1 MR has a piece now that can provision the supplicant for the users, by using scep to enroll certificates or configure peap settings.
    There is a feature within the guest portal that allows you to statically assign guests into endpoint group, that feature is called device registration web authentication. It seems like an open network but uses mac filtering to assign these devices to an endpoint without requiring users to enter any credentials. They are presented with an AUP page, once they accept their mac address is mapped to the endpoint group
    5. How can we ensure the Encryption of traffic from the Guest user to the NAD ( Network Access devices ) ?
    This may be a wireless question but I am sure the encryption is done using AES and using dot1x as the key management here is a brief background for this - http://www.cisco.com/en/US/tech/tk722/tk809/technologies_configuration_example09186a00807f42e9.shtml#L2
    You can also use the anyconnect client which can provide macsec which is layer 2 encryption for wired - http://www.cisco.com/en/US/prod/collateral/vpndevc/ps6032/ps6094/ps6120/qa_c67-622477_ns1049_Networking_Solutions_Q_and_A.html
    6. We are also looking for VDI  ( Citrix, VMware ) solution for the  client  ( both Employee and Guest ) , how ISE can play a role in  securing the VDI environment.
    For most thin clients you can perform dot1x authentication on the device itself, however that is something the manufacturer will have to support. This is a little gray for me.
    7. Is that any integration required  with Citrix or VMware. How the  VDI can be offered based on the User  role ( i.e. Employee, Contractor or Guest ), since Guest database is  available only with ISE, how the checks are made from the VDI  environment.
    IN ISE there is an identity sequence which can authenticate users in AD first, if the user is not found then it can look in the internal database.
    Our solution demands  MDM in the integrated  solution, As on today ISE cant be integrated with MDM. so what kind of  solution we can propose to have MDM and Cisco ISE .Do the clients now  enter the network should have already installed the MDM agent (or) any  other way of pushing the same to the Client.
    Today there is no integration between the devices, the last release time I heard was December for this feature. However it would be best to confirm with your Cisco Account rep on this issue.
    Thanks,
    Tarik Admani
    *Please rate helpful posts*

  • I can't load raw files from a Leica d-lux 6. Says it's an unsupported file. Help please!

    I cannot load raw files from a Leica d-lux 6.  Aperture says it's an unsupported file.  How do I get it to be a supported file?  Help, please!

    What is your Aperture version? Here is the list of supported raw formats for Aperture 3, see: Apple - Aperture - Technical Specifications - RAW Support
    Your camera is not on the list. Use the software that came with your camera to convert your raw files to dng or tiff images; then you can import the images into Aperture and work with them, while waiting for Apple to release raw support for your camera. Or shoot raw+jpeg pairs and use the jpeg while you are waiting.
    Is Mac OS X (10.5.1) really your current operating system? Then you may need to upgrade, when Apple finally releases raw support for your camera. The newest raw support required Aperture 3.4. to be installed.
    Regards
    Léonie

  • HP preloaded software error 1311 for Adobe XI application library or file for Help missing

    Operating system HP2011s/x, Pavilion P7-1026b, PC Desk/ Windows 7 w/64 bits w/PC bundle.  Preloaded Adobe XI software from HP not working properly the pop-up errors are as follows:
    (1) Error 1311  (2) verify operation failure (3) a required application library or file for Help is missing. Please, need help in correcting.  Thanks.

    Please download and install the free Abode Reader XI from Adode's website by clicking on this "Adobe Reader XI (11.0.03) Download" link. This will provide you with a slightly newer version than what was previously install on your computer.
    Additionally, it is in your best interest to create your personal set of HP Recovery Discs before a major disaster occurs with your computer. Please see "Creating Recovery Discs or Saving a Recovery Image to a USB Flash Drive (Windows 7)" for instructions on create either Recovery Discs or USB Recovery media, if given the option.
    Please send KUDOS
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • How do I the interpret "Disk file operations I/O" wait event?

    I have a large and very busy batch database. All of a sudden the "Disk file operations I/O" wait event is in the top 5 in AWR.
    The manual page isn't very helpful:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17110/waitevents003.htm#insertedID40
    Disk file operations I/O
    This event is used to wait for disk file operations (for example, open, close, seek, and resize). It is also used for miscellaneous I/O operations such as block dumps and password file accesses.
    So here is my question: What exactly is going on when I see this wait event? Why doesn't it show up as one of the other I/O events? Can I make it go away? Should I make it go away?
    DR

    sb92075 wrote:
    All of a sudden the "Disk file operations I/O" wait event is in the top 5 in AWR.Top wait event
    In EVERY Top Wait Event list, one wait event will ALWAYS be on top as #1; by definition of the list.
    Simply because any item, even #1, appears on this list does not mean this is a problem & needs to be fixed.
    If the Top Wait Event accounts for only 5 seconds out of a 1 hour sample,
    then reducing it to ZERO won't measurably improve overall application performance.
    The actual Time Waited is required to determine if it is a problem or not.It's taking 20% of time in a 15 minute sample. Anything that takes 20% of deserves to be understood....So: What actually causes it?
    DR

  • XSLT mapping Help Required.

    XSLT mapping Help Required.
    Hi Experts,
    I am New to XSLT Mapping. I am practising the below Example:
    InputXML File:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    XSL StyleSheet File:
    <?xml version='1.0' encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/Gen"
    Xmlns:ns1=”http://XYZ.com/Test”>
    <xsl:template match="/">
    <ns1:MT_XSLT_Target>
    <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title>
    <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/>
    </Name>
    <Street> <xsl:value-of select="concat(concat(ns0:Mt_XSLT_Source/Person/Address/Houseno,' '),
    ns0:Mt_XSLT_Source/Person/Address/Street)"/> </Street>
    <City> <xsl:value-of select="ns0:Mt_XSLT_Source/Person/Address/City"/> </City>
    </ns1:MT_XSLT_Target>
    </xsl:template>
    </xsl:stylesheet>
    The Desired Output shuold be:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:MT_XSLT_Target xmlns:ns1="http://XYZ.com/Test">
    <Title>Male</Title>
    <Name>Anshul Chowdhary</Name>
    <Street>83/b 2nd Main</Street>
    <City>Mysore</City>
    </ns1:MT_XSLT_Target>
    I have refered the xsl in xml and i am getting the below Oupt in a Single line like this:
    Anshul Chowdhary Male 2nd Main 83/b Mysore
    I am Unable to display in Target XML Fomrat as shown above. Please check and do the needful.
    Regards,
    GIRIDHAR

    Hi,
    I have used below for testing.
    Input xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    xsl code:
    <?xml version='1.0' encoding="UTF-8"?> 
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/gen" 
        xmlns:ns1="http://XYZ.com/Test"> 
        <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
        <xsl:template match="/"> 
            <ns1:MT_XSLT_Target> 
                <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title> 
                <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/> 
                </Name> 
                <Street> <xsl:value-of select="concat(concat(/ns0:MT_XSLT_Source/Person/Address/Houseno,' '), 
                    /ns0:MT_XSLT_Source/Person/Address/Street)"/> </Street> 
                <City> <xsl:value-of select="/ns0:MT_XSLT_Source/Person/Address/City"/> </City> 
            </ns1:MT_XSLT_Target> 
        </xsl:template> 
    </xsl:stylesheet>
    For testing in PI ,change the extension from .txt to .xsl and zip it and upload into PI as an imported archive .
    Regards
    Venkat

  • Saving master page in search template throws error "UserAgent not available, file operations may not be optimized"

    Hi Folks,
    I was trying to save basic search template master page "seattle.master" after making change to the template.
    I have added just "CompanyName" folder and update the line below in seattle.master.
    Change is this : <SharePoint:CssRegistration Name="Themable/CompanyName/corev15.css" runat="server"/>
    When I save it, and refresh page on browser, it shows "Something went wrong" error.
    ULS says the following error : "UserAgent not Available, file operation may not be optimized"
    Pls let us know if there is a solution.
    Any help Much appreciated !
    Thanks,
    Sal
    

    Hi Salman,
    Thanks for posting this issue, 
    Just remove this below given tag and check out. It might be happened that your control is conflicting with others. 
    Also, browse the below mentioned URL for more details
    http://social.msdn.microsoft.com/Forums/office/en-US/b32d1968-81f1-42cd-8f45-798406896335/how-apply-custom-master-page-to-performance-point-dashboard-useragent-not-available-file?forum=sharepointcustomization
    I hope this is helpful to you. If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

Maybe you are looking for