Err in creating Activit under tab Ext. Process using BAPI_NETWORK_MAINTAIN

Hi Gurus,
I need to create activity under tab Ext. Processing for a network and i am planning to use BAPI "BAPI_NETWORK_MAINTAIN" for this purpose. I am able to create activity under "Int. Processing" using this BAPI but got error for "Ext. Processing" tab.
Below is the code i am doing for ext. processing tab.
****to move 3rd activity number for external processing
itemsg-internal_object_id = '000004000873'.
activity = '0030'.
CONCATENATE itemsg-internal_object_id activity INTO v_str.
      MOVE  itemsg-internal_object_id+0(12) TO itactivity-network.
    MOVE '0030' TO itactivity-activity.
    MOVE 'Activity2' TO itactivity-description.
    MOVE 'PS02' TO itactivity-control_key.
    MOVE '5001-KOS-0061' TO itactivity-project_definition.
    MOVE '5001-KOS-0061-BA' TO itactivity-wbs_element.
   MOVE 'AA' TO itactivity-factory_calendar.
   move '2000' to itactivity-DURATION_NORMAL.
   MOVE 'DAY' to itactivity-DURATION_NORMAL_UNIT.
   MOVE '2000' to itactivity-WORK_ACTIVITY.
   MOVE 'Z0004' to itactivity-MILESTONE.
   MOVE 'M3'    to itactivity-UN_WORK.
    MOVE '099' to itactivity-MATL_GROUP.
    MOVE 'PGL' to itactivity-PUR_GROUP.
    APPEND itactivity.
    MOVE '000003' TO itnetmethod-refnumber.
    MOVE 'NETWORKACTIVITY' TO itnetmethod-objecttype.
    MOVE 'CREATE' TO itnetmethod-method.
    MOVE  v_str TO itnetmethod-objectkey.
    APPEND itnetmethod.
    CLEAR  itnetmethod.
Below is the error message i got when i load this code.
Enter a time unit, since you have entered either work or actual work
Termination: Too many errors (more than 10% of methods)
The order or network could not be saved
Please help me to resolve this issue.
Thanks in advance
Ajay

Hi,
1)
I would suggest declaring a structure of type BAPE_VBAP & BAPE_VBEP...Then move the values instead of using offset..
Example
DATA: S_BAPE_VBAP TYPE BAPE_VBAP.
Populate the Extension structure WITH Order commited flag
LW_EXT_STRUCTURE-STRUCTURE = C_BAPE_VBAP.
S_BAPE_VBAP-VBELN = W_VBAP-VBELN.
S_BAPE_VBAP-POSNR = W_VBAP-POSNR.
S_BAPE_VBAP-ZZORDCOFL = W_VBAP-ZZ_ORDCOFL.
LW_EXT_STRUCTURE-VALUEPART1 = S_BAPE_VBAP.
This will make sure the BAPE_VBAP is extended with the Z fields..
2)
You are checking only for abort messages...You are not checking for error messages..
Instead of this..
READ TO CHECK THE ERROR AND ABORT MESSAGES DURING BAPI CALL
READ TABLE LT_RETURN_TAB INTO LW_RETURN_TAB
WITH KEY TYPE = C_MSGTYP_A
BINARY SEARCH.
Have this code..
LOOP AT LT_RETURN_TAB WHERE TYPE = 'E' OR TYPE = 'A'.
  EXIT.
ENDLOOP.
IF SY-SUBRC = 0.
  WRITE: / 'ERROR'.
ELSE.
  WRITE: / 'SUCCESS'.
ENDIF.
This will make sure there are no error messages..Also check the return table for error messages in the debugging mode..
Thanks,
Naren

