OBIA 7.9.6.2    parameter files not properly generated

I am seeing 4 parameter files being generated with names like this: [note @ sign in the file name]
DataWarehouse.DataWarehouse.SILOS.@DAC_SIL_PositionDimension_FULL_TD_CMD.txt
DataWarehouse.DataWarehouse.SDE_ORAR1212_Adaptor.@DAC_SDE_ORA_WorkforceEventQueue_SupStat_CMD.txt
DataWarehouse.DataWarehouse.SDE_ORAR1212_Adaptor.@DAC_SDE_ORA_PersistedStage_WorkforceEvent_Performance_Mntn_CMD.txt
DataWarehouse.DataWarehouse.SDE_ORAR1212_Adaptor.@DAC_SDE_ORA_PayrollFact_Agg_Items_CMD.txtI am using 7.9.6.2 (fin, hr, scm, P&S) with EBS R12.1.x
All the tasks run fine, expect these 4 (and their dependencies)
Rest of the parameter file names are correct. As a result of the above 4 parameter file names,
the ETL workflow is not getting triggered, hence, no informatica session log or workflow log.
Only DAC error log shows up, for these tasks.
500+/700+ ETL tasks completed, hence, I do not suspect any major configuration issue. Note this is 7.9.6.2 of Bi apps.

WE did had the similar problem and we were able to come out of it with below one.
1). Modify infa_command.xml in /install/DAC/CONF
2). In the file, search for start_workflow_8 and start_workflow_8_alternative
3). Swap names by renaming start_workflow_8 to start_workflow_8_alternative
4). Rename start_workflow_8_alternative to start_workflow_8
5). Place the modified file in the same location, bounce DAC Server and re-run ETL
NOTE: The parameter will work only if DAC Server and INFA server are on the same server.

