Updating printer device attributes using RFC

Hello all,
I'm a new entrant to the SAP world and still finding my feet. I think the term newbie can be applied freely.
My pilot involves using the NW RFC libraries to update printer attributes. So far I think RSPO_ functions seem to be the appropriate choice for dealing with printing. I can get the list of printers by using either ADS_GET_PRINTER_LIST or RSPO_ADM_DEVICES_GET. They both seem to return the same data, though the ADS version has far more detail. I've discovered these APIs mainly by trial/error and searching the forums/google/...
However I cannot seem to find the functions for updating the attributes.
RSPO_DEVICE_UPDATE and RSPO_ADM_DEVICE_UPDATE looked promising, but they cannot be called remotely.
My questions/doubts:
1. Is what I'm trying to do possible and supported?
2. Are RSPO_ family the correct functions for dealing with device updates, or is there another set of functions?
3. If the DEVICE_UPDATE is indeed the correct function, what are the workarounds for accessing it remotely; so far I can think of using a think ABAP wrapper which is exposed remotely, using the web services SOAP call.
I've been trying to find the canonical reference documentation for dealing with printers at an API level, but with no success. Any pointers to docs/references would be much appreciated!
I understand these are very entry level questions, and do beg everyones' pardon.
regards

Thank you Anzy and Priti, we're much further ahead now due to your help.
Priti, we do want to update the output device attributes. Specifically device type and driver. I cannot find RSPO_SXOMS_I_UPDATE_PRINTER function defined in the customer SAP test instance. I'll post the exact version numbers and configuration tomorrow, once I again have access to the server.
Anzy, I've started writing a Z_ wrapper over RSPO_ADM_DEVICE_UPDATE for the time being. Thanks for the pointer.
It seems that all the RSPO_ RFCs are view and read only. The update/create APIs are non-remote. I wanted to find the design/security documentation for understanding these decisions. Does SAP documentation have a technical/security architecture overview? Or perhaps a specific forum?
Once again, thank you both from me and the Idea Device engineers.

