Access to the reports folder using ftp

Hello,
I'd like to access to the reports folder on the NCS using a ftp software (filezilla ftp client 3.3.3). This folder is located at '
/localdisk/ftp/reports/' on the virtual machine. I also created a ftp user using the command line with 'ncs password ftpuser ftpncs password *******'.
But the remote connection still doesn't work. Here is what I have on the log output of my ftp software:
Server:        220 Service ready for new user
Command:     USER ftpncs
Answer:          331 User name okay, need password for ftpncs
Command;     PASS ******
Answer:          530 Access Denied
Error:               Critical error cannot connect to the server
Maybe I'm incorrect somewhere in my configuration. Does someone have an idea?
Many thanks for your help
Theophile

Maybe you´re hitting this Bug:
CSCtw98787
The ncs password ftpuser CLI command should enforce ftp-user parameter
Symptom: The ncs password ftpuser command allows the username input to be anything and will accept that input without error:   
snx1-ncs-1/opsadmin#  ncs password ftpuser testacct password Hello123  Initializing...   Updating FTP password.  This may take a few minutes...  Successfully  updated location ftp user    But then attempt to login with that  information, you get this:    ftp snx1-ncs-1  Connected to  snx1-ncs-1.cisco.com.  220 Service ready for new user  User  (snx1-ncs-1.cisco.com:(none)): testacct  331 User name okay, need  password for testacct  Password:  530 Access denied  Connection closed  by remote host.
Conditions: ncs cli command, seen in versions 1.0.1.4, 1.0.2.28 and 1.0.2.29
Workaround: Must use the ncs passowrd ftpuser  ftp-user password syntax to update the ftp-user  account. While other input for username is allowed, it has no effect.

