Some issues about tpacall

1. In server side, I found that the return value of tpacall is different every time, that is the return value add one at a time, but their addresses are the same. Could someone explain that?
2. The last parameter of tpacall() and tpcall() is flag, whose explanation is:
Flag options. You can list a group of flags by using the logical OR operator.
But I found that the common use is:
tpacall("PRINTER", rbuf, rrlen, TPNOTRAN|TPNOREPLY);
"|" is bit operation rather logical operation ?
3. As for the tpacall, in my mind, the two services are already separated and are in two transactions, but why could it use TPNOTRAN|TPNOREPLY?
Thx a lot.

1. Except when the TPNOREPLY flag is used, the return value from tpacall() is a handle that can later be passed to tpgetrply(). When the TPNOREPLY flag is used, tpacall() returns 0 on success. In either case, the only error return value from tpacall() is -1.
2. You're correct that TPNOTRAN|TPNOREPLY is a bitwise OR, and this is what is intended.
3. The TPNOTRAN flag indicates that the called service is not part of any transaction that the caller may already be a part of. A service called with TPNOTRAN can fail without causing the caller's transaction (if any) to be marked as rollback-only.
If tpacall() or tpcall() is called from within a transaction without using the TPNOTRAN flag, then both the callier and the called service are part of the same global transaction and either both will succeed or both will be rolled back.
The TPNOREPLY flag indicates that no reply to the service is expected. In order to use this flag, you must specify the TPNOTRAN flag or you must make the call outside of a transaction.
A "PRINTER" service is a good candidate to use the TPNOTRAN|TPNOREPLY flags, since the printer may not support transactions or have a way to reply that a document could or could not be printed.
Regards,
Ed