Similar Messages

  • Problem importing printer device type using RSTXSCRP

    Hello,
    Referring to sapnote 8928 I have extracted 6 printer device types that I wish to import into our dev box.
    (note: I am trying this on our sandbox first).
    However, the readme instructions for performing the import using RSTXSCRP are out of date or not complete for all SAP versions. For one they refer to a radio button that does not exist in our version of . (note: RSTXSCRP is also the ABAP called when doing the import from SPAD).
    In addition, when attempting the import, I receive a popup box requesting a package. Since I have never used packages I am at a loss. There is no option to create a new one, as when I created transports back when I did ABAP.
    I can save these as local objects, but they are then not transportable. I wish to be able to transport these through the landscape as they go to production. I really do not want to do a bunch of individual imports in every system, since I would need to do so for R3, BW, APO, etc.
    So long into short: How do I import printer device types using either  RSTXSCRP or SPAD and have them transportable?

    Prabhu, Thank you, but this does not answer the question. It only repeats the information I already have.
    How do I enter the package information when I do not have it, do not know how to get it or how to create a new one.
    I have been out of directly working with SAP for a couple years and have only recently returned.
    This is apparently such a basic thing it is not even in any of the documentation I can find.

  • Unable to update data from JSPDynpage using RFC

    I have this code in my JSPDynpage
         public void onSaveButtonClicked (Event event) throws PageException 
              DropdownListBox dListMain = (DropdownListBox) getComponentByName("mydropdown");
              DropdownListBox dListEthnicityNew = (DropdownListBox) getComponentByName("ethnicNew");
              TableView raceCtgTableWithSelections = (TableView) getComponentByName("raceCategoryField");
              this.listSelected = dListMain.getSelection();
              this.listSelectedText = dListMain.getTextForKey(listSelected.toString());
              this.ethnicNewSelected = dListEthnicityNew.getSelection();
              this.ethnicNewSelectedText = dListEthnicityNew.getTextForKey(ethnicNewSelected);
              InputField valFromField = (InputField) getComponentByName("vFrom");
              SimpleDateFormat sapFormat = new SimpleDateFormat("yyyyMMdd");
              SimpleDateFormat javaFormat = new SimpleDateFormat("MM/dd/yyyy");
              try
                   IPortalComponentProfile userProfile = request.getComponentContext().getProfile();
                   String destinationName = userProfile.getProperty("SystemIdentifier");
                   IJCOClientService clientService = (IJCOClientService) request.getService(IJCOClientService.KEY);
                   client =  clientService.getJCOClient(destinationName, request);
                   client.connect();
                   myRep = new JCO.Repository( "SAP", client );
                   fTemplate = myRep.getFunctionTemplate("ZHMA_ETHNICITY");
                   func = new JCO.Function ( fTemplate );
                   if(func == null)
                        System.out.println(" Function Module not found in SAP.");
                        throw new Exception(" Function Module not found in SAP.");
                   func.getImportParameterList().setValue(dListMain.getSelection(),"CETHNICITY");
                   func.getImportParameterList().setValue(sapFormat.format(javaFormat.parse(valFromField.getValue().toString())),"VALFROM");
                   func.getImportParameterList().setValue("99991231","VALTO");
                   func.getImportParameterList().setValue(dListEthnicityNew.getSelection(),"ETHEN");
                   int j=1;
                   for(int i=1; i <= raceCtgTableWithSelections.getRowCount(); i++)
                        if(raceCtgTableWithSelections.isRowSelected(i))
                             func.getImportParameterList().setValue("R"+i, "RACECAT"+j);
                             j++;
                   client.execute(func);
                   JCO.Table messages = func.getTableParameterList().getTable("RETURN");
                   for(int i=0; i < messages.getNumRows(); i++)
                        messages.setRow(i);
                        messagesList.add(messages.getString("MESSAGE"));
                   myContext.putValue("messages", messagesList);
              catch(Exception e)
                   System.out.println(e);
                   throw new PageException(e);
              state = INITIAL_STATE;
    <b>This code is working fine in my development environment, but some how, this is not working in QA environment. I am getting the exception below in QA.</b>
    #1#com.sap.sldserv.exception.SldServiceRuntimeException: Failed to create CIM client. Check via 'Visual Administrator' tool if the secure store is operational.
         at com.sap.sldserv.SldApplicationService.getCimClient(SldApplicationService.java:117)
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory$1.run(SystemLandscapeFactory.java:751)
         at java.security.AccessController.doPrivileged(AccessController.java:193)
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.getClient(SystemLandscapeFactory.java:747)
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.getCurrentJ2EECluster(SystemLandscapeFactory.java:808)
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.getJ2EEVersionInfo(SystemLandscapeFactory.java:1080)
         at com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscape.getJ2EEVersionInfo(WDSystemLandscape.java:580)
         at com.sap.tc.webdynpro.clientimpl.http.client.AbstractHttpClient.getJ2EEInfo(AbstractHttpClient.java:546)
         at com.sap.tc.webdynpro.clientimpl.http.client.AbstractHttpClient.writeVersionInfo(AbstractHttpClient.java:502)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.fillStaticTemplateContext(HtmlClient.java:737)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.sendResponse(HtmlClient.java:1223)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.retrieveData(HtmlClient.java:252)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRetrieveData(WindowPhaseModel.java:595)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:156)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:759)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         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:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.lcr.api.cimclient.CIMClientException: java.net.MalformedURLException: URL must have a host part
         at com.sap.lcr.api.cimclient.ClientFactory.createConnection(ClientFactory.java:466)
         at com.sap.lcr.api.cimclient.ClientFactory.createClientImpl(ClientFactory.java:413)
         at com.sap.lcr.api.cimclient.ClientFactory.createClient(ClientFactory.java:363)
         at com.sap.sldserv.SldApplicationService.getCimClient(SldApplicationService.java:113)
         ... 38 more
    Let me know is there any thing that I need to configure in QA environment.
    Thanks in Advance,
    Jagadeesh.
    Message was edited by:
            Jagadeesh Vankayala

    hi Jagadeesh,
    are you using SLD related configurations anywhere for your application? From the error message it seems the CIM client generation falied due to some reason. You can check from the Visual Admin of both your DEV & QA systems to find any mismatch.
    Go to Visual Admin -> Server -> Services -> SLD Data Supplier -> CIM Client Generation Settings and see if you can find any difference. Normally here in the HTTP Settings tab and CIM Client Generation tab you should mention your SLD URL and logon details. You can check the CIM client generation setting by clicking the "CIMCLient Test"  button under the CIM Client Generation Setting tab.
    Regards,
    Shubhadip

  • PCD Filter using RFC call

    does any body has done PCD filtering by reading filter attribute using RFC?
    I have created one CountryFilter that read country information from RFC. I am using Java connector Framework to connect to RFC. It is working fine but my concern is about performance. I have put some debug message in R/3 function module. and what I have noticed is that RFC is called 7 times to filter one page
    _Does any body have any idea that what is the good practice? Is it really good idea to use RFC call in Filtering PCD content.?_
    My code looks like below
    java code looks like below
    class CountryFilterFactory
    method getObjectInstance()
    calling RFC and getting Country value from R/3 system
    return filterexpression
    I have also put debug message in getObjectInstance method of factory class. and I also noticed that getObjectInstance() method is also called several times.
    Thanks
    Chetan Patel.

    HI AVIK SANYAL 
    I don't understand what you want to say. I have made seperate java clas to call RFC. But as getObjectInstance is calling so many time so RFC .....I don't know anything about storing the value in session. Can you please tell me in detail how to do that
    Thanks
    Chetan.

  • Updating a VO  attribute

    For jdev 11g pro
    Can some tell me what wrong with this code. I'm trying to update a VO attribute using the RowClass Impl of the VO.
    public void modifyRefDesSpaces(ViewObject view){
    while(view.hasNext()){
    Table_ViewObjRowImpl row = (Table_ViewObjRowImpl) view.getCurrentRow();
    String refDes = row.getRefdeshj();
    String newRefDes = refDes.replaceAll(" ","&nbsp");
    row.setRefdeshj(newRefDes); <-- This line cause the next line to fail
    view.next(); <--- Error thrown on this line
    This is the error message ...
    ]] Root cause of ServletException.
    javax.el.ELException: oracle.jbo.PersistenceException: JBO-26035: Secondary entity usage PtdDetailView is missing parts of association description.
         at javax.el.BeanELResolver.getValue(BeanELResolver.java:266)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:73)
         at com.sun.el.parser.AstValue.getValue(AstValue.java:118)
         at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
         Truncated. see log file for complete stacktrace
    this is how the view object is set before calling the above method.
    ViewObject view = service.findViewObject("Table_ViewObj1");
    view.setWhereClause("PtdDetailView.EIACODXA = :project AND PtdDetailView.PCCNUMXC= :pccn");
    view.defineNamedWhereClauseParam("project", null, null);
    view.defineNamedWhereClauseParam("pccn", null, null);
    view.setNamedWhereClauseParam("project",enterProj);
    view.setNamedWhereClauseParam("pccn",enterPccn);
    view.executeQuery();
    modifyRefDesSpaces(view); <---- calls above method

    I think you use the wrong approach to the problem.
    I guess this is a follow up from your previous question (multiple spaces are compressed to one in the UI).
    Do you really want to change the attributes permanently in the table (assuming that the VO is EO based)?
    I would only change the appearance of the data for the UI. This is best done using a transient attribute in the VO. The getter method of this transient attribute gets the value from the DB and returns the modified content for the UI.
    Doing it this way you don't need to iterate over the whole result set, you can just use the transient attribute in the UI (i.e. as a column in the table) and only the rows visible in the UI are changed when the transient attributes getter method is called. This also yields to a much better memory usage if your result contains many rows.
    Your implementation (if you get it working) loads all rows into memory, even if they are never shown to the user.
    To add a transient attribute to your VO go to the attribute secxtion of the VO and click add. Name the attribute appropriate (i.e. NameDisplay). Go to the client row interfaces, if they are not created already create them. shuffle all getter/setter methods from available to selected.
    In the VORowImpl.java file search for the getter method i.e. getNameDisply() and change the implementation to
    public String getNameDisplay()
        String refDes = row.getName();
        String newRefDes = refDes.replaceAll(" ","&_nbsp;"); // remove the _ before nbsp
        return newRefDes;
    }Now, if you drag n drop the VO on a page you get an other attribute NameDisply which should be displayed correctly in the UI.
    By the way, if you need to iterate over a result set the code looks like this:
    view.executeQuery();
    while (view.hasNext())
        // get a row and move the pointer to the next one to fetch
        Row row = view.next();
        // do something with the row
    }Timo

  • Finger Print Device not found using Think Advantage Finger Print Software

    3000 N100, the finger print device can not be found when trying to set up profiles.  The computer had been restored to new state using the function key at startup.
    I deleted programs I did not want after that but the Think Advantage was left as is, I believe.  I can get as far as trying to create finger print profiles, then I get the finger print device can not be found.
    I am XP SP3
    E/.
    Message Edited by EmClark on 05-19-2009 10:42 AM
    Tinkering All The Time
    E/.

    Solved...I downloaded the updated Fingerprint software from the driver page and that fixed it.
    Tinkering All The Time
    E/.

  • Data is not getting updated in table using RFC

    Hi Experts,
    In my scenario, I am calling one RFC using RFC receiver channel. After running scenario, channel is showing status that RFC executed successfully. But when I am checking tables in R/3 system, data is not getting updated.
    Moreover , when we tried to execute the RFC manually in R/3 system, that time data uploaded into table successfully.
    Could anybody tell me what would the reason that data not uploading into table when we send it through XI.
    Regards,
    Sari

    HI Sari,
    as you have scenario with RFC receiver.. and as you mentioned that it not updating tables when run through PI but when you execute RFC manually tables got updates.. then following are the options you can check..
    -- if you check RFC communication channel and if everything ok on then.. this means that your RFC is getting triggered successfully..but as you said tables are not updated.. for this you can go to SXMB_MONI and check the log take payload after mapping.. and compare it with the input when you try to execute it manually.. I think the input when you try manually and input to RFC when you try through PI is different and that is causing the Problem.. you will be able to see the difference in input then check.. I think the problem is data and not RFC communication channel..so by using this you will come to know difference
    -- else if possible configure your ID in PI in RFC Receiver and then check and put breakpoint on ABAP side.. so that when PI will hit RFC you will get it in debug mode and able to see what is going wrong..
    Thanks,
    Bhupesh

  • Since the iOS7.0.2 update to my iPhone 4S, I can no longer choose use of my Bluetooth device if using the power cord to listen to MUSIC or answer my phone (choice of powercord as 'dock,' speaker,

    Since the iOS7.0.2 update to my iPhone 4S, I can no longer choose use of my Bluetooth device if using the power cord to listen to MUSIC or answer my phone (choice of powercord as 'dock,' speaker, & phone only).  Was this former-feature now an oversight??  I'd really appreciate having my Bluetooth once again listed as a choice of  audio option.  Especially considering the battery life is not what it was prior to this update, and requires recharging often.

    Sorry to tell you but unless you have a Retail Apple Store close by, they are the only ones I have found with all the adapters and accessories. I bought an extra lightning to usb adapter the other day to use in my truck. Good luck....

  • Use RFC Lookup in Graphical Mapping for Database Update

    Hello,
    I am wondering whether the RFC Lookup function in graphical mapping provides the same functionality as a general RFC function call.
    In detail I would like to update a database table using a RFC which just takes some input parameters but does not use any output parameters. Would this work too as the name "lookup" implies that it might just be possible to read something?

    HI,
    Refer these links:
    RFC Lookup by michal
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a03e7b02-eea4-2910-089f-8214c6d1b439
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8e7daa90-0201-0010-9499-cd347ffbbf72
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/406642ea59c753e10000000a1550b0/content.htm
    DB lookup - /people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler
    Regards,
    Nithiyanandam

  • Getting error message while updating Job attributes using PP03 for IT1641

    Hey Guys,
    We are getting error message while updating Job attributes using transaction PP03 for IT1641 (WC Attributes for JOB): 'Client has status not modifiable'.
    Update to the infotype 1641 should not require open SAP system. Would anyone suggest any SAP note/solution?
    Thanks...
    Edited by: Karan Gheewala on Apr 3, 2008 9:06 PM

    Solved using Note 123383 - WC: Customizing worker's compensation tables
    Thanks,..

  • Recently updated to mountain lion ,2nd printer I was using will not print

    I recently downloaded Mountain Lion.  A 2nd printer I was using (sharing) will not print now.  Any suggestions, appearently there are a lot of things that we have to redo after this?  Was not aware of this before .  We had to reset our mail, etc.  Any one else with these kinds of problems?
    Thank you for any help
    Sandie P

    karengjbs,
    Some Arris routers do not support Multicast, or Bonjour, the service that AirPrint uses. Verify both devices are still attached to your wireless network and Bluetooth is off on your iPhone.  You may also want to power your printer and router off, then power the router on fully, then the printer.
    If you need any assistance with the above steps or verify that the router does or does not support the necessary service, please advise.
    *I work for HP*

  • Should the print company I use be able to change a file to spot color for me?

    I recently sent a document in to a major print company to have a folder printed.  The document was created in Illustrator using only two colors. They said they could not print it because it was still more than two colors and that I needed to change it to a two color document using Pantone Spot Color.
    I've never had to do that for a print company before but I've also never had a two color project before. I opened the file back up and selected my objects and "recolored" the work and deleted all the swatches aside from the two colors I needed that were now Pantone Spot Color (HSB). It literally took me 2 minutes.
    The reason I am asking is because they pretty much said that I don't know what I'm doing, which to a designer is completely insulting.  We all do new things from time to time but that is an insult. Shouldn't they, a large print company with years of experience, know how to do this for me? They had the original design file.. Maybe they don't know what they are doing?
    Any clarity on as to why I needed to do it and not them is greatly appreciated.  Also.. any direction as the best way to use spot color over cmyk is appreciated too.

    ...which to a designer is completely insulting...
    What's so special about "a designer"?
    Prior to the mid 1980s, designers could get away with prima Donna attitudes, because they (or their employers) were paying pre-press "color houses" around $350 per hour to tweak colors to sooth their oh-so-erudite discernment and hyper-developed color sensitivities, and to gain reimbursement for the $100 per plate lunches on proof-check days.
    That all changed when designers (and their employers) got tired of paying those fees and took on the responsibility for the technical side of assembling their designs into something printable. That was the so-called "desktop revolution" and "revolution" was not a bad word for it. It turned a huge industry on its head. Color houses which didn't adopt PostScript devices and workflows were soon dropping like flies--and so were designers who didn't climb down off their lofty pedestals and buckle down to learning the technical realities of what they were doing.
    Don't be insulted, but the simple fact is, you still don't know what you're doing if you think converting any given process color job to a two-spot job is "just a couple of minutes' work." Only in the very simplest designs would it be as simple as re-defining a couple of process Swatches as spot color Swatches.
    In Illustrator in particular, doing so won't even work if the original Swatches were not originally defined as Global Swatches.
    If those two process Swatches were used in any Blends, converting them to spot will likely not update the intermediate steps of the Blend. In earlier versions of Illustrator, the same problem applied to grads.
    You can often get away with not having properly trapped the file with process swatches, because there are potentially four component inks which may be shared between adjacent different-color objects. Spot inks are not so forgiving. Trapping is essential if the two spot colors touch.
    So you really expect a printer to just have a policy to do that for you? And thereby bear responsibility for anything they may misinterpret or overlook that may cause a registration sliver on press and thereby loose every bit of profit on the printing (which these days is cut-throat competitive)?
    No. It's your responsibility to build the file correctly. The printing houses I use know better. They know I would have a coniption fit if I ever caught them modifying one of my files. They know they are to return any problem file to me for correction.
    JET

  • ACS v5.2 - Unable to update User integer attributes through File Operations

    Hi,
         I have created some internal users on ACS v5.2 and added some Unsigned Integer attributes for each user. I am trying to do a bulk update of these integer attributes using the File Operation facility. However no matter what number I put on the import template it doesn't get updated and displays a "0" in the user config.
    The import template is validated successfully with no errors and also the string attributes are updated correctly.
    There is a sort of work around of deleting the users and adding them back in with the updated values. But this is not feasible as it would reset their passwords. I have also tried saving the csv file in Open Ofifce instead of Excel
    Has any one else come across this problem?
    (I am unable to see this issue in the Release notes or Bug tool kit although there is a similar issue when updating devices in CSCth68051)

    Hi,
         Thanks for the reply. I have managed to recreate the problem to show you but it is a bit more complicated than I first thought. The problem only occurs when the integer attributes are added after the user is created.
    I created a dummy user. The MTL and TLS attributes were present before the user was added. I then added the XXX and ZZZ attributes afterwards and assigned them default values. The default values show up in the GUI config.
    However when I export the database to a csv file only the values of the MTL and TLS attributes show up in the export file:
    I then downloaded an import template and updated the integer values for TLS,MTL, XXX and ZZZ for the dummy user:
    The file imports successfully with no errors. However, when I display the user config only the MTL and TLS attributes have changed. The XXX and ZZZ attributes have stayed the same.
    I thought it might be because I was assigning a default value of 0 to the new attributes but I assigned ZZZ a default value of 1 and the same thing occurred.

  • PDFs created by Adobe PDF print device do not display correctly in Illustrator

    I generated a PDF from a PowerPoint file by printing to the Adobe PDF printer device. This step works correctly as the PDF appears normal in Acrobat. However, upon opening the PDF in Illustrator, none of the graphic (bitmap) elements are rendered correctly -- they appear as gray boxes with remnants of the correct image remaining as a single pixel border around the edge. This is clearly an error in the PDF importing in Illustrator. Any work-arounds or suggestions?
    Message was edited by: mcgrawcm
    Update: OK, so it has something to do with whether an image in PPT was "cropped" before conversion to PDF, as an uncropped version of the same graphic is rendered accurately in Illustrator after conversion to and from PDF. For my part, I'm just going to recopy the images directly into Illustrator, but perhaps this might help someone else dealing with the same problem.

    I understand this is no help, but Illustrator is not a pdf editor. This is why you can get unexpected results when importing a pdf in Illustrator.
    If you really need to edit a pdf you could use Acrobat or Neo, and there are some more out there, just look around on the net:
    http://www.google.be/search?client=safari&rls=en&q=pdf+editor&ie=UTF-8&oe=UTF-8&redir_esc= &ei=y6S3Tt-kOtSHhQe28fyiBA
    Greetings

  • I use lightroom with the soft proofing feature for my printing. I used to make a copy proof, but all of the sudden something changed, and even if I'm on the copy in the developing mode it prints the original. Also, If i chose a file that was already in li

    I use lightroom with the soft proofing feature for my printing. I used to make a copy proof, but all of the sudden something changed, and even if I'm on the copy in the developing mode it prints the original. Also, If i chose a file that was already in light room to print, even though I have the chosen file up in the developing mode, it will instead print the most recent file that I added to lightroom. If found a way to work around these problems, (check make this the copy in the soft proofing, and copy my settings and delete and reload the old files) but it's a slight hassle and it didn't use to do this. Not sure why it changed. Could I have accidentally changed a setting?

    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

Maybe you are looking for

  • How to run a mapping from plsql procedure in some common group?

    Hi, I have a Workflow process, when I running him from OWB I saw in OWB Browser first the name of this process and under this process mappings that in this process. In one mapping I have some pre-mapping procedure that doing something and prepare som

  • How do I transfer library on i pod to laptop

    52 year old computer idiot here. My main computer crashed and I lost everything. I now have a hp laptop with windows 7. I downloaded i tunes to the laptop but when I connect my i pod it says I am already synced to another library. I have been searchi

  • Black line drawings print as purple at certain areas

    Hi, We have a HP designjet 110 plus in our office as a network printer.  We have been experiencing some problems when we print black line drawings. Several parts of the drawing will print as purple instead of black (meaning a line/area of shade will

  • Problems with persistent data in Plugin

    Hi everybody, I'm currently working on an old plugin for the company i'm working. I never have done something with InDesign before so i guess that is one of the main problems ^^. The Plugin was originally developed for CS 2 and was first ported to CS

  • Multidimensional Array and Bubble Sorting

    Goal: Bubble sort the array. I want to keep the data organized. So, 70 with aa, 20 with cc, 40 with ee and so foth. Example output.... aa 70 bb 30 cc 40 dd 90 then..... by number ee 10 cc 20 bb 30 ee 40 Problem: I dont know how to bubble sort by lett