Similar Messages

  • Creating subtabs under tabs

    Hi All -
    I need to create subtabs under the 1st level tab (not sure if I can call this as 2 level tab). Here is what I am trying to get.
    Following the the Main tab
    HOME | WELCOME | LOGOUT
    Under Home tab, I have the following:
    HOME
    Personal Details | Office Details | Travel Details
    And under Personal Details tab, I need to add 2 more tabs like
    HOME
    Personal Details | Office Details | Travel Details
    TAB1 | TAB2
    I tried setting the tab level to 2-level tab on the page but it didnt work. Not sure if I am doing this right.
    Please share your experience/expertise.
    Thanks,
    -Seenu

    Seenu,
    I too struggled with this years ago when establishing a two-tab layout.
    I would recommend making a your Parent Tabs:
    Home | Personal Details | Office Details | Travel Details
    Then create and assign Standard tabs to your Parent Tabs.
    I have often found that a new Standard tab needs to reference itself in the Tab Also Current for Pages parameter before it was visible.
    I learned early on not associate new forms/reports with a tab as I created them via the wizards. Once done testing, I then created the Standard Tab for the new report or form and things worked fine.
    If you need a third level, I would recommend using a List via the Button List, List Template.
    Rumor is that this feature is new and approved in 4.0. Let's hope so.
    Jeff

  • Creating an Airdisk USB EXT HDD using AEBS and Time Machine

    This is what I have learned in setting up my Airport Extreme USB Airdisk for Time Machine.
    Your HDD has to be initialized properly, especially if it is or has been formatted to FAT32.
    Using Apple Disk Utility located in the Utility's Folder.
    Go to the Partition tab.
    Create two partitions.
    Under Options, select GUID Partition Table (what you would use to make a Mac OS boot disk) and click OK then Apply.
    Once your partitions are in place, go back to the Partitions Tab and revert back to just one partition, still keeping the GUID Partition Table option.
    Click OK and Apply.
    Some people have gotten this to work without creating two partitions. If you like, try creating just a single partition, but using the GUID Partition Table option. This may be all it takes to break the chokehold.
    After my drive was properly partitioned and initiated, it was available in the "Shared" menu (assuming file sharing is enabled), and I was able to set up an ext USB Airdisk in the Airport Extreme using the Airport Utility found in the "Utilities" folder of your Applications folder.
    Connect the hard disk into the USB port on the back of the AirPort Extreme Base Station.
    Launch AirPort Utility from the Applications:Utilities folder.
    Select your Base Station from the list on the left then click the Manual Setup button.
    Click Disks in the toolbar.
    Click to select the File Sharing tab.
    Make sure Enable file sharing is selected.
    Choose With a disk password, or With base station password if you want to secure the shared disk with a password, it seems the "With Accounts" ption is to be avoided.
    Choose Not allowed, Read only, or Read and write to assign guest access to the disk.
    Select the Share disks over Ethernet WAN port checkbox if you want to provide remote access to the disk over the WAN port. If you do share disks over the Ethernet WAN port you can also select to Advertise disks globally using Bonjour.
    Finally set the Workgroup and WINS Server for Windows File Sharing if you choose to do so.
    Click the Update button to complete your changes.
    AirPort will need to reboot the Base Station to continue.
    Click the Continue button.
    After doing these steps I was still not able to use it in Time Machine until I did the following:
    Open Terminal and paste in the following command:
    defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1
    Hit return and I imagine your disk is now available in the Time Machine
    I have read that the name of your Airdisk is case sensitive, it was not the case, but worth changing if you still have issues.
    Also, the initial backup via wireless is quite slow. I recommend hardwiring to the network, ie, plugging the computer in question into your AEBS for the first Time MAchine backup, then use wireless Airport for subsequent backups.
    I now have all four of my computers backing up to a single 1TB Airdisk and very happy about it.
    Another tidbit I found was that people were not seeing the new Airdisk auto mount when Time Machine tried to do its thing. To enable auto recognition it seems all you need to do is mount the disk via the shared menu of any finder window, then go to your System Preferences and the Accounts preference pane and in the Login Items, just add the Airdisk to the menu.
    Good luck to all and please post back with questions or comments.
    Henry

    good catch. I never use spotlight on my external drives, reason being eject problem then I'm thinking could lead to other problems.
    Message was edited by: Smokerz

  • How to resubmit failed activity in a BPEL process using Java in 11g

    Hi All,
    In 11g, is there any API using which we can resubmit failed activity in BPEL using Java.
    Thanks,
    Vidya

    Hello
    To assign a header
    1. Create a variable of the correct type
    2. Click on the invoke/pick/reply or the receive
    3. Click on the header tab
    4. Select the header
    Validate the header after the receive
    5. Select the header the varaible and use a validate action.
    Best Regards Tristan Hayman

  • Create Lead with Oracle BPEL process using Siebel CRMOD web service

    I'm trying to create a lead in the siebel OD (hosted) with a oracle BPEL process and using the siebel web service (2.0). In my bpel process I've been able to
    1. Login to OD and get a session id
    2. create the partner link using Siebel OD (version 2.0) wsdl for Lead
    3. Assign the session id to the partner link
    4. Assign the inputs (lastname, firstname, leadowner, viewMode=Personal, lovLanguageMode=LDC) to lead
    5. Call the leadInsert operation on the partner link
    However, when I deploy and execute the bpel process it breaks after calling the leadInsert with the following error message:
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    <remoteFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="code"><code>Server</code>
    </part><part name="summary"><summary>The record with search specification '' in business component 'Lead' (integration component 'Lead') has been deleted by another user since it was retrieved.(SBL-EAI-04289)</summary>
    </part><part name="detail"><detail>&lt;detail>
    &lt;siebelf:siebdetail xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    &lt;siebelf:logfilename xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">OnDemandServicesObjMgr_enu_138636.log&lt;/siebelf:logfilename>
    &lt;siebelf:errorstack xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    &lt;siebelf:error xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    &lt;siebelf:errorcode xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">(SBL-DAT-00494)&lt;/siebelf:errorcode>
    &lt;siebelf:errorsymbol xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"/>
    &lt;siebelf:errormsg xmlns:siebelf="http://www.siebel.com/ws/fault" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">The record with search specification '' in business component 'Lead' (integration component 'Lead') has been deleted by another user since it was retrieved.(SBL-EAI-04289)&lt;/siebelf:errormsg>
    &lt;/siebelf:error>
    &lt;/siebelf:errorstack>
    &lt;/siebelf:siebdetail>
    &lt;/detail>
    </detail>
    </part></remoteFault>
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Any feedback as to what I'm doing worng woull be greatly appreciated.
    Thanks,
    --manoj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi,
    We are also using BPEL to send data out to SIEBEL CRMOD.
    I've created a proxy that deals with authentication and session management.
    All you have to do is to deploy the proxy as a war file and refrence it as the end-point of your partner link.
    Code is here:
    http://another-soa-blog.blogspot.com/2010/02/oracle-siebel-on-demand-session-and.html
    Regards,
    Fred.

  • Can we create Multi Tabbed excel Sheet using Crystal Reports 2008

    Hi,
      We want to create a Crystal Report which will export the output as multiple Tab's ( we can use sub reports).  Can we create a Multi Tabbed excel Sheet using Crystal Reports 2008 ( not  Crystal reports Basic 2008). Please share any information/links on how to do that.
    Also if it is not supported please let us know which version supports it.
    Thanks,
    Vasu

    At least one of the 3rd-party Crystal Reports Desktop Scheduling tools listed at: http://www.kenhamady.com/bookmarks.html provides that functionality.  It allows you to burst a single report so that each Group at level 1 becomes a separate tab.  You can control the tab names (and tab colors) via fields/formulas inside the report.
    You can also automate the process of exporting to (and also replacing or appending to) specified tabs inside existing workbooks.

  • Multilevel dynamic approval process using precondition loop block

    HI,
    I am trying to create a multivel dynamic approval process using a precondition loop block. The structure of my process is,
    Process->1)Sequential Block containing requestor action->processor of requestor action is initiator
                2)Precondition Loop Block containing
                        i)Loop Decision action containing a business logic callable object
                        ii)Loop Body Block containing Approver action-processor of approver action is filled from context parameter
    The loop decision action implements the logic for loop decision. Can anybody help me by suggesting the proper target of each of these actions, and the processor for loop decision action?
    Whenever I am initiating the process, the requestor action is getting executed,  On completion of this action I am getting a message "No activity is currently selected", that is, it is not entering the precondition loop block.
    Please guide me with the proper process flow of this and how to adjust the roles and parameters
    Thanks,
    Swaralipi

    Posted another thread on the same issue

  • To create an activity under WBS element

    Dear experts,
    Is there any way to create an activity under the WBS element directly w/o network in the PS module?
    I heard this from a user, as he claims that he read it some where, I am not sure about this.
    Can some one through some light on this?
    Thanks in advance,
    Regards,
    Praveen B

    hi,
    addiing to sharad change the setting for project profile opsa in plg board/dates tab network asst as 1 and don't inidcate the
    display netwk header so that netwk header can't be displayed to end user.
    regards,

  • Error in 'eMail Response - Process Message' --- Error running sub-process 'eMail Response - Create Activity' at step 'Create Activity Process'.(

    Hi,
    When I was simulating the 'eMail Response - Process Message', I had been getting the below error when entering to 'Create activity Process' step.(provided all the inputs per testmode.xml file)
    Error running sub-process 'eMail Response - Create Activity' at step 'Create Activity Process'.(SBL-BPR-00183)
    I increased the log level to 5 and got the below message in log file
    ObjMgrBusServiceLog    InvokeMethod    4    0000000251b51f04:0    2013-06-10 01:30:12    Begin: Business Service 'XML Hierarchy Converter' invoke method: 'DocToHier' at 12cc4240
    ObjMgrBusServiceLog    Error    1    0000000251b51f04:0    2013-06-10 01:30:12    (xmlcnvsv.cpp (548)) SBL-EAI-00246: XML Hierarchy Converter error - empty input message, expecting an XML document in <Value> of input arguments
    I was wondering I could not find 'XML Hierarchy Converter' business service in 'eMail Response - Process Message' and 'eMail Response - Create Activity' sub process.
    Can any body help me out in this regard.
    Thanks in advance..
    Jagadeesh

    Hi Naresh,
    yes, I am using the delete polling strategy. Here is the .jca file:
    <adapter-config name="Pozadavky" adapter="Database Adapter" wsdlLocation="Pozadavky.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
    <connection-factory location="eis/DB/PozadavkyConn" UIConnectionName="PozadavkyConn" adapterRef=""/>
    <endpoint-activation portType="Pozadavky_ptt" operation="receive">
    <activation-spec className="oracle.tip.adapter.db.DBActivationSpec">
    <property name="DescriptorName" value="Pozadavky.Pozadavky"/>
    <property name="QueryName" value="PozadavkySelect"/>
    <property name="MappingsMetaDataURL" value="Pozadavky-or-mappings.xml"/>
    <property name="PollingStrategy" value="DeletePollingStrategy"/>
    <property name="PollingInterval" value="120"/>
    <property name="MaxRaiseSize" value="1"/>
    <property name="MaxTransactionSize" value="10"/>
    <property name="NumberOfThreads" value="1"/>
    <property name="ReturnSingleResultSet" value="false"/>
    </activation-spec>
    </endpoint-activation>
    </adapter-config>

  • In the process of reformatting my macbook pro, I saved everything but my keyword list.  The keywords are with the images, but the total list I use under "Keywords" is not present.  Is there a way to re-create all my keywords I've used over the last 6 year

    In the process of reformatting my macbook pro, I saved everything but my keyword list.  The keywords are with the images, but the total list I use under "Keywords" is not present.  Is there a way to re-create all my keywords I've used over the last 6 years.

    I accomplished what I needed last night.  I remembered I had picked my favorite images from each year and put them in a "favorite" folder by year.  These folders included 500 to 1200 images per year.  I pulled up the folder for each year and highlighted all images and clicked on "Keywords" and all keywords used for all images were listed.  I made those keywords persistent.  It took me a while to realize I had to click on each keyword to make it persistent.  After doing this for all years, I assume 95% of all keywords I have used over the many years were back in my list.  I'm sure there is probably a more "technical" way to accomplish what I needed, but this seems to have worked.  I also exported my list into a word document and is saved on my hard drive.
    If I had not made folders with my favorite images for each year, I could not have used this method, so if you figure out a better way, I like to hear it.  Thanks for your comments and willingness to help.

  • No template found creating Tabs and Processes in HR Flexible Performance UI

    Dear Experts
    We will be using EHP4 Flexible Performance UI.
    I have created the sample performance template in PHAP_CATALOG and have transported this to our DEV playpen client.
    Within the config Master client I want to configure the u201CDefine Tabs and Process Configuration for Templateu2019 IMG node and after I log in it takes me to the web dynpro screen u201CWeb dynpro ABAP configuration for Appraisalsu201D, I get the error u201CNo template foundu201D.
    When I check the Help it says 1) to check the template has been created and 2) that the template has been released
    I checked and the template does exist in PHAP_CATALOG and has been released.
    Has anyone encountered this problem and has a way to fix this?
    Thanks
    Oliver

    Hi Maurice,
    Thanks for your quick reply.
    Yes the template has been definitely released.
    Yes Iu2019m using the same user to create the template and trying to do the process tabs u2013 I have SAP ALL Access.
    Also, when I transport this template from the DEV master client - to a DEV unit test client I can actual run the process template setupu2026u2026u2026u2026.
    Developer has checked the code and DEV Master client is the same as DEV Unit test clientu2026u2026u2026.interesting.
    Have you ever come across the issue where the source client where template has been created and released that you could not create the process tabs?
    Any other ideas how I could solve this?
    Many thanks
    Oliver

  • Create Material directly in active area without approval process ( Bypasing Staging)

    Hi Experts ,
       I have one requirement where Material need to be created directly in active area with out any approval process.
    So I need to bypass staging area data store.
    Please give your valuable input to achieve that.
    Thanks in advance.
    Regards,
    Samrat

    Hello,
    From the discussion above, I can understand this is a requirement. However, I would like to understand the reasoning behind this requirement. The whole point behind MDG is to avoid direct creation of master data and instead "govern" the process first. If you are going to create material, then use MM01 directly as Sanjay suggested.
    If you are looking for a web-based UI, you are better off looking for a standard Web Dynpro application (or create your own) instead of mis-using the MDG application.
    In any case, you can't completely by-pass the staging area. However, you can configure a single-step rule-based workflow such that the material goes into "activation" immediately. Keep in mind that the material will not be available immediately, but will take a few minutes depending on your system configuration until the material is activated completely in the system. Error handling, etc. will need to be done on the MDG layer which could prove to be an unnecessary burden should you decide to go this route.

  • "Business Activty template' in place of "Business activity " under "create"

    Hi Gurus,
    the matter is, In CRM7.0 we have copied standard "sales pro" role and customized it according to our requirement. same way we also created 'z'  Business activity from standard "0000"  and did all other customization as well like maintain category, assign category, reasons,goal everything necessary.
    Now when you login to CRM7.0 WEBUI , from Activity work centre, we click our 'z' business activity under "create".
    a popup window opens up and give stwo oprtions:
    1.interaction log
    2.Task
    (it is correct till here)
    now when i choose "interaction log" with an intention to see 'z' Business activity transaction, but to my surprise i see " 'z'business template which i never configured.
    but same transaction i open by going to "Search" option , then dragging "new" icon, my 'z' business activity opens up..
    can somebody help me understand why is it happening and how can i resolve this....
    where as in standard "salespro" role , if log-in everything is perfect no issues there.
    then where did i went wrong or missed.
    Please help it is critical...
    Thanks,
    G.one

    actually in CRM webui:
    there are two logical links:
    a)Activity (it represents Templates for Activity & task in GUI)
    b)Interaction logs (it represents Activity transaction types only).
    That's all we needed to know.
    Thanks,
    G.One

  • Error in creating activity from Account application ( from activity tab)

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

  • In TXN CO03, extract value for field "To Confirm" under tab "Qty/Activity"

    Hi,
    Can anyone help to extract value for field "To Confirm" under tab "QTY/ACTIVITIES" in tansaction CO03 at operatin level. There are three Activiti (CC-Set-up,CC-Labor Time & CC-Var-OH) under table control Activities. I need value of the field "To Confirm" for CC-Labor Time.
    From where I can fetch this value,
    1. Is this field available in some table?
    2. Is there any FM with which the same can be extracted.
    3. Any other method?
    Regards,
    Bibhuti.
    Edited by: bibhuti kumar on Feb 20, 2008 6:16 AM

    Hi,
    pls use below table's and get detals you want
    AFKO - Order header details
    AFVC - Order operation details
    AFVV - Order operation value/date's/qty details
    the relation is below
    Step1: AFKO; AUFNR-->AFKO-AUFPL
    Step2: AFVC; AFKO-AUFPL = AFVC-AUFPL
    take filed to APLZL,VORNR
    Step3: AFVV;AFKO-AUFPL=AFVV-AUFPL, AFVC-AUFPL = AFVV-AUFPL
    take filed to MGVRG,LMNGA,XMNGA,VGW02
    Step4: (MGVRG - (LMNGA+XMNGA)) * VGW02
    hope this will solve your problem
    Regards,
    Sankaran