Similar Messages

  • I have some issue about FaultHandling for polling

    I have Some Issue about Faults Handling for Polling.
    In Order to inserting to Table in My DB, I did use BindingFaults After Polling,
    Consider of Performance, I did not use Merge so that Created Variables did have no element.
    Conclusively, Can I use BindingFaults in Any Polling Strategy ?

    sunil j --
    You have erroneously posted your question in a user forum dedicated to Project Online, an enterprise project management application.  I would recommend that you repost your question in a more relevant user forum.  Hope this helps.
    Dale A. Howard [MVP]

  • Can any body send me some issues about mail sending .

    can any body send me some issues about mail sending .
    thanks alot !
    mail to :<i><b>[email protected]</b></i>

    HI
    GOOD
    GO THROUGH THIS CODE
    REPORT ZTSAPMAIL.
    DATA: X_OBJECT_TYPE LIKE SOOD-OBJTP.
    DATA: BEGIN OF X_OBJECT_HD_CHANGE.
    INCLUDE STRUCTURE SOOD1.
    DATA: END OF X_OBJECT_HD_CHANGE.
    DATA: BEGIN OF X_OBJCONT OCCURS 10.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJCONT.
    DATA: BEGIN OF X_OBJHEAD OCCURS 0.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJHEAD.
    DATA: BEGIN OF RAW_HEAD.
    INCLUDE STRUCTURE SORH.
    DATA: END OF RAW_HEAD.
    DATA: BEGIN OF X_RECEIVERS OCCURS 0.
    INCLUDE STRUCTURE SOOS1.
    DATA: END OF X_RECEIVERS.
    PARAMETERS: RECEIVER LIKE X_RECEIVERS-RECNAM. " Name
    *BUILD MESSAGE HEADER
    MOVE 'Sort field goes here' TO X_OBJECT_HD_CHANGE-OBJSRT. " Sort field
    MOVE 'Name of the object goes here' TO X_OBJECT_HD_CHANGE-OBJNAM. " Name
    MOVE 'Document title goes here' TO X_OBJECT_HD_CHANGE-OBJDES. " Title
    MOVE 'F' TO X_OBJECT_HD_CHANGE-OBJSNS. " Functional OBJECT
    MOVE 'E' TO X_OBJECT_HD_CHANGE-OBJLA. " Language
    Object type of the new document
    MOVE 'RAW' TO X_OBJECT_TYPE.
    CLEAR X_OBJCONT.
    MOVE 'Contents of mail' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    CLEAR X_OBJCONT-LINE. APPEND X_OBJCONT.
    MOVE 'More contents' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    MOVE 'Still more contents'
    to x_objcont-line.
    APPEND X_OBJCONT.
    MOVE ' ' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    Specific header (Dependent on the object type, here RAW)
    REFRESH X_OBJHEAD.
    DESCRIBE TABLE X_OBJCONT LINES RAW_HEAD-RAWSIZ.
    MOVE RAW_HEAD TO X_OBJHEAD.
    APPEND X_OBJHEAD.
    *RECEIVERS table
    CLEAR X_RECEIVERS.
    REFRESH X_RECEIVERS.
    MOVE RECEIVER TO X_RECEIVERS-RECNAM. " Name
    MOVE 'B' TO X_RECEIVERS-RECESC. " Receiver type
    MOVE 'X' TO X_RECEIVERS-SNDCP. " Send as a copy
    MOVE 'X' TO X_RECEIVERS-SNDEX. " EXPRESS DOCUMENT
    APPEND X_RECEIVERS.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    folder_id = 'OUTBOX'
    forwarder = x_forwarder
    object_fl_change = x_object_fl_change
    OBJECT_HD_CHANGE = X_OBJECT_HD_CHANGE
    object_id = x_object_id
    OBJECT_TYPE = X_OBJECT_TYPE
    OUTBOX_FLAG = 'X'
    OWNER = SY-UNAME
    store_flag = x_store_flag
    importing
    object_id_new = x_object_id_new
    sent_to_all = x_sent_to_all "May need to use
    TABLES
    OBJCONT = X_OBJCONT
    OBJHEAD = X_OBJHEAD
    objpara = x_objpara
    objparb = x_objparb
    RECEIVERS = X_RECEIVERS.
    Firstly SAP Mail
    A SAP mail is a mail internal to the SAP system. It is a very good forum to exchange information with other users. Using a SAP mail in ABAP code facilitates exchange of automatic messages at various stages of the business process. It is easy to use and saves many hassles involved in using workflows for exchanging messages.
    The ABAP code to send a sap mail is built around the FM SO_OBJECT_SEND which has the following pattern.
    call function 'SO_OBJECT_SEND'
    exporting
    EXTERN_ADDRESS = ' '
    FOLDER_ID = ' '
    FORWARDER = ' '
    OBJECT_FL_CHANGE = ' '
    OBJECT_HD_CHANGE = ' '
    OBJECT_ID = ' '
    OBJECT_TYPE = ' '
    OUTBOX_FLAG = ' '
    OWNER = ' '
    STORE_FLAG = ' '
    DELETE_FLAG = ' '
    SENDER = ' '
    CHECK_ALREADY_SENT = ' '
    importing
    object_id_new =
    sent_to_all =
    tables
    OBJCONT =
    OBJHEAD =
    OBJPARA =
    OBJPARB =
    receivers =
    PACKING_LIST =
    ATT_CONT =
    ATT_HEAD =
    NOTE_TEXT =
    exceptions
    active_user_not_exist = 1
    communication_failure = 2
    component_not_available = 3
    folder_not_exist = 4
    folder_no_authorization = 5
    forwarder_not_exist = 6
    note_not_exist = 7
    object_not_exist = 8
    object_not_sent = 9
    object_no_authorization = 10
    object_type_not_exist = 11
    operation_no_authorization = 12
    owner_not_exist = 13
    parameter_error = 14
    substitute_not_active = 15
    substitute_not_defined = 16
    system_failure = 17
    too_much_receivers = 18
    user_not_exist = 19
    x_error = 20
    others = 21.
    THANKS
    MRUTYUN

  • Some issues about the ANA3.7.2

    Hi ,
        While i was trying to use ANA to manage  8 ASR9010s,2of them workas CR,the other 6 work as SR ,  the configure of all the SR was almost same。 i encountered some problem. i hope any of you could give me some advice .
    1、ANA can't find the information of power modules or fan modules of the ASR9010 .
    2、ANA can't find all the topology of the 8 ASR9010 automaticly ,  just 2 CR and 3 SR can be found . all the device is partially reatchable .
    3、when I login into the system,it prompted a license violation.
    I have installed the driver of Cisco-ASR90XX-ANA3.7.X-V1.7.jar in the ANA .
    and the ASR9010 version is 4.1.1 , and the active package is :
        disk0:asr9k-mini-p-4.1.1
        disk0:asr9k-mpls-p-4.1.1
        disk0:asr9k-mcast-p-4.1.1
    Best Regards.

    1-what if they remove the sim and put a new sim?
    can i still be able to track it with icloud and send messages to it and play sound and lock it with a passcode even if they remove the sim
    As I said, if there is a passcode in place they do not know, you will be able to track down the device, irrespective the SIM card they are using. By the way, if the device is locked, they should first unlock it in order to make their SIM work, calling the carrier and giving all your personal data they do not have.
    On the other hand, if the phone is unlocked and does not have any passcode, then yes, they will be able to use any SIM with it and turn off any tracking software.
    2-what if they using an old version of itunes will they be able to format it as new iphone?
    Same as in previous: if they have the iPhone without any lock then yes, they will be able to restore it as a new phone.
    Follow all the instructions here: http://support.apple.com/kb/HT5818 in order to turn on Activation Lock and make more difficult for them to restore your phone without permission.

  • Issue about IDoc Adapter Receiver Channel's Performance

    Hi Everyone,
    Currently, I am working on a scenario of File -Integration Process - IDoc in XI 3.0 with patch level 16. The scenario works fine when it process one/two/three files in parallel, and the IDocs arrive R/3 system quite fast. But when I try four files in parallel, the whole XI server blocks, I can not do anything even logon Integration Builder, and the IDocs arrive R/3 brokenly, sometime with the invterval to 10 minutes. When the XI comes back, I found all the four integration processes finish successfully and each transaction works fine and fast. What's more, after I change the IDoc Adapter receiver channel to a File Adapter receiver channel, it works fine for even 20 files in parallel. So I think it is some issue about IDoc Adapter receiver channel. Does anyone have the same experience as me? Any comments will be appreciate.
    Regards,
    Nick

    Hi Nick,
    Can you check this Blog-
    /people/sreekanth.babu2/blog/2005/01/05/delayed-xi-message-processing
    May be useful.
    How are you picking the files .. You can try with EOIO options while picking the file.
    But if you use BPM, it is not applicable. It will act as a EO only.
    Check this SAP Note- 833740
    Thanks,
    Moorthy

  • Issues about Asus

    In my previous messages, I mentioned that I was planning on buying an Asus Gaming computer (Asus G75). However, I've been reading some issues about these notebooks recently. Few of them are like unworking (is there such a word??) touchpads, freezes and shutdowns etc. What are your oppininon about the brand Asus? Spending that much money and not getting it back..does it sound familiar with Asus? Or is it only 1% of Asus users complaining about their faulty notebooks and I've been reading them? Thanks for helping

    As a computer builder of 10+ years, I swear by ASUS.
    As B&P said, there's going to be bad apples in any manufacturing process.
    You also have to take complaints with a grain of salt; someone with a laptop without issues isn't really going to go out of their way to make a post/statement about it.
    If you like my post, or solution to your issue/question, go ahead and click on the little star by my name and/or accept the post as the Solution. It makes me happy.
    I'm NOT an employee of Best Buy, or Geek Squad, though I did work as an Agent for a year 5 years ago. None of my posts are to be taken as the official stance that Best Buy will take on your situation. My advice is just that, advice.
    Unfortunately, that's the bad luck of any electronic, there's going to be bad Apples... wait that's a horrible pun.

  • Issues about seniority

    Dear experts!
    Now I'm getting some issues about seniority.
    - The first, I want to get number of months that employee work since employee started working in the company.
    - Second, I want to move the value to wage type.
    How do I do?
    Help me, please.
    Regards Huy!

    first one
    Check if there is any  FM is there
    or else u can check with the Stadrad report of employee Entry and Leveig report
    second one
    wht value u want to move the wage type can u be some more clear

  • Hi, a 4 minute video that was shot using my IPAD occupies about 900 MB of space. Is that normal or is there some issue ?

    Hi, a 4 minute video that was shot using my IPAD occupies about 900 MB of space. Is that normal or is there some issue ?
    Regards,
    Ashok

    High def video is about a gig a minute so that sounds about right. Video is a massive storage hog.

  • Have some issues downloading itunes. getting a pop up that reads MSVCR80.dlll and another one pops up and reads something about a moblie device

    have some issues downloading itunes. getting a pop up that reads MSVCR80.dlll and another one pops up and reads something about a moblie device

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • New user - Some issues I want to resolve

    I purchased my mac 2nd hand about 6 weeks ago (24" Mid 2007, 2.4GHz Core 2 Duo, 4GB RAM) and got it home and set it up and everything has been working flawlessly. Also purchased a magic mouse & trackpad which have also been working fine.
    I received an email last night from a friend with some PDF docuements for work, and since then I have been having some issues. Dont know if this has any relevance whatsoever or just completely coincidence.
    Issues I have encountered so far are :
    1) I noticed was my trackpad was real laggy, to the point of unusable.
    2) I can hear a buzz/hum which I never used to hear, hard to tell if it's the optical drive or hard drive, but something sounds like it is constantly spinning - im a bit anal about things like this and it really bugs me, especially as it wasnt doing this before
    3) My WiFi connection is proving to be problematic coming from sleep / cold boot. If I click on the WiFi icon in the taskbar it will not display any available networks and just says "looking for networks". If I then click on "Join network" > "Show Networks" this then shows me available networks. If I then choose my network, it takes a long time (about 30-60 seconds) to display the WPA2 password box. I then enter my password and I see the icon in the taskbar goto a full 5 bars, but the screen where I enter my password still says "Connecting..." and eventually results in a "Connection failed!" even though the connection is actually there and I can browse the internet.
    4) Generally feeling "laggy", eg opening System Preferences can take 30+ seconds
    What I have tried to do to fix these problems
    1) Unpaired and repaired which seems to of rectified the issue
    2) Finding it hard to differentiate if the hum is from optical or hard disc. If I hold my hand on the back of my Mac I can feel vibration close to the centre, by the stand support.
    Have tried running Disk Checker to see if it identifies any S.M.A.R.T errors but all came back ok. It did find some faults with Disk Permission's which I fixed.
    3) This is the one that is really annoying me and have tried several recommendations found on the internet, including ;
    Turning wifi on/off
    Turning router on/off
    Changing settings in energy saver
    Removing saved wifi networks / re-adding
    Removing passwords from keychain
    Updating to OS X 10.8.5
    4) As I am a new user, I do not fully understand what I am doing yet, but I have opened up the Activity Monitor and noticed that there is a high CPU load quite consistently (also back of mac appears quite hot to the touch). I have noticed that parentalcontrolsd seems to be consuming a lot of CPU time, even though I dont have parental controls on. It is usally 80%+ CPU. Also ocspd appears to be quite a cpu hog too (constant 20-50%)
    This all happened on Friday 13th! lol
    Any help with any of the above would be appreciated.

    In Activity Monitor, select the processes with the high CPU use and quit them using the Quit button at the top left.
    Also try a restart.

  • Issue about web analysis

    Hi guys,
    I am facing an issue about Web Analysis. When I use the version pre-9, I can access web analysis directly with html client or java client.Then I set each user with each POV. Now I am using EPM11, I can just access web analysis by workspace.Then if I would like to access java client, I click Tools->links->web analysis studio. While I access html client by clicking explore in the workspace toolbar. However, if the user doesn't belong to admin group, I can't find the explore toolbar. Then I can't access html client. As we know, not all web analysis users should be admin users. This issue puzzles me very much. Is there someone who can give some good suggestions? Thanks a lot.

    The user needs the 'Explorer' role to see the 'Explore' button. The user does not need admin privs for this.
    To access Web Analysis Studio directly, go to http://<server-name>:19000/WebAnalysis/WebAnalysis.jsp or http://<server-name>:16000/WebAnalysis/WebAnalysis.jsp.
    G'luck
    Andy

  • Some advice - about to buy new Mac Mini.

    Hi everyone - I'm hoping that someone can help me out with some advice.
    I'm a former blackberry user and not a mac user, so I hope I'm clear in my explanation.
    My mother is a PC user currently and owns a Blackberry Curve 8900.  Actually, she and my dad both do, and currently use the PC to sync their (shared) calendar and contacts from one login in Windows XP to both of their blackberries.  Yep, they're at that stage where they really don't need independent contacts or calendar.  They sync with USB and curerntly use Outlook -- so no Exchange integration is needed for push email/etc. 
    Anyway, the PC is on its absolute last legs and I was thinking of migrating them over to a new Mac Mini since she's never really gotten the hang of Windows XP and I'm guessing that she'll do better on the Mac OS.  Plus her friends all use Macs and I'm hoping they can help her.  I'm guessing we'll just get them the latest version of Entourage with their new Mac.
    I've been holding off migrating them to this until the Blackberry Desktop Manager for Mac was available because the Blackberry Desktop Manager on their PC is one of the few things that works really well for them.  They're used to the interface, and it just works.
    So, now that it's available I was looking through the forums here and it looks like there might be some issues with it that are persistent?  I've seen references to 32 bit vs 64 bit and other sorts of stuff that I don't quite get.
    Can anyone tell me if the new system for them would just work? Maybe someone out there has a similar configuration?
    Or should I hold off or just consider moving them to a new Windows PC instead?
    So it would be:
    * 2 Blackberry Curve 8900s syncing to a single shared set of contacts and calendar using Blackberry Desktop Manager.  They don't do email sync and probably won't make much use of audio sync.  Images, though, yes.
    * Brand new Mac Mini, which evidently comes with Mac OS X 10.6 (I don't know if it is 32 bit or 64 or what??)
    * Sync to Entourage from Office 2008
    thanks in advance,Aaron

    Let me respond.  First 10.6 (known as Snow Leopard) enables 64 bit technology...you can read this for more info:
    http://www.apple.com/macosx/technology/
    Now as far as sync goes...Unfortunately there is no perfect solution.  Why?  BB, Entourage, Mac Address Book & iCal do not share identical "fields".  So it is impossible to get them to all have the same info.  The truth of the matter is, I do not think your parents will need to constantly sync the contacts...seriously how many new people do they met to add to their contact list?  It is probably a one time...let me get all of their contacts on the computer and the devices.  Now the calendar does need to be synced regularly.  Some have had no issues with the sync between iCal and BB...others...well a different story.  I migrated my parents (both sets) to Mac about 8-10 years ago.  Why, because Mac software (OS included) is so much easier for them to understand and use.  I also do the technical support (which I can do remotely with screen sharing) which is easier for me (and there are not many issues).  I use mobile me and we have contacts and calendars synced across the family...all automated (if I make a change they get it within seconds).  Hope this helps.
    4.6.1.305 hybrid
    Mac Pro 2X2.8 Quad SL

  • Some issues of BPM 11g R1

    Hi,
    I'm testing Oracle BPM Suite 11g R1. Below are some issues to be considered :
    1. Organization Unit issue - In BPM Workspace, after creating an Organization Unit, we've assigned members and a manager. As all the organizational members (and only them) should be able to see the process, in our case the manager and some of the Organization users still not be able to see the process?
    So, how can we associate a process to the organizational unit that we have created before?
    Otherwise, is there any difference between Organization Unit that is created in JDeveloper and deployed with the process and the one created in the BPM Workspace after the deployment of the process? What is the best way to create an Organization unit?
    2. Process Owner issue - Process Owners are responsible for the overall supervision of the running business process. In our case, the participant with the process owner role doesn't see it's process. Is there any others parameters to add in BPM Workspace when defining the process owner?
    3. BPM Composer errors:
    - After converting a BPM project P1 to a template and published it to the BPM MDS, I created a new project, P2, based on the template in BPM Composer. I'm able to edit the process within the project P2 based on the edit policies defined by the template in BPM Composer. However, no change (update) on the P2 is not taken into account when republishing to MDS. Moreover, the deployment of P2 from BPM Composer to BPM runtime doesn't work?
    - The deployment attempts of processes from BPM Composer to the running environment failed every time, and we get the following error message:
    “Deployment Failed: Error occurred during deployment of component: RequestHello to service engine: implementation.workflow, for composite: HelloBPM: ORABPEL-30124”
    The server log is :
    Caused By: ORABPEL-30124
    Error while deploying task metadata.
    the template namespace http://xmlns.oracle.com/HelloWorld/HelloBPM/RequestHello is already in use as a task namespace.
    Check if a template project with namespace http://xmlns.oracle.com/HelloWorld/HelloBPM/RequestHello was deployed earlier. Please avoid deploying template projects. Please use a different namespace for the current task definition to fix the problem.The task flow associated with the template project will not work with this project anymore if the namespace is changed.
    Atoracle.bpel.services.workflow.metadata.impl.TaskMetadataServiceUtil.validateMetadata(TaskMetadataServiceUtil.java:454)
    at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:806)
    at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:332)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployComponents(CompositeDeploymentConnection.java:237)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deploy(CompositeDeploymentConnection.java:94)
    4. EXTERNAL LDAP - For testing purpose, I have installed an external LDAP (OpenLdap Server witch is installed in a different machine from the one where BPM server is running). BPM would then use this LDAP for its authorization and management.
    However, when I try to reassign to users defined in my external LDAP it doesn't work. Also, the ad hoc route doesn't add the new assigned at all?
    So, is there any detailed documentation about the integration of an external LDAP (Other than OID) with OBPM Directory?
    5. Process Deployment exception - The following deployment error often occurs, within BPM Workspace, when we try to start an instance of the oldest version of the deployed processes. In our case we have 3 differents process versions.
    +“Cannot create instance in process 'default/HelloBPM!1.1*soa_c21b4e28-c34e-4e8f-88f5-58c45f35b45c/HelloProcess'".+
    The server log is:
    Process not found.
    the BPMN process "HelloProcess" with revision "1.1" is not loaded.
    The process was not initialized properly, or the process was disabled.
    Set the logging level to debug mode, check the log for the underlying exception trace related to this process loading problem.at com.collaxa.cube.engine.deployment.DeploymentManager.getProcess(DeploymentManager.java:135)
    at com.collaxa.cube.engine.deployment.DeploymentHelper.lookupProcess(DeploymentHelper.java:146)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.getInboundOperationType(DeliveryHandler.java:748)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.post(DeliveryHandler.java:85)
    at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.post(CubeDeliveryBean.java:683)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingRefle...
    Regards,
    Hanine

    Hi,
    Responses to your questions
    (1) You need to associate Organization Unit with your BPM Project. To do this, go to BPM Studio/Organizational Chart/ From Repository option. Connect to your Application Server and select the Organization Unit. This will associate OU to the BPM Project. Please note that when an OU is defined, the member will be able to see only the process tasks - only if he is associated to the OU and the swimlane role.
    (2) Process owner does not automatically become the owner of the tasks associated with the process. This is a limitation and will be addressed in a future release.
    (3) Deployment error due to duplicate task forms is a known issue. Currently the product generates unique namespaces for User Interfaces for the different Project variants dervied from the same "Project Template". However, it does not check to see if a Project with User Interfaces with conflicting namespaces is already deployed. To get around your issue, first undeploy the Sales Quote Project ---- then you do deploy the Project variants.
    (4) Oracle BPM Suite uses Oracle Platform Security Services (OPSS) for LDAP integration. We have forwarded your request to the OPSS group and awaiting a response.
    (5) Undeploy and then do a fresh deploy. This bug will be fixed soon.
    - regards,
    Meera

  • How can I contact or talk to some one about my bill

    How can I contact or talk to some one about my billing, there are charges on my cc that I no nothing about can someone help me please.

    Check your iTunes Store Purchase History (and that of any other AppleIDs which may have your CC linked... Partner / Child / Old AppleID accounts). Use iTunes Store & Mac App Store: Seeing your Purchase History and Order Numbers and a computer with iTunes installed (you can't see this info through the iTunes or App Store Apps on an iPad/iPhone/iPod Touch).
    If the purchases are there in the Purchase History and you or a family member recognise them then it's up to you if you request a refund for accidental purchases via Email using http://www.apple.com/support/itunes/contact/ or accept the charges.
    If however you find them but know it's not something you or someone else authorised to use the AppleID have bought, use the iForgot Website to reset your password, then go to the AppleID Website, sign in to Manage Your Apple ID then go to the Password and Security link on the left to change Security Questions then call AppleCare (0844 209 0611) to speak to iTunes Store Fraud as someone has hacked your AppleID. If you can find no record of the amounts which have come off the CC, call the Bank or Credit Card company and have them block the card and issue a new one as the details have been registered with another AppleID without your knowledge, THEN get in touch with AppleCare and speak to iTunes Store Fraud for a refund of the fraudulent purchases.

  • A very urgent deployment issue about DBAdapter

    Hello All,
    I have a very urgent deployment issue about DBAdapter.
    That DBAdapter is connect to DB2 AS400 Database. I have a developing database (jdbc:as400://server01/TEST) and a production database (jdbc:as400://server01/PROD).
    During developing, I used DBAdapter wizard to create it, and import some tables, and set the Adapter to use jabc/DB2DS as connection information for easily deployment later.
    Then I deploy to Production. I configured Data-source.xml and oc4j-ra.xml rightly; I set DB connection point to production database. But the DBAdapter still write into developing Database.
    I checked the DBAdapter, the imported tables are something like this, TEST.table1, TEST.table2. And there are a lot "TEST" located in DB2Writer_toplink_mapping.xml, DB2Writer.xml, TEST.schema, DB2Writer.table1.ClassDescriptor.xml.
    This TEST is refrer to the TEST in connect String jdbc:as400://server01/TEST.
    I think this might be the reason cause the problem. As to production database, "TEST" should replaced by "PROD". If I changed it manually, I have to change every time when switch between TEST and PROD. And I also don't know if it is safe to do it? (I tried, and bring some toplink mapping problem)
    By the way, for Oracle Database, because we use 2 instances for testing and production with same schema name, and do not have this issue.
    Anyone could help and many thanks.
    Kerr
    Message was edited by:
    Kerr

    Hi Kerr,
    The idea is to set up all connections in the BPEL or ESB services with logical names, e.g. typically of the form eis/DB/MyFinancialSystem or eis/DB/MyLogisticsSystem. This way, you do not have to modify code when deploying it onto different environments that serve different purposes.
    When moving your services through their lifecyle, on every environment you deploy these to you will have the same logical connections configured on each instance, e.g. for DEV, QA, SIT, UAT and PROD. Only, in case of QA the actual physical connection is configured to point to the QA instance of the systems that your services interact with whereas in case of UAT it points to the UAT instance of the same system.
    Maybe your problem is caused by connecting as user "SomeUser" when running the DB Adapter wizard during development and actually selecting objects from a different schema than you used to connect with, e.g. "Test" in your case.
    Hth,
    Sjoerd

Maybe you are looking for

  • Macbook won't detect external display anymore - Random shutdown injury??

    Hi, my Macbook has the dreaded random shutdown thing happening, often it can't even get through the startup sequence. If I reset the PMU and PRAM and check the disk every week I can keep it running. Applecare are making not particularly helpful sugge

  • How to convert Mail attachment file Tab Delimited file to XML.

    Hi PI Experts     I have XI scenario: MAIL  XI SAP (ABAP Proxy), the process is 1.     XI will receive tab delimited file as attachment in mail. 2.     XI will convert the tab delimited file into XML, then map to the target structure. 3.     Target

  • HOW TO OPEN A BBB FILE ?

    I simply want to back up my contact list should i lose my phone. I back up into a bbb file and i cannot open ?

  • Read on macbook

    Read iBooks on MacBook? I don't understand why I would ever buy an iBook from Apple if can't read it on my Mac, when the Kindle application makes it easy to read across my Kindle, iPhone, iPad, and MacBook Pro.  Is an App going to be released for thi

  • Has the 3D performance improved?

    I'll like to see if/how the 3d performance has improved. Is it faster with FX? Of course it will be faster in native, but has the time come for 3D fps applets? Or is it "only" the construction time of the code that's better? I'm not a C fanatic and I