Similar Messages

  • Hide a folder but provide access to the report with in it for XIR2

    Is there any way to hide a folder and provide access to the report in XIR2 while using infoview?

    Hi Ganapathi,
    I have resolved the issue by setting the viewobjects to not specified for that particular group for a partiuclar folder in CMC.
    Now the user in not able to see folder in Infoview but able to access the report within it.
    Regards,

  • Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoyi

    Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoying. What happened? Internet Explorer 8.0 did the same thing. This was one of the reasons why I started using Firefox to download all images. I went into Tools>Options and it only lets me set another folder. I dont want to set a specific folder I want it to always go to the last folder used. So what gives?
    == This happened ==
    Every time Firefox opened
    == possibly when the most recent updates were installed, a few days ago

    Thanks jscher 2000. I guess I didn't make it clear. "It restarts with all the addons activated, and resumes with the tabs that were open before closing it." IE, it's running fine now with all the extensions activated. Everything is OK now.
    So something in the Firefox code was causing the bad behavior. It's not essential that I find out what the problem was - I'm just curious. And if anybody else has this same problem, it might be nice to have it corrected at the source.

  • HT201363 I have a lot of money on my Apple ID but when I try to buy something it ask for my security questions that I do not remember the answers to. I also don't have access to the email I used to set up my Apple ID but I do know the password how do I fi

    I have a lot of money on my Apple ID but when I try to buy something it ask for my security questions that I do not remember the answers to. I also don't have access to the email I used to set up my Apple ID but I do know the password how do I fix this ?

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (105412)

  • My Menu - Add a Query Print Layout to the Report Folder

    This is a newb question.  I can easily add a Query or form or most anything else to the Folders under My Menus ... But how can I add a specific Print Query Layout to the Reports folder un My Menu?
    I know it is simple but I can not find the steps in the documentation
    Thanks in advance!!! 
    Dana

    Kapil
    I tried that, but it adds the Query not the QPLD to the menu.
    I had figured that I could go the the QPLD memu and add the Report, but that adds the Query Print Layout Menu with all the reports.
    I feel like I am missing something very obvious here!!!
    Thanks for your quick response!!
    Dana

  • How to track personal details changes in the report without using triggers on the database tables

    Hi There,
    I'm having a requirement to track the oracle HRMS Personal details changes in the report not using the triggers.
    ex: if some changes the address of the person, then that changed values should be populated in the report.
    Please find below query:
    If any of the following columns data is updated, the new value should be populated in the report.
    SELECT PAPF.PERSON_ID                                                       PAPF_PERSON_ID
    ,      PAPF.EMPLOYEE_NUMBER                                               EMPLOYEE_NUMBER        
    ,      PAPF.FIRST_NAME                                                            FIRST_NAME   
    ,      PAPF.LAST_NAME                                                            LAST_NAME
    ,      TO_CHAR(PAPF.DATE_OF_BIRTH ,'DD-MON-YYYY')     DATE_OF_BIRTH
    ,      ADDR.ADDRESS_LINE1                                                   ADDRESS_1
    ,      ADDR.ADDRESS_LINE2                                                   ADDRESS_2
    ,      ADDR.ADDRESS_LINE3                                                   ADDRESS_3
    ,      ADDR.TOWN_OR_CITY                                                    TOWN
    ,      ADDR.REGION_1                                                              COUNTY
    ,      ADDR.POSTAL_CODE                                                     POST_CODE
    ,      ADDR.COUNTRY                                                              COUNTRY
    ,      PAY.PAYROLL_NAME                                                     PAYROLL_NAME
    ,      PLN_TYP.NAME                                                              PLAN_TYP
    ,      PLN.NAME                                                                     PRODUCT_NAME
    ,      BOF.NAME                                                                     COVERAGE
    FROM   PER_ALL_PEOPLE_F                                                PAPF
    ,      PER_ALL_ASSIGNMENTS_F                                          PAF
    ,      PER_ADDRESSES                                                        ADDR
    ,      PAY_PAYROLLS_F                                                       PAY
    ,      BEN_PRTT_ENRT_RSLT_F                                                 PEN
    ,      BEN_PL_TYP_F                                                         PLN_TYP
    ,      BEN_PL_F                                                             PLN
    ,      BEN_OIPL_F                                                           BOIPF
    ,      BEN_OPT_F                                                            BOF
    WHERE 1                                     = 1
    AND PAPF.PERSON_ID                          = PAF.PERSON_ID
    AND TRUNC(SYSDATE)                          BETWEEN PAPF.EFFECTIVE_START_DATE AND PAPF.EFFECTIVE_END_DATE
    AND TRUNC(SYSDATE)                          BETWEEN PAF.EFFECTIVE_START_DATE AND PAF.EFFECTIVE_END_DATE
    AND PAPF.PERSON_ID                          = ADDR.PERSON_ID
    AND ADDR.PRIMARY_FLAG                       = 'Y'
    AND ADDR.DATE_TO                            IS NULL
    AND PAF.PAYROLL_ID                          = PAY.PAYROLL_ID(+)
    AND PEN.PERSON_ID                           = PAPF.PERSON_ID
    AND PEN.BUSINESS_GROUP_ID                   = PAPF.BUSINESS_GROUP_ID
    AND TRUNC(SYSDATE)                          BETWEEN TRUNC(PEN.EFFECTIVE_START_DATE) AND TRUNC(PEN.EFFECTIVE_END_DATE)
    AND PEN.PRTT_ENRT_RSLT_STAT_CD              IS NULL
    AND PEN.SSPNDD_FLAG                         = 'N'
    AND ( PEN.ENRT_CVG_THRU_DT                  >= TRUNC(SYSDATE)
    OR    PEN.ENRT_OVRIDN_FLAG                  = 'Y')
    AND EXISTS(SELECT PIL.PER_IN_LER_ID
               FROM   BEN_PER_IN_LER PIL
               WHERE  PIL.PER_IN_LER_ID         = PEN.PER_IN_LER_ID
               AND    PIL.BUSINESS_GROUP_ID     = PEN.BUSINESS_GROUP_ID
               AND    PIL.PER_IN_LER_STAT_CD    NOT IN ('VOIDD','BCKDT'))
    AND PEN.PL_TYP_ID                           = PLN_TYP.PL_TYP_ID  
    AND TRUNC(SYSDATE)                          BETWEEN PLN_TYP.EFFECTIVE_START_DATE AND PLN_TYP.EFFECTIVE_END_DATE  
    AND PLN_TYP.PL_TYP_ID                       = PLN.PL_TYP_ID 
    AND TRUNC(SYSDATE)                          BETWEEN PLN.EFFECTIVE_START_DATE AND PLN.EFFECTIVE_END_DATE
    AND PLN.PL_ID                               = PEN.PL_ID
    AND PEN.OIPL_ID                             = BOIPF.OIPL_ID(+)
    AND TRUNC(SYSDATE)                          BETWEEN NVL(BOIPF.EFFECTIVE_START_DATE,HR_GENERAL.START_OF_TIME) AND NVL(BOIPF.EFFECTIVE_END_DATE,HR_GENERAL.END_OF_TIME)
    AND BOIPF.OPT_ID                            = BOF.OPT_ID(+)
    AND TRUNC(SYSDATE)                          BETWEEN NVL(BOF.EFFECTIVE_START_DATE,HR_GENERAL.START_OF_TIME) AND NVL(BOF.EFFECTIVE_END_DATE,HR_GENERAL.END_OF_TIME)
    AND (:P_SYSDATE)                            BETWEEN TRUNC(PEN.ENRT_CVG_STRT_DT) AND TRUNC(PEN.ENRT_CVG_THRU_DT)
    AND (CASE WHEN :P_PAYROLL_ID IS NULL THEN 'Y' ELSE NVL((SELECT 'Y' FROM DUAL WHERE PAY.PAYROLL_ID  = :P_PAYROLL_ID), 'N') END) = 'Y'
    AND PAPF.LAST_UPDATE_DATE                   = (:P_SYSDATE) ;
    --AND PAPF.LAST_UPDATE_DATE                   BETWEEN to_date(:P_SYSDATE) and (to_date(:p_sysdate) + INTERVAL '31' Day);
    --AND (:P_SYSDATE)                           = PAPF.LAST_UPDATE_DATE ;
    Thanks

    check this -
    Re: Best Event-Based notifications for Sox Complience?

  • HT5312 I no longer have access to the email address used as my Apple ID and when I choose to answer security questions, my DOB had to have been originally entered incorrectly because it keeps failing.  How do I get rid of my old Apple ID and create a new

    I no longer have access to the email address used as my Apple ID and when I choose to answer security questions, my DOB had to have been originally entered incorrectly because it keeps failing.  How do I get rid of my old Apple ID and create a new one?

    Contact Apple, either through the link in that article or by phoning them. Alternatively, just create a new Apple ID; previous iTunes Store purchases won't be transferred to it.
    (79271)

  • HT4759 How do I reset my password for my apple account if I have no access to the email account used to setup the account?

    How do I reset my password for my apple account if I have no access to the email account used to setup the account?

    Hello there, KADaniel.
    The following Knowledge Base article outlines the steps to change your password for your iCloud account:
    iCloud: Change your iCloud password
    http://support.apple.com/kb/ph2617
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Filter on the reports created using DIRECT DATABASE ACCESS in obiee 10g

    How do i filter on the report that is created by using DIRECT DATABASE ACCESS in obiee 10g?
    I have reprot A with link to report B, report B is created using DIRECT DATABASE ACCESS. so it is just a table, but i need to filter out 2 columns.
    here is the query in REPORT B:
    select strm, acad_group, crse_id, class_section, count(emplid) from v_crse_enrl
    group by crse_id, strm, class_section, acad_group;
    the link in REPORT A:
    '<a target="_blank" href="'||VALUEOF("bi_link")||'Go&Path=CF_CROSS_TEACHING_LIST&ACTION=Navigate&col1=STRM&val1='||view1_DIMEN.STRM||'&col2=CLASS_SECTION&val2='||TRIM(view1_DIMEN.CLASS_SECTION)||'">' ||view1_dimen.class_id||'</a>'
    from this link to report B.
    thank you!!

    I didnt tested using url, but the same works with using presentation variables.
    To your direct sql add where clause for those two columns like WHERE col='@{col1}' and col ='@{col2}'
    and try to run from url.
    let me know updates

  • When i sync my itunes it says i do not have access to the write folder "^2". How do i allow this?

    When i sync my itunes it says i do not have write access to the folder "^2". How do i allow this. An suggestions?

    If your computer is a Mac use the Disk Utility and "Repair Permissions". If it's Windows I don't have any idea how to fix it.

  • To visualize the report created using Discoverer Plus in Web

    Hi,
    I had created the report usingOracleBI Discoverer Plus Version 10.1.2.45.46c & able to visualize the report in OracleBI Discoverer Viewer Version 10.1.2.45.46c.
    URL fo accessing the report is as:
    http://machinename1:7777/discoverer/viewer
    If i try to connect to from another machine (machine2) as
    http://machinename1:7777/discoverer/viewer
    i'm unable to connect & i get the error page can not be displayed.
    Is it necessary to have the URL only with domain name as
    http://machinename.domainname:portno/discoverer/viewer
    I had already installed OWB, Oracle BI etc. If i had to create a domain then i have install all these & need to work from scratch.
    Is there any way to access the report across the internet or web.
    Plz do provide a solution for this issue.
    Thx in Advance

    Hi,
    Check the Discoverer OBEs at:
    http://www.oracle.com/technology/obe/obe_bi/discoverer/discoverer_1012/index.html
    The lesson titled 'Creating a Business Intelligence Dashboard Using Discoverer Portlets' should answer your question.

  • I teach at an online university. We use Office Web Access at the University. Using OWA, Internet Explorer offers me options (like searching old emails) that MF doesn't provide. Why is this?

    To repeat, MF seems to offer fewer options at this university when I use Office Web Access.

    Hi guys,
    I talked with the team about this on Friday last week, I'm sorry we haven't gotten back to you sooner.
    Our initial recommendation would be to recompile your application to use HTMLLoader.  While StageWebView uses the OS web rendering engine, the HTML control still uses the built in webkit.  However, I realize that you might not have access to the original code, be unable to distribute an update, etc.
    Our intent with this change was to have StageWebView use a light weight interface to the OS rendering engine.  We wanted you to have the best performance possible with the most up to date security.  There were other issues we were also trying to tackle, such as decarbonizing on Mac that also influenced our decision.
    All that said, we get where you are coming from, especially with Windows.  I don't think it would be unreasonable to have an api that would allow you to choose if you want StageWebView to use the internal webkit or the OS version.  Maybe the default would be to use the internal webkit so that older apps aren't impacted.  This would be a great bug report / feature request.  Getting comments and votes from other developers would also allow us insight into who is using this feature and has been effected by our changes.
    If you'd like to enter a bug, please let me know the bug number and I'll take it to the team for review.
    Thanks,
    Chris

  • Not able to view the values on the report viewed using Query Report Viewer

    Hi all,
    There seems to be some unknown problem with the Report Template I have prepared and uploaded on PIA XML Publisher. When I run it with some ID set, it doesn't seem to show the values from the Data I give. For example if I have a field called ChartField in my report Template, It doesn't seem to get populated when I do SetID.
    Why is it so?

    Hi all,
      select bdmng from resb into corresponding fields of table it_stpo2
                for all entries in it_stpo
                 where matnr = it_stpo-idnrk
                 and xloek ne 'X'.
      loop at it_stpo2.
        move-corresponding it_stpo2 to it_stpo.
        append it_stpo.
      endloop.
    In the above code, m able to fetch the records in the table it_stpo2. but the data is not gettin populated in the final internal table it_stpo. Both the internal tables it_stpo & it_stpo2 are same.
    The data is gettin moved from it_stpo2 to it_stpo but only upto the header level. its not gettin appended in the table it_stpo even after using append stmt.
    Plz help me to resolve this issue. its urgent.
    Rgds,
    Purva

  • How to slection screen fields in  output of the  report by using alv classe

    hi all,
    i want to get all the fields in the selection screen to be displayed in the output layout.i am developing report by using alv grid classes can any one help me.
    answers are rewarded

    Hello
    u first place some dictionary input/output fields in your screen and
    below that u place ur custom control,
    so what ever input u are giving in those fields  , u seelct data accordingly,
    for example.
    in screen there is one icon 'dictionary/program fields, click that and give some table , suppose u want to extract data from kna1 table using kunnr, select kunnr and press enter, then along withn cursor u get one frame, take that on to screen and place it ,
    now in the program write
    tables: kna1.
    select  *  from kna1 into it_kna1  where kunnr = kna1-kunnr. 
    now u get the data into it_kna1.
    it will work , try this.
    bye.

  • Bridge CS4 Won't Reopen the last folder used after reboot . . .

    When I restart Win XP (32 bit) and open Bridge CS4 it opens to a specific folder (the same one every time) but NOT the last one used. My Workspaces also seem to be forgotten. Is there a way to specify the folder that you want Bridge to open?
    Any thoughts?
    Thanks,
    Bob

    Are you closing Bridge properly (waiting until all processing has finished) before shutting Windows down?