Maybe you are looking for

  • Aperture as a Multi-User Digital Asset Management Tool

    Does anyone have any experience using Aperture in a multi-user environment? I'm trying to compare it to Cumulus by Canto which is designed as a multi-user tool. I realize that each user would have a copy of Aperture on their Mac, but are there other

  • Migo Gl Postings

    Hi all, I am an abaper who has been saddled with the responsibilty of doing something which i think could be done through functional customizing. My Challenge Goes thus I have a requirement to post  an accounting entry into 2 gl accounts when a migo

  • Entry missing in Integration Engine (sxmb_moni)

    Dear all, We have a Synchronous scenario from SAP ECC --PI -- Database. A synchronous outbound proxy is trigeered at EC to send some data to PI and from PI  to Database. We are not able to find an entry in PI-SXMB_MONI.Where as , wer are able to see

  • Multiple STO document types conflict in ME59N

    Folks, I have the following  scenario's: 1) PReq NB with item category U -> intercompany STO NB (depends on the supplying and receiving plant) document types gets determined correctly through STO document type customizing (T161W) 2) Preq NB with item

  • Help an aussie spec a system

    Hallo y'all. Building a new system in the next week or so, and would like some advice on optimising the value of my build to take advantage of Adobe Premiere Elements 8. The main initial task will be editting some low quality MPEGs of 9hrs/10GB of my