Business Service - Other Attributes

Hi Guys,
I have a file to rfc scenario, The file is coming in from a file system and mapped as per business req to the structure of the BAPI.
I am using a single business service for both sender and receiver , I came across other attributes  tab where it is Third party service (chargeable) or SAP Service (Non Chargeable)...
What should I select , and what is the impact ??
pls share your thoughts.
Regards,
Teja

how would we know if it is chargeable or not?
This is what your integration architect or Business Folks will confirm.....if it is confirmed that the service which you are trying to send message to is a third party then you may be charged for some amount....the business has to takke a call on whether the messages is to be sent by paying some charges or use some other mechanism which will provide more cost-effective solution.
Saw this when we had a Discovery Server installed....personally never tried communicating with third party systems....but my project-anchor mentioned this issue of charges with the Discovery system.
Regards,
Abhishek.

Similar Messages

  • Change business service pageAction attribute from Edit data step

    Hi,
    I have the following schema of a business service named "CM_CC_BS". Note that pageAction is "add".
    <schema pageAction="add">
    <CC_ID mapField="CC_ID"/>
    <USER_ID mapField="USER_ID"/>
    <PER_ID mapField="PER_ID"/>
    <CC_DTTM mapField="CC_DTTM" default="%CurrentDateTime"/>
    <CC_CL_CD mapField="CC_CL_CD"/>
    <CC_TYPE_CD mapField="CC_TYPE_CD"/>
    <PRINT_LETTER_SW mapField="PRINT_LETTER_SW"/>
    <BATCH_CD mapField="BATCH_CD"/>
    <BATCH_NBR mapField="BATCH_NBR"/>
    <CC_STATUS_FLG mapField="CC_STATUS_FLG"/>
    <CC_CHAR type="list" mapList="CC_CHAR">
    <CC_ID mapField="CC_ID"/>
    <CharType mapField="CHAR_TYPE_CD"/>
    <AdhocCharVal mapField="ADHOC_CHAR_VAL"/>
    <CharVal mapField="CHAR_VAL"/>
    <CharValFk1 mapField="CHAR_VAL_FK1"/>
    <CharValFk2 mapField="CHAR_VAL_FK2"/>
    <CharValFk3 mapField="CHAR_VAL_FK3"/>
    </CC_CHAR>
    </schema>
    In a service script, I need to change the page action to Update.
    Is it possible using the move command of edit data step? (ie something like move 'add' to "CM_CC_BS/@pageAction"; noting this command raised an error)
    Or should I create different business services for "Update" , "Add"...?
    Thanks

    Hi,
    I guess it can't be helped from within a script but to create different services for different actions!
    Anyhow if publishing as XAI service, I kept pageAction attribute unmentioned in the schema, and I passed it in the SOAP message as an attribute and it worked fine.
    Thanks
    Abdullah

  • How to enable cache on Business service having protocol other than JCA

    Hi all,
    In my use case I should use cache on my business service which uses Http as its transport protocol.
    when I try to use the cache on http business service I am unable to use the cache functionality.
    When I try to use the cache on JCA business service I am able to use it. Please help me in finding the
    ways in which I can enable cache functionality on the business service which uses the other protocols.
    Thanks,
    Phanindra.

    Caching in Business Service should work fine on HTTP transport as well. What all configurations have you done in your HTTP business service and how are you testing it?

  • OSB 11g - List business services with WLST

    Hi,
    We're using OSB 11.1.1.3 and 11.1.1.6 in several environments.
    We just need to use wlst scripting to keep track of all business services and their endpoint uri's automatically.
    We tried using some old scripts but found out that they don't work on 11g installations:
    We tried the following code:
    connect('weblogic','oracle10','t3://soavm2:7001')
    domainRuntime()
    sessionName = "FindServicesSession" + str(System.currentTimeMillis())
    sessionMBean = findService(SessionManagementMBean.NAME, SessionManagementMBean.TYPE)
    sessionMBean.createSession(sessionName)
    servConfMBean = findService(ServiceConfigurationMBean.NAME + "." + sessionName, ServiceConfigurationMBean.TYPE)
    alsbCore = findService(ALSBConfigurationMBean.NAME, ALSBConfigurationMBean.TYPE)
    allRefs=alsbCore.getRefs(Ref.DOMAIN)
    for ref in allRefs:
    typeId = ref.getTypeId()
    if typeId == "BusinessService":
    serviceDefinition = servConfMBean.getServiceDefinition(ref)
    endpointConfigration = serviceDefinition.getEndpointConfig()
    print endpointConfigration
    We get a "AttributeError: 'NoneType' object has no attribute 'getServiceDefinition'" error. It seems that it is related to metalink note "How To Modify Service Configurations By OSB JMX API [ID 1431254.1]". However the code provided there is for java through jmx, does anybody has a working example of how to do that on wlst?
    Thanks!
    p.d: already posted this question on wlst forum but got no answer...

    You may like to refer metalink note 1380705.1 and OSB java API (section "Using MBeans in a script")-
    http://docs.tpu.ru/docs/oracle/en/fmw/11.1.1.6.0/apirefs.1111/e15033/com/bea/wli/sb/management/configuration/SessionManagementMBean.html
    Regards,
    Anuj

  • Developing Business Services with ADF BC

    Hello all,
    I was following the tutorial at http://www.oracle.com/technology/obe/obe1013jdev/10131/bslayer/bslayer.htm#t2s5, which is Developing Business Services with ADF Business Components
    AND i was wondering if i could add a custom validation that would: prevent the user from entering a Gender IF the credit limit is greater than 400? Is this possible? If so, could some point me in the right direction
    Cheers

    Hi,
    you have two options:
    1. add the validation on the ADF BC model using a method validator. This would compare the two attributes and throw an exception if the business rule is violated
    2. Use a ValueChange Listener on the credit limit field (in association with a autosubmit=true setting on the field) to enable the gender field through a Partial Page Refresh. To programmatically refresh a field using PPR, you create a binding of the component to refresh o a managed bean using its binding property. Then you call
    AdfFacesContext.getCurrentInstance().addPartialTarget(<component reference here>)
    Frank

  • List Business Services Endpoints with WLST

    Hi,
    We're using OSB 11.1.1.3 and 11.1.1.6 in several environments.
    We just need to use wlst scripting to keep track of all business services and their endpoint uri's automatically.
    We tried using some old scripts but found out that they don't work on 11g installations:
    We tried the following code:
    connect('weblogic','oracle10','t3://soavm2:7001')
    domainRuntime()
    sessionName = "FindServicesSession" + str(System.currentTimeMillis())
    sessionMBean = findService(SessionManagementMBean.NAME, SessionManagementMBean.TYPE)
    sessionMBean.createSession(sessionName)
    servConfMBean = findService(ServiceConfigurationMBean.NAME + "." + sessionName, ServiceConfigurationMBean.TYPE)
    alsbCore = findService(ALSBConfigurationMBean.NAME, ALSBConfigurationMBean.TYPE)
    allRefs=alsbCore.getRefs(Ref.DOMAIN)
    for ref in allRefs:
    typeId = ref.getTypeId()
    if typeId == "BusinessService":
    serviceDefinition = servConfMBean.getServiceDefinition(ref)
    endpointConfigration = serviceDefinition.getEndpointConfig()
    print endpointConfigration
    We get a "AttributeError: 'NoneType' object has no attribute 'getServiceDefinition'" error. It seems that it is related to metalink note "How To Modify Service Configurations By OSB JMX API [ID 1431254.1]". However the code provided there is for java through jmx, does anybody has a working example of how to do that on wlst?
    Thanks!

    Hi Marc,
    What i found is that we can get list of business services URIs by consulting SERVICE_URI_TABLE...
    Here's a script that reads a parameter file (which can have multiple domains information) with connection info and then gets all services and prints a list of the service name and URI on a file for each domain...
    # params.txt format:
    # user,passwd,admin-url
    # Ej:
    # weblogic,weblogic1,t3://adminsoa:7001
    # weblogic,weblogic100,t3//adminsoa2:7001
    import wlstModule
    from com.bea.wli.sb.management.configuration import SessionManagementMBean
    from com.bea.wli.sb.management.configuration import ALSBConfigurationMBean
    from com.bea.wli.sb.management.configuration import BusinessServiceConfigurationMBean
    from com.bea.wli.sb.util import EnvValueTypes
    from com.bea.wli.config import Ref
    from com.bea.wli.sb.util import Refs
    from xml.dom.minidom import parseString
    f1 = open('/tmp/params.txt','r')
    for line in f1:
    spline=line.split(',')
    usr=spline[0]
    pwd=spline[1]
    url=spline[2].replace("\n","")
    try:
    connect(usr,pwd,url)
    domName=cmo.getName()
    domainRuntime()
    sessionMBean = findService(SessionManagementMBean.NAME,SessionManagementMBean.TYPE)
    sessionName="WLSTSession"+ str(System.currentTimeMillis())
    sessionMBean.createSession(sessionName)
    alsbSession = findService(ALSBConfigurationMBean.NAME + "." + sessionName, ALSBConfigurationMBean.TYPE)
    alsbCore = findService(ALSBConfigurationMBean.NAME, ALSBConfigurationMBean.TYPE)
    allRefs=alsbCore.getRefs(Ref.DOMAIN)
    fileName='/tmp/'+domName+'_'+url.replace('t3://','').replace(':','')+'_BServicesLista.csv'
    f2 = open(fileName, 'w')
    f2.write('Name'+','+'URL'+'\n')
    for ref in allRefs:
    typeId = ref.getTypeId()
    if typeId == "BusinessService":
    name=ref.getFullName()
    uris=alsbSession.getEnvValue(ref, EnvValueTypes.SERVICE_URI_TABLE, None)
    xml=parseString(uris.toString())
    xmlTag = xml.getElementsByTagName('tran:URI')[0].toxml()
    xmlData=xmlTag.replace('<tran:URI>','').replace('</tran:URI>','')
    f2.write('\"'+name+'\"'+','+'\"'+xmlData+'\"'+'\n')
    f2.close()
    except Exception,e:
    print "Error trying to connect to " + url + 'Error: ' + str(e)
    f1.close()
    disconnect()
    It's been working for us so far...

  • Oracle Day Exercise--Creating Business Services

    Hello,I am a beginner of Jdeveloper ,I met some problems in practise the 'Creating Business Services ',below is the logging message, Is there any experts and would please give me some instruction on it ?
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config>
    D:\oracle\jdev1012\jdk\bin\javaw.exe -ojvm -classpath D:\oracle\jdev1012\j2ee\home\oc4j.jar;D:\oracle\jdev1012\jdev\lib\jdev-oc4j.jar -Dhttp.proxyHost=rkfdproxy -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=192.168.*|172.22.1.*|10.*|190.*|*.sspi.com|*.aesysllc.com|*.woodward.com|localhost|127.0.0.1 -Xverify:none -Ddisable.checkForUpdate=true -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doracle.dms.sensors=NONE -Doc4j.jms.usePersistenceLockFiles=false com.evermind.server.OC4JServer -config D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\server.xml
    [waiting for the server to complete its initialization...]
    05/03/25 09:59:55 Copying default deployment descriptor from archive at D:\oracle\jdev1012\jdev\mywork\EmployeeRequisitionApplication\Lab2_BusinessServices\classes/META-INF/orion-ejb-jar.xml to deployment directory D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\application-deployments\current-workspace-app\classes...
    05/03/25 09:59:55 Auto-deploying - file:/D:/oracle/jdev1012/jdev/mywork/EmployeeRequisitionApplication/Lab2_BusinessServices/classes/ (No previous deployment found)...
    05/03/25 09:59:55 Auto-deploying - compiling and loading...
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0.java:567: error #300: variable requestApproval___101_wrapperPE not found in class EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0
    requestApproval___101_wrapperPE = (PhaseEventIntf) ApplicationServer.phaseEventFactory().create(requestApproval___101_noun, "wrapper", "wrapper");
    ^
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0.java:569: error #300: variable requestApproval___101_wrapperPE not found in class EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0
    requestApproval___101_wrapperPE.deriveMetric(SensorIntf.all);
    ^
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0.java:364: error #300: variable requestApproval___101_wrapperPE not found in class EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0
    requestApproval___101_wrapperPE.stop(wtoken);
    ^
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0.java:210: error #300: variable requestApproval___101_wrapperPE not found in class EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0
    wtoken = requestApproval___101_wrapperPE.start();
    ^
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0.java:263: error #300: class SatelessSessionEJBHome not found in class EmployeeReqFacadeLocal_StatelessSessionBeanWrapper0
    context = ((SatelessSessionEJBHome)home).getLocalContextInstance();
    ^
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacade_StatelessSessionBeanWrapper2.java:246: error #300: class bolean not found in class EmployeeReqFacade_StatelessSessionBeanWrapper2
    bolean created = false;
    ^
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacade_StatelessSessionBeanWrapper2.java:528: error #300: variable contextCntainer not found in class com.evermind.server.ThreadState
    thread.contextCntainer = previousContainer;
    ^
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacadeHome_StatelessSessionHomeWrapper3.java:228: error #300: class PhaseEventItf not found in class EmployeeReqFacadeHome_StatelessSessionHomeWrapper3
    create___0_wrapperPE = (PhaseEventItf) ApplicationServer.phaseEventFactory().create(create___0_noun, "wrapper", "wrapper");
    ^
    D:\oracle\jdev1012\jdev\system10.1.2.0.0.1811\oc4j-config\EmployeeReqFacadeLocalHome_StatelessSessionHomeWrapper1.java:227: error #300: variable ApplicationSerer not found in class EmployeeReqFacadeLocalHome_StatelessSessionHomeWrapper1
    ApplicationSerer.stateFactory().create(create___0_noun, "trans-attribute", "", "trans attribute", "unspecified");
    ^
    9 errors
    Error compiling D:\oracle\jdev1012\jdev\mywork\EmployeeRequisitionApplication\Lab2_BusinessServices\classes: Syntax error in source
    Error in application current-workspace-app: Error loading package at file:/D:/oracle/jdev1012/jdev/mywork/EmployeeRequisitionApplication/Lab2_BusinessServices/classes/,
    Error compiling D:\oracle\jdev1012\jdev\mywork\EmployeeRequisitionApplication\Lab2_BusinessServices\classes: Syntax error in source
    05/03/25 09:59:59 done.
    05/03/25 09:59:59 Error instantiating application 'current-workspace-app' at file:/D:/oracle/jdev1012/jdev/mywork/EmployeeRequisitionApplication/EmployeeRequisitionApplication-oc4j-app.xml: Error initializing ejb-module; Exception Error in application current-workspace-app: Error loading package at file:/D:/oracle/jdev1012/jdev/mywork/EmployeeRequisitionApplication/Lab2_BusinessServices/classes/,
    Error compiling D:\oracle\jdev1012\jdev\mywork\EmployeeRequisitionApplication\Lab2_BusinessServices\classes: Syntax error in source
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 7382 ms.
    05/03/25 10:00:00 Oracle Application Server Containers for J2EE 10g (10.1.2.0.0) initialized

    Most likely the issue is that the deployment profile is not assembling all the required components, in this case EJB which was exposed as the Web Service.
    I also notice that you are deploying to 10.1.2 OC4J, these labs are designed to work with OC4J 10.1.3 Developer preview3 (DP3) not OC4J 10.1.2
    Make sure you are deploying to OC4J 10.1.3 DP3, and also double check your deployment profile to make sure all the required components are assembled.
    raghu
    JDev Team

  • Log endpoint URI of  a Business Service OSB

    Hi,
    I want to log the endpoint URI of a business service (OSB) that I'm calling from a proxy service. Can anybody tell me how to do this?
    Thanks in advance!
    Martín.-
    Edited by: 876766 on Aug 16, 2011 7:31 AM

    In the response (pipeline) you have this attribute: $outbound/ctx:transport/ctx:uri.

  • SLD Business Service Query

    Hi,
    i would like to query the system landscape directory to get some attributes from the business service. Any ideas?

    Finally i found the solution in the function group LCRACCESS
    How can i assign 10 points to me?

  • Logical Systems in Business Services

    Hi
    In Business Service creation, for Adapter Specific Identifiers, the parameter for the Logical System. It is only possible to assign one logical system to one Business Service ?.
    i.e. to do
    MyBusServ1, Z_LS_1 
    MyBusServ2, Z_LS_1
    is not possible ?
    When trying to assign Z_LS_1 to MyBusServ2 I get the error that Z_LS_1 is already assigned. Is there a way to circumvent ?, I do not want to create two logical systems in R/3 as the IDOCS types submitted by the Business Services are the same.
    Thanks
    Damien

    Thanks for the replies
    Sarvesh - The Business service is the sender of the information \ IDOC. If I remove the Adapter specific config then how will XI know what Logical system to apply to the IDOC ?.
    Jaishankar - I am creating two IDOC's in SAP. MATMAS and PORDCR. The input file are coming from two different source systems. lets say sys1 and sys2. Both of thse for clarity are created in my scenario as Business Services. sys 1 creates MATMAS and PORDCR IDOC's int he syatem, sys2 creates PORDCR IDOC's in the system. As sys1 and sys2 are related in that they created the IDOC's as part od the same project then I would like to collect in the same partner profile in SAP e.g. Partner Profile ZPP_IDOC with IDOC types MATMAS PORDCR that serve as input for both systems. Logically I would assume that I can assing the logical system ZPP_IDOC to both the adapter specific parameter in both sys1 and sys2.
    Thanks
    Damien

  • Specify filename in OSB File Trasport Business Service

    Hi All,
    Is it possible to specify the complete filename in OSB File Transport Business Service?
    the default behavior allows me to specify the prefix and suffix only, is it possible to override and specify the complete filename?
    Thanks,
    Tal

    Specifying the filename for outbound FTP transport in OSB the thread discusses with FTP BS and same would apply for File BS
    Manoj

  • How to use a existing Business Service in IDoc-File Scenario

    Hi Experts,
    I am new to XI.
    I am working on a IDoc to File scenario where in i am importing the CREMAS.CREMAS03 IDoc from the R/3 System.
    When i try to create a Business Service in Configuration Scenario Object in Integartion Directory, i get a message saying "SAP system ID ER1 and client 800 already exist in service | CLNT800ER1".
    Can i reuse this Business Servie in my Configuration Object?
    If yes, can you please guide me How to go about it?
    Thanks for the effort.
    Cheers
    Gaurav Raghav

    U may directly use it.
    Just select the business service wherever required. It is not necessary that the Business Service is present in ur configuration scenario. But if u still want it, u may add it using "Add to Scenario" option from other configuration scenario or from Objects tab
    Regards,
    Prateek

  • Already used Logical System in Business Service?!

    Hi, well i am facing a JMS2IDoc-Scenario.
    As sender i configured a Business Service (K15) with the CC_JMS. The receiver is a business system (HRT) with the CC_IDoc.
    While i test the scenario i received following error:
    "Unable to convert sender service to an ALE logical system"
    Thats fine so far, therefore i checked the Adapter-Specific Identifiers and entered the Logical-System name. This is already in use at the business system (HRT) because of some CC for other Scenarios.
    Now there is the problem that i can't use this logical system name at K15, no idea why.
    Because of not having the technical details of the source-system (JMS) i choose to use business service. Is there another idea?! Party?!
    br, Jens

    Hi,
    The issue is with the fact that this Logical System Name has been assigned to another Business System ( say Buss System X) .And you want to use this same Logical System Name for the sender JMS service( Buss System Y) as well , correct?
    Solution is,
    In the Receiver Agreement , Select Header Mapping and for the Sender Servicce, select the Correspodning Sender Service  ( Sleect Buss System X )to which the Logical System Name is assigned.
    Now in the runtime this will be used as the Sender Service from which the Logical System Needs to be taken.
    Regards
    Bhavesh

  • Business Systems and Business Service - does any difference

    Hi Experts,
                      Could any one please guide me what is the difference between
    Business Systems
    and
    Business Service.
    Which situations we use Business Systems / Business Service.
    Does it have any performance issues?
    Why we are not configuring Business service in SLD?
    Cheers Experts!!
    Sunil

    Hi Sunil,
    Business System: Address a particular business system as the sender or receiver of messages.
    A business system is an actual application system in a system landscape. A business system
    (service) comprises information about the inbound and outbound interfaces and the software
    component versions of the business system. The business system services are used when
    configuring internal company processes.
    Business Systems are Logical Senders or Receivers that exchange messages by using the Integration
    Server and that are entered in the System Landscape Directory.
    The Business Systems in the System Landscape Directory relate to a system landscape.
    The Business Systems of business partners are therefore not entered in the System Landscape
    Directory. To be able to address such business partners logically, use communication components in
    the Integration Directory. A business system is a way of specifying a communication component in the
    Integration Directory more precisely (business system component).
    Business Service: Address an abstract business entity as the sender or receiver of messages.
    Using a business service, you can define the technical or business subunits of the companies
    involved and then assign them the relevant interfaces. The business services are used when
    configuring cross-company processes.
    In the PCK, the Service is of type Business Service. It represents an abstract, addressable unit.
    Business services are used in cross-company processes, for example, if the parties involved have only
    published their interfaces and not their system landscape, or it is only partly known.
    Using a Business Service,we can define the technical or business subunits of the companies involved
    and then assign them the relevant interfaces.
    It is useful to use Business Services when configuring cross-company processes. Usually, the
    interface descriptions of the business partners involved are made publicly available.
    Also,There is already lot of thread regarding the same discussion, please see it below.
    Business service or Business system??
    Re: Business Service <--> Business System
    Difference between Business service, Business system and Business process
    Business Service vs Business System in Integration Directory.
    Business Service (vs) Business System in Integration Directory.
    What is the difference between Business System and Business Service?
    business system and business service
    Diff b/w Business service & Business System?
    Regards,
    Vinod.

  • Business Services development with jDeveloper

    We are making use of the Business Services feature in JDE to expose business functions as web services, that's great and working.
    we have one problem with jDeveloper during development.
    we can create a new business service from OMW in JDE and invoke jDev from there, that's fine.
    then we can put codes in the project in jDev, that's fine.
    then we can publish the code as J2EE web service, that works as well.
    then if we restart jDeveloper after that, the J2EE web service doesn't work in the jDev embeded web server any more.
    we always have to delete the web service in the project and go through the same wizard steps to generate the web service again.
    it's very annoying when you have more than a handful of web services you want to expose.
    and if you use the WSDL in a client project to call this web service, you have to remember to give the web service the same name when re-generating otherwise you have to reimport the WSDL again on client side, it can be another huge pain if the client is Oracle BPEL.
    so my question is, why is this happening? is it some settings in jDev that we didn't set right? or is it a bug in jDEv and is there a work around?
    thanks in advanced!

    What error did you get?