Similar Messages

  • BACKGROUND JOB WAS NOT SCHEDULED/LOG FILE NOT YET GENERATED

    Hello,
    To generate the log report, /VIRSA/ZVFATBAK program is scheduled on hourly basis but some time report doesn't get generated and if we see the background job then it shows sucessfully finished.
    If we see the maually the log report for FFID then below error message is displayed.
    " BACKGROUND JOB WAS NOT SCHEDULED/LOG FILE NOT YET GENERATED"
    Can anyone guide me to solve the issue.
    Thanks in advance.
    Best Regards,
    Prashant Dubey

    Hi,
    once chk the status of the job by selecting that and check job status(cltr+shift_f12)
    since it was periodically scheduled job there will be a RELEASED job after every active job..
    so try to copy that into another job using copy option and give some new name which u have to remember...
    the moment u copy u can find the same copied job in SCHEDULED status...
    from here, try to run it again on hourly basis....
    After copying the job u can unschedule the old released job to scheduled otherwise 2 will run at a time...
    rgds,

  • Parameter file not found in the location as specified by infa workflow log

    Hi,
    I am unable to find the Parameter file in the location, /u01/obi/inf_svr/server/infa_shared/Temp/SDE_ORA_APTransactionFact_ExpenseDistribution_Full_vxqbGa, as specified in the Informatica workflow log. But Informatica maps are succeeding without any error. Also Parameter file location specified by DAC is different ie /u01/obi/inf_svr/server/infa_shared/SrcFile and proper parameter file exist in this location. Please someone help clarify what is happening here and how the maps are succeeding with the parameter file as specified in th workflow log.

    How to configure the task(Informatica workflow) which contains two sessions in it?
    Because I found a recommendation that every workflow should have only one session in it and the session name must be same as that of workflow name. But my requirement is, I have to configure a workflow in DAC which contains two sessions in it.
    Thanks a lot in advance for all your help sir.

  • PDF files not getting generated

    Hi friends,
    Through our application we are generating PDF to network location. Suddenly it stoped from last month.
    I am not able to trace exact problem. forms version 6i we are using.
    PROCEDURE P_PRINT_GRN
                                       (p_type VARCHAR2 default 'P') IS -- Added by Piyush on 09/09/2007 GRN Email CR20
                                       /* p_type value if 'P' then normal Printing if 'M' then generate PDF for email attachment CR20*/
         param_grp ParamList ;
         param_grp_frr ParamList ;
         pl_name VARCHAR2(10) := 'tempdata';
         pl_name2 VARCHAR2(10) := 'tempdata';
         v_backslash VARCHAR2(1) ;
         fopen Text_IO.File_Type; /* File handle for opening the file */
         alt_msgs NUMBER ;
         v_runmode VARCHAR2(80) ;
         v_mch_name parameter_master.value%TYPE;
         v_port_no parameter_master.value%TYPE;
         v_server_name parameter_master.value%TYPE;
         o_usrid           VARCHAR2(6);
         o_password      VARCHAR2(15);
         o_dbname           VARCHAR2(30);
         v_param_check NUMBER;
         v_potype VARCHAR2(20);
         v_path                    VARCHAR(100); -- Added by Piyush on 09/09/2007 to capture path for GRN report PDF File CR20
         v_err                         NUMBER;                -- Added by Piyush on 09/09/2007 Show_Alert CR20
    BEGIN
         SELECT NVL(TO_CHAR(po_no), 'VMIPO')
         INTO v_potype
         FROM grn_header
         WHERE GRN_NO = :grn_header.grn_no;
    param_grp := Get_Parameter_List(pl_name);
         /* Creates the parameter list if one doesnt exist */
         IF Id_Null(param_grp) THEN
              param_grp := Create_Parameter_List(pl_name);
              IF Id_Null(param_grp) THEN
                   Message('Error creating parameter list '||pl_name);
                   RAISE Form_Trigger_Failure;
              END IF;
         ELSE
              Destroy_Parameter_List(param_grp);
              param_grp := Create_Parameter_List(pl_name);
         END IF;
    /* Adding parameters to Parameter List in order to be passed to called report */
         /* Added (Start) by Piyush on 09/09/2007 GRN Email, Generate PDF CR20*/
         if p_type = 'M' then
              BEGIN
                   SELECT value
                   INTO v_path
                   FROM parameter_master
                   WHERE type_code = 16
                   AND value_code = 6;
              EXCEPTION
                   WHEN NO_DATA_FOUND THEN
                        SET_ALERT_PROPERTY('ALT_ERROR', alert_message_text, 'Reports Path parameter does not exists in Parameter Master.');
                        v_err := SHOW_ALERT('ALT_ERROR');
                        RAISE FORM_TRIGGER_FAILURE;
                   WHEN OTHERS THEN
                        SET_ALERT_PROPERTY('ALT_ERROR', alert_message_text, substr(error_text,1,100));
                        v_err := SHOW_ALERT('ALT_ERROR');
                        RAISE FORM_TRIGGER_FAILURE;      
              END;
              ADD_PARAMETER(param_grp, 'P_DESTYPE', TEXT_PARAMETER, 'FILE');
              ADD_PARAMETER(param_grp, 'P_DESNAME', TEXT_PARAMETER, v_path || 'GRN_' || :grn_header.grn_no || '.pdf');
              ADD_PARAMETER(param_grp, 'P_DESFORMAT', TEXT_PARAMETER, 'PDF');
         ELSE     
              ADD_PARAMETER( param_grp , 'P_DESTYPE' ,TEXT_PARAMETER,'PRINTER');
              ADD_PARAMETER( param_grp , 'P_DESFORMAT' ,TEXT_PARAMETER,'DEFAULT');
         END IF;
         /* Added (End) by Piyush on 09/09/2007 GRN Email, Generate PDF CR20*/
         /* Commented (Start) by Piyush on 09/09/2007 to set value based on paramter CR20*/
         --ADD_PARAMETER( param_grp , 'P_DESTYPE' ,TEXT_PARAMETER,'PRINTER');
         --ADD_PARAMETER( param_grp , 'P_DESFORMAT' ,TEXT_PARAMETER,'DEFAULT');
         /* Commented (Start) by Piyush on 09/09/2007 to set value based on paramter CR20*/
    ADD_PARAMETER( param_grp , 'P_COPIES' ,TEXT_PARAMETER, 1);
    ADD_PARAMETER (param_grp ,'PARAMFORM' , TEXT_PARAMETER, 'NO');
    ADD_PARAMETER(param_grp,'P_REPID',TEXT_PARAMETER,'R021');
    ADD_PARAMETER(param_grp,'P_MENUID',TEXT_PARAMETER,NULL);
    ADD_PARAMETER(param_grp,'P_USERID',TEXT_PARAMETER,:grn_header.created_by);
    /* Code for adding user Parameters to the list should be added over here */
    ADD_PARAMETER(param_grp , 'P_FROM_GRN_NO', TEXT_PARAMETER,to_char(:grn_header.grn_no));
         ADD_PARAMETER(param_grp , 'P_TO_GRN_NO', TEXT_PARAMETER,to_char(:grn_header.grn_no));
    /* Get the application property to check whether mode is client server or Web */
    v_runmode := Get_Application_Property(USER_INTERFACE);
    IF v_runmode = 'WEB' THEN
         SELECT     a.value,b.value,c.value
                   INTO          v_mch_name,v_port_no,v_server_name
                   FROM          parameter_master a,parameter_master b,parameter_master c
                   WHERE          a.type_code = 13 and a.value_code = 1 AND
                                       b.type_code = 13 and b.value_code = 2 AND
                                       c.type_code = 13 and c.value_code = 3;
    /* Code for calling the reportin web mode */      
    --FP_CONNECTSTRING(o_usrid , o_password ,o_dbname );     
    web.show_document('http://'||v_mch_name||':'||v_port_no||'/ows-bin/rwcgi60.exe?module='||
                                                      '+userid='||o_usrid||'/'||o_password||'@'||o_dbname||     /*added by Amol on 16/08/01*/
                                                 '+server='||v_server_name||
                                                 '+desformat=default'||
                                                 '+p_destype=printer'||
                                                 '+p_copies=1'||
                                                 '+p_repid=R021'||
                        /* Code for adding user Parameters to the list should be added over here*/                                              
                                                                     '+p_grn_number='||:grn_header.grn_no||
                                                 '+p_userid='||:grn_header.created_by||
                                                 '+p_menuid='||NULL                         
    ELSE
    /* Code for calling the report by passing the parameter list to be added over here
    For Example */
    Run_Product(REPORTS,'R021', SYNCHRONOUS,RUNTIME, FILESYSTEM, param_grp ,NULL);
    IF v_potype <> 'VMIPO' THEN
              param_grp_frr := Get_Parameter_List(pl_name2);
         /* Creates the parameter list if one doesnt exist */
                        IF Id_Null(param_grp_frr) THEN
                                  param_grp_frr := Create_Parameter_List(pl_name2);
                                  IF Id_Null(param_grp_frr) THEN
                                            Message('Error creating parameter list '||pl_name2);
                                            RAISE Form_Trigger_Failure;
                                  END IF;
                        ELSE
                                  Destroy_Parameter_List(param_grp_frr);
                                  param_grp_frr := Create_Parameter_List(pl_name2);
                        END IF;
    ADD_PARAMETER(param_grp_frr, 'DESTYPE', TEXT_PARAMETER, 'FILE');
                   ADD_PARAMETER(param_grp_frr, 'DESNAME', TEXT_PARAMETER, v_path || 'FRR_' || to_char(:grn_header.grn_no) || '.pdf');
                   ADD_PARAMETER(param_grp_frr, 'DESFORMAT', TEXT_PARAMETER, 'PDF');
                   ADD_PARAMETER(param_grp_frr , 'P_GRN_NO', TEXT_PARAMETER, TO_CHAR(:grn_header.grn_no));
                   --ADD_PARAMETER (param_grp ,'PARAMFORM' , TEXT_PARAMETER, 'NO');
              --ADD_PARAMETER(param_grp,'P_REPID',TEXT_PARAMETER,'R186');
              --ADD_PARAMETER(param_grp,'P_MENUID',TEXT_PARAMETER,NULL);
              --ADD_PARAMETER(param_grp,'P_USERID',TEXT_PARAMETER,:grn_header.created_by);
         --Run_Product(REPORTS,'R186', SYNCHRONOUS,RUNTIME, FILESYSTEM, param_grp ,NULL);
         Run_Product(REPORTS,'R186', SYNCHRONOUS,RUNTIME, FILESYSTEM, param_grp_frr ,NULL); --testing
    END IF;
    END IF ;
    EXCEPTION
    WHEN OTHERS THEN
    IF sqlcode = -302000 THEN /* Invalid file path */
              alt_msgs := LPK_ERROR.F_ERROR_MSGS(910);/*Enter Valid Path and File name.*/
         END IF;
    END;
    please give a clue

    You have to give us a bit more then this. What stopped? Web or client/server version? What changed last month? Are there errors?
    For the code, please use the { code } tags for formatting and readability.

  • SWF File not being generated by compiler

    I am using Flash Builder 4.5.
    One of the modules that compiles without error is still not being bound into the runtime image (in this case debug).
    There are no compiler errors (auto build is switched ON) but a swf file is not being generated.
    I have tried removing the reference to the module in the Project ->Properties->Modules window and then adding it back in to no avail.
    This was working up until I made a change to the module in question and then saved it.

    I would check all imported images in the library. If you cannot see the image in your library preview; there is a good chance that there is an issue and it will need to be reimported.

  • Spool file not being generated in production server

    Hello
    Our end users are using automatic payment program F110 to print multiple cheques.
    The settings in SPAD are identical in Quality and Production Server,but some how
    spool file is not being generated in production.
    Test printing is fine in Quality server.
    Printer being used is Epson LQ 300.Device type is EPESCP2.
    We are using z custom page size ,and it is assigned to printer device Type as well
    Would be very great if some can can comment on which settings to check,as SPAD setting is
    same in both server ,yet no spool.Very Very urgent.
    Iam not sure ,whose domain is it now-BASIS or ABAP.
    Thanks a lot
    Nouman

    If there is a problem with the spool, the variant that is being in F110 parameters.
    As you are saying the quality system is working fine, please compare both the variants in Production and Quality systems.
    This should solve your situation.

  • XML file not properly read from Appc Server. Partial records filled into IT

    Hi,
    I am reading an XML file from the application Server. only 2 records are comming to the Internal table. Other records are not coming to the Internal Table. It's giving Sy-Subrc 4 after 2 iterations. Below is my code. Kindly suggest.
    open dataset p_unix in text mode message msg.
        if sy-subrc <> 0.
          message i001(38) with 'Error on Open of File: ' msg.
        else.
          while sy-subrc = 0.
            read dataset p_unix into infile.
            check sy-subrc = 0.
            append infile.
          endwhile.
          close dataset p_unix.
    Thanks,
    Debi.

    Hi,
    this is probably because there's only one "end of line" character (probably after <?xml ... ?>). This is normal, but you must store the second line in a string data object, which will then receive the whole XML stream (except the xml header as it is stored in the first line). And that's done.
    BR
    Sandra

  • Moving a Folder/Files not properly Exported

    I recently had to return a Company Laptop which I ran iTunes on. I backed up all of my files but forgot to do a "proper" Export. Now when I try to import or move the Files to my Home PC iTunes is giving me an Error Message that the files were not Exported.
    Is there any way around this?
    Thanks in advance.

    Open the folder \Documents and Settings\yourname\My Documents\My Music\iTunes where yourname is the name of your Windows XP user account, fin the files inside, drag them to the external drive, and from there into the open iTunes window.
    (34273)

  • File not getting generated.

    I am doing an IDOC to file & mail.I mean 2 receivers.
    everything is fine XI...but the file is not getting created at the path....It shoes successful flag in XI.
    mail is working fine....
    i used variable substitution for defining the name of the file schema...and content conversions aswell...
    what should be the problem....

    Hi,
    Check the file adapter configuration as well check the file adapter status from RWB communication channel monitoring.
    chirag

  • WAR file not getting generated

    I am in the development of a web application with jsf2 ,and I am almost done with that and pretty much happy with the outcome , but now comes the problem , I am trying to get the project as WAR file but after the war creation wizard I am not seeing any war file in the mentioned path. Please let me know any suggestions
    I am using
    Jdeveloper 11

    I just figured way out of my problm silly me, but now the generated WAR is throwing errors while deploying it

  • Trace file not being generated

    Hi,
    I am using Oracle 10g Rel2.
    I am trying to generate trace file for a session using DBMS_SYSTEM.
    Firstly I used DBMS_SYSTEM.SET_SQL_TRACE_IN_SESSION procedure to generate trace file for a session, but this was generating trace files in udump directory. Then i checked on net & found that we can not generate trace file this way for active sessions.
    Then I tried using DBMS_SYSTEM.SET_ENV procedure, same results. This is also not generating trace files?
    Any idea why this is happening? Moreover for around how much duration I should enable trace?
    Thanks in advance.

    Firstly I used DBMS_SYSTEM.SET_SQL_TRACE_IN_SESSION procedure to generate trace file for a session, but this was generating trace files in udump directory.
    As is the normal behavior, so nothing wrong.
    Then i checked on net & found that we can not generate trace file this way for active sessions.
    Which is, of course, nonsense.
    Then I tried using DBMS_SYSTEM.SET_ENV procedure, same results. This is also not generating trace files?
    This is again nonsense.
    As you didn't consider it necessary to post your exact commands, and nobody is looking over your shoulder, an adequate response is impossible.
    Sybrand Bakker
    Senior Oracle DBA

  • PDF File not getting generated - PLEASE HELP

    I have a jsp in a portlet from where in I call another jsp to generate a PDF file on the fly. IT is not working I have tried all sorts of stream please help.
    Calling JSP (Portlet)
    <tr>
    <td><netui:anchor href="print.jsp" target="new">Print
    </netui:anchor>
    </td>
    Called JSP, print.jsp:
    try {
    ServletOutputStream outStream = (ServletOutputStream)response.getOutputStream();
    outStream.write("BINARY OUTPUT".getBytes());
    outStream.println("PRINTLN OUTPUT--"+request.getParameter("empID"));
    outStream.flush();
    outStream.close();
    } catch {}
    As you can see I am just trying to Write some string in the print.jsp
    The word opens up but nothing is WRITTEN in it. Have tried all the OutputStreams. Please help why is it not getting printed even if set proper headers.

    There are some issues with this PDF file.  It's not tagged but even still it has some real problems.  I checked the file to see what created it and it was something called "Wine Postscript Driver" and the PDF Producer was "GPL GhostScript 9.10"  When you check the file in Preflight then you will begin to understand that this is a poorly created PDF file.  Here is a bit of the PDF Syntax report:

  • Client.jar file not being generated by weblogic 6.1

    Hi,
    I have developed a web service for our Internal network. I have deployed the web
    service onto weblogic 6.1 and have been able to obtain the wsdl file. I have coded
    my java client, but to compile and run the client, I require the client.jar file,
    which weblogic should create on its own once the actual web service is successfully
    deployed. wl server is not able able to create the client.jar file and hence I am
    unable to run the client. Could anyone tell me why the client.jar file is not being
    created and is there any workaround for coding the java client without using the
    client.jar file.
    Thanx
    sudipto

    Hi Sudipto,
    I'm assuming that you used the <wsgen> Ant task (in your build.xml) to create this
    web service, right?
    Are you sure the client.jar file isn't in the web-services.war? You can verify this
    by extracting this file (web-services.war) from the .ear for your web service, and
    viewing its contents with WinZip (or the jar.exe utility that comes with the JDK).
    There is a way to create client code without having a client.jar (or a WSDL document),
    but it takes a little more work :-) I have attached a "heavily commented" example
    of this, at the bottom of this post.
    Regards,
    Mike Wooten
    "Sudipto" <[email protected]> wrote:
    >
    Hi,
    I have developed a web service for our Internal network. I have deployed
    the web
    service onto weblogic 6.1 and have been able to obtain the wsdl file. I
    have coded
    my java client, but to compile and run the client, I require the client.jar
    file,
    which weblogic should create on its own once the actual web service is successfully
    deployed. wl server is not able able to create the client.jar file and hence
    I am
    unable to run the client. Could anyone tell me why the client.jar file is
    not being
    created and is there any workaround for coding the java client without using
    the
    client.jar file.
    Thanx
    sudipto[NoWSDLWeatherClient.java]

  • Output file not getting generated.

    I have a scenario R/3->XI->Legacy system. When the file is generated by a program, unix script runs and moves the file to FTP server. From there, it is moved to output folder on Legacy system. I have an issue where I am not able to see the output file from the FTP server to the Legacy system. There are no errors seen on message monitor or RTWB. I also checked the program, Unix script, FTP server is all running. What can I do for troubleshooting? I have checked almost everywhere. I also checked the server port XI connects, the system login, etc.
    Any suggestions or ideas?
    Thanks.

    Rajan
    What I understand from your saying is:
    With a program R/3 is generating a File. So here there is no XI role.
    Then XI is picking this file and sending to FTP server. So File-XI-File scenario. First of all are you sure that your R/3 is generating the file what XI is expecting? If yes then your XI will pick up and you will see in SXMB_MONI. If not first find out whether it is generating or not. If it generates and if you are unable to pick the file then check the authorisations. Also if you are doing Content conversion kindly go to adapter monitor and find out whether you can see any error?
    Regards,
    ---Satish

  • SWF file not being generated

    I moved an old project (from Intellij, without Flex artifacts) into a new location and recreated
    a new Flex project with Flex 4.0 integrated product over the old file structure.
    However, I am now unable to generate the application's swf file or the swf's for its modules.
    I am using Flex 4.0 in MacBook Pro OS X 10.6
    In Compiler options I do have "Generate accessible swf file" checked.
    All options have been checked under HTML wrapper.
    Under menu choice Project Build Automatically is checked, and I also tried "clean"
    Any ideas on what I need to do to generate?
    Thank you.

    Thanks a million Amy - I had an error in a classpath. Once it was traced, everything compiles.
    Thanks again, and enjoy your weekend.

Maybe you are looking for

  • Jsp code not working

    hello we have some class files that are in a zip file that the nw admin has included in the CLASSPATH. The code works on Windows w/Tomcat but not the remote Sun Web Server, we cannot get the connection to database due to the code not reading the clas

  • My Ipad's photo program freezes while trying to add a picture to a shared stream.

    My Ipad's photo program freezes while trying to add a picture to a shared stream. I click into the photo click the box with the arrow and once I click "iCloud" nothing happens. I have to force quit the app to regain control. The photo does not add. I

  • Netting with F110

    Hello, If I use the transaction  F110 for the netting between vendor and customer invoice I can have the following cases: - amount of vendor invoice > amount of customer invoice --> The difference is payed - amount of customer invoice > amount of ven

  • How to display stored image in jsp  in ie7???

    i am using internet explore7. i have a problem when i am displaying an image in jsp its not properly coming. this image and image is stored in database. image is stored in database using "binarystream" . i am just simply calling the image path and us

  • Creating wf  within MSS for the approval OT

    Hi every one, Overtime can be entered by the non-exempt salaried employees in ESS. Once entered, it is being sent to the immediate manager for approval/refusal. The problem is, if the manager goes on vacation or is out of the office for a long period