Error PLS-201 with DBMS_CRYPTO - 11g (totally newbie error).

Hi guys.
I'm trying to compile a package which includes the following instruction in a function:
return DBMS_CRYPTO.Hash(src => v_hashed, typ => DBMS_CRYPTO.HASH_MD5);
where "v_hashed" is raw(16) and the function expects a RAW as output. This instruction works ok in 10gr2 but fails in 11g with the following error (I have been granted access to the package, of course):
PLS-201: identified 'DMBS_CRYPTO' must be declared
If I replicate the same functionality in an anonymous block, it works ok. I'm pretty sure there is a silly mistake I'm making but I really can't see it. Hope somebody can help me.
TIA,
Mariano

You probably have permissions on dbms_crypto through a role, and not granted directly to your user. Permissions granted through a role do not work in stored procedures, but do work in anonymous blocks.
As a quick test of this, in your sqlplus session type
set role none;
then try your anonymous blxok again. It will fail.
John

Similar Messages

  • HELP: DEADLINE!!!! ERROR PLS-00306: WITH APPENDCHILD

    I am new to this... any help is greatly appreciated..
    set serveroutput on
    CREATE OR REPLACE FUNCTION uf_buildWRDetail(pi_lWRNum IN NUMBER) RETURN VARCHAR2 IS
    xmlDoc xmlDom.DOMDocument;
    xmlDocOriginal xmlDom.DOMDocument;
    xmlDocAddOn xmlDom.DOMDocument;
    parserWRDetail xmlparser.Parser;
    parserWRAssoc xmlparser.Parser;
    parserTemp xmlparser.Parser;
    xmlDocElementO xmlDom.DOMElement;
    xmlDocElementA xmlDom.DOMElement;
    el xmlDom.DOMElement;
    xmlDOMList xmlDOM.DOMNodeList;
    xmlDOMNodeO xmlDOM.DOMNode;
    xmlDOMNodeA xmlDOM.DOMNode;
    xmlNodeVal xmlDOM.DOMNode;
    xmlNodeName xmlDOM.DOMNode;
    docNodeROOT xmlDOM.DOMNode;
    docNodeROWSET xmlDOM.DOMNode;
    docNodeROW xmlDOM.DOMNode;
    docNodeFIELD xmlDOM.DOMNode;
    docNodeTEXT xmlDOM.DOMNode;
    nodeAssocParty xmlDOM.DOMNode;
    nodeAPROW xmlDOM.DOMNode;
    xmlElement xmlDOM.DOMElement;
    cWRDetail CLOB;
    cWRAssoc CLOB;
    sNodeName VARCHAR2(2000);
    sNodeValue VARCHAR2(2000);
    nodeCount NUMBER;
    sTempOut VARCHAR2(32767);
    temp2 varchar2(255);
    BEGIN
    --=======================================================================
    -- MASTER OUT
    --=======================================================================
    parserTemp := xmlparser.newParser;
    xmlparser.parseBuffer(parserTemp,'<ROWSET/>');
    xmlDoc := xmlparser.getDocument(parserTemp);
    xmldom.setVersion(xmlDoc, '1.0');
    docNodeROOT := xmldom.makeNode(xmlDoc);
    docNodeROWSET := xmldom.getLastChild(docNodeROOT);
    el := xmldom.createElement(xmlDoc, 'ROW');
    docNodeROW := xmldom.appendChild(docNodeROWSET, xmldom.makeNode(el));
    --=======================================================================
    -- WORK DETAIL
    --=======================================================================
    -- this function returns a clob with the standard ROWSET/ROW namings
    --==============================================================================
    select uf_getWRDetail(pi_lWRNum) into cWRDetail from dual;
    --=============================================================================
    parserWRDetail := xmlparser.newParser;
    xmlparser.ParseCLOB(parserWRDetail, cWRDetail);
    xmlDocOriginal := xmlparser.getDocument(parserWRDetail);
    xmlDOMList := xmldom.getElementsByTagName(xmlDocOriginal, '*');
    nodeCount := xmldom.getLength(xmlDOMList);
    if nodeCount > 0 then
    for i in 2..nodeCount-1 loop
    xmlDOMNodeO := xmldom.item(xmlDOMList, i);
    sNodeName := xmldom.getNodeName(xmlDOMNodeO);
    xmlDOMNodeO := xmldom.getFirstChild(xmlDOMNodeO);
    sNodeValue := xmldom.getNodeValue(xmlDOMNodeO);
    docNodeFIELD := xmldom.makeNode(xmldom.createElement(xmlDoc, sNodeName));
    docNodeTEXT := xmldom.makeNode(xmldom.createTextNode(xmlDoc, NVL(sNodeValue,' ')));
    xmlNodeVal := xmldom.appendChild(docNodeROW, docNodeFIELD);
    xmlNodeVal := xmldom.appendChild(docNodeFIELD, sNodeValue);
    end loop;
    end if;
    --=======================================================================
    -- WORK DETAIL END
    --=======================================================================
    -- TEMPORARILTY REMOVED...
    --=======================================================================
    -- ASSOCIATED PARTIES
    --=======================================================================
    -- select uf_getWRAssocParties(pi_lWRNum) into cWRAssoc from dual;
    -- parserWRAssoc := xmlparser.newParser;
    -- xmlparser.ParseCLOB(parserWRAssoc, cWRAssoc);
    -- xmlDocAddOn := xmlparser.getDocument(parserWRAssoc);
    -- xmlDOMList := xmldom.getElementsByTagName(xmlDocAddOn, '*');
    -- nodeCount := xmldom.getLength(xmlDOMList);
    -- if nodeCount > 0 then
    -- el := xmldom.createElement(xmlDoc, 'ASSOCPARTIES');
    -- nodeAssocParty := xmldom.appendChild(docNodeROW, xmldom.makeNode(el));
    -- for i in 2..nodeCount-1 loop
    -- el := xmldom.createElement(xmlDoc, 'ASSOCPARTIESROW');
    -- nodeAPROW := xmldom.appendChild(nodeAssocParty, xmldom.makeNode(el));
    -- xmlDOMNodeO := xmldom.item(xmlDOMList, i);
    -- sNodeName := xmldom.getNodeName(xmlDOMNodeO);
    -- xmlDOMNodeO := xmldom.getFirstChild(xmlDOMNodeO);
    -- sNodeValue := xmldom.getNo deValue(xmlDOMNodeO);
    -- docNodeFIELD := xmldom.makeNode(xmldom.createElement(xmlDoc, sNodeName));
    -- docNodeTEXT := xmldom.makeNode(xmldom.createTextNode(xmlDoc, NVL(sNodeValue,' ')));
    -- xmlNodeVal := xmldom.appendChild(nodeAPROW, docNodeFIELD);
    -- xmlNodeVal := xmldom.appendChild(docNodeFIELD, sNodeValue);
    -- end loop;
    -- end if;
    --=======================================================================
    -- ASSOCIATED PARTIES END
    --=======================================================================
    xmldom.writeToBuffer(xmlDoc, sTempOut);
    RETURN sTempOut;
    END;
    /

    Hello!
    Please check Type and Number of Parameters of the called Procedure/Function
    This is a common PL/SQL-Error, not an XML-specific one.
    Bye and be blessed

  • Error in posting with transaction ABAA - unplanned depn (Error msg: AA 666)

    Dear All,
    My client is posting unplanned depreciation with transaction ‘ABAA’. He is not able to post in one company code where as he is able to post in another company code. Both the assets have same date of acquisition, depreciation key & useful life
    These two company codes have different chart of depreciation, however same chart of accounts
    Is there any customisation that needs to be done to rectify the error?
    Following is the error message
    Transaction in area 01 contradicts the net book value rule
      Message no. AA660
    Diagnosis
      The document cannot be posted, as it is contrary to the net  book value rule which is checked in area 01
    Procedure
      This error usually occurs when you enter proportional values. The proportional values exceed the amount posted, for example, post capitalization of 100 but proportional epreciation to the amount 110.
    Check your entries and correct them if necessary.
    Please let me know if there is any solution.
    Regards
    Hari

    Dear Pavan,
    In Asset master -> Depreciation Areas
    Double click on depreciation key field in the relevant depreciation area (Eg: 01). In the additional specifications tab tick against 'Negative values allowed'
    Let me know your result
    Regards
    Hari

  • Data Driven Subscription Error: Done: 23 processed of 23 total; 3 errors.

    I am trying to diagnose the cause of the this error message and more importantly find out which subsriptions did not get sent.
    I looked into the the reportserver log and found this error msg;
     w WARN: Previous request for Running Requests Scavengerstill executing, skipping...
    Doe anyone know what causes this?

    Also I have a pasted larger portion of the log file, there were no timeouts. The report in question is called Alerts Overview which runs at 7.55am
    runningjobs!ReportServer_0-1005!5fa4!12/19/2011-07:54:50:: w WARN: Previous request for Running Requests Scavengerstill executing, skipping...
    runningjobs!ReportServer_0-1005!70e8!12/19/2011-07:54:50:: i INFO: Adding: 1 running jobs to the database
    runningjobs!ReportServer_0-1025!9b54!12/19/2011-07:54:50:: i INFO: Removing: 1 running jobs from the database
    runningjobs!ReportServer_0-1005!70e8!12/19/2011-07:54:50:: i INFO: Removing: 1 running jobs from the database
    library!WindowsService_508!93bc!12/19/2011-07:55:10:: i INFO: Schedule b136578b-d355-438c-8ba6-f4ac25a6d25c executed at 12/19/2011 07:55:10.
    library!WindowsService_508!93bc!12/19/2011-07:55:10:: i INFO: Schedule b136578b-d355-438c-8ba6-f4ac25a6d25c execution completed at 12/19/2011 07:55:10.
    library!WindowsService_508!70e8!12/19/2011-07:55:10:: i INFO: Schedule 0b305e3c-bef8-4fee-88a3-b2fd7f873256 executed at 12/19/2011 07:55:10.
    schedule!WindowsService_508!70e8!12/19/2011-07:55:10:: Creating Time based subscription notification for subscription: 91a7ea75-b7ca-4149-94c2-062c92d0d517
    library!WindowsService_508!70e8!12/19/2011-07:55:10:: i INFO: Schedule 0b305e3c-bef8-4fee-88a3-b2fd7f873256 execution completed at 12/19/2011 07:55:10.
    library!WindowsService_508!9b54!12/19/2011-07:55:10:: i INFO: Schedule caf8fc5a-a5db-404e-9972-f4ee1e8bb30e executed at 12/19/2011 07:55:10.
    schedule!WindowsService_508!9b54!12/19/2011-07:55:10:: Creating Time based subscription notification for subscription: 9457a826-e455-4c61-8699-1803315714b7
    library!WindowsService_508!9b54!12/19/2011-07:55:11:: i INFO: Schedule caf8fc5a-a5db-404e-9972-f4ee1e8bb30e execution completed at 12/19/2011 07:55:11.
    library!WindowsService_508!7f48!12/19/2011-07:55:11:: i INFO: Handling data-driven subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report /ViagogoCannedReports/Alerts/Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    notification!WindowsService_508!70e8!12/19/2011-07:55:11:: i INFO: Handling subscription 9457a826-e455-4c61-8699-1803315714b7 to report PCID Affiliate Transactions, owner: VIAGOGO\Matthew.Rotella, delivery extension: Report Server Email.
    library!WindowsService_508!70e8!12/19/2011-07:55:11:: i INFO: RenderForNewSession('/ViagogoCannedReports/Affiliate Commissions/PCID Affiliate Transactions')
    library!WindowsService_508!70e8!12/19/2011-07:55:12:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    notification!WindowsService_508!5fa4!12/19/2011-07:55:12:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!5fa4!12/19/2011-07:55:12:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!70e8!12/19/2011-07:55:12:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!70e8!12/19/2011-07:55:12:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!7f48!12/19/2011-07:55:12:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!7f48!12/19/2011-07:55:12:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!b738!12/19/2011-07:55:12:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!b738!12/19/2011-07:55:12:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!9b54!12/19/2011-07:55:12:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!9b54!12/19/2011-07:55:12:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!93bc!12/19/2011-07:55:12:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!93bc!12/19/2011-07:55:12:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!4254!12/19/2011-07:55:13:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!4254!12/19/2011-07:55:13:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!49fc!12/19/2011-07:55:14:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!49fc!12/19/2011-07:55:14:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!80f4!12/19/2011-07:55:16:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!80f4!12/19/2011-07:55:16:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!59e8!12/19/2011-07:55:17:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!59e8!12/19/2011-07:55:17:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!b808!12/19/2011-07:55:18:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!b808!12/19/2011-07:55:18:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!7a30!12/19/2011-07:55:20:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!7a30!12/19/2011-07:55:20:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    library!WindowsService_508!93bc!12/19/2011-07:55:20:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!b738!12/19/2011-07:55:20:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!70e8!12/19/2011-07:55:20:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    notification!WindowsService_508!4c18!12/19/2011-07:55:21:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!4c18!12/19/2011-07:55:21:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!9660!12/19/2011-07:55:22:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!9660!12/19/2011-07:55:22:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    library!WindowsService_508!7f48!12/19/2011-07:55:23:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!9b54!12/19/2011-07:55:23:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    notification!WindowsService_508!25d0!12/19/2011-07:55:24:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!25d0!12/19/2011-07:55:24:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!3e50!12/19/2011-07:55:25:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!3e50!12/19/2011-07:55:25:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!93bc!12/19/2011-07:55:25:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!93bc!12/19/2011-07:55:25:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!70e8!12/19/2011-07:55:25:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!70e8!12/19/2011-07:55:25:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!7f48!12/19/2011-07:55:29:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!7f48!12/19/2011-07:55:29:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!b738!12/19/2011-07:55:29:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!b738!12/19/2011-07:55:29:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    library!WindowsService_508!b808!12/19/2011-07:55:30:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!59e8!12/19/2011-07:55:30:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!7a30!12/19/2011-07:55:31:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    notification!WindowsService_508!9b54!12/19/2011-07:55:31:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!9b54!12/19/2011-07:55:31:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!7a30!12/19/2011-07:55:36:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!7a30!12/19/2011-07:55:36:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    notification!WindowsService_508!b808!12/19/2011-07:55:36:: i INFO: Handling subscription 91a7ea75-b7ca-4149-94c2-062c92d0d517 to report Alerts Overview, owner: VIAGOGO\Sebastian.Bray, delivery extension: Report Server Email.
    library!WindowsService_508!b808!12/19/2011-07:55:36:: i INFO: RenderForNewSession('/ViagogoCannedReports/Alerts/Alerts Overview')
    runningjobs!ReportServer_0-977!317c!12/19/2011-07:55:36:: w WARN: Previous request for Running Requests Scavengerstill executing, skipping...
    runningjobs!ReportServer_0-977!317c!12/19/2011-07:55:36:: i INFO: Adding: 1 running jobs to the database
    runningjobs!ReportServer_0-977!317c!12/19/2011-07:55:36:: i INFO: Removing: 1 running jobs from the database
    runningjobs!ReportServer_0-1003!59e8!12/19/2011-07:55:36:: w WARN: Previous request for Running Requests Scavengerstill executing, skipping...
    runningjobs!ReportServer_0-1003!59e8!12/19/2011-07:55:36:: i INFO: Adding: 1 running jobs to the database
    runningjobs!ReportServer_0-1003!59e8!12/19/2011-07:55:36:: i INFO: Removing: 1 running jobs from the database
    library!WindowsService_508!3e50!12/19/2011-07:55:41:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!9660!12/19/2011-07:55:42:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    processing!WindowsService_508!93bc!12/19/2011-07:55:42:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: One or more parameters required to run the report have not been specified., ;
     Info: Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: One or more parameters required to run the report have not been specified.
    reportrendering!WindowsService_508!93bc!12/19/2011-07:55:42:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: One or more parameters were not specified for the subreport, 'SupplyHighDemandLowSupply', located at:
    /ViagogoCannedReports/Alerts/Supply Alert - Events., ;
     Info: Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: One or more parameters were not specified for the subreport, 'SupplyHighDemandLowSupply', located at: /ViagogoCannedReports/Alerts/Supply Alert - Events.
    processing!WindowsService_508!93bc!12/19/2011-07:55:42:: e ERROR: An error has occurred while processing a sub-report. Details: One or more parameters were not specified for the subreport, 'SupplyHighDemandLowSupply', located at: /ViagogoCannedReports/Alerts/Supply
    Alert - Events. Stack trace:
       at Microsoft.ReportingServices.OnDemandReportRendering.SubReport.CheckRetrievalStatus(Status status)
       at Microsoft.ReportingServices.OnDemandReportRendering.SubReport.RetrieveSubreport()
    library!WindowsService_508!93bc!12/19/2011-07:55:43:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!70e8!12/19/2011-07:55:44:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!9b54!12/19/2011-07:55:45:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    library!WindowsService_508!7f48!12/19/2011-07:55:47:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    runningjobs!ReportServer_0-939!93bc!12/19/2011-07:55:48:: w WARN: Previous request for Running Requests Scavengerstill executing, skipping...
    runningjobs!ReportServer_0-949!3e50!12/19/2011-07:55:48:: w WARN: Previous request for Running Requests Scavengerstill executing, skipping...
    runningjobs!ReportServer_0-903!59e8!12/19/2011-07:55:48:: w WARN: Previous request for Running Requests Scavengerstill executing, skipping...

  • Error in WebDynpro with WebServices

    Hi all,
    I’m getting some errors using applications deployed in WEB AS SP9 that runs as a WebDynpro IView in EP.
    Running the application as standalone (out of EP) this works fine.
    NetWeaver Developer Studio 2.0.9
    WebDynpro application using WebServices that access Oracle 8i database in the follow sequence:
    WebServices -> Session Bean stateless -> Entity Bean CMP (manage connections; generate sql code, etc.)
    In WebDynpro application we import WebService Model by the follow sequence:
    New Model - Import Web Service Model - Local Server for WSDL Source - <WebService deployed>
    In each WebServices we have created these methods:
    findByID(ID);
    getAll();
    insert(parameters);
    remove(ID);
    update(parameters);
    We guess that the error is generated in Entity Bean because all WebServices generate these errors.
    <b>Error 1 - Application with WebServices Model</b>
    Error stacktrace:
    com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Repository Object br.com.xxx.fluxo.Fluxo/ComponentInterface:FluxoInterface/InterfaceViews:CadastroSituacaoFluxoInterfaceView/InboundPlugs:Default associated via relation RepositoryObjectRelation(br.com.xxx.fluxo.application.CadastroSituacaoFluxoApp, StartupPlug) does not exist.
         at com.sap.tc.webdynpro.repository.RelationToOne.resolveTargets(RelationToOne.java:124)
         at com.sap.tc.webdynpro.repository.RelationToOne.mergeTargets(RelationToOne.java:108)
         at com.sap.tc.webdynpro.repository.RelationToOne.mergeTargets(RelationToOne.java:72)
         at com.sap.tc.webdynpro.repository.RelationToOne.getTarget(RelationToOne.java:174)
         at com.sap.tc.webdynpro.repository.RepositoryObject.getRelatedModelObject(RepositoryObject.java:349)
         at com.sap.tc.webdynpro.progmodel.repository.IWDApplicationInfo$Implementation.getStartupPlugInternal(IWDApplicationInfo.java:319)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:355)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:593)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    -- end --
    <b>Error 2 - Application with WebServices Model</b>
    An error has occurred:
    "Failed to process the request."
    Please contact your system administrator.
    Hide details
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322), version: null, DOM version: null, client type: msie6, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Web Dynpro runtime:
    Vendor: SAP, Build ID: 6.4009.00.0000.20041011171310.0000 (release=630_VAL_REL, buildtime=2004-10-19:21:48:59[UTC], changelist=290362, host=PWDFM026)
    Web Dynpro code generators of DC local/Apontamentos:
    SapDictionaryGenerationCore: 6.4009.00.0000.20040910101802.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:31:53[UTC], changelist=280522, host=PWDFM026.wdf.sap.corp)
    SapMetamodelWebDynpro: 6.4009.00.0000.20040910102423.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:36:19[UTC], changelist=280539, host=PWDFM026.wdf.sap.corp)
    SapMetamodelCore: 6.4009.00.0000.20040730142052.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:26:00[UTC], changelist=269100, host=PWDFM026.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 6.4009.00.0000.20041011171310.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:54:34[UTC], changelist=290362, host=PWDFM026)
    SapWebDynproGenerationCTemplates: 6.4009.00.0000.20041011171310.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:54:34[UTC], changelist=290362, host=PWDFM026)
    SapGenerationFrameworkCore: 6.4009.00.0000.20040910102127.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:25:03[UTC], changelist=280527, host=PWDFM026.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 6.4009.00.0000.20040910102318.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:41:01[UTC], changelist=280536, host=PWDFM026.wdf.sap.corp)
    SapMetamodelDictionary: 6.4009.00.0000.20040609163924.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:29:01[UTC], changelist=253570, host=PWDFM026.wdf.sap.corp)
    SapMetamodelCommon: 6.4009.00.0000.20040730142052.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:26:11[UTC], changelist=269100, host=PWDFM026.wdf.sap.corp)
    SapWebDynproGenerationCore: 6.4009.00.0000.20040910102318.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:41:33[UTC], changelist=280536, host=PWDFM026.wdf.sap.corp)
    SapDictionaryGenerationTemplates: (unknown)
    Web Dynpro code generators of DC sap.com/tcwddispwda:
    No information available
    Web Dynpro code generators of DC sap.com/tcwdcorecomp:
    No information available
    J2EE Engine:
    6.40 patchlevel 87037.313
    Java VM:
    Java HotSpot(TM) Server VM, version: 1.4.2_06-b03, vendor: Sun Microsystems Inc.
    Operating system:
    Windows 2000, version: 5.0, architecture: x86
    Error stacktrace:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Did not find repository information for controller NotProductiveEventController
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.createCustomController(DelegatingComponent.java:55)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getCustomControllerInternal(Component.java:428)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:371)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:400)
         at com.sap.tc.webdynpro.progmodel.context.MappingInfo.init(MappingInfo.java:138)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:746)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:761)
         at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:41)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.displayToplevelComponent(ClientComponent.java:134)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:374)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:593)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    <b>Error 3 - Application with RFC Model</b>
    An error has occurred:
    "Failed to process the request."
    Please contact your system administrator.
    Hide details
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322), version: null, DOM version: null, client type: msie6, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Web Dynpro runtime:
    Vendor: SAP, Build ID: 6.4009.00.0000.20041011171310.0000 (release=630_VAL_REL, buildtime=2004-10-19:21:48:59[UTC], changelist=290362, host=PWDFM026)
    Web Dynpro code generators of DC local/Apontamentos:
    SapDictionaryGenerationCore: 6.4009.00.0000.20040910101802.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:31:53[UTC], changelist=280522, host=PWDFM026.wdf.sap.corp)
    SapMetamodelWebDynpro: 6.4009.00.0000.20040910102423.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:36:19[UTC], changelist=280539, host=PWDFM026.wdf.sap.corp)
    SapMetamodelCore: 6.4009.00.0000.20040730142052.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:26:00[UTC], changelist=269100, host=PWDFM026.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 6.4009.00.0000.20041011171310.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:54:34[UTC], changelist=290362, host=PWDFM026)
    SapWebDynproGenerationCTemplates: 6.4009.00.0000.20041011171310.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:54:34[UTC], changelist=290362, host=PWDFM026)
    SapGenerationFrameworkCore: 6.4009.00.0000.20040910102127.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:25:03[UTC], changelist=280527, host=PWDFM026.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 6.4009.00.0000.20040910102318.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:41:01[UTC], changelist=280536, host=PWDFM026.wdf.sap.corp)
    SapMetamodelDictionary: 6.4009.00.0000.20040609163924.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:29:01[UTC], changelist=253570, host=PWDFM026.wdf.sap.corp)
    SapMetamodelCommon: 6.4009.00.0000.20040730142052.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:26:11[UTC], changelist=269100, host=PWDFM026.wdf.sap.corp)
    SapWebDynproGenerationCore: 6.4009.00.0000.20040910102318.0000 (release=630_VAL_REL, buildtime=2004-10-18:21:41:33[UTC], changelist=280536, host=PWDFM026.wdf.sap.corp)
    SapDictionaryGenerationTemplates: (unknown)
    Web Dynpro code generators of DC sap.com/tcwddispwda:
    No information available
    Web Dynpro code generators of DC sap.com/tcwdcorecomp:
    No information available
    J2EE Engine:
    6.40 patchlevel 87037.313
    Java VM:
    Java HotSpot(TM) Server VM, version: 1.4.2_06-b03, vendor: Sun Microsystems Inc.
    Operating system:
    Windows 2000, version: 5.0, architecture: x86
    Error stacktrace:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Did not find repository information for controller ZMANPP012Controller
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.createCustomController(DelegatingComponent.java:55)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getCustomControllerInternal(Component.java:428)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:371)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:400)
         at com.sap.tc.webdynpro.progmodel.context.MappingInfo.init(MappingInfo.java:138)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:746)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:761)
         at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:41)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.displayToplevelComponent(ClientComponent.java:134)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:374)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:593)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)

    Hi,
    I feel this error is nothing to do with webservice model.
    Please check your application properties like startupPlug,Interface View etc. Set the properties correctly and deploy once again.
    Regards, VIP

  • No matter what I do with pacman, I get Server error

    error: directive 'Server' with a value not recognized
    error: config file /etc/pacman.d/mirrorlist, line 274: problem in options section
    error: failed retrieving file
    Comment off line 274 in the mirrorlist and the next uncommented line is the problem, no matter what I'm trying to install or remove.

    I'm new to arch and pacman, but I've been a linux user for years.  I installed archlinux a week or two ago and I have been adding and deleting various packages with pacman with no issues until today.
    I won't waste space here with the entire mirrorlist, but here is an example line where the error occurs of the line is uncommented...
    #Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch
    and here is the /etc/pacman.conf file...
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir     = /
    #DBPath      = /var/lib/pacman/
    #CacheDir    = /var/cache/pacman/pkg/
    #LogFile     = /var/log/pacman.log
    HoldPkg     = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst   = pacman
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #XferCommand = /usr/bin/curl -C - %u > %o
    #CleanMethod = KeepInstalled
    Architecture = auto
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg   =
    #IgnoreGroup =
    #NoUpgrade   =
    #NoExtract   =
    # Misc options (all disabled by default)
    #UseSyslog
    #ShowSize
    #UseDelta
    #TotalDownload
    # REPOSITORIES
    #   - can be defined here or included from another file
    #   - pacman will search repositories in the order defined here
    #   - local/custom mirrors can be added here or in separate files
    #   - repositories listed first will take precedence when packages
    #     have identical names, regardless of version number
    #   - URLs will have $repo replaced by the name of the current repo
    #   - URLs will have $arch replaced by the name of the architecture
    # Repository entries are of the format:
    #       [repo-name]
    #       Server = ServerName
    #       Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    #[testing]
    ## Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    [core]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    [extra]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [community]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository.  See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs

  • Error Code 201 and 213 when trying to install any Adobe application / Update my Creative Cloud Desktop App. Have tried troubleshooting with Online Chat Agents, no luck.

    I have been trying for 2 days now to get this resolved.
    Computer hashard wired internet connection, running Windows 7 Home Premium. No other issues with downloading or uploading from any other sites or programs. No other network issues reported on other computers.
    It started when I went to install Lightroom through my Creative Cloud. It prompted me to update my Creative Cloud Desktop App, which I went to do and then promptly got Error Code 201. I restarted my Creative Cloud and then skipped the update, hoping it was just an issue with that specific download. I clicked to install Lightroom and the same thing happened, Error code 201.
    I restarted my machine, and tried again. Same issue.
    I contacted Support. They had me go in and change a bunch of folder names to and add "old" to the end of them and then had me try using the Adobe Cleaner tool, which did not work. He had me go in and change some internet settings, still nothing. Same issues as before, only now with all the renaming of things I cannot even open programs I had previously been able to open like Photoshop.
    He instructed me to reinstall the CC Desktop App because the Cleaner tool was not recognizing that it existed anymore (probably something to do with renaming files.. just saying) and now I get the 201 Error when I try to reinstall the CC Desktop App.
    I ran out of time and had to stop after being on with them for over an hour.
    Today I contact back and was instructed to create a new user account on my computer and try downloading and installing the application in the new user. Same errors. 213 at first, restarted my computer and then got Error Code 201 again.
    I am getting really frustrated and really behind on my work. Any information someone could give me would be greatly appreciated. Currently waiting for a chat person to be available again.
    Thank you for your time and assistance.

    Meowia for Error 201 please see Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html.  Error 213 indicates there was problem locating the update or an incorrect URL.  The troubleshooting steps are still the same as both errors are related to failure of the current network connection.

  • While installing adobe creative cloud , getting the following error msg " There seems to be a problem with the download process. Error code:201"

    while installing adobe creative cloud , getting the following error msg " There seems to be a problem with the download process. Error code:201"

    Creative Cloud Help / Error downloading Creative Cloud applications
    http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html

  • Error Intall RWD Uperform 4.3 on Windows 2008 with Oracle 11G

    Hi,
    I need install RWD Uperform 4.3 on Windows 2008 with Oracle 11G.
    When tried install Uperform 4.3 occurs the next error:
    Product: RWD uPerform Server -- This Release requires Oracle 11.2 R2 ODP Client to be Installed.
    If you are not using Oracle, please use the regular 4.30.0 release.
    If you are using Oracle, please install ODP.NET and then re-run the Setup. Setup will be aborted now.
    I installed the ODP.NET whit the version 11.2.0.2.
    But the errors still occur.
    Thanks.
    Marco Kolombesky

    In the end I solved my problem.
    But I installed RWD uperform 4.4 (not 4.3).
    But I think that the problem was that when I installed uperform 4.3 I didn't run this command at DB level on my SQL Server datadabe:
    ALTER DATABASE AdventureWorks2008R2
        SET READ_COMMITTED_SNAPSHOT ON;
    GO
    Regards
    Matteo Stocco

  • Key Lenght too short error with dbms_crypto.encrypt

    Hi Friends,
    I am getting above mentioned error with dbms_crypto.encrypt.
    I had created a thread in technology --> security forum but i am not getting any help from there.
    ORA-28234 Key Length too short with dbms_crypto.encrypt
    Appreciate if anyone help me resolve this issue.
    Thanks
    AT

    Hi Warren,
    Yes function is compiled without any compilation error.
    Thanks
    AT

  • I cant transfer the installation files every time i try, the error code 201 displays, and there is nothing wrong with my internet connection

    its creative cloud photo shop trial version

    Please refer to:
    Re: Error 201
    Creative Cloud Installer, when downloading Creative Cloud desktop, has Error code 201: "Problem with the download proces…
    Creative Cloud Fails to Update (Error code: 201)
    downloading error code : 201
    They should be able to help you.
    Regards
    Rajshree

  • FND_REQUEST.SUBMIT_REQUEST via forms erroring in CM with PLS-00306

    Hello,
    I have a form that needs to submit a custom concurrent program when a button is pressed on a form. The code is in the when-button-pressed trigger and is as follows:
    declare
         v_req_id NUMBER;
         v_project_name VARCHAR2(32);
         v_subject VARCHAR2(70);
         v_message VARCHAR2(240);
         v_email_from VARCHAR2(30):= 'PROJECT_EMAIL';
         v_email_to VARCHAR2(30):= 'BONNI_SMITH';
         v_yes_no VARCHAR2(1) := 'Y';
    begin
         select :TFN_PROJECT_DETAILS.project_num||' '||:tfn_project_details.project_desc
         into v_project_name
         from dual;
         select 'PROJECT '||:tfn_project_details.project_num||' NOTIFICATION'
         into v_subject
         from dual;
         select v_project_name||' project has been created in the project system'
         into v_message
         from dual;
         FND_MESSAGE.DEBUG('proj name: '||V_PROJECT_NAME);
         FND_MESSAGE.DEBUG('message: '||V_MESSAGE);
         FND_MESSAGE.DEBUG('subject: '||V_SUBJECT);
    v_req_id := FND_REQUEST.SUBMIT_REQUEST
    ('TALBOTS',
    'TFNSENDEMAIL',
    'TFN_PROJECT_DETAILS',
    FALSE,
    v_email_from,
    v_email_to,
    v_subject,
    v_message,
    v_yes_no,
         FND_MESSAGE.DEBUG(v_req_id);
    IF (v_req_id = 0) then
    fnd_message.retrieve;
    fnd_message.error;
    Raise Form_Trigger_Failure;
    ELSE
         FND_MESSAGE.SET_STRING('Email Request submitted. Request ID '|| v_req_id);
    fnd_message.show;
    :tfn_project_details.last_email_date := sysdate;
    APP_STANDARD.EVENT('KEY-COMMIT');
    END IF;
    end;
    This code gives me an error in the request log of: PLS-00306: wrong number or types of arguments in call to 'SEND_EMAIL'
    I have verified that the type of the arguments is correct, so I am assuming that it is upset over the number? I have recounted several times and come up with the 100 required. I have also changed the parameters from hard-coded to parameters and it has made no difference. I even put an 'x' in the last parameter to make sure that the entire string is being passed, and when I look in the request sable it is there in the table data as the 100th parm. I have made sure that the varaibles in the trigger match the lengths and types of the parameters in the CM program.
    I have practically the same trigger submitting a different CM job and it works perfectly. Both CM requests are custom host scripts.
    Can anyone offer help on this?

    I shortened the code and the error is:
    "could not be evaluated because of error ORA-00923: FROM keyword not found where expected"
    This isn't of much help to me.
    Edited by: user11970177 on Mar 4, 2011 7:06 AM

  • Error opening a Scorecard with OBIEE 11g

    Greetings,
    I've encountered the following error after a sign out/log in operation in OBIEE Analytics.
    No changes to the model has been made.
    The scorecard wasn't reporting problems before the sign out.
    The error is:
    Dimension with dimensionID("TABLE_NAME"."COLUMN_NAME") not found in the KPI
    The column name is a valid column of the model.
    Thanks for your help.

    follow this Oracle Doc ID 1576336.1 
    which tells you to create a new connection in smart view and then save it as a private connection
    Thanks

  • OIM 11g R2 - SOA error with Auto Approval

    Hi,
    I am trying to provision a resource through catalog wizard as an end user .I have created both Operational Level and Request level approval policies with Auto Approval Enabled.The RequestID is getting generated but I am getting the following error in screen
    [Security:090304]Authentication Failed: User SOAAdminPassword javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User SOAAdminPassword denied
    May I know where should I go and change the SOAAdmin Password ?.Thanks.

    I've run into the same error with oim 11gr2 bp04:
    <Mar 18, 2013 11:07:09 AM CDT> <Notice> <Stdout> <BEA-000000> <<Mar 18, 2013 11:07:09 AM CDT> <Error> <oracle.soa.services.identity>
    <BEA-000000> <<oracle.tip.pc.services.identity.jps.AuthenticationServiceImpl.authenticateUser()> authentication FAILED>>
    <Mar 18, 2013 11:07:09 AM CDT> <Notice> <Stdout> <BEA-000000> <<Mar 18, 2013 11:07:09 AM CDT> <Error> <oracle.soa.services.identity>
    <BEA-000000> <<.> Identity Service Authentication failure.
    Identity Service Authentication failure.
    Either the user name or password is incorrect. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
    ORABPEL-10528
    Identity Service Authentication failure.
    Identity Service Authentication failure.
    Either the user name or password is incorrect. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
         at oracle.tip.pc.services.identity.jps.JpsProvider.authenticateUser(JpsProvider.java:2337)
    Caused By: javax.security.auth.login.LoginException: [Security:090304]Authentication Failed: User SOAAdminPassword javax.security.auth.login.FailedLoginException:
    [Security:090302]Authentication Failed: User SOAAdminPassword denied
         at oracle.security.jps.internal.jaas.module.authentication.JpsUserAuthenticationLoginModule.login(JpsUserAuthenticationLoginModule.java:71)
         ...Did you find what the issue is? I'm finding scant information about this user named "SOAAdminPassword" (who makes up these usernames :-/).

  • Pls tell me how to check the errors in  BDC CALL TRANSACTION

    lemme know

    HI ,
    check for the bold part..
    REPORT ZCONCUR_UPLOAD_TO_SAP NO STANDARD PAGE HEADING
                                 LINE-SIZE 170
                                 LINE-COUNT 58
                                 MESSAGE-ID ZM.
                 Internal Table                                         *
    *-Internal table for the Header input data from the Comma Delimited file
    DATA: BEGIN OF IT_DATA_HEADER OCCURS 0,
              ID    TYPE C,      "Identifier
              BUKRS(6),          "Company Code
              WAERS(7),          "Currency
              NEWKO(12),         "Vendor
              XBLNR(16),         "First Name
              XBLNR1(16),        "Last Name
              BLDAT(12),         "Document/Posting date
              PK(15),            "Reference
              WRBTR(15),         "Amount
              BKTXT(27),         "Doc.header text
              BKTXT1(27),        "Item text
              SELNO(8),          "Serial No
          END OF IT_DATA_HEADER.
    *-Internal table for the item input data from the Comma Delimited file
    DATA: BEGIN OF IT_DATA_ITEM OCCURS 0,
              ID    TYPE C,      "Identifier
              NEWKO(19),         "Vendor
              BUKRS(6),          "Company Code
              KOSTL(12),         "Cost center
              WRBTR(15),         "Amount
              SGTXT(50),         "Text
              SELNO(8),          "Serial No Header
              SELNO1(8),         "Serial No item
          END OF IT_DATA_ITEM      .
    *-Internal table for the Header input data from the Comma Delimited file
    *-Removing " " From Comma Delimited file
    DATA: BEGIN OF IT_FINAL_HEADER OCCURS 0,
              ID     TYPE C,           "Identifier
              BUKRS  LIKE BKPF-BUKRS,  "Company Code
              WAERS  LIKE BKPF-WAERS,  "Currency
              NEWKO  TYPE RF05A-NEWKO, "Vendor
              XBLNR  LIKE BKPF-XBLNR,
              XBLNR1 LIKE BKPF-XBLNR,
              BLDAT(10), " LIKE BKPF-BLDAT,  "Date
              PK(15),                  "Reference
              WRBTR(15),               "Amount
              BKTXT  LIKE BKPF-BKTXT,  "Doc.header text
              BKTXT1 LIKE BKPF-BKTXT,  "Item text
              SELNO  TYPE I,           "Serial No
              FLAG   TYPE C,
          END OF IT_FINAL_HEADER.
    *-Internal table for the Item input data from the Comma Delimited file
    *-Removing " " From Comma Delimited file
    DATA: BEGIN OF IT_FINAL_ITEM OCCURS 0,
              ID     TYPE C,           "Identifier
              NEWKO  TYPE RF05A-NEWKO, "Account
              BUKRS  LIKE BKPF-BUKRS,  "Company Code
              KOSTL  LIKE BSEG-KOSTL,  "Cost Center
              WRBTR(15),               "Amount
              SGTXT  LIKE BSEG-SGTXT,  "Text
              SELNO  TYPE I,           "Serial No
              SELNO1 TYPE I,           "Serial No
          END OF IT_FINAL_ITEM.
    **-Internal table for the  input data from the file
    DATA : BEGIN OF P_DOWNLOAD  OCCURS 0,
            V_FILEREC(1000) TYPE C,
           END OF P_DOWNLOAD.
    *--- Internal Table for Success messages
    DATA : BEGIN OF I_SUCC OCCURS 0,
             HEADER(50),
             MSG(100),                     "SUCCESS message
           END OF I_SUCC.
    *--- Internal Table for error messages
    DATA : BEGIN OF I_ERROR_LOG OCCURS 0,
             HEADER(50),
             MSG(100),                     "Error message
           END OF I_ERROR_LOG.
    *--- Internal table for getting the BDC data
    DATA : BEGIN OF IT_BDCDATA OCCURS 0.
            INCLUDE STRUCTURE BDCDATA.     " Table to hold BDC data
    DATA : END OF IT_BDCDATA.
    *--- Internal table for reading the messages of call transaction
    DATA : BEGIN OF IT_MESSAGE_TAB OCCURS 0.
            INCLUDE STRUCTURE BDCMSGCOLL.  "Table to hold messages
    DATA : END OF IT_MESSAGE_TAB.
                          DATA DECLARATIONS                              *
    DATA:
          V_ERROR_COUNTER   TYPE I,        " error records counter
          V_MSG(100),                      " used for Error message
          V_LINES TYPE I,                  " used for format message
          V_HEAD LIKE SY-CPROG,            " Heading for report
          XMODE VALUE 'N',                 " EXECUTION MODE
          V_SUCCESS_COUNTER TYPE I,        " Success records counter
          V_UNAME LIKE APQI-USERID,        " User Name
          V_TOTAL TYPE I.                  " Total records uploaded
    DATA : V_SELNO TYPE I.
    DATA : V_CHECK TYPE I.
    DATA : V_HEADER(50) TYPE C.             "Header Information
    DATA : V_SUCC_MSG LIKE BDCMSGCOLL-MSGV1."Success Message
    DATA : V_ZERO(4) VALUE '0.00'.          "Checking Zero
    DATA : V_CHECK_ZERO  LIKE BSEG-WRBTR.   "Checking Zero
    DATA : V_CHECK_ZERO1 LIKE BSEG-WRBTR.   "Checking Zero
    DATA : V_SYSTEMDATE  LIKE BKPF-BUDAT.
    DATA : V_VALUE TYPE I.
    DATA : V_VALUE1 TYPE I.
    DATA : V_VALUE2 TYPE I.
    Flags
    DATA:
           F_BDC_OPEN,                   " BDC session open check.
           F_CONTINUE_PROCESSING.        " To continue further processing
                             CONSTANTS                                   *
    CONSTANTS:
           C_SESSION_NAME LIKE APQI-GROUPID VALUE 'F-43',  "Session
           C_X VALUE 'X'.                                  " Used for falgs
                        SELECTION SCREEN                                 *
    *--- Selection Screen with Block and title
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-038.
    PARAMETER: P_FNAME LIKE RLGRAP-FILENAME DEFAULT
                       'C:\Concur.txt'.
    SELECTION-SCREEN END OF BLOCK B1.
    AT SELECTION SCREEN ON VALUE-REQUEST
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FNAME.
      CALL FUNCTION 'F4_FILENAME'
           IMPORTING
                FILE_NAME = P_FNAME
           EXCEPTIONS
                OTHERS    = 1.
      IF SY-SUBRC <> 0.
        MESSAGE E999 WITH 'Error in opening a file'(009).
      ENDIF.
                              Top-of-page                                *
    TOP-OF-PAGE .
    *---perform to display the standard header
      PERFORM STANDARD_HEADER.
    --START OF SELECTION--
    START-OF-SELECTION.
    Upload data
      PERFORM UPLOAD_DATA.
    move data to bdcdata internal table
      PERFORM MOVE_DATA_F43.
    *--- Posting the valid data to F-43
      IF F_BDC_OPEN = C_X.
    *---perform to close bdc group
        PERFORM CLOSE_GROUP.
      ENDIF.
                             END OF SELECTION                            *
    END-OF-SELECTION.
      CHECK F_CONTINUE_PROCESSING IS INITIAL.
      PERFORM DISPLAY_REPORT.
    *&      Form  MESSAGE_FORMAT
                MESSAGE FORMAT
    FORM MESSAGE_FORMAT.
      CLEAR V_MSG.
      CALL FUNCTION 'FORMAT_MESSAGE'
           EXPORTING
                ID        = IT_MESSAGE_TAB-MSGID
                LANG      = 'EN'
                NO        = IT_MESSAGE_TAB-MSGNR
                V1        = IT_MESSAGE_TAB-MSGV1
                V2        = IT_MESSAGE_TAB-MSGV2
                V3        = IT_MESSAGE_TAB-MSGV3
                V4        = IT_MESSAGE_TAB-MSGV4
           IMPORTING
                MSG       = V_MSG
           EXCEPTIONS
                NOT_FOUND = 1
                OTHERS    = 2.
      IF SY-SUBRC <> 0.
        V_MSG = SPACE.
      ENDIF.
    ENDFORM.                               " MESSAGE_FORMAT
    *&      Form  F4_HELP
    FORM F4_HELP.
      CALL FUNCTION 'WS_FILENAME_GET'
           EXPORTING
                DEF_FILENAME     = ' '
                DEF_PATH         = 'C:\'
                MODE             = 'O'
                TITLE            = TEXT-025  "'Upload File'
           IMPORTING
                FILENAME         = P_FNAME
           EXCEPTIONS
                SELECTION_CANCEL = 3
                SELECTION_ERROR  = 4.
      CASE SY-SUBRC.
        WHEN 3.
          MESSAGE I000 WITH TEXT-007.      " Selection Cancel.
        WHEN 4.
          MESSAGE I000 WITH TEXT-008.      " Selection Error.
      ENDCASE.
    ENDFORM.                                                    " F4_HELP
    *&      Form  STANDARD_HEADER
           STANDARD_HEADER
    FORM STANDARD_HEADER.
      FORMAT COLOR COL_HEADING INTENSIFIED OFF.
      CASE V_HEAD.
        WHEN 'Summary Report'(001).
        WHEN 'SUCC_REPORT'.
    **---To display the field headings for Success report.
          ULINE (154).
          WRITE : /001 SY-VLINE,
                   002 'Header Details '(011),
                   052 SY-VLINE,
                   053 'Document Number'(036),
                  154 SY-VLINE.
          ULINE (154).
        WHEN 'Error Report'.
    **---To display the field headings for error report.
          ULINE (154).
          WRITE : /001 SY-VLINE,
                   002 'Header Details '(011),
                   052 SY-VLINE,
                   053 'Error Message/Text'(035),
                  154 SY-VLINE.
          ULINE (154).
      ENDCASE.
    ENDFORM.                               " STANDARD_HEADER
    *&      Form  DISPLAY_REPORT
          Display Report Details
    FORM DISPLAY_REPORT.
      PERFORM SUMMARY_REPORT.
      PERFORM SUCC_REPORT.
      PERFORM ERROR_REPORT.
    ENDFORM.                               " DISPLAY_REPORT
    *&      Form  SUMMARY_REPORT
           Success & Error Count Number
    FORM SUMMARY_REPORT.
      WRITE : /030 SY-TITLE.
      SKIP 1.
      WRITE : /005 'Program Name : '(032),
               024 SY-REPID,
               080 'Date :'(033),
               088 SY-DATUM.
      SKIP 1.
      V_HEAD = 'Summary Report'(001).
      ULINE (132).
      WRITE : /1 SY-VLINE,
               5 'No. of Records read from the Data file'(014),
               45 ':', V_TOTAL LEFT-JUSTIFIED,
               132 SY-VLINE,
              /1 SY-VLINE,
               5 'No. of Records successfully posted'(015),
               45 ':', V_SUCCESS_COUNTER LEFT-JUSTIFIED,
               132 SY-VLINE,
              /1 SY-VLINE,
               5 'No. of Records Failed'(023),
               45 ':'(031), V_ERROR_COUNTER LEFT-JUSTIFIED,
               132 SY-VLINE.
      IF NOT F_BDC_OPEN IS INITIAL.
        WRITE:  /1 SY-VLINE,
                5 'Session Name'(022),
                45 ':'(031), C_SESSION_NAME LEFT-JUSTIFIED,
                132 SY-VLINE.
      ENDIF.
      ULINE (132).
      IF NOT F_BDC_OPEN IS INITIAL.
        WRITE:  /1 SY-VLINE,
                5 'Session Name'(022),
                45 ':'(031), C_SESSION_NAME LEFT-JUSTIFIED,
                132 SY-VLINE.
      ENDIF.
    ULINE (132).
    ENDFORM.                               " SUMMARY_REPORT
    *&      Form  ERROR_REPORT
          Error Report
    FORM ERROR_REPORT.
      IF NOT I_ERROR_LOG[] IS INITIAL.
        SORT I_ERROR_LOG.                  " by tcode.
        V_HEAD = 'Error Report'(013).
        NEW-PAGE.
        LOOP AT I_ERROR_LOG.
          WRITE: /001 SY-VLINE,
                  002 I_ERROR_LOG-HEADER,
                  052 SY-VLINE,
                  053 I_ERROR_LOG-MSG,
                  154 SY-VLINE.
          ULINE (154).
        ENDLOOP.
      ENDIF.
    ENDFORM.                               " ERROR_REPORT
    *&      Form  ERROR_REPORT
          Success Report
    FORM SUCC_REPORT.
      IF NOT I_SUCC[] IS INITIAL.
        SORT I_SUCC.                  " by tcode.
        V_HEAD = 'SUCC_REPORT'(034).
        NEW-PAGE.
        LOOP AT I_SUCC.
          WRITE: /001 SY-VLINE,
                  002 I_SUCC-HEADER,
                  052 SY-VLINE,
                  053 I_SUCC-MSG,
                  154 SY-VLINE.
          ULINE (154).
        ENDLOOP.
      ENDIF.
    ENDFORM.                               " SUCC_REPORT
    *&      Form  OPEN_SESSION
    FORM OPEN_SESSION.
      DATA : V_DATE LIKE SY-DATUM.         " For Hold Date.
      V_DATE = SY-DATUM - 1.               " Hold date
      V_UNAME = SY-UNAME.                  " User name
      CALL FUNCTION 'BDC_OPEN_GROUP'
           EXPORTING
                CLIENT              = SY-MANDT
                GROUP               = C_SESSION_NAME
                HOLDDATE            = V_DATE
                KEEP                = 'X'
                USER                = V_UNAME
           EXCEPTIONS
                CLIENT_INVALID      = 1
                DESTINATION_INVALID = 2
                GROUP_INVALID       = 3
                GROUP_IS_LOCKED     = 4
                HOLDDATE_INVALID    = 5
                INTERNAL_ERROR      = 6
                QUEUE_ERROR         = 7
                RUNNING             = 8
                SYSTEM_LOCK_ERROR   = 9
                USER_INVALID        = 10
                OTHERS              = 11.
      IF SY-SUBRC <> 0.
        MESSAGE I000 WITH 'Session can not be opened'(019).
        STOP.
      ENDIF.
      F_BDC_OPEN = 'X'.
    ENDFORM.                               " OPEN_SESSION
    *&      Form  BDC_INSERT
    FORM BDC_INSERT USING P_TCODE TYPE ANY.
      CALL FUNCTION 'BDC_INSERT'
           EXPORTING
                TCODE            = P_TCODE
           TABLES
                DYNPROTAB        = IT_BDCDATA
           EXCEPTIONS
                INTERNAL_ERROR   = 1
                NOT_OPEN         = 2
                QUEUE_ERROR      = 3
                TCODE_INVALID    = 4
                PRINTING_INVALID = 5
                POSTING_INVALID  = 6
                OTHERS           = 7.
      IF SY-SUBRC <> 0.
        MESSAGE I000 WITH 'Unable to insert, Error record'(037).
        STOP.
      ENDIF.
    ENDFORM.                               " BDC_INSERT
    *&      Form  CLOSE_GROUP
    FORM CLOSE_GROUP.
      CALL FUNCTION 'BDC_CLOSE_GROUP'
           EXCEPTIONS
                NOT_OPEN    = 1
                QUEUE_ERROR = 2
                OTHERS      = 3.
      IF SY-SUBRC <> 0.
        MESSAGE I000 WITH 'Session can not be closed'(021).
        STOP.
      ENDIF.
    ENDFORM.                               " CLOSE_GROUP
    *&      Form  UPLOAD_DATA
          Upload Data From the text file
    FORM UPLOAD_DATA.
      CALL FUNCTION 'WS_UPLOAD'
           EXPORTING
                FILENAME                = P_FNAME
                FILETYPE                = 'DAT'
           TABLES
                DATA_TAB                = P_DOWNLOAD
           EXCEPTIONS
                CONVERSION_ERROR        = 1
                FILE_OPEN_ERROR         = 2
                FILE_READ_ERROR         = 3
                INVALID_TYPE            = 4
                NO_BATCH                = 5
                UNKNOWN_ERROR           = 6
                INVALID_TABLE_WIDTH     = 7
                GUI_REFUSE_FILETRANSFER = 8
                OTHERS                  = 10.
      IF SY-SUBRC NE 0.
        MESSAGE E000 WITH 'File does not Exist'(003).
      ELSEIF P_DOWNLOAD[] IS INITIAL.
        MESSAGE E000 WITH 'Input file is empty'(004).
      ENDIF.
      DATA: V_INDEX LIKE SY-TABIX.
      IF NOT P_DOWNLOAD[] IS INITIAL.
        LOOP AT P_DOWNLOAD.
          V_INDEX = SY-TABIX.
    *Removing double quotes
          DO.
            REPLACE '"' WITH '' INTO P_DOWNLOAD.
            IF SY-SUBRC NE 0.
              EXIT.
            ENDIF.
          ENDDO.
          MODIFY P_DOWNLOAD INDEX V_INDEX.
          CONDENSE P_DOWNLOAD.
          IF P_DOWNLOAD(1) = '1'.
    *Finding the header information, creating key field
            V_SELNO =  SY-TABIX.
          ENDIF.
    WE ARE NOT HAVING KEY FIELD IN HEADER/ITEM IN THE FILE.
    SO WE ARE CREATING MANUAL KEY FIELD IN INTERNAL TABLE (SELNO).
          IF P_DOWNLOAD(1) = '1'.
    Moving header information into IT_DATA_HEADER Internal Table
            SPLIT P_DOWNLOAD AT ',' INTO
                  IT_DATA_HEADER-ID
                  IT_DATA_HEADER-BUKRS
                  IT_DATA_HEADER-WAERS
                  IT_DATA_HEADER-NEWKO
                  IT_DATA_HEADER-XBLNR
                  IT_DATA_HEADER-XBLNR1
                  IT_DATA_HEADER-BLDAT
                  IT_DATA_HEADER-PK
                  IT_DATA_HEADER-WRBTR
                  IT_DATA_HEADER-BKTXT
                  IT_DATA_HEADER-BKTXT1.
            IT_DATA_HEADER-SELNO = V_SELNO.
            CONDENSE : IT_DATA_HEADER-ID,     IT_DATA_HEADER-BUKRS,
                       IT_DATA_HEADER-WAERS,  IT_DATA_HEADER-NEWKO,
                       IT_DATA_HEADER-XBLNR,  IT_DATA_HEADER-XBLNR1,
                       IT_DATA_HEADER-BLDAT,  IT_DATA_HEADER-PK,
                       IT_DATA_HEADER-WRBTR,  IT_DATA_HEADER-BKTXT,
                       IT_DATA_HEADER-BKTXT1, IT_DATA_HEADER-SELNO.
            APPEND IT_DATA_HEADER.
            CLEAR  IT_DATA_HEADER.
          ELSEIF P_DOWNLOAD(1) = '2'.
    Moving header information into IT_DATA_ITEM Internal Table
            SPLIT P_DOWNLOAD AT ',' INTO
                  IT_DATA_ITEM-ID
                  IT_DATA_ITEM-NEWKO
                  IT_DATA_ITEM-BUKRS
                  IT_DATA_ITEM-KOSTL
                  IT_DATA_ITEM-WRBTR
                  IT_DATA_ITEM-SGTXT.
            IT_DATA_ITEM-SELNO  = V_SELNO.
            IT_DATA_ITEM-SELNO1 = SY-TABIX.
            CONDENSE: IT_DATA_ITEM-ID,IT_DATA_ITEM-NEWKO,IT_DATA_ITEM-BUKRS,
                      IT_DATA_ITEM-KOSTL,IT_DATA_ITEM-WRBTR,
                      IT_DATA_ITEM-SGTXT,IT_DATA_ITEM-SELNO,
                      IT_DATA_ITEM-SELNO1.
            APPEND IT_DATA_ITEM.
            CLEAR  IT_DATA_ITEM.
          ENDIF.
        ENDLOOP.
    *SORT HEADER & ITEM INTERNAL Table
        SORT IT_DATA_HEADER BY SELNO.
        SORT IT_DATA_ITEM   BY SELNO SELNO1.
    *Header Information
        LOOP AT IT_DATA_HEADER.
          IT_FINAL_HEADER-ID    = IT_DATA_HEADER-ID.
          IT_FINAL_HEADER-BUKRS = IT_DATA_HEADER-BUKRS.
          IT_FINAL_HEADER-WAERS = IT_DATA_HEADER-WAERS.
          IT_FINAL_HEADER-NEWKO = IT_DATA_HEADER-NEWKO.
          CONCATENATE IT_DATA_HEADER-XBLNR IT_DATA_HEADER-XBLNR1
                      INTO IT_FINAL_HEADER-XBLNR.
          IT_FINAL_HEADER-BLDAT  = IT_DATA_HEADER-BLDAT.
          IT_FINAL_HEADER-PK     = IT_DATA_HEADER-PK.
          IT_FINAL_HEADER-WRBTR  = IT_DATA_HEADER-WRBTR.
          IT_FINAL_HEADER-BKTXT  = IT_DATA_HEADER-BKTXT.
          IT_FINAL_HEADER-BKTXT1 = IT_DATA_HEADER-BKTXT1.
          IT_FINAL_HEADER-SELNO  = IT_DATA_HEADER-SELNO.
          APPEND IT_FINAL_HEADER.
          CLEAR  IT_FINAL_HEADER.
        ENDLOOP.
    *Item Information
        LOOP AT IT_DATA_ITEM.
    CHECKING ZERO IN THE IT_DATA_ITEM-WRBTR FIELD
    It will not append the IT_FINAL_ITEM
          V_CHECK_ZERO = IT_DATA_ITEM-WRBTR.
          IF V_CHECK_ZERO NE V_CHECK_ZERO1. "V_ZERO.
            IT_FINAL_ITEM-ID     = IT_DATA_ITEM-ID.
            IT_FINAL_ITEM-NEWKO  = IT_DATA_ITEM-NEWKO.
            IT_FINAL_ITEM-BUKRS  = IT_DATA_ITEM-BUKRS.
            IT_FINAL_ITEM-KOSTL  = IT_DATA_ITEM-KOSTL.
            IT_FINAL_ITEM-WRBTR  = IT_DATA_ITEM-WRBTR.
            IT_FINAL_ITEM-SGTXT  = IT_DATA_ITEM-SGTXT.
            IT_FINAL_ITEM-SELNO  = IT_DATA_ITEM-SELNO.
            IT_FINAL_ITEM-SELNO1 = IT_DATA_ITEM-SELNO1.
            APPEND IT_FINAL_ITEM.
            CLEAR  IT_FINAL_ITEM.
            CLEAR : V_CHECK_ZERO,V_CHECK_ZERO1.
          ENDIF.
        ENDLOOP.
        SORT IT_FINAL_HEADER BY SELNO.
        SORT IT_FINAL_ITEM BY SELNO.
      ENDIF.
    ENDFORM.                    " UPLOAD_DATA
    *&      Form  MOVE_DATA_F43
          Call Transaction F-43
    FORM MOVE_DATA_F43.
    *MOVE THE SYSTEM DATE TO
      CLEAR V_SYSTEMDATE.
      V_SYSTEMDATE = SY-DATUM.
      LOOP AT IT_FINAL_HEADER.
        CLEAR V_CHECK.
        V_CHECK = IT_FINAL_HEADER-SELNO.
      MOVE HEADER DATA TO BDCDATA INTERNAL TABLE
        PERFORM BDC_BUILD_HEADER.
      MOVE ITEM DATA TO BDCDATA INTERNAL TABLE
        PERFORM BDC_BUILD_ITEM.
    <b>*   Call Transcation (F-43)
        CALL TRANSACTION 'F-43' USING IT_BDCDATA
                                MODE XMODE
                                UPDATE 'S'
                                MESSAGES INTO IT_MESSAGE_TAB.</b>
    IF error record found, it will move to batch Input session
        IF SY-SUBRC <> 0.
          V_ERROR_COUNTER = V_ERROR_COUNTER + 1.      " Inc the counter
          CLEAR V_LINES.
          DESCRIBE TABLE IT_MESSAGE_TAB LINES V_LINES.
          READ TABLE IT_MESSAGE_TAB INDEX V_LINES.
    *--- <b>Perform to read the messages
          PERFORM MESSAGE_FORMAT.</b>*--- Appending the error records into error table
          CONDENSE IT_FINAL_HEADER-BUKRS.
          CONDENSE IT_FINAL_HEADER-NEWKO.
          CONDENSE IT_FINAL_HEADER-XBLNR.
          CONDENSE IT_FINAL_HEADER-BLDAT.
          CONCATENATE IT_FINAL_HEADER-BUKRS ','
                      IT_FINAL_HEADER-NEWKO ','
                      IT_FINAL_HEADER-XBLNR ','
                      IT_FINAL_HEADER-BLDAT
                      INTO V_HEADER.
          I_ERROR_LOG-HEADER = V_HEADER.
          I_ERROR_LOG-MSG = V_MSG.
          APPEND I_ERROR_LOG.
          CLEAR I_ERROR_LOG.
    *--  Posting the error record to Session
          IF F_BDC_OPEN IS INITIAL.
            PERFORM OPEN_SESSION.
          ENDIF.
          PERFORM BDC_INSERT USING 'F-43'.
        ELSE.
          V_SUCCESS_COUNTER = V_SUCCESS_COUNTER + 1.
    *--  READING ONLY SUCCESS MESSAGE(MSGNR 312)
          LOOP AT IT_MESSAGE_TAB WHERE MSGNR = '312'.
            V_SUCC_MSG = IT_MESSAGE_TAB-MSGV1.
          ENDLOOP.
    *--- Perform to read the messages
          PERFORM MESSAGE_FORMAT.
    *--- Appending the Success records into Success table
          CONDENSE IT_FINAL_HEADER-BUKRS.
          CONDENSE IT_FINAL_HEADER-NEWKO.
          CONDENSE IT_FINAL_HEADER-PK.
          CONDENSE IT_FINAL_HEADER-XBLNR.
          CONDENSE IT_FINAL_HEADER-BLDAT.
          CONCATENATE IT_FINAL_HEADER-BUKRS ','
                      IT_FINAL_HEADER-NEWKO ','
                      IT_FINAL_HEADER-PK ','
                      IT_FINAL_HEADER-XBLNR ','
                      IT_FINAL_HEADER-BLDAT
                      INTO V_HEADER.
          I_SUCC-HEADER = V_HEADER.
          I_SUCC-MSG = V_SUCC_MSG.
          APPEND I_SUCC.
          CLEAR  I_SUCC.
        ENDIF.
        V_TOTAL = V_TOTAL + 1.
        REFRESH: IT_BDCDATA,
                 IT_MESSAGE_TAB.
        CLEAR:   IT_BDCDATA,
                 IT_MESSAGE_TAB.
      ENDLOOP.
    ENDFORM.                    " MOVE_DATA_F43
           Start new screen                                              *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR IT_BDCDATA.
      IT_BDCDATA-PROGRAM  = PROGRAM.
      IT_BDCDATA-DYNPRO   = DYNPRO.
      IT_BDCDATA-DYNBEGIN = 'X'.
      APPEND IT_BDCDATA.
    ENDFORM.
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
      CLEAR IT_BDCDATA.
      IT_BDCDATA-FNAM = FNAM.
      IT_BDCDATA-FVAL = FVAL.
      APPEND IT_BDCDATA.
    ENDFORM.
    *&      Form  BDC_BUILD_HEADER
          Header Information
    FORM BDC_BUILD_HEADER.
    Header Details
      PERFORM BDC_DYNPRO      USING 'SAPMF05A'    '0100'.
      PERFORM BDC_FIELD       USING 'BDC_OKCODE'  '/00'.
      PERFORM BDC_FIELD       USING 'BKPF-BLDAT'
                                     IT_FINAL_HEADER-BLDAT.
      PERFORM BDC_FIELD       USING 'BKPF-BLART'
                                    'KR'.
      PERFORM BDC_FIELD       USING 'BKPF-BUKRS'
                                    IT_FINAL_HEADER-BUKRS.
    Moveing System date to Posting date in the document
      CLEAR IT_FINAL_HEADER-BLDAT.
      CONCATENATE V_SYSTEMDATE4(4) V_SYSTEMDATE0(4)
                       INTO  IT_FINAL_HEADER-BLDAT.
      PERFORM BDC_FIELD       USING 'BKPF-BUDAT'
                                  IT_FINAL_HEADER-BLDAT.
      PERFORM BDC_FIELD       USING 'BKPF-WAERS'
                                    IT_FINAL_HEADER-WAERS.
      PERFORM BDC_FIELD       USING 'BKPF-XBLNR'
                                    IT_FINAL_HEADER-PK.
      PERFORM BDC_FIELD       USING 'BKPF-BKTXT'
                                    IT_FINAL_HEADER-BKTXT.
      PERFORM BDC_FIELD       USING 'FS006-DOCID'  '*'.
      IF IT_FINAL_HEADER-WRBTR CA '-'.
        REPLACE '-' WITH SPACE INTO IT_FINAL_HEADER-WRBTR.
        CONDENSE IT_FINAL_HEADER-WRBTR.
        PERFORM BDC_FIELD       USING 'RF05A-NEWBS'  '25'.
      ELSE.
        PERFORM BDC_FIELD       USING 'RF05A-NEWBS'  '31'.
      ENDIF.
      PERFORM BDC_FIELD       USING 'RF05A-NEWKO'
                                     IT_FINAL_HEADER-NEWKO.
    *-- Item Vendor Details
      PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0302'.
      PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                    '/00'.
      PERFORM BDC_FIELD       USING 'BSEG-WRBTR'
                                    IT_FINAL_HEADER-WRBTR.
      PERFORM BDC_FIELD       USING 'BSEG-SGTXT'
                                    IT_FINAL_HEADER-BKTXT1.
    ENDFORM.                    " BDC_BUILD_HEADER
    *&      Form  BDC_BUILD_ITEM
          Item Information
    FORM BDC_BUILD_ITEM.
      DATA L_FIRST TYPE C.
      LOOP AT IT_FINAL_ITEM WHERE SELNO = V_CHECK.
        IF L_FIRST IS INITIAL.
          L_FIRST = C_X.
    Line Item ( PstKy,Account & New Company Code)
         CONDENSE IT_FINAL_HEADER-BLDAT.
          IF IT_FINAL_ITEM-WRBTR CA '-'.
            REPLACE '-' WITH SPACE INTO IT_FINAL_ITEM-WRBTR.
            CONDENSE IT_FINAL_ITEM-WRBTR.
            PERFORM BDC_DYNPRO    USING  'SAPMF05A'    '0302'.
            PERFORM BDC_FIELD     USING: 'BDC_OKCODE'   '/00',
                                         'RF05A-NEWBS'  '50',
                                         'RF05A-NEWKO'  IT_FINAL_ITEM-NEWKO,
                                         'RF05A-NEWBK'  IT_FINAL_ITEM-BUKRS.
          ELSE.
            PERFORM BDC_DYNPRO    USING  'SAPMF05A'    '0302'.
            PERFORM BDC_FIELD     USING: 'BDC_OKCODE'   '/00',
                                         'RF05A-NEWBS'  '40',
                                         'RF05A-NEWKO'  IT_FINAL_ITEM-NEWKO,
                                         'RF05A-NEWBK'  IT_FINAL_ITEM-BUKRS.
          ENDIF.
    Amount & Text
          PERFORM BDC_DYNPRO    USING  'SAPMF05A' '0300'.
          PERFORM BDC_FIELD     USING: 'BDC_OKCODE'   '/00',
                                       'BSEG-WRBTR'   IT_FINAL_ITEM-WRBTR,
                                       'BSEG-SGTXT'   IT_FINAL_ITEM-SGTXT,
                                       'DKACB-FMORE'  'X'.
    Cost Center
          PERFORM BDC_DYNPRO    USING  'SAPLKACB'    '0002'.
          PERFORM BDC_FIELD     USING: 'BDC_OKCODE' 'ENTE',
                                       'COBL-KOSTL' IT_FINAL_ITEM-KOSTL.
        ELSE.
    Line Item ( PstKy,Account & New Company Code)
          IF IT_FINAL_ITEM-WRBTR CA '-'.
            REPLACE '-' WITH SPACE INTO IT_FINAL_ITEM-WRBTR.
            CONDENSE IT_FINAL_ITEM-WRBTR.
            PERFORM BDC_DYNPRO    USING  'SAPMF05A'    '0300'.
            PERFORM BDC_FIELD     USING: 'BDC_OKCODE'   '/00',
                                         'RF05A-NEWBS'  '50',
                                         'RF05A-NEWKO'  IT_FINAL_ITEM-NEWKO,
                                         'RF05A-NEWBK'  IT_FINAL_ITEM-BUKRS.
          ELSE.
            PERFORM BDC_DYNPRO    USING  'SAPMF05A'    '0300'.
            PERFORM BDC_FIELD     USING: 'BDC_OKCODE'   '/00',
                                         'RF05A-NEWBS'  '40',
                                         'RF05A-NEWKO'  IT_FINAL_ITEM-NEWKO,
                                         'RF05A-NEWBK'  IT_FINAL_ITEM-BUKRS.
          ENDIF.
          PERFORM BDC_DYNPRO    USING  'SAPLKACB'   '0002'.
          PERFORM BDC_FIELD     USING: 'BDC_OKCODE' 'ENTE'.
    Amount & Text
          PERFORM BDC_DYNPRO    USING  'SAPMF05A'    '0300'.
          PERFORM BDC_FIELD     USING: 'BDC_OKCODE'  '/00',
                                       'BSEG-WRBTR'  IT_FINAL_ITEM-WRBTR,
                                       'BSEG-SGTXT'  IT_FINAL_ITEM-SGTXT,
                                       'DKACB-FMORE' 'X'.
    Cost Center
          PERFORM BDC_DYNPRO    USING  'SAPLKACB'    '0002'.
          PERFORM BDC_FIELD     USING: 'BDC_OKCODE' 'ENTE',
                                       'COBL-KOSTL' IT_FINAL_ITEM-KOSTL.
        ENDIF.
      ENDLOOP.
    *Save Details
      PERFORM BDC_DYNPRO        USING  'SAPMF05A' '0300'.
      PERFORM BDC_FIELD         USING  'BDC_OKCODE'
                                       '=BU'.
      PERFORM BDC_DYNPRO        USING  'SAPLKACB'    '0002'.
      PERFORM BDC_FIELD         USING: 'BDC_OKCODE' 'ENTE'.
    ENDFORM.                    " BDC_BUILD_ITEM
    Thanks
    Mahesh

Maybe you are looking for