Maybe you are looking for

  • IPod not recognized by Windows / iTunes

    Hello, I hope someone here can help. So far my first experience with Apple support has NOT been a positive impression. I searched for info on this problem, but the other ones I see all seem to be related to freezing or battery issues. iPod Classic 12

  • Both side print not working in network using windows 7

                               I have HP laserjet 1018 printer,Printer connected in windows 7 system.           When i print both side print in same system is work done,but in network not work both side print,single print work good.i need help to solve t

  • Just purchased a Macbook Pro 15" 2 no software in the box.

    Just purchased a Macbook Pro 15" 2.7ghz and there was no software in the box.  What if I want to reinstall the OS, what do I do if I want to totally erase and reintall?

  • HT4436 someone else has my ipad and has used my e-mail account but deleted my apple id

    I have an iCloud account that is synced with my iPhone, and WAS also synced with my iPad.  I no longer have my iPad (although I do have it registered under my apple id, serial number and all), but I was looking through my DRAFTS in my e-mail account

  • 2nd DOA optical drive... about to throw the computer out the window

    MacBook Pro   Mac OS X (10.4.8)   DOA cd-rom drive (again) I can't believe this. I either have incredibly bad luck, or apple got a bad batch of cd rom drives from their supplier. I bought a macbook pro jan 2, the cd rom was DOA, so i sent it back. No