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.

Similar Messages

  • 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:

  • 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

  • Pdf reports not getting generated

    Hello All,
    We are having an issue in generating the pdf reports.. we are getting errors as mentioned below
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    We went through the below mentioned note as well :
    REP-0069, REP-57054, REP-3000 in R12
    Our's is a multi tier Oracle E-Business suite setup with multiple nodes as mentioned below:
    a , b -- Web and forms
    c, d -- Concurrent tier nodes
    e, f -- Database tier nodes
    In the $APPL_TOP we did the below command to see what is setting for the DISPLAY environment variable.
    grep DISPLAY *.env
    it gave the results as mentioned below :
    instancename_a.env : export DISPLAY=a:311.0
    instancename_b.env : export DISPLAY=b:311.0
    instancename_c.env: export DISPLAY=c:311.0
    instancename_d.env: export DISPLAY=d:311.0
    Could someone please advise and help us regards this as to what all needs to be checked and verified for a multiple node instance ..we are not able to get which is that environment setting which is incorrect or missing which is causing these seeded report related error messages.
    thanks

    Please post the details of the application release, database version and OS.
    Can you reproduce the issue with PS reports?
    Please review these docs.
    Intermittent Oracle Reports REP-0069: REP-57054: Error [ID 1237834.1]
    Reports Fail With REP-0004 REP-3000 REP-0069 REP-57054 On a Cloned R12 (12.0.4) Instance [ID 742122.1]
    REP-1924, REP-0069, REP-57054, REP-1924 - Errors When Generate Reprts By PDF Style [ID 1053091.1]
    After Upgarde to R 12.1.2 Running Any PDF Reports: Get: REP-3000,REP-0069 and REP-57054 [ID 1204553.1]
    Concurrent Processing - Concurrent Reports Failing With Errors REP-0004,REP-0082 and REP-0104 [ID 844976.1]
    Thanks,
    Hussein

  • 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

  • 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

  • When I try to open a pdf file I get an error message stating "There was an error opening the document.  The file is damaged and could not be repaired."  Other pdf files open fine.

    When I try to open a pdf file I get an error message stating "There was an error opening the document.  The file is damaged and could not be repaired."  Other pdf files open fine.

    You need to get a new copy of the PDF.

  • When I try to open a pdf file I get the message, "The file is damaged and could not be repaired." I

    When I try to open a pdf file I get the message: "The file is damaged and could not be repaired." I've downloaded the latest reader, but that has made no difference. I use a Mac 10.8.2. Any suggestions or info?

    Does this happen with every PDF file or a specific one ? Maybe the file is really damaged.

  • PDF files not being displayed correctly, instead I get a blank screen with some sort of small pinned icon in the centre.  It was working fine until today HELP!

    PDF files not being displayed correctly, instead I get a blank screen with some sort of small pinned icon in the centre.  It was working fine until today HELP!

    What is your operating system?  Reader version?  Are these local or online PDFs?  If online, in what browser?
    Can you post a screenshot: https://forums.adobe.com/thread/1070933

  • Nohup.log files are not getting generated correctly

    hai,
    im a weblogic administrator. Here is my problem in weblogic. My partner has complained that nohup.logs are not getting generated properly. Like for every 5 mins a new nohup .log file is getting generated. But almost 4 to 5 logs are of 0 size and after that the 6 log file is very hug ( around MB). And the status of the managed servers is in FAILED state. When i checked the nohup logs, i can see "E297: Write Error In Swap File" and also the below error. But when i checked the disk space it is only 30 % full. Please suggest me something that can help me in this. Why is this behavior in the nohup.logs? have anyone faced anythign like this? Please help me.
    But after the recycle everything is fine. But i want to know what went wrong and why it got recovered after the recycle.
    <Feb 11, 2010 7:43:59 AM CST> <Error> <HTTP> <BEA-101246> <Error occurred while flushing HTTP log file for the Web server: wl38_managed1
    java.io.IOException: Disk quota exceeded.
    java.io.IOException: Disk quota exceeded
    at java.io.FileOutputStream.writeBytes([BII)V(FileOutputStream.java:???)
    at java.io.FileOutputStream.write(FileOutputStream.java:260)
    at com.wily.introscope.agent.probe.io.ManagedFileOutputStream.write(ManagedFileOutputStream.java:423)
    at weblogic.utils.io.DoubleBufferedOutputStream.flushBuffer(DoubleBufferedOutputStream.java:58)
    at weblogic.utils.io.DoubleBufferedOutputStream.flush(DoubleBufferedOutputStream.java:157)
    at weblogic.servlet.logging.LogManagerHttp$FlushLogStreamTrigger.trigger(LogManagerHttp.java:522)
    at weblogic.time.common.internal.ScheduledTrigger.run(ScheduledTrigger.java:243)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.time.common.internal.ScheduledTrigger.executeLocally(ScheduledTrigger.java:229)
    at weblogic.time.common.internal.ScheduledTrigger.execute(ScheduledTrigger.java:223)
    at weblogic.time.server.ScheduledTrigger.execute(ScheduledTrigger.java:50)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

    according to error message, your partition size have not enough disk space from where you are running nohup command. check with df -kh.

  • Reports file did not get generated during upgrade from 12.1.1  to  12.1.3

    Hi,
    Following is my setup:
    Two node Rac database on Linux 5(64-bit)
    All apps services are on single node - Linux 5(32-bit)
    Database version -- 10.2.0.5
    Apps version -- 12.1.1
    To upgrade apps from 12.1.1  to  12.1.3 i applied following patches.
    a.Merged patch 9239090, 9239095 and applled the merge driver, during the patch application i got the following error:
    Copying files to destination ...
    Done copying files to destination.
    The following Oracle Reports objects did not generate successfully:
    ja reports/US JAINMCEN.rdf
    An error occurred while generating Oracle Reports files.
    Continue as if it were successful [No] :
    == I did 'Yes' and patch applied successfully then as a post step i Merged Patch 9817770, 9966055 and apply the merge driver.
    Now i wanted to regenerate that particular rdf file, but its not getting generated even with adadmin. Not sure will the rdf file causes issue later so i wanted to fix this.
    Please advice...
    Thanks,
    Tanveer Mohammed

    Hi;
    I did 'Yes' and patch applied successfully then as a post step i Merged Patch 9817770, 9966055 and apply the merge driver.
    Now i wanted to regenerate that particular rdf file, but its not getting generated even with adadmin. Not sure will the rdf file causes issue later so i wanted to fix this.I belive you regenarete rdf and u dont have any issue than you can ignore this error. If you dont generate rdf than i suggest regenarete and if you have any issue update thread please
    Regard
    Helios

  • I use Safari as my browser. When on a site and I click on a PDF file I get a black screen and a notice that "Adobe Reader blocked for this website". However, this does not happen if I use Firefox.

    I use Safari as my browser. When on a site and I click on a PDF file I get a black screen and a notice that "Adobe Reader blocked for this website". However, this does not happen if I use Firefox.

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print PDF's displayed in Safari, you may be able to print by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar may appear under the cursor. Click the printer icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
    Safari ▹ Preferences... ▹ Security
    and check the box marked
    Allow Plug-ins
    Then click
    Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others — I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 3 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • Opening PDF Files Not Working Sporadically

    I inherited a VB.Net Windows application. It uses MDI Parent and MDI Child forms. Two of the child forms have viewers that open PDF files. In both cases the child forms are launched and the PDF file opened when the user selects a menu item. My application has references to four Adobe dlls, AcroPDF.dll, adodb.dll, AxInterop.AcroPDFLib.dll, and Interop.AcroPDFLib.dll. In both cases when the menu item for the desired document is selected (this raises a button click event) a very simple line of code " AxAcroPDF1.src = [path]\ [name of PDF file] " is executed. When executed from a CD, the application works fine on the development machine and on some user workstations, but on at least one workstation when the user selects the menu item that open the PDF file they get an unhandled exception error. The error message is quite lengthy, so I will only include excerpts. "0x8000405 Error HRESULT E_FAIL has been returned from a call to a COM component" is the meat of the error message.
    The user's machine on which the error occurs has Adobe Acrobat and Adobe Distiller, as does another user workstation on which the application runs fine. Windows Vista is the standard, so I do not believe it is being affected by the version of Windows. All of our workstations are supposed to be imaged using the same master; however individual users can have other software installed as needed. We do have some stringent security requirements and they vary depending on the network the particular user is on. I do not think this would have any affect on a standalone Windows application running from a CD, however I am not certain that is the case.
    Any answers, suggestions, thoughts, etc. on why this error would occur on some machines but not others will be greatly appreciated. There is so much on the net that my Google searches return it is difficult to filter through all of it. The error message in question can apparently be generated many ways and so far I have not found anything that is specific to the error occurring when attempting to open a PDF file within a Windows application.

    The user's workstation on which the application throws an error has Adobe Acrobat 9 Pro as does one of the other workstations on which the application runs correctly. I verified this with the user, so we can eliminate the version of the software as being the culprit. Please express any thoughts or ask any questions you feel are pertinent. I would like to get to the bottom of this and will gladly do whatever will help other posters help me. Thanks.

  • When forwarding Word or PDF Files they get corrupted

    I have several users that when they forward either a word document of a pdf file they get corrupted.  If I forward directly from Outlook (2007) they are perfectly fine. 
    Anybody know what is happening?  We tend to send a lot of word/pdf files.
    Thanks

    Okay, let me be specific here.
    I have:
    Adobe Technical Communication Suite 2 fully installed and licensed to this computer.
    I also have an older version of Robohelp 7 installed.
    Both have all the updates done.
    The machine also has:
    MS Office 2003
    and the updated Adobe Distiller program.
    What I want to do is to "print" - IE, generate - a Word document version AND a PDF version of my current Robohelp 8 project.
    (Ignore this part, because this is not the issue. The generation of the files is the issue. Nothing else. The block, and the problem is that I cannot get Word or PDF files to generate from Robohelp 8.)
    What I will do with this is convert the Word doc BACK to Robohelp 7, AND import the Word doc in FrameMaker.
    (But again, we do not care about what I'm going to do with the files. The end result is not important. What is important, again, is:)
    I cannot "print" - IE, generate, a Word document AND/OR a PDF version of my current Robohelp 8 project from the generate dialogue box.
    I'm hoping that this clarifies the issue, since there are no add-ons to what I'm trying to do here. I'm not dancing the angels around the head of the legacy pin, I'm not trying to open a R8 in R7, I'm not trying to cure cancer or shoot a bulls-eye at 1,200 feet.
    I am trying to "print", IE, generate, a Word document OR a PDF from my current Robohelp 8 environment and cannot do so.
    (Sorry for the excessive description, but it looked like we were branching off into realms that weren't the problem at all.)
    In response to Peter - I did try a sample project, and the same issue occurs. When I click "Printed Documentation" in either of the projects, a popup comes up that says "Parameter is Incorrect". This is an unmodified item that I'm opening - stock off the installation.

  • Transportation lane KEY not getting generated in the table

    Transportation lane KEY not getting generated in the table
    Hi folks,
    The issue is like this :
    We have a weekly workorders upload program from legacy systems to SAP-APO. The legacy planners send a .CSV file containing material-wise workroders. A customised zee program picks these quantities & writes them in Prod.planned keyfigures in SNP planning book. This process is done for the manufacturing locations only.
    Lately workorders for two particular material M1 & M2 had failed to get upload. It gives the error 'NO VALID SOURCE OF SUPPLY COULD BE FOUND' in its Job log. We did some debugging & found that for successful materials the  TRPID is getting generated in the table /SAPAPO/V_TRPROD  whereas this TRPID is missing for M1 & M2. Why this is happening is our main concern. We tried deleting the PPM & creating this again, assuming that the PPMID is the precursor for generating this TRPID, but this yielded no results.
    ____ for successful upload______________
    se16 --> /SAPAPO/V_TRPROD
    Version = 000
    LOCTO = LOCID KEY for manufacturing location
    MATID = MATID KEY of successfully loaded workorder
    Enter
    This gives the following results
    TRPID = TRPID KEY
    LOCFR = LOCID KEY for manufacturing location
    LOCTO = LOCID KEY for manufacturing location
    MATID = MATID KEY for successfully loaded workorder
    ( This seems a self-lane, i.e both TO & FROM location are same)
    ____ for unsuccessful upload________
    se16 --> /SAPAPO/V_TRPROD
    Version = 000
    LOCTO = LOCID KEY for manufacturing location
    MATID = MATID KEY for unsuccessfully loaded workorder
    Enter
    This gives the following results
    Error = No Table entries found for specified KEYS
    We are perplexed why this TRPID is not getting generated for these two particular material M1 & M2?
    We have deleted their PPM & re-created them to cross-check if the PPMID KEY is the trigger for generating the TRPID key. This didn't work!
    Please let us know in case someone faced a similar issue.
    Many Thanks.
    Kumar
    Edited by: Blue Lotus on Jun 9, 2011 2:44 PM

    Yes Anand.
    We deleted the PPM & created it again, which didn't work.
    Later on we deleted the product itself from APO & re-CIFed it from R3 & then re-created the PPM.
    The PPMID which was missing earlier is now getting created! However no luck with the TRPID.
    Why this TRPID is not getting generated in our only concern
    Regards
    Kumar

Maybe you are looking for

  • Cellular Data Keep Switiching Back On!

    Ive Got an unlocked 4s on 5.0.1... Each time i switch off my cellular data toggle..From Settings>>General>>Network The toggle turns back on after about 5 sec. Pllllllz Help this is so frustrating =) Thanx Alot,

  • R12 Payable - Payment Process Request Report

    I need to list payments ordered by vendor name in Payment Process Request Report. Currently I don't see any logic how payments are printed in "Payment Process Request" report. Does anyone know how to resort this report? Thanks, Joon

  • Port Forwarding for Cisco camera WVC80N and AirPort Extreme

    I have set up my camera to the Apple AirPort Extreme on a Windows 8 computer, but now get an error saying, "The setup wizard cannot set up TZO DDNS with your network for remote viewing." After clicking on the Learn How to Remotely View my Camera, it

  • Bootcamp problem

    trying to install windows on my macbookpro (mac osx 10.7.5) using bootcamp and that message all what i have  (The disk cannot be partitioned because some files cannot be moved.) Back up the disk and use Disk Utility to format it as a single Mac OS Ex

  • How do I move all of the control points at the same time at the Path Text preset?

    I'm doing motion typography, I used the Bezier Shape Type, it has 4 control points, I saved the custom preset I made, but the problem is, is it possible to move them at the same time? I'm animating per letter to form a word. Additional Question: Is i