Maybe you are looking for

  • Trying to transfer old macbook files to new

    I have been searching everywhere for an answer to my problem for hours, with no luck, so please forgive me for posting a new topic about it if it really is out there somewhere. Here's the situation: I have a white 13 in MacBook from late 07, my child

  • 22 - 26 inch tv

    Hello I'm in the market for a 22 - 26 inch LCD HDTV but i'm having trouble deciding on one.  I've seen some good tvs for a decent price but it seems alot of them have issues just a year or so down the road. I will be gaming(PS3) and watching movies o

  • Mac crashing...Help!

    Hi there. I have had my Macbook Pro since Jan 2010 and have had the occasional problems. In Nov last year I decided to reinstall Mac again due to lack of space and my Mac getting slow. This all went well, I installed it succesfully and I was using Bo

  • Solaris 10 x86 install problems allocating resources

    I have a problem when I first install. I get two devices, NON ACPI and ACPI both using IRQ 3. After the conflict resolves, during some page instances of the boot configuration assistant, I lose my keyboard functionality. This is currently set to IRQ

  • LDAP:Mapping Error while creating as per SAP Note No. 784697

    Hi, While configuring LDAP connection for Creating Users in Active Directory from Employee Data Stored in SAP HR, we are encountering error while mapping Structure as per the document provided at Link - https://www.sdn.sap.com/irj/servlet/prt/portal/