Transfer Posting problem via MIGO MVT 311

While doing transfer posting through MIGO MVT 311 against reservation, we are facing the problem displayed below:-
"Check table XMRES: entry 0000000000 0001   does not exist
Message no. M7001
Diagnosis
In table XMRES the entry 0000000000 0001   is missing."

You cannot use 311 .311 is Moving material from one storage location to another -- Un restricted to another, Reserved stock can be  moved by converting in to another movement type  .Do movement 341in mb1c , if 341 is not there then go to moment type control
data and create particular moment type and run that for reservation no
document created and in valuation area

Similar Messages

  • Transfer Posting problem with "sales order stock type" status

    Hello, i have this problem, i spend 2 days looking in the forum, but
    nothing, the question is:
    The SD users sell an item, and the item get the status of "sales order
    stock type" in the MMBE, but at the same time, the MM user made a
    trasfer posting in two steps, he take out material with transaction
    MIGO, mvt 351, to another plant, but the materail was already
    compromised with SD; now he cant sell the items, because he dont
    realize that the material was in sales order stock type, and he already
    transfer it to another plant. how can i block this? if a material in
    MMBE is with "sales order stock type" status, he CANT transfer it with
    351 mvt type, what config i have to make?  thanks a lot!!!!
    now the quantity of the unrestict use
    stock is lower than the sales order, we dont want to have this issue,
    thanks again
    Edited by: Alex Arti on Aug 6, 2008 7:14 PM
    Edited by: Alex Arti on Aug 6, 2008 7:16 PM

    Hi!
    Have you recently upgraded to EHP4? In this case, please, check the note 1441195. This note should solve the issue that you are reporting.
    I hope this helps,
    Esther.

  • Supply Area Goods Transfer Posting Problem

    Dear SAP Gurus,
    I am facing a problem in which material has to be issued by transfer posting through movement type 541 to Subcontracting Vendor.
    The material is to be issued from Supplying Area.
    When transfer posting is initiated for the PO, material is not getting issued from Supplying area whereas all other BOM materials are being picked up.
    Please guide me where can this problem be?
    Thanks & Regards
    Manav Anand

    Hi,
    I hope you are using ME2O or MB1B transaction with 541 mvt type. As per Subcontracting scenario you are supposed to sent the BOM mateials only to your subcontracting vendor and finally supposed to get the material which is raised in the PO.
    Now please let us know where you have been stuck so that we will be able to help by providing our explanations.
    Regards,
    DilL

  • Transfer posting problem in  material

    Hi Experts,
    Whenever we receive any  material ( quality rejection from
    plant A) at location  X in film plant A, we can not do Transfer
    posting of this material to crushing area ( location Y in plant A).
    While doing Transfer posting we get an error " Pallet -
    not consumed
    entirely ".
    We can not transfer this material to any other location.
    What could be the problem?
    Lokesh

    Hi,
    From the message it seems like in your system some message is activated. this might be due to the requirement was given that entire batch is to be consumed and partial is not allowed. please check this it should have been done through user exit or by some enhancement.

  • While doing transfer posting  in  Tcode MIGO,with moment type 413e

    I am doing transfer posting with moment type 413 ,E
    changing the stock from one sale order to another sale order .
    and  the material is not related to planning .mrp type ND
    I am getting  warning messege
    "sale order (sobkz= ) is not  for this goods moment "
    Can any body help me  to remove this msg
    thanks in advance
    Srinivas

    when a cost center is created with KS01 transaction, then the user has to enter a validity period.
    So this cost center is just not valid for the given date.
    Check in KS03 and ask  the CO consultant to do the necessary actions

  • Mb1b Transfer posting problem (urgent)

    hello
    i m using movement type 309.
    in the second screen they are entering batch..so based on that batch i m getting matnr and quantity in that batch.
    In my ZBAPI ..
    SELECT matnr clabs FROM mchb
                           INTO TABLE it_mb1b
                           WHERE werks = plant      
                           AND   lgort = send_stloc 
                           AND   charg = batch.    
    In the second line item..They are entering scrap material which the data has to get from MARD table. There is no batch exists for this second line item.
    i m writing query to get the data from mard like this:-
      SELECT matnr labst FROM mard
             INTO CORRESPONDING FIELDS OF TABLE it_mard
                           WHERE matnr LIKE '%-SCRAP'
                           AND   werks = plant     
                           AND   lgort = '2200'. 
    So, how to fill this second line item in BAPI.
    For the first line item i m using it_gmitem-entry_qnt in the BAPI item list.  This is for the first item in second screen.
    Similarly how to fill the second line item in BAPI_GOODSMVT_CREATE.

    FUNCTION zbapi_mb1b_new.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(MOVE_TYPE) LIKE  BAPI2017_GM_ITEM_CREATE-MOVE_TYPE DEFAULT
    *"       '309'
    *"     VALUE(PLANT) LIKE  BAPI2017_GM_ITEM_CREATE-PLANT DEFAULT '2000'
    *"     VALUE(SEND_STLOC) LIKE  BAPI2017_GM_ITEM_CREATE-STGE_LOC
    *"     VALUE(RECV_STLOC) LIKE  BAPI2017_GM_ITEM_CREATE-MOVE_STLOC
    *"     VALUE(MOVE_PLANT) LIKE  BAPI2017_GM_ITEM_CREATE-MOVE_PLANT
    *"       DEFAULT '2000'
    *"     VALUE(BATCH) LIKE  BAPI2017_GM_ITEM_CREATE-BATCH
    *"     VALUE(QUAN_MEASURE) LIKE  BAPI2017_GM_ITEM_CREATE-QUANTITY
    *"  EXPORTING
    *"     VALUE(MAT_DOC) LIKE  BAPI2017_GM_HEAD_RET-MAT_DOC
    *"  TABLES
    *"      RETURN STRUCTURE  BAPIRET2
      DATA : ls_quan1 TYPE p DECIMALS 3,
             ls_quan2 TYPE p DECIMALS 3,
             ls_quan3 TYPE p DECIMALS 3,
             ls_quan4 TYPE p DECIMALS 3,
             ls_quan5 TYPE p DECIMALS 3,
             ls_quan6 TYPE p DECIMALS 3.
      DATA : it_mard LIKE mard OCCURS 0 WITH HEADER LINE.
      gmhead-pstng_date = sy-datum.  "Posting date defaulted to system date
      gmhead-doc_date   = sy-datum.  "Document date defaulted to system date
      gmcode-gm_code    = '04'.       "Transfer Posting (MB1B)
      SELECT matnr clabs FROM mchb
                           INTO TABLE it_mb1b
                           WHERE werks = plant       "Plant
                           AND   lgort = send_stloc  "Storage location
                           AND   charg = batch.      "Batch Number
      SELECT matnr labst FROM mard
                           INTO CORRESPONDING FIELDS OF TABLE it_mard
                           WHERE matnr LIKE '%-SCRAP'
                           AND   werks = plant      "Plant
                           AND   lgort = '2200'.    "2094 in production
      LOOP AT it_mb1b INTO wa_mb1b.
        ls_quan2 = ( 5 / 100 ) * wa_mb1b-clabs.
        ls_quan3 = wa_mb1b-clabs + ls_quan2.
        ls_quan4 = wa_mb1b-clabs - ls_quan2.
        IF ( quan_measure EQ wa_mb1b-clabs ).
          ls_quan6 = wa_mb1b-clabs.
       ELSEIF ( quan_measure > wa_mb1b-clabs AND quan_measure <= ls_quan3 ).
          ls_quan5 = quan_measure - wa_mb1b-clabs.  "difference
          READ TABLE it_mard WITH KEY matnr0(3) = wa_mb1b-matnr0(3).
          IF sy-subrc EQ 0.
            it_mard-labst = it_mard-labst - ls_quan5.
            MODIFY it_mard TRANSPORTING labst WHERE
                             matnr0(3) = wa_mb1b-matnr0(3).
          ELSE.
          ENDIF.
          MODIFY mard FROM TABLE it_mard.
          CLEAR it_mard.
          ls_quan6 = wa_mb1b-clabs + ls_quan5.
       ELSEIF ( quan_measure < wa_mb1b-clabs AND quan_measure <= ls_quan4 ).
          ls_quan5 = wa_mb1b-clabs - quan_measure.
          it_mard-labst = it_mard-labst + ls_quan5.
          MODIFY it_mard TRANSPORTING labst WHERE
                              matnr0(3) = wa_mb1b-matnr0(3).
          MODIFY mard FROM it_mard.
          ls_quan6 = wa_mb1b-clabs.
       ENDIF.
        it_gmitem-move_type    = move_type.      "Movement type
        it_gmitem-plant        = plant.          "Plant
        it_gmitem-stge_loc     = send_stloc.     "Storage Location
        it_gmitem-move_plant   = move_plant.     "Receiving Plant
        it_gmitem-move_stloc   = recv_stloc.     "Receiving storage location
        it_gmitem-batch        = batch.          "Batch Number
        it_gmitem-material     = wa_mb1b-matnr.  "Material Number
        it_gmitem-move_mat     = wa_mb1b-matnr.  "Receiving/issuing material
        it_gmitem-entry_qnt   = ls_quan6.        "Quantity in unit of entry
        APPEND it_gmitem.
      ENDLOOP.
      CLEAR return.
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header             = gmhead
          goodsmvt_code               = gmcode
      TESTRUN                     = 'X'
       IMPORTING
      GOODSMVT_HEADRET            =
         materialdocument            = mat_doc
      MATDOCUMENTYEAR             =
        TABLES
          goodsmvt_item               = it_gmitem
      GOODSMVT_SERIALNUMBER       =
          return                      = return
      IF NOT mat_doc IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
       EXPORTING
         wait          = 'X'
    IMPORTING
      RETURN        =
      ELSE.
      ENDIF.
    ENDFUNCTION.

  • Transfer Posting-Storage Loc-Storage Loc (311) with ref to  Material Doct

    Hi Experts,
    I have a Requirement of doing Transfer Posting from one Storage Location to Other Storage Location within Plant with reference to a Material Document which is Goods Receipt against PO.
    With given reference (Material document u2013 GR against PO) system should copy all items from Material Document and Propose for Transfer Posting.
    I am aware that this feature is not available in standard R/3.
    Can anyone tell me how to achieve this by Development?
    Any Input is highly appreciated.
    Thanks and Regards,
    Selvakumar. M

    Hi
    Use the field material slip (to enter material document)
    Validate the material slip field with the help of ABAP.
    If really material document exists it will pick the details from the material document.
    Regards,
    Raman

  • Transfer Posting-Storage Loc-Storage Loc (311) with Ref to Material Documnt

    Hi Experts,
    I have a Requirement of doing Transfer Posting from one Storage Location to Other Storage Location within Plant with reference to a Material Document which is Goods Receipt against PO.
    With given reference (Material document u2013 GR against PO) system should copy all items from Material Document and Propose for Transfer Posting.
    I am aware that this feature is not available in standard R/3.
    Can anyone tell me how to achieve this by Development?
    Any Input is highly appreciated.
    Thanks and Regards,
    Selvakumar. M

    Hi,
    Thanks for your Reply.
    I have seen the documentation of "BAPI_GOODSMVT_CREATE" and it was mentioned only for following Scenarios.
    1) Transfer posting without reference to a reservation
    2) Transfer posting with reference to a reservation
    My requirement is Transfer Posting with reference to a Material Document (Material Document is GR against PO) in which system should copy all documents from refernce.
    Please Tell me how to develop with the above BAPI.
    Regards,
    Selva

  • MIGO Mvt 311 no batch copy to receiving location

    I tried to perform Mvt typ 311 to transfer batch stock from 1 location to another. I have entered batch number in source location and expect the receiving location has the same batch proposed automatically, but it is not the case.
    I tried Mvt Type 311 for same item and batch in MB1B, the system automatically proposed the source batch as receiving location batch.
    Any reason for that ?

    I did not make it clear in my question.
    The problem arises in MIGO which Mvt Type 311 does not copy batch from source to receiving storage location. However, in MB1B, there is no such problem.

  • Posting problem in MIGO

    Hi experts,
    When ever i am doing a goods receive in migo its showing an error.
    " Account 810150 requires an assignment to a CO object"
    what is the cause of this? can you please help me out to fix this   problem.
    Thanks & Regards.

    hi chandra...
    i think.......
    GL Account 810150 is an Cost Element GL..
    so its asking you assign the Cost center
    <removed_by_moderator>
    regards
    deva
    Edited by: Julius Bussche on Aug 21, 2008 10:22 AM

  • Error in transfer posting (MIGO,MB1C,MB1B)

    Hi Expert,
    Been having trouble in all my transfer posting both in migo, mb1c, mb1b. the error always say "internal program error at: Text for characteristic'" can you tell me what cause this error on my material and how could i fixed it,.
    Thanks and Regards,

    You should contact your ABAPer,by debugging he will tell you the real problem.

  • Transfer Posting 311

    Hi All
    I want to carry out Transfer Posting of Storage location using 311 against the production order of receiving storage location.
    How can we achieve this scenerio.
    Tausif

    dear that option of production oreder in MB1B transaction is only for ref purpose to adopt the no of materials to avoid tedious work of entring material one by one
    instead of doing that why dont u try the following
    while creating production order give store loc which u want then while  confirming the production order u will recieve material in required storage locn no need of 311
    regards,
    snb

  • Stock transport Vs Transfer posting

    Hi,
    I want to know the exact difference btw Stock transport & Transfer posting with valuation, accounting & mvt types.
    This would be vry helpful to me.
    Thanks
    Vicky

    list of movement types
    601 GD goods issue:delvy
    602 RE goods deliv. rev.
    603 TF rem.fm.stor.to pl
    604 TR rem.fm.stor.to pl
    605 TF pl.in stor.in pl.
    606 TR pl.in stor.in pl.
    621 GI ret.pack.:lending
    622 GI ret.pack:ret.del.
    623 GI iss:cust.ret.pack
    624 GI rcpt:cust.re.pack
    631 GI consgmt: lending
    632 GI consgmt:ret.delvy
    633 GI iss: cust.consgmt
    634 GI rcpt:cust.consgmt
    635 TF consgmt lending
    636 TR consgmt ret. del.
    641 TF to stck in trans.
    642 TR to stck in trans.
    643 TF to cross company
    644 TR to cross company
    645 TF cross company
    646 TR cross company
    647 TF to stck in trans.
    648 TR to stck in trans.
    651 GD ret.del. returns
    652
    653 GD returns unrestr.
    654 GD returns unr. rev.
    655 GD returns QI
    656 GD returns QI rev.
    657 GD returns blocked
    658 GD returns blk. rev.
    661 GI returns to vendor
    662 RE ret. to vdr revrs
    671 TR to stck in trans.
    672 TF to stck in trans.
    673 TF to cross company
    674 TR to cross company
    675 TR cross company
    676 TF cross company
    677 TR to stck in trans.
    678 TF to stck in trans.
    6A1 TF GI1
    6A2 TR GI1
    6A3 TF CC GI1
    6A4 TR CC GI1
    6A5 TF CC GI1
    6A6 TR CC GI1
    6A7 TF GI1
    6A8 TR GI1
    6B1 TF GI2
    6B2 TR GI2
    6B3 TF CC GI2
    6B4 TR CC GI2
    6B5 TF CC GI2
    6B6 TR CC GI2
    6B7 TF GI2
    6B8 TR GI2
    6K5 TF GI2 consi
    6K6 TR GI2 consi
    6W5 TF GI1 consi
    6W6 TR GI1 consi
    701 GR phys.inv.: whse
    702 GI phys.inv.: whse
    703 GR phys.inv: QI
    704 GI phys.inv: QI
    707 GR phys.inv.:blocked
    708 GI phys.inv.:blocked
    711 GI InvDiff.:whouse
    712 GR InvDiff.:wrhouse
    713 GI InvDiff: QI
    714 GR InvDiff: QI
    715 GI InvDiff.:returns
    716 GR InvDiff.:returns
    717 GI InvDiff.: blocked
    718 GR InvDiff.: blocked
    721 SlsVal.rec.n.afftMgs
    722 SlsVal.iss.n.afftMgs
    731 SlsVal.rec. afftgMgs
    732 SlsVal.iss. afftgMgs
    101 GR goods receipt
    102 GR for PO reversal
    103 GR into blocked stck
    104 GR to blocked rev.
    105 GR from blocked stck
    106 GR from blocked rev.
    121 GR subseq. adjustm.
    122 RE return to vendor
    123 RE rtrn vendor rev.
    124 GR rtrn blocked stck
    125 GR rtn blkd stck rev
    131 Goods receipt
    132 Goods receipt
    141 GR G subseq. adjustm
    142 GR G subseq. adjustm
    161 GR returns
    162 GR rtrns reversal
    201 GI for cost center
    202 RE for cost center
    221 GI for project
    222 RE for project
    231 GI for sales order
    232 RE for sales order
    241 GI for asset
    242 RE for asset
    251 GI for sales
    252 RE for sales
    261 GI for order
    262 RE for order
    281 GI for network
    282 RE for network
    291 GI all acc. assigmts
    292 RE all acct assigmts
    301 TF tfr.plnt.to plnt.
    302 TR tfr.plnt.to plnt.
    303 TF rem.fm.stor.to pl
    304 TR rem.fm.stor.to pl
    305 TF pl.in stor.in pl.
    306 TR pl.in stor.in pl.
    309 TF tfr.ps.mat.to mat
    310 TR tfr.ps.mat.to mat
    311 TF tfr. within plant
    312 TR transfer in plant
    313 TF rem.fm.str.toSLoc
    314 TR rem.fm.str.toSLoc
    315 TF pl.in str.in SLoc
    316 TR pl.in stor.inSLoc
    317 Create struct. mat.
    318 RE create struc. mat
    319 Split structured mat
    320 RE split struct.mat.
    321 TF quality to unrest
    322 TR quality to unr.
    323 TF quality in plant
    324 TR quality in plant
    325 TF blocked in plant
    326 TR blocked in plant
    331 GI to sampling QI
    332 RE to sampling QI
    333 GI to sampling unre.
    334 RE to sampling unre.
    335 GI to sampl. blocked
    336 RE to sampling blkd
    340 Batch revaluation
    341 TF unrestr.to restr.
    342 TF unr. to rstricted
    343 TF blocked to unre.
    344 TR blocked to unre.
    349 TF blocked to QI
    350 TR blocked to QI
    351 TF to stck in trans.
    352 TR to stck in trans.
    401 TP own from sls.ord.
    402 TP own to sales ord.
    403 TP own from consgt.
    404 TP own to consgt.
    405 TP own from project
    406 TP own to project
    411 TP own to own
    412 Reversal own to own
    413 TF SLoc to sls order
    414 TR SLoc to sls order
    415 TF SLoc to project
    416 TR SLoc to proj.
    441 TP unrstr.to tiedEmp
    442 TP tiedEmp.to unrstr
    451 GI returns
    452 RE returns reversal
    453 TP returns to own
    454 TP own to returns
    455 TF st.tfr. returns
    456 TR st.tfr. returns
    457 TP Returns to own QI
    458 TP Own QI to returns
    459 TP Ret. to own blckd
    460 TP Own blckd to ret.
    501 GI receipt w/o PO
    502 RE receipt w/o PO
    503 GI receipt to QI
    504 RE receipt to QI
    505 GI receipt to blockd
    506 RE receipt to blockd
    511 GI deliv. w/o charge
    512 RE deliv. w/o charge
    521 GI receipt w/o PrOrd
    522 RE receipt w/o PrOrd
    523 GI quality w/o PrOrd
    524 RE quality w/o PrOrd
    525 GI blkd w/o prod.ord
    526 RE blocked w/o PrOrd
    531 GI by-product
    532 RE by-product
    541 GI whse to subc.stck
    542 RE subctrStck toWhse
    543 GI issue sls.ord.st.
    544 GI receipt sls.or.st
    545 GI rcpt SC by-prod.
    546 GI issue SC by-prod.
    551 GI scrap for Defects
    552 RE scrapping defects
    553 GI scrapping QI
    554 RE scrapping QI
    555 GI scrapping blocked
    556 RE scrapping blocked
    557 GI adjust. transit
    558 GI adjust. transit
    561 GI entry of st. bals
    562 RE entry of st.bals.
    563 GI EntrStBals: QI
    564 RE EntrStBals: QI
    565 GI EntrStBals: blckd
    566 RE EntrStBals: blckd
    571 GI receipt assembly
    572 RE receipt assembly
    573 GI rcpt QI assembly
    574 RE rcpt QI assembly
    575 GI rcpt blkd assmbly
    576 RE rcpt blkd assmbly
    581 GI by-prod. network
    582 RE by-prod. network
    To see the list of goods movement types
    Step 1) Run SPRO command/TC
    Step 2) Then move to "SAP Reference IMG" screen
    Step 3) Then navigate following path:
    IMG --> Materials Management --> Inventory Management and Physical Inventory --> Movement Types --> Copy, Change Movement types
    Here with "Copy, Change Movement types" option a help tutorial is available (rectangular blue color icon). In that go to "Further information" section where you can find a big list of movement types with some brief explanation.

  • MIGO Automatic Transfer Posting  (Mvt 101 ) to (mvt 301)

    Hi Experts,
        My requirement is : MIGO - once  performed goods receipt (MvT 101) in receiving plant then transfer posting will perform automatically MB1B (MvT 301) to destination plant/ storage location based on shipping address.
    This should transfer after updating tables (which is after save for Mvt 101 ).  For this I got 1 Badi ' MB_DOCUMENT_BADI'.
    I have used  methods MB_DOCUMENT_UPDATE   and 1 User Exit mb_CF0001  (EXIT_SAPLMIGO_001 or EXIT_SAPMM07M_001 ).
    These 2 will trigger after updating tables, but  the problem is tables are locked especially plant table, so my BAPI  BAPI_GOODSMVt_CREAte is throwing error (says plant is locked).   I even tried DEQUE_ALL  still unable to unlock tables. when I come out of these 2 spots then only tables are unlocked by SAP.
    Appreciated for right answer.
    Regards,
    Sri
    Edited by: srijaS on Aug 17, 2009 1:08 AM
    Edited by: srijaS on Aug 17, 2009 1:09 AM

    Try calling Bapi with 'IN UPDATE TASK' or 'IN  BACKGROUND TASK "

  • Transfer Posting MB1B with MvT 311

    Dear experts,
    I have 1 issue. For example, to do transfer posting from Sloc '1201' to Sloc '10F1' and '10F1' is in WM. With movement '311' , a transfer requirement is automatically created, followed by a transfer order creation screen.
    I have automate all these process using 'BAPI_GOODSMVT_CREATE', 'L_TO_CREATE_TR' & 'L_TO_CONFIRM'. And it works fine.
    My question is, physically the user is actually do the stock placement first to the storage bin then only they create a transfer posting. At the point of stock placement, the end user do not know the storage location to move stock. If I automate this process to create TO first then only do transfer posting, is it a correct way? I want to use FM 'L_TO_CREATE_SINGLE' & 'L_TO_CONFIRM'. Please advise.
    Thank you.

    Hello Hasniza,
    Yes you could use this function modules:
    L_TO_CREATE_SINGLE                                                       
    Create a transfer order with one item                                                                               
    L_TO_CREATE_MOVE_SU                                                      
    Create a transfer order to move a storage unit                                                                               
    L_TO_CREATE_TR                                                           
    Create a transfer order for a transfer requirement                                                                               
    L_TO_CONFIRM                                                             
    Confirm a transfer order                                                
    Please check the following link:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/c6/f83a294afa11d182b90000e829fbfe/frameset.htm
    You could do that by using the user exit EXIT_SAPLL03T_002 not directly via function module.
    Please also pay attention to the documentation of enhancement MWMTO002: 
    "... Therefore, you must never start a transfer order creation via a function module."                                                       
    But you call FM L_TO_CREATE_SINGLE inside of this exit.   
    I hope it helps you.
    Regards,
    Fábio Almeida
    MM Consultant

Maybe you are looking for

  • BAPI works in test but not in production

    3rd party software uses BAPI to input data into SAP. This works in test but not in production. We have checked that user 3rd party software uses have same rights in both systems. BAPI is standard SAP BAPI. We can connect to production with SM59. Is t

  • Discoverer 10g E-Business Release 12 Vision

    I am currently setting up Discoverer 10.1.2 for use with Oracle E-Business Suite Release 12, as per Metalink document 373634.1. I have reached the point where it's time to create a fresh End User Layer. However section 5.6 of the above document state

  • Referenceing numbered list items

    Hi all, I have been tasked to make a very long numbered list and I'm using Pages '09. The list may ultimately have 150 to 200 numbered items. I would like to be able to reference a list item from another list item. 25. Started something. 50. Finished

  • Configuring Role Expert Web services for Compliance Calibrator

    Hi @all, performing the configuration of Virsa Role Expert I've got a question regarding the settings for the various Web Service Info. for the Compliance Calibrator. Apart from the Web Service URL, user name and password need to be declared. The use

  • Problem with AND processer in process chains

    Hi friends, In BI 7.0, when creating a process chain by linking 2 DTPs with AND processor, two AND processor are showing. Can anyone please suggest how to get only one AND processor after combining also. babu