Target Upload

Hi Gurus,
We will now start to load our target data in 7KEX (EC-PCA Planning) for January to December 2010. Is there a way where we can lock 2009 for target upload. Our concern is that there might be a chance or possiblity that the peeople who will load the target data might make a mistake that instead of 2010, they might type 2009 in the textfile upload.
Thanks much.

I tried to lock the CO period in OKP1 but when i tried in the development client I can still upload Plan data from previous years that were already locked in OKP1.

Similar Messages

  • Using Jakarta HttpClient API for HTTPS file upload

    Any code sample on how to upload a file via the Jakarta HttpClient API?
    I tried the PostMethod, not sure I used it right, got response msg from the server response code 301, which indicated the file had been permanently moved. What did that mean? Besides, I didn't see PutMethod have a way to specify the target uploaded file filename, it only take a File object.
    Tried the PutMethod as well, but the method I though I can use was "depreciated".
    Any idea?
    jml

    I did. The sample code use the PutMethod and specify the file object. But when I use the similar code, I got 301, which means "File permanently moved". Not sure what that mean.
    jml

  • Uploading File classic ASP

    Hi
    Im a new flex developer and i making an app that insert data into a db and upload a file in a path web server, but my problem is when i send to asp my archive there is no way to save on the path and there is no error message, the asp works when i use html for send it a file it works perfectly but when i send it a file with flex not , so i need your help
    code as3 when user clicks on a textinput
      archivo0.browse([filtro]);
                                                      archivo0.addEventListener(Event.SELECT, onFileSelected);
                                                      archivo0.addEventListener(IOErrorEvent.IO_ERROR, errorUp);
                                                      archivo0.addEventListener(SecurityErrorEvent.SECURITY_ERROR,erro rUp);
                                                      archivo0.addEventListener(Event.COMPLETE,completado);
      protected function onFileSelected(e:Event):void {
                                            e.target.addEventListener(Event.COMPLETE, onFileLoaded);
                                            e.target.load();
                                  protected function onFileLoaded(e:Event):void{
                                            var nombrearchivo:URLVariables = new URLVariables();
                                            nombrearchivo.nombre = e.target.name;
                                            peticion.data = nombrearchivo;
                                            e.target.upload(peticion);
                                            trace(">>>>442",e.target)
                                  protected function errorUp(e:Event):void {
                                            Alert.show(e.toString());
                                  protected function completado(e:Event):void {
                                            Alert.show("Archivo uploadeado");
    AND THE CODE OF ASP IS
    <%
       Response.Buffer = True
       ' load object
       Dim load
          Set load = new Loader
          ' calling initialize method
          load.initialize
       ' File binary data
       Dim fileData
          fileData0 = load.getFileData("nombre")
       ' File name
       Dim fileName
          fileName0 = LCase(load.getFileName("nombre"))
    Dim pathToFile
          pathToFile0 = Server.mapPath("uploaded/") & "\" & fileName0
                 ' Uploading file data
       Dim fileUploaded
          fileUploaded0 = load.saveToFile ("nombre", pathToFile0)
       ' destroying load object
       Set load = Nothing
    %>

    I found a solution, posting in case somebody else has the
    same problem.
    if ( Uploader.Files.Count > 0 ) then
    'do file processing
    end if
    Thanks all
    David Pearson

  • Delpoy()  Target exception thrown

    Hello,
    i use an Script to deploy / undeploy Applications on my WL 12.c.
    I got an mistake an get crazy, because i cant find it.(see exception)
    All(connect(), stop(),undeploy()) works just the "deploy()" bugs.
    I controlled my commandline parameters and all looks fine:
    Auflösen der parameter
    Anwndungsname: -aname: Mass2
    Zielsystem: -target: mass2
    Quelldatei: -UNC: /opt/weblogic/SERENA/mass2-EAR.ear
    Adminuser: -user: weblogic
    Passwort: -pw: weblogic
    Servername: -sname: myserver:7001
    connecting to admin server....
    The exception is:
    WLSTException: Error occured while performing deploy : Target exception thrown while deploying application: No file or directory found at the specified application path: /opt/weblogic/wlserver_12.1/server/bin/mass2 : No file or directory found at the specified application path: /opt/weblogic/wlserver_12.1/server/bin/mass2
    my python script is:
    #!/usr/bin/python
    # Author : Jens Krämer
    # Skriptsprache: Python 2.6
    # Das Skript deployed eine neues Programm auf einen WL Server
    # Nötige Schritte:
    # 1. Verbindung zum WLST
    # 2. Anwendung wenn vorhanden stoppen
    # 3. Anwendung undeployen
    # 4. Anwendung deployen
    # 5. Application starten
    import sys
    #Funktion: Baut eine Verbindung zum Adminserver auf!
    #benötigte Variabeln
    # 1:user
    # 2:passwort
    # 3:servername mit Port zum Adminserver
    def adminServer(user, passwort, servername):
      print 'connecting to admin server....'
      connect( user, passwort, servername, adminServerName='AdminServer' )
    #Funktion: stopt die betroffene Anwendung und undeployed diese!
    #benötigte Variabeln
    # 1:Anwendungsnamen
    # 2:Managedhost auf dem die Anwendungläuft
    def stopUndeploy(anwname, target):
    try:
      print 'stopping and undeploying ....'
      stopApplication(anwname)
      print 'undeploy Application!'
      undeploy(anwname, targets=target)
    except:
      print 'undeploy und oder stoppen ist Fehlgeschlagen!'
    #Funktion: deployed die neue/neue version von der Anwendung
    #benötigte Variabeln
    # 1:Anwendungsnamen
    # 2:Managedhost auf dem die Anwendungläuft
    # 3:UNC zu der Datei (von ROOT aus ( ./ ))
    def deploy(anwname, target, unc):
      print 'deploying....'
      deploy(anwname, unc, targets=target, upload='true')
    #Funktion: Startet die neue Anwendungs'verison'
    #benötigte Variabeln
    # 1:Anwendungsnamen
    def startApp(anwname):
      print 'Start Application....'
      startApplication(anwname)
    #Funktion: Beendet die Verbindung zum Adminserver und schließt die Verbindung zum WLST
    def ende():
      print 'disconnecting from admin server....'
      disconnect()
      exit()
    #====== Main program ===============================
    print '*** WEBLOGIC : START ***'
    print 'Auflösen der parameter'
    for anzahl in range(len(sys.argv)):
      if "-aname" in sys.argv[anzahl]:
      anwname = sys.argv[anzahl+1]
      print 'Anwndungsname: -aname: ' + anwname
      elif "-tar" in sys.argv[anzahl]:
      target = sys.argv[anzahl+1]
      print 'Zielsystem: -target: ' + target
      elif "-unc" in sys.argv[anzahl]:
      unc = sys.argv[anzahl+1]
      print 'Quelldatei: -UNC: ' + unc
      elif "-user" in sys.argv[anzahl]:
      user = sys.argv[anzahl+1]
      print 'Adminuser: -user: '+ user
      elif "-pw" in sys.argv[anzahl]:
      passwort = sys.argv[anzahl+1]
      print 'Passwort: -pw: ' + passwort
      elif "-sname" in sys.argv[anzahl]:
      servername = sys.argv[anzahl+1]
      print 'Servername: -sname: '+ servername
    #Aufruf der Funktionen.
    adminServer(user, passwort,servername)
    stopUndeploy(anwname, target)
    deploy(anwname, target, unc)
    startApp(anwname)
    ende()
    print '*** WEBLOGIC : STOP ***'
    I hope someone find my mistake and tell me how to fix it
    best regards,
    Jens

    OKAY -.-
    Call me silly *g*
    Its not that smart to name my method "deploy" ... its an reserved name of WLST ....
    new name for my method and all is gooooooood :-/ 

  • New line character in File adapter

    I am having a receiver file adapter which generates files with multiple lines.
    My problem is when the target file is opened in notepad there is no line break and the lines comes as continous string with small rectangle as separator.This fails the target upload program.
    When I remove those small squares in notepad and hit enter and then upload it gets uploaded successfully.
    Is there any way to have line break so that new line will be generated each time (the documenation says the by-default it adds new line character then why in notepad it opens like a continous string?)
    Thanks in advance.
    Regards
    Rajeev

    Hello
    I know by default File Adapter value is line break. But if I open that generated file in notepad, the record does'nt appear on the new line. Instead at the end of each line there is special character added at the end of each record. When I hit enter and deletes that special character and then try to load that file it gets loaded successfully.
    So my problem is how to generate the file will give record on the new line. I tried to give 'nl' as endSeparator.
    How to give hexadecimal values? I tried giving '0xHH' but that gives error in File Adapter
    "Error: Conversion initialization failed: Exception: java.lang.NumberFormatException: For input string: "HH"
    Thanks in advance.
    Regards
    Rajeev

  • OEM 12c  Agent does not show down status.

    Hi, I'm testing EM 12c. I added host target to oem and then kill agent process on host.
    When open agent page (Setup-Agent-Testingagent) see error.
    Communication between the Oracle Management Service host to the Agent host is unavailable. Any functions or displayed information requiring this communication link will be unavailable. For example: deleting/configuring targets, uploading metric data, or displaying Agent home page information such as Agent to Management Service Response Time (ms).
    But status agent and host show up in EM.
    I try resync agent, But nothing has changed it.
    ./emctl status agent
    Oracle Enterprise Manager 12c Cloud Control 12.1.0.1.0
    Copyright (c) 1996, 2012 Oracle Corporation. All rights reserved.
    Agent is Not Running
    Other target (hosts,agent) show status correctly.
    Thanks for help.

    EM is showing Host is up makes sense. If I remember correct the OMS pings the host if the agent is down. This will succeed so the host will show up.
    Why the agent is showing up does not make sense to me. The agent sends a signal every (default) 120 seconds. If no signal is received by the OMS the OMS sends a reverse ping to the agent. If this does not succeed the agent and its monitored targets should get the state “Agent Unreachable”.
    Eric

  • Delta

    Hello experts
    Infosource 2lis_40_reval is uploading into 3 targets. during delta upload, data to 1 data target uploaded successfully where as for other 2 unsuccessfully. There was a problem in update rule. so we corrected that error and uploaded from PSA. Now i can see in 3 targets uploaded successfully with added and transferred records with reporting icon. But after loading from PSA. in monitor screen the status is still in RED color..Its not turning into green.....what might be the reason?
    REgards
    Rak

    Hello Rakesh,
    Did you force the request to RED when u found that it had not loaded to the other 2 targets?
    It sometimes happens that if you do QM status change to RED,and then load to targets successfully from PSA,the monitor icon still shows RED..because it was manual status change.
    If the details tab of the monitor shows no RED or even YELLOW messages..i.e. all messages GREEN,u could try changing status manually to GREEN(here i am assuming that it was forcibly changed earlier).
    If this is not the case,suggest that u back out the delta from all 3 targets and then do a 'delta repeat' by running the required infopackage.
    cheers,
    Vishu

  • EMGC 12c OMS database status pending

    Has anyone experienced the Grid Control 12c OMS repository database staying in Pending status for no apparent reason? That's what I've got in my environment. I can still access the database via EMGC, just the status stays Pending for some reason.

    Hi,
    Is the agent which monitors the database target uploading successfully? You can verify this by executing the '$ORACLE_HOME/bin/emctl upload agent' command.
    If the upload operation works, you can run command "emctl clearstate agent", then check the status of the database target. Note that this command causes an additional load to the OMS, so don't overuse it.
    Regards,
    - Loc

  • WLST deploy fails but works fine via admin console

    RHEL 5.6
    Jrockit 1.6.0_20-R28.1.0-4.0.1
    Weblogic 10.3
    Alfresco 3.3.4 (295)
    Oracle 10.2.0.4
    I'm experiencing problems when attempting to deploy a WAR using WLST using the below python script. If I deploy this WAR using the Weblogic Admin Console, all works well. When I attempt the same deployment using WLST, the deployment 'appears' to work and the script shows no sign of error BUT the application does NOT show up at all in the admin console. I'm using the same authentication information in both scenarios.
    connect(username,password,'t3://' + adminServer + ':8001')
    try:
    edit()
    startEdit(waitTimeInMillis=30000)
    except:
    traceback.print_exc(file=sys.stdout)
    print "Failed to aquire edit lock"
    # cannot undo when we do not has the lock
    #undo(defaultAnswer='y')
    #stopEdit()
    sys.exit(1)
    try:
    for app in cmo.getAppDeployments():
    if app.getName() == appname:
    print ('Application \'' + appname + '\' is already deployed, removing previous deployment...')
    undeploy(appname)
    break
    except:
    traceback.print_exc(file=sys.stdout)
    print "Undeploy failed"
    undo(defaultAnswer='y')
    stopEdit(defaultAnswer='y')
    sys.exit(1)
    try:
    deploy(appname, source, target, upload='true', block='true')
    except:
    traceback.print_exc(file=sys.stdout)
    print "Deploy failed"
    undo(defaultAnswer='y')
    stopEdit(defaultAnswer='y')
    sys.exit(1)
    try:
    save()
    activate()
    except:
    traceback.print_exc(file=sys.stdout)
    print "Activate failed"
    undo(defaultAnswer='y')
    stopEdit(defaultAnswer='y')
    sys.exit(1)
    disconnect()
    Is it possible to deploy the application unzipped?
    - CDM

    Hi Sebastian,
    You need to be connected to master database when executing GRANT VIEW SERVER. Try the following it will work:
    USE [master]
    GO
    GRANT VIEW SERVER STATE TO [Domain\User]
    Regards,
    Basit A. Farooq (MSC Computing, MCITP SQL Server 2005 & 2008, MCDBA SQL Server 2000)
    http://basitaalishan.com
    Please remember to click "Mark as Answer" on the post that helps you, and to click
    "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Delta Upload request from ODS is not including the Data target of planning

    Hi,
    I have a process chain in which there is a delta upload from ODS to 3 different data target.  One of the data target is the planning cube. last 2days back i have changed the process chain schedule after was the Delta request is not hapenning for Planning cube.  The process chain contains the changing the planning to load mode and load to planning mode.  Every thing is working fine but the Delta is not happening for the Planning cube.  Delta request are going correctly to the Other 2 data targets.  Now it was like Delta has excluded the Planning cube.  Another this there is nto planning package is appearing in the Infousources.  and when I am trying to upload manually from ODS to Data targets it say that No delta is there.  Please help me in this.  This is a production problem.   I have checked all the data monitors every thing is from but no delta is hapenning for the planning cube.   
    Thanks
    Naveen.

    Resolved

  • Error in Source System While Uploading Data from ODS to Data Target

    Hi All,
    Iam getting Following Error while Uploading data from ODS to Data Target
    a) Error in Source System.
    b)DataSource 80MKT_DS01 has to be replicated (time stamp, see long text)
    Message no. R3016
    Diagnosis
    DataSource 80MKT_DS01 does not have the status of the source system in the Business Information Warehouse.
    The time stamp in the source system is 21.06.2005 07:31:33.
    The time stamp in the BW system is 27.11.2004 17:41:45.
    Regards,
    Chakri

    This generally occurs when you change the data source or enhance the data source or the coonections to the datasoiurse are broken. To resdolve thius sort of errors just
    1. Check for the coonect between the sourse & target systems
    2 . Replicate the data sourcses.
    3. Acivated TR,UR,& the rest of the flow But check in the source system if the structre is modified & is so do the changes in the IS , TR,UR correspondingly & the try to load .Hoppe it allows you to load .
    Thanks ,
    PSG

  • Target down, Agent Upload/OMS refresh rate

    Using 10.1.0.4.0 Grid Control,. OMS and all agents running on MS platforms.
    Currently testing agents, and in particular metrics and alert rates...
    The example I need to ask about is this...
    We have an agent running on a server, on which several targets exist. We shutdown an Oracle Listener on the server, and after a few mins (this duration varies) we receive an 'Target Down' alert in OMS, and the associated email....
    So far, so good...
    However, how can the 'alert rate' be changed so that an alert is created immediately following the shutdown of the listener? Also, the alert remains several mins after the listener has been restarted...
    The way EM currently works with alerts isn't very useful if users say the application is unavailable, but to DBAs using EM - (for several mins) everything looks okay!
    Any help, appreciated :-)

    Check uploadinterval in emd.properties:
    Here is a description of this parameter
    uploadInterval - Number of minutes to wait before the Agent uploads the XML files to the OMS. Default value is 30 (minutes).
    You can change this to something lower but be careful about flooding the network if you've decreased it. May be something like 15 minutes will work for you.

  • Mass upload in Jump targets(urgent )

    Hi Experts,
    In creating Jump targets in RSBBS..let me know the option to have a mass upload multiple selection in jumping from one query to another.
    I mean that when we go to another query(receiver) from the result area of the first(sender) how would be the selections in these? also is there any option to have a mass upload to the selections of the receiver query from the first.
    I know that it takes single values when we click on a single row and when we click on the column it takes the entire valus for selections.
    Also how can i view the selection screen of the receiver query.
    Can anyone help me in this regard.
    Regards,
    Rambo.
    Message was edited by: Rambo sawh
    Message was edited by: Rambo sawh

    Hi,
       try the following:
    1. make the variables of receiver as mandatory / ready for input
       based on your query, BW should display the variables of receiver...there you can add if you need more input...
    hope this helps

  • Delta and full uploads in the same data target?????

    I have found that delta load and full update from different infopackages are getting loaded into the same data target that is ODS object. when do we go for such situation, can any one explain me in detail or give me some documents to know more about it.

    Hi,
    You have not clearly mentioned that those infopackages are ctrated on the same Datasource or not.
    This way of uploading is very common when we need to upload some data from R/3 and some other data from Flat file into the Info cube. And GenerallyFlat file data would not be given in Before image and after image way, thats why we need to do full uplaod. The deleetion of already uploaded flat file data fromt he cube (before new upload from flat file ) depends up on whether the data to be uploaded from flat file system is always new data or not. And generally R/3 Extractor is capable of giving deltas, thats why only delta loads to the cube.
    With rgds,
    Anil Kumar Sharma .P

  • "The Agent of this Target is Unreachable" & EMD Upload Error

    Hi There,
    I've been working on this problem for three days now and I'm stuck! Ok so here's the issues:
    I am monitoring two SQL Server via Enterprise Manager (Oracle Grid). Both worked for months, however, once the server that the SQL Servers were installed on was reboot they both were showing up "The Agent of this Target is Unreachable" in the Grid console. However, after I started and stopped the agent on the development SQL Server server it showed up in the GRID. However, the pre-production does still not show up after I start and stopped the agent on the pre-production server. When I tried to upload the agent on the pre-production server it gives the following error:
    EMD Upload Error: Upload was successful but the collection is disabled - disk full
    I deleted the access_log files and I don't see a space problem. I secured the agent. I resysnced the agent ....
    FYI the Grid is on a unix machine and the SQL servers are on a windows server.
    Please help!
    J

    I am monitoring two SQL Server via Enterprise Manager as in Microsoft's SQL Server?

Maybe you are looking for

  • How to use check box & dropdownlist in smart forms

    can anybdy explain(any examples) how i can use check box or drop down list in smart forms.is ther any provision like that

  • Setting multiple parameters in "ON VALUE-REQUEST FOR"

    Hello experts, I have a dynpro with two parameters on it, called PA_LABKY and PA_LABTX. The first field PA_LABKY is extended by a value help (see the code below). Normally when a user chooses a value from f4 help the field is filled with the value. T

  • Printing a PDF file takes forever

    My HP laser printer is quite fast. But when sending a PDF file to print (open it in Acrobat full version and send to print) -- it takes forever, even if the file is not large at all.... ????

  • Member Selection issue Smart View 11.1.2.1.102

    Hi there! I am experiencing an issue with several different cubes when accessing the member selection function in Smart View version 11.1.2.1.102. The issue is isolated to 4 Essbase cubes, but among the 4 are both ASO & BSO. When I highlight the top,

  • Urgent!!!!!!!HANDLER THREAD PROBLEM

    file name GetName.html <html> <body> <FORM METHOD = POST ACTION = "SaveName.jsp"> what is your name? <INPUT TYPE = TEXT NAME=username SIZE= 20> <p><INPUT TYPE= SUBMIT> </FORM> </BODY> </HTML> file name SaveName.jsp <% String name = request.getParamet