Skip to main content
Glama
ivossos
by ivossos

clear_data

Remove specified scenario, year, and period data from Oracle EPM Cloud FCCS to manage financial consolidation and close processes.

Instructions

Clear data for specified scenario, year, and period / Limpar dados

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scenarioNoScenario to clear
yearNoYear to clear
periodNoPeriod to clear

Implementation Reference

  • The main handler function that executes the clear_data tool: prepares optional parameters (scenario, year, period) and calls the underlying FCCS client to submit the clear data job.
    async def clear_data( scenario: Optional[str] = None, year: Optional[str] = None, period: Optional[str] = None ) -> dict[str, Any]: """Clear data for specified scenario, year, and period / Limpar dados. Args: scenario: Scenario to clear. year: Year to clear. period: Period to clear. Returns: dict: Job submission result. """ parameters = {} if scenario: parameters["scenario"] = scenario if year: parameters["year"] = year if period: parameters["period"] = period result = await _client.clear_data(_app_name, parameters) return {"status": "success", "data": result}
  • Input schema definition for the clear_data tool, specifying optional string parameters for scenario, year, and period.
    { "name": "clear_data", "description": "Clear data for specified scenario, year, and period / Limpar dados", "inputSchema": { "type": "object", "properties": { "scenario": {"type": "string", "description": "Scenario to clear"}, "year": {"type": "string", "description": "Year to clear"}, "period": {"type": "string", "description": "Period to clear"}, }, }, },
  • Registration of the clear_data handler (imported from data module) in the central TOOL_HANDLERS dictionary used by the agent.
    "smart_retrieve": data.smart_retrieve, "copy_data": data.copy_data, "clear_data": data.clear_data, # Reports

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ivossos/fccs-mcp-ag-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server