SM37 Job is not visible in SM50

Hello Gurus,
  I am seeing a peculiar situation- We ran a job and after a while I am seeing it has dissappeared from SM50 but has "Active" status in SM37.
*We have only one application server.
  Does anybody have any idea how it could be cancelled.
Cheers,
Ankur

Hi Subhash,
  The issue was that Job was active in SM37 but was not present in SM50. I found the answer and this is due to termination of work process without making a call to "BtcCleanUp" kernel function .
Anyway thanks for replying.
Cheers,
Ankur

Similar Messages

  • E-Recruiting - Internal Candidates not displayed in candidate search, job postings not visible for internal candidates in job search

    Hi Friends,
    We are on EREC standalone model. Initial data transfer between HR to EREC master data using PFAL is done.
    All employees have got NA, CP, US, BP in HRP 1001 in EREC system.
    Change pointers are also activated in HCM system, now current master data changes are also in reflecting in EREC system thro IDOC posting.
    But when recruiter logs into portal and does a candidate search, no internal candidates are appearing ?
    1) What needs to be done for internal candidates to visible during candidate search ?
    2) Also while logged as internal candidate, released requisitions are not visible for internal candidates while they try to search for internal job postings ?
    Kindly provide your inputs.
    Regards,
    ER.

    Hi,
    In SLG1, getting the below error messages for multiple times.
    "Error while calling content extraction class CL_HRRCF_CEC_QUALI_WITH_PROFCY 
    The error occurred in program CL_HRRCF_SES_BUSOBJ_FROM_SPTYPCM001 line 96  
    Qualification 52000001 does not exist
    The incorrect HR object has the key 01NA60000029 "
    "The error occurred in program CL_HRRCF_ALE_EE_INBOUND"
    Also please state how to differentiate internal and external candidate search pages.
    Regards,
    ER.

  • ESS job created not visible in the list of 'Scheduled Process'

    As a part of data migration , I am required to invoke an ODI scenario using a java program which in turn is invoked by an ESS job.I'm able to do the same using a standalone application created in my jdeveloper.For incorporating this into the Fusion application I created an ADF Model Project in the hcmEss Application and created a sample javaclass and jobdefinition in the project,similar to what i did in my standalone application.
    I have included my job definition in the MarHcmEss and included the MAR file in the EarHcmEss.Also I have given the jazn security for my job,similar to other visible jobs.Still the job that I created is not visible in the list of jobs in the 'Launch ESS Monitoring UI'
    All this i tested using a deployment of hcmEss and hcmTalent Applications into my standalone weblogic server.Is there anything that i might have missed during the process?.I am new to ESS.
    Thanks,
    Ajin

    I'm facing the same issue.
    Also I'm unable to populate the values from the Resource Bundle in the Localization section of Job Definition.
    Any help will be appreciated.
    Thanks,
    Sangita.

  • Timer job defination not visible in central admin

    Hi,
    I have created timer job and added feature ans sheduled it weekly in the code.
    I have deployed it successfully by right click on project=> deploy.
    I can view this .wsp in the manage Farm Solution as Globaly deployed.
    Also I can see the feature in my site collection feture as active.
    I checked GAK also it included the timer job dll.
    I m in Farm Admin group. I restarted Timer service and admin service many times.
    BUT still I am not able to view my timer job defination in the central admin.
    Please suggest any solution.
    Thanks.

    This is code for my job
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    using System.Net.Mail;
    using System.Net;
    using System.Collections.Specialized;
    using Microsoft.SharePoint.Utilities;
    namespace SP_MyJob_CustTimerJob
    class MyJob : SPJobDefinition
    public MyJob():base()
    public MyJob(string jobName, SPService service, SPServer server, SPJobLockType targetType): base(jobName, service, server, targetType)
    this.Title = "MyJob";
    public MyJob(string jobName, SPWebApplication webApplication): base(jobName, webApplication, null, SPJobLockType.ContentDatabase)
    this.Title = "MyJob";
    public override void Execute(Guid contentDbId)
    SPDiagnosticsService.Local.WriteTrace(0, new SPDiagnosticsCategory("C:/ChkLog.txt", TraceSeverity.High, EventSeverity.ErrorCritical), TraceSeverity.High, "My job running", null);
    This is code for event reciver
    using System;
    using System.Runtime.InteropServices;
    using System.Security.Permissions;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Security;
    using Microsoft.SharePoint.Administration;
    namespace SP_MyJob_CustTimerJob.Features.Feature
    /// <summary>
    /// This class handles events raised during feature activation, deactivation, installation, uninstallation, and upgrade.
    /// </summary>
    /// <remarks>
    /// The GUID attached to this class may be used during packaging and should not be modified.
    /// </remarks>
    [Guid("e999a541-8a4b-4170-884c-82f83853b2ab")]
    public class FeatureEventReceiver : SPFeatureReceiver
    // Uncomment the method below to handle the event raised after a feature has been activated.
    //job name
    const string JobName = "MyJob";
    public override void FeatureActivated(SPFeatureReceiverProperties properties)
    try
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite site = new SPSite(SPContext.Current.Site.ID))
    using (SPWeb web = site.OpenWeb())
    int day = DateTime.Now.Day;
    SPWebApplication webApp = site.WebApplication;
    foreach (SPJobDefinition spjob in site.WebApplication.JobDefinitions)
    if (spjob.Name == JobName)
    spjob.Delete();
    //shedule job on every week
    MyJob myJob = new MyJob(JobName, webApp);
    SPWeeklySchedule schedule = new SPWeeklySchedule();
    schedule.BeginDayOfWeek = DayOfWeek.Saturday;
    schedule.BeginHour = 1;
    schedule.BeginMinute = 1;
    schedule.BeginSecond = 0;
    schedule.EndSecond = 0;
    schedule.EndMinute = 30;
    schedule.EndHour = 1;
    schedule.EndDayOfWeek = DayOfWeek.Saturday;
    myJob.Schedule = schedule;
    myJob.Update();
    web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    // Uncomment the method below to handle the event raised before a feature is deactivated.
    public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite site = new SPSite(SPContext.Current.Site.ID))
    using (SPWeb web = site.OpenWeb())
    int day = DateTime.Now.Day;
    SPWebApplication webApp = site.WebApplication;
    foreach (SPJobDefinition spjob in site.WebApplication.JobDefinitions)
    if (spjob.Name == JobName)
    spjob.Delete();
    // Uncomment the method below to handle the event raised after a feature has been installed.
    //public override void FeatureInstalled(SPFeatureReceiverProperties properties)
    // Uncomment the method below to handle the event raised before a feature is uninstalled.
    //public override void FeatureUninstalling(SPFeatureReceiverProperties properties)
    // Uncomment the method below to handle the event raised when a feature is upgrading.
    //public override void FeatureUpgrading(SPFeatureReceiverProperties properties, string upgradeActionName, System.Collections.Generic.IDictionary<string, string> parameters)
    Please tell me whats wrong in this code.

  • Email Address not visible for output device MAIL in created batch job

    Issue in ECC6.0: Email Address not visible to display/change for output device MAIL in print parameter of each step in the created batch job.
    User wants to periodically receive report file via send to his email, so I create the batch job running report and send the report in pdf file to his email.
    Detail in the batch job
    1) In print parameter screen of the step in the batch job
       -Using output device MAIL (output type ZPDF1)
       -inputting email address of receiver in the EMAIL ADDRESS field
    2) After the batch job was saved, I tried to display/change the field EMAIL ADDRESS via Tx. SM37, but this field is invisible. The field can not be displayed or changed anymore. I also tried in SM36, but it is for creating new batch job, not changing the existing batch job.
    4) User receives email with pdf file from the batch job.
    How to change/display the email address of the receiver in the created batch job?
    Note that we just changed to use SAP ECC6 from SAP 4.6c. In SAP 4.6c, we can change/display the
    Email Address Field via Tx. SM37.
    Pls kindly suggest, thank you very much in advance.

    Hi Srirompoti,
    After saving the job if the job has not started then you can follow the below steps to change the Email address.
    1. View the job from Txn SM37.
    2. check the check box for your job that you want to change and goto menu path "Job->change
    3. in the next screen goto "Edit->steps." or press "F6" key
    4. place the coursor on the job and goto menu path "Step->change->print specifications.
    5. here you can change the email address.
    If you are not able change the data then you might not have authorization.

  • Custom Timer Jobs not visible in Central Admin Job Definitions

    I have multiple custom timer jobs which I was using on old farm, and it was successfully working and was visible in the Central Admin Job Definitions.
    But ever since I moved to new farm, by restoring the site collections from old to new farm, and deployed the custom timer jobs on new farm, they are not visible in Central Admin Job Definitions.
    I tried to change the scope of the solution to "Web Application", and deployed it's wsp in new farm, then also they are not visible in Job Definitions. But I can see them in "Farm Solutions", they have been successfully deployed.
    Please suggest what should I do.

    public override void FeatureActivated(SPFeatureReceiverProperties properties)
    SPWeb wb = properties.Feature.Parent as SPWeb;
    if (wb == null)
    throw new SPException("Error obtaining reference to context Site ");
    // make sure the job isn't already registered
    foreach (SPJobDefinition job in wb.Site.WebApplication.JobDefinitions)
    if (job.Name == List_JOB_NAME)
    job.Delete();
    RSS listLoggerJob = new RSS(List_JOB_NAME, wb.Site.WebApplication);
    SPHourlySchedule schedule = new SPHourlySchedule();
    schedule.BeginMinute = 0;
    schedule.EndMinute = 59;
    listLoggerJob.Schedule = schedule;
    listLoggerJob.Update();
    public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
    SPWeb wb = properties.Feature.Parent as SPWeb;
    // delete the job
    foreach (SPJobDefinition job in wb.Site.WebApplication.JobDefinitions)
    if (job.Name == List_JOB_NAME)
    job.Delete();

  • Request id not visible in Manage

    Hi BW Experts,
    Has anyone experienced having a Request id of data in an Infocube, which was not visible via the "Manage"? If so, how do ensure this doesn't happen?
    The data was "deleted", but when doing Listcube the data is still showing. There was a database error of 913 during the deletion of the data, but there was not an error raised in the sm37 job log. It actually said it was successfully deleted.
    Version 3.0b sp22
    Any help will be appreciated.
    Thank you!

    Hi,
    I am not sure as to how this inconsistent deletion happened.  In my experience this is not a scenario that happens regularly.  It has not happened to me at all - Deletion of requests are being handled in Process Chains.
    Here is a link to a 'best practices' document for the BW administrator.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/08f1b622-0c01-0010-618c-cb41e12c72be
    BR/
    Mathew.
    Edited by: Mathew Muthalaly on Jul 23, 2008 6:02 AM

  • SM37 Job  in BW

    Hi
       How to cancel or put on hold a Released/Scheduled SM37 Job in BW
    Thanks

    Hi,
    Please go to SM37 and select the job and click on Job Details and copy the PID and note down the application Server where it is running and go back to the Job Overview screen and Click on Application Server at the right top corner and double click on the Corresponding server and it will take you to the SM50 Screen where you can give a search for the PID(Delete the Dot and Search). once you found the PID click on Process Menu and Select the option Cancel Without Core.
    Regards,
    Syed

  • Project Server 2010 - Assigned tasks not visible in PWA

    Hi,
    When I enter an issue on a project site, the assigned issue is not visible in the PWA under Issues & Risks.
    Based on this link (http://social.technet.microsoft.com/Forums/en-US/f5abd024-3c9a-47f8-a7cb-7743fafebf2b/project-server-2010-cannot-see-assigned-issues-and-risks) I have tried to solve it however without success.
    In the queue jobs I have the following error details:
    General
    Reporting Wss list sync failed:
    ReportingWssSyncListFailed (24018) - 1100. Details: id='24018' name='ReportingWssSyncListFailed' uid='6c8a0779-3c9f-4d25-a81c-04d69d6fce1d' SPListType='2136b7a0-03b9-4547-8b2d-c66497accd08' Error='1100'. 
    ReportingWssSyncListFailed (24018) - 1101. Details: id='24018' name='ReportingWssSyncListFailed' uid='1573855e-b176-44cc-bf92-8959d167f8fe' SPListType='2136b7a0-03b9-4547-8b2d-c66497accd08' Error='1101'.....................................
    Reporting message processor failed:
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='839ed0b8-6b8c-4bd5-bfbe-540349c1f27a' QueueMessageBody='ProjectUID='2136b7a0-03b9-4547-8b2d-c66497accd08'.
    ForceFullSync='False'. SynchronizationType='All'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'. 
    ReportingWSSSyncMessageFailed (24016) - RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.. Details: id='24016' name='ReportingWSSSyncMessageFailed' uid='b0e773af-5cc3-4965-85b3-a4d8050e86f5' QueueMessageBody='ProjectUID='2136b7a0-03b9-4547-8b2d-c66497accd08'.
    ForceFullSync='False'. SynchronizationType='All'' Error='RDS failed while trying to sync one or more SP lists. The RDS queue message will be retried.'............................................
    Queue:
    GeneralQueueJobFailed (26000) - ReportingWSSSync.WSSSyncMessageEx. Details: id='26000' name='GeneralQueueJobFailed' uid='07edaa28-647c-4dee-974e-06f47e4b4e40' JobUID='899bd048-2c19-4176-bd6c-1b45b8379a40' ComputerName='NLHGOL7FPR' GroupType='ReportingWSSSync'
    MessageType='WSSSyncMessageEx' MessageId='1' Stage=''. For more details, check the ULS logs on machine NLHGOL7FPR for entries with JobUID 899bd048-2c19-4176-bd6c-1b45b8379a40.
    As I understand this error could be due to a mismatch between the fields that are 'standard' in the project server and fields that are op the project site.
    If the reporting database could not sync, will consequently also the issues not be visible on the PWA??
    Any suggestions how to solve this?
    Regards,
    Dirk

    Hello,
    Yes, if the Issues & Risks are not being synchronised to the Reporting database then this will impact the issues & risks appearing on the PWA homepage reminders web part. See this post on how the data gets to the Reminders web part in Project
    Server 2010:
    http://pwmather.wordpress.com/2012/07/13/projectserver-active-issues-and-risks-on-pwa-reminders-web-part-ps2010-sp2010-sharepoint/
    The error you are seeing is probably caused by the default Issue or Risks columns being edited or removed from the Issues or Risks lists. It might be worth taking a look at this post:
    http://pwmather.wordpress.com/2011/06/20/project-server-2010-project-site-default-fields/
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • SAP BPC 7.5 NW SP09 - full optimize never ends. Job can not be stopped

    Hi experts,
    we sent a full optimize process in order to compress an application but it never finished.
    I noticed that through BW transaction RSPC the process chain: Full optimization stops in "Collapse box" step and become red.
    so the cube were locked and can not be used. we checked through in BW TE SM50 that process is in "Running status" 
    I tried to stop it through BW TE SM37 but  can not be done due its status.
    Please any idea how to stopped it and how solved full optimization issue?
    thanks

    Try cancelling it from SM50 (with core or without core). Never run Full Optimization for compression, run Light Optimization if you need to compress a cube.
    Gersh

  • Job is not running in Source system.

    Hi Experts,
    One issue I have because of this I am not able to load data into Data sources.
    I am in BI 7.0 environment.
    when I execute infopackage, total and techinical status are in yellow.
    I found in R/3 Job is not running, based on this statement in SM37. from the fallowing.
    Call customer enhancement EXIT_SAPLRSAP_001 (CMOD) with 0 records
    Result of customer enhancement: 0 records
    IDOC: Info IDoc 2, IDoc No. 3136, Duration 00:00:00
    IDoc: Start = 14.05.2009 07:23:39, End = 14.05.2009 07:23:39
    Synchronized transmission of info IDoc 3 (0 parallel tasks)
    IDOC: Info IDoc 3, IDoc No. 3137, Duration 00:00:00
    IDoc: Start = 14.05.2009 07:23:39, End = 14.05.2009 07:23:39
    Job finished
    Job satrt time and end time are same, so job is not running in the sourcesystem, am i right. let me known if i am worng.
    It is Standard Data source but in the above statement becasue  *result of Customer enhancement:0 records.*
    please help me to reslove this issue to load data into BI.
    1. what I have to do to run job in source system side.
    2. should I take any help from Basis.
    Regards
    Vijay
    Edited by: vijay anand on May 14, 2009 3:02 PM
    Edited by: vijay anand on May 14, 2009 3:04 PM

    Hi Rupesh,
    in RSA3 data is availbale,
    but it is not coming to BI,
    Messages from source system
    see also Processing Steps Request
    These messages are sent by IDoc from the source system. Both the extractor itself as well as the service API can send messages. When errors occur, several messages are usually sent together.
    From the source system, there are several types of messages that can be differentiated by the so-called Info-IDoc-Status. The IDoc with status 2 plays a particular role here; it describes the number of records that have been extracted in a source system and sent to BI. The number of the records received in BI is checked against this information.
    the abovemessage I am getting in details tab.
    Regards
    Vijay

  • OWB11gR2: Mapping execution in a process flow not visible in OWB Browser

    When a mapping is executed inside a process flow, execution details are not visible in OWB Repository Browser (Control Center reports) - rows processed, errors etc. Mapping row is missing in a log, like it never happened (but it did).
    This auditing information is very important for monitoring reasons (to our customers also) and I just don't get it how this functionality is lost with this version. Another serious bug?

    Hi David,
    I was rather tired and frustrated last evening, so today I noticed some things I didn't yesterday. Your reply gave me a new motivation.
    The conclusion is - a mapping execution in a process flow is logged, but the way activities are displayed in OWB Browser are now different than in previous versions. If I click on 'Execution Job Report' on a process flow, I see all the activities listed except mappings (transformations, assign, file exists, subprocess etc.). If I want to see mapping execution row, I must click on a plus (expand) sign.
    This kind of behavior will make processes with a complex hierarchy (usually we have more than 5 levels of subprocesses) rather vast to monitor. In 10gR2, a drilling down was accomplished by opening a new browser tab (Execution Job Report link) for each subprocess/mapping activity. Now it shall remain on one huge screen (list) that keeps expanding.
    But, if that is the new feature, we shall live with that. If our customers won't like it, they will have to get used to it.
    Thank you for your reply!

  • BPM worklist app views are not visible in IPM task viewer

    Hi,
    we upgraded our system from 11.1.1.3.0 to
    weblogic 10.3.5.0
    SOA 11.1.1.5.0 with BPEL processes
    ECM with IPM and UCM 11.1.1.5.0
    after upgrade i have problem with profiles in IPM task viewer page. Views are created in BPM worklistapp and all users can see tasks assigned to them there. But those views are not visible in IPM task viewer page (i tried it using driver page). Because of missing profiles/views users can't see and process tasks assigned to them. In log files isn't raised any error message.
    Everything was working before upgrade. Can someone help me with this? What can i have wrong there?
    Thanks a lot in advance for any help
    Edited by: 914063 on Jun 20, 2012 12:56 PM
    Edited by: 914063 on Jun 20, 2012 12:57 PM

    Hi Renuka,
    There are basically two ways to create an ADF UI for a BPM Task:
    1. Generate it from the task
    2. Create a ADF Taskflow based on Human Workflow Task
    Since I tell this by heart, I might be slightly wrong in the terms.
    You probably want to try the second option. It is accessible from the "New Gallery". You'll have to provide the Human Task from the BPM project, but then you can build up the ADF Taskflow by your self, based on the customizations of the rest of your application.
    Should not be rocket science for someone with ADF11g experience. Since it is not my dayly job, I need to figure it out every time again ;). But I did it in the past and it wasn't so hard.
    Regards,
    Martien

  • PO approval Email not visible in SOST even after all settings intact

    Hello All,
    The 'PO requiring approval ' email is not visible in SAP since 10.11.2010.
    The user decision task which sends a notification to approver regarding the approval has been going successfully for two yrs and now suddenly since 10 Nov 2010, it stopped. The workflow log does not show any error. Also the settings in SWN_CONFIG have not changed since 2008. The approvers have their correct email Ids set in SU01. Even the jobs 'SWNSELSEN' and 'SAPCONNECT' are scheduled and running successfully and sending emails for all other sap notifications.
    Suddenly they have stopped sending notifications for this particular issue.
    Please help me, where to look for. Are there any services involved other than these settings.
    Awaiting eagerly for the solution.
    Neha

    Hi Neha,
    How you are sending mails for dialog workitem?
    Are you using the email send step inside the workflow or you using the batchjob to send the mails (send task description as mail via batchjob).
    Id using the batchjob check the that task is present in the selection criteria.
    (report to send mail is RSWUWFML)
    -Swapnil.
    Edited by: Swapnil Pawar on Nov 18, 2010 9:03 AM

  • Indesign transparency multiply pdf/x-1a pdf/x-4 export pdf object not visible

    Hello,
    I've created a simple Indesign cs4 document under osx demonstrating the problem. I've copied from an Indesign document a rectangle with a fill color 100% cyan and a transparency effect multiply and paste the object within a new created document. I've paste the same rectangle again and switched off the transparency effect. Then I've create a new rectangle again with the same fill color and multiply transparency effect.
    When I create a pdf with the standard pdf/x-4 settings the copied rectangle with the multiply transparency effect has disappeared, while the other 2 rectangles are visible. Creating a pdf with the standard pdf/x-1 settings in Indesign, then all 3 rectangles are visible.
    I've created a zip file named Indesign.zip with the following 3 elements:
    - multiply.indd - indesign document
    - pdfx1.pdf - export pdf with pdf/x1 settings (3 rectangles are visible)
    - pdfx4.pdf - export pdf with pdf/x4 settings (only 2 rectangles are visible)
    Opening the document with CS5 and creating pdf files, we obtain the same strange result.
    You can download the zip file from the following link:
    http://www.symeta.be/symeta/static/files/Indesign.zip
    How do we explain this peculiar problem?
    Regards,

    Peter, John,
    If there is no solution finding corrupt objects before going to production (creating pdf files), then the problem is only detected when the job is printed! More important, if the corrupt object is located in an advertisement, then you customer wouldn't pay.
    To further investigate the problem I've create 2 snippets with the following names:
    - Snippet_Good_PDFx4_Result.idms (snippet of the object who's visible after conversion to pdf/x-4)
    - Snippet_Wrong_PDFx4_Result.idms (snippet of the object who's not visible after conversion to pdf/x-4)
    You can download these snippets from the following link.
    http://www.symeta.be/symeta/static/files/Snippets.zip
    When I replace the following 4 lines from the bad snippet:
                                <PathPointType Anchor="0.21122640285165062 35298.673065771356" LeftDirection="0.21122640285165062 35298.673065771356" RightDirection="0.21122640285165062 35298.673065771356"/>
                                <PathPointType Anchor="0.21122640285165062 35440.40534923592" LeftDirection="0.21122640285165062 35440.40534923592" RightDirection="0.21122640285165062 35440.40534923592"/>
                                <PathPointType Anchor="141.94350986741858 35440.40534923592" LeftDirection="141.94350986741858 35440.40534923592" RightDirection="141.94350986741858 35440.40534923592"/>
                                <PathPointType Anchor="141.94350986741858 35298.673065771356" LeftDirection="141.94350986741858 35298.673065771356" RightDirection="141.94350986741858 35298.673065771356"/>
    With the following 4 lines from the good snippet:
                                <PathPointType Anchor="154.96062992125985 161.1023622054882" LeftDirection="154.96062992125985 161.1023622054882" RightDirection="154.96062992125985 161.1023622054882"/>
                                <PathPointType Anchor="154.96062992125985 302.8346456700551" LeftDirection="154.96062992125985 302.8346456700551" RightDirection="154.96062992125985 302.8346456700551"/>
                                <PathPointType Anchor="296.6929133858268 302.8346456700551" LeftDirection="296.6929133858268 302.8346456700551" RightDirection="296.6929133858268 302.8346456700551"/>
                                <PathPointType Anchor="296.6929133858268 161.1023622054882" LeftDirection="296.6929133858268 161.1023622054882" RightDirection="296.6929133858268 161.1023622054882"/>
    Then the result is ok!
    The bad one has very strange coordinate values, such as 35298.673065771356 which is about 12452 mm! When placing the bad snippet in a new Indesign document the result is ok, just after converting to pdfx/4 the object isn't visible anymore!
    Who can justify this strange behaviour?
    Regards?

Maybe you are looking for