Creation of Routing

Hi All
       In my current scenario am having a Roll of 1.2m width, this roll is slit down to 2-3 different sized child rolls along the length with different widths like 0.5m, 0.3m & 0.4m (1.2=0.50.30.4). These child rolls are used are treated as SFs & from each roll FGs are cut along the length of each child roll; from each child roll(SF) a sprecific FG is taken out. The flow of requirement flows as given:
Requirement of FG gives rise to requirement of Child Roll(SF) which further gives rise to requirement of mother roll(ROH). 
My problem is that when am having requirement of 0.5m width child roll I would slit the mother roll and with that am having other child rolls as well for which currently am not having any requirement, but later on other child roll's requirement would be there, am unable to understand how to make routing for these child rolls & how to make BOM of the same.
Waiting for your valuable inputs.
Regards,
J K Tharwani

Hi,
As per your requirement, FG is Make to order scenario.Strategy 20. So sales order triggers the production.
When MRP run, dependent requirement will create.In this SFG 0.5m roll consider Make to order scenario. It will trigger the requirement of Mother roll.
Consider 0.4,0.3 Make to stock scenario.Use Strategy 10 in mrp 3 view.
BOM for FG:
Header - FG 0.5 Roll, qty 1 roll
Item - SFG 0.5 roll , base qty 1 roll.
BOM for SFG:    Header - SFG 0.5 Roll, qty 1 roll
                           Item  0010 - Mother roll , base qty 1 roll.
                                   0020 - SFG 0.4 roll, base qty -1 roll (co-product)
                                    0030 - SFG 0.3 roll, base qty -1 roll ( co-product)
Routing for FG: Create as normal routing with component assignment 0.5 roll.
Routing for SFG: Create as normal routing with component assignment Mother roll.
Process: When sale order comes system create dependent req for SFG 0.5 roll and also below level ie, mother roll against sales order.
Do GR for mother roll against P.O by MIGO.
While processing SFG (0.5) production order  0.4,0.3 co-product will produce.
Do GR for all SFG 0.5, 0.4, 0.3 roll.To produce FG 0.5 roll issue SFG 0.5 roll .
When requirement comes for other FG of 0.4, 0.3 roll, issue these SFG which you produced from mother roll.
System will show you the error message, because these stocks are assigned to sales order of FG 0.5 roll.
So make MB1B 411 E mvt. Now sales order stock convert to unrestricted stock.Issue the SFG. Do GR for FG 0.4 roll.Remaining as like as regular process.
Note: Create BOM for FG 0.4 roll & FG 0.3 roll with item of SFG 0.4 roll, SFG 0.3 roll respectively.
Regards,
Dharma

Similar Messages

  • Problem with creation of routing

    Dear All,
    I use below BAPI for creation of routing. BAPI is succeddful but when i go to CS03 and display, work center, plant, control key information is not filled.  But header details are filled. Do you have any idea why it happens ? Am i not filling some parameters ?
    Please let me know.
    CLEAR : LR_BAPIRET2,
          LT_BAPIRET2.
    CLEAR LT_TASK.
    LR_TASK-VALID_FROM = SY-DATUM.
    LR_TASK-VALID_TO_DATE = '99991231'.
    LR_TASK-TASK_LIST_USAGE = '1'.
    LR_TASK-PLANT = '1830'.
    LR_TASK-TASK_LIST_STATUS = '4'.
    LR_TASK-TASK_MEASURE_UNIT = 'PC'.
    LR_TASK-DESCRIPTION = 'TEST1'.
    LR_TASK-LOT_SIZE_FROM = '0.000'.
    LR_TASK-LOT_SIZE_TO = '0.000'.
    APPEND LR_TASK TO LT_TASK.
    CLEAR : LR_MATERIALTASKALLOCATION,
          LT_MATERIALTASKALLOCATION.
    LR_MATERIALTASKALLOCATION-MATERIAL = 'TEST-0008'.
    LR_MATERIALTASKALLOCATION-PLANT = '1830'.
    LR_MATERIALTASKALLOCATION-VALID_FROM = SY-DATUM.
    APPEND LR_MATERIALTASKALLOCATION TO LT_MATERIALTASKALLOCATION.
    CLEAR : LR_OPERATION,
          LT_OPERATION.
    LR_OPERATION-WORK_CNTR = 'HCPA001'.
    LR_OPERATION-PLANT = '1830'.
    LR_OPERATION-CONTROL_KEY = 'PP01'.
    LR_OPERATION-BASE_QUANTITY = '1.000'.
    LR_OPERATION-VALID_FROM = SY-DATUM.
    LR_OPERATION-SEQUENCE_NO = '0'.
    LR_OPERATION-OBJ_ID = '00000000'.
    *LR_OPERATION-ACTIVITY = '0010'.
    LR_OPERATION-DESCRIPTION = 'TEST'.
    APPEND LR_OPERATION TO LT_OPERATION.
    CALL FUNCTION 'BAPI_ROUTING_CREATE'
    EXPORTING
      TESTRUN                      = ' '
      PROFILE                      =
      BOMUSAGE                     = 'X'
      APPLICATION                  =
    IMPORTING
      GROUP                        =
      GROUPCOUNTER                 =
      TABLES
        TASK                         = LT_TASK
        MATERIALTASKALLOCATION       = LT_MATERIALTASKALLOCATION
        SEQUENCE                     = LT_SEQUENCE
        OPERATION                    = LT_OPERATION
      SUBOPERATION                 =
      REFERENCEOPERATION           =
      WORKCENTERREFERENCE          =
      COMPONENTALLOCATION          =
      PRODUCTIONRESOURCE           =
      INSPCHARACTERISTIC           =
      TEXTALLOCATION               =
      TEXT                         =
        RETURN                       = LT_BAPIRET2
    LOOP AT LT_BAPIRET2 INTO LR_BAPIRET2 WHERE TYPE = 'E' OR
                                           TYPE = 'A'.
      LF_ROUTING_ERROR = 'X'.
    ENDLOOP.
    IF LF_ROUTING_ERROR NE 'X'.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            WAIT          =
          IMPORTING
            RETURN        =
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'
        IMPORTING
          RETURN        =
    ENDIF.

    Sorry.
    CLEAR : LR_BAPIRET2,
          LT_BAPIRET2.
    CLEAR LT_TASK.
    LR_TASK-VALID_FROM = SY-DATUM.
    LR_TASK-VALID_TO_DATE = '99991231'.
    LR_TASK-TASK_LIST_USAGE = '1'.
    LR_TASK-PLANT = '1830'.
    LR_TASK-TASK_LIST_STATUS = '4'.
    LR_TASK-TASK_MEASURE_UNIT = 'PC'.
    LR_TASK-DESCRIPTION = 'TEST1'.
    LR_TASK-LOT_SIZE_FROM = '0.000'.
    LR_TASK-LOT_SIZE_TO = '0.000'.
    APPEND LR_TASK TO LT_TASK.
    CLEAR : LR_MATERIALTASKALLOCATION,
          LT_MATERIALTASKALLOCATION.
    LR_MATERIALTASKALLOCATION-MATERIAL = 'TEST-0008'.
    LR_MATERIALTASKALLOCATION-PLANT = '1830'.
    LR_MATERIALTASKALLOCATION-VALID_FROM = SY-DATUM.
    APPEND LR_MATERIALTASKALLOCATION TO LT_MATERIALTASKALLOCATION.
    *CLEAR : LR_SEQUENCE,
    *      LT_SEQUENCE.
    *LR_SEQUENCE-SEQUENCE_NO = '0'.
    *LR_SEQUENCE-SEQUENCE_CATEGORY = '0'.
    *LR_SEQUENCE-ALIGNMENT_KEY_FOR_SCHEDULING = '2'.
    *APPEND LR_SEQUENCE TO LT_SEQUENCE.
    CLEAR : LR_OPERATION,
          LT_OPERATION.
    LR_OPERATION-WORK_CNTR = 'HCPA001'.
    LR_OPERATION-PLANT = '1830'.
    LR_OPERATION-CONTROL_KEY = 'PP01'.
    LR_OPERATION-BASE_QUANTITY = '1.000'.
    LR_OPERATION-VALID_FROM = SY-DATUM.
    LR_OPERATION-SEQUENCE_NO = '0'.
    LR_OPERATION-OBJ_ID = '00000000'.
    *LR_OPERATION-ACTIVITY = '0010'.
    LR_OPERATION-DESCRIPTION = 'TEST'.
    APPEND LR_OPERATION TO LT_OPERATION.
    CALL FUNCTION 'BAPI_ROUTING_CREATE'
    *  EXPORTING
    *   TESTRUN                      = ' '
    *   PROFILE                      =
    *   BOMUSAGE                     = 'X'
    *   APPLICATION                  =
    * IMPORTING
    *   GROUP                        =
    *   GROUPCOUNTER                 =
      TABLES
        TASK                         = LT_TASK
        MATERIALTASKALLOCATION       = LT_MATERIALTASKALLOCATION
        SEQUENCE                     = LT_SEQUENCE
        OPERATION                    = LT_OPERATION
    *   SUBOPERATION                 =
    *   REFERENCEOPERATION           =
    *   WORKCENTERREFERENCE          =
    *   COMPONENTALLOCATION          =
    *   PRODUCTIONRESOURCE           =
    *   INSPCHARACTERISTIC           =
    *   TEXTALLOCATION               =
    *   TEXT                         =
        RETURN                       = LT_BAPIRET2
    LOOP AT LT_BAPIRET2 INTO LR_BAPIRET2 WHERE TYPE = 'E' OR
                                           TYPE = 'A'.
      LF_ROUTING_ERROR = 'X'.
    ENDLOOP.
    IF LF_ROUTING_ERROR NE 'X'.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    *       EXPORTING
    *         WAIT          =
    *       IMPORTING
    *         RETURN        =
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'
    *     IMPORTING
    *       RETURN        =
    ENDIF.

  • DIR creation from routing

    Hello All,
    I have a requirement to generate a document in SAP DMS (CV01N) for the assembly instruction using the process steps from routing(CA01).This would include inserting an assembly picture (JPEG) into original file which would reside in DMS and would link back to routing using the object link. The request for this process was to avoid the manual creation of the worksheet from routing. The series of steps in routing would be pulled into a excel document inside a DIR at click of a button from the routing screen. Updating the routing from the DIR screen should be blocked wit an error message.
    Please let me know if you guys have come across such requirements and what could be the possible solutions.
    Thanks in advance,
    P-

    Hi Paddy,
    For this requirement a z-develipment needs to be done with help of respective screen exits. You need to consult with Abap'r. In standard environment it's not feasible.
    Hope this will help.
    Regards,
    Ravindra

  • Creation of routing using BAPI_ROUTING_CREATE

    Hi,
    I need to create routing using BAPI. I am using BAPI_ROUTING_CREATE. My routing is not saved. I am using BAPI_TRANSACTION_COMMIT  also when message type is 'S', after Routing is created. But Still my routing is not saved. I can see successfull message as N/50003801/01 is created .
    I already spent lot of time on this, and gone thru coding available in google search, still no use. I debug BAPI couple if timings but didnot find anything.
    I even tried using SE37 directly by Sequence execution of both BAPI_ROUTING_CREATE & BAPI_TRANSACTION_COMMIT, no use. i tried different combinations like by giving input values to INPUT PARAMETERS OF BAPI_ROUTING_CREATE giving BOM usage, without BOM usage, TESTRUN value as 'X' and as SPACE.
    I even gone thru this Func. Module /SAPMP/BAPI_ROUTING_PROCESS which directly calls BAPI_ROUTING_CREATE inside it, but no use. I see many people is giving solution as BAPI_TRANSACTION_COMMIT, but I really think that is not problem.
    Does any one have any idea on this issue.
    Thanks in Advance

    Hi Cthota,
    Indeed, TESTRUN must be equal to space. And BAPI_TRANSACTION_COMMIT is needed, as stated in the doc's.
    Could you please check all messages in RETURN table? Very likely there is something not correct in the parameters, that do not prevent the system to assign routing numbering, but that may affect saving.
    Just let us known...
    Bye,
    flavio

  • Problem , during creation of routing ...

    Hi all ,
    actually , when I'm creating routing - faced a problem - that , message display " this sampling procedure only suitable with SPC characteristic"  
    Message no. QD247 ....
    I guess , may be while creating sampling procedure for routing , and then assignment with control chart , where the problem has been rooted .
    Actually , I don't know what type control chat should be assigned with std. sampling procedure for routing for WM - PP interface .
    why this problem is getting displayed and how could it be solved ?
    thanks in advance
    regards
    arghya

    Hello Arghya,
    From the screen shot 1 it seems that the Sampling procedure which you are assigning to MIC in routing is created with SPC criterion. But the MIC to which you are trying to assign does not have SPC characteristic tick active in its control indicator.
    First you need to decide whether you really want to carry out SPC study for this MIC or not.
    If Yes - Then in control indicators of this MIC tick on SPC characteristic and in sampling procedure use SPC as criterion under valuation mode drop down. You may choose suitable Xbar chart for this with due discussion with business users; what type of chart they want.
    If Not - Then simply do not tick SPC characteristic check-box in control indicators and create sampling procedure as you have shown in 2nd screen shot except control chart.
    Anand

  • Problem while creation of Routing using BAPI "BAPI_ROUTING_CREATE"

    Hi.
    I am trying to create routing using the BAPI "BAPI_ROUTING_CREATE", when I execute I get the group number and the group counter number in the Export parameters. But it is not saved in the database, when we look at CA03 using the group number system says routing not found.
    I am passing "Space" to Bapiflag and i am passing input to tables TASK, MATERIAL ALLOCATON and OPERATION as follows:-
    MATERIALTASKALLOCATION-MATERIAL
    MATERIALTASKALLOCATION-PLANT
    TASK-TASK_LIST_USAGE
    TASK-PLANT
    TASK-TASK_LIST_STATUS
    TASK-TASK_MEASURE_UNIT
    OPERATION-ACTIVITY
    OPERATION-CONTROL_KEY
    OPERATION-WORK_CNTR                    
    OPERATION-PLANT
    OPERATION-DESCRIPTION
    OPERATION-NUMERATOR
    OPERATION-DENOMENATOR
    OPERATION-BASE_QUANTITY
    OPERATION-STD_UNIT_01
    OPERATION-STD_VALUE_01
    OPERATION-STD_UNIT_02
    OPERATION-STD_VALUE_02
    OPERATION-STD_UNIT_03
    OPERATION-STD_VALUE_03
    OPERATION-STD_UNIT_04
    OPERATION-STD_VALUE_04
    OPERATION-STD_UNIT_05
    OPERATION-STD_VALUE_05
    OPERATION-STD_UNIT_06
    OPERATION-STD_VALUE_06
    Appreciate your replies.
    Regards.
    Anand Ghawade.

    Use BAPI_TRANSACTION_COMMIT after you call the BAPI_ROUTING_CREATE

  • How to convert values in tcode CA01 - while creation of Routing

    Hi Group,
    I have a requirement to load data for Routings using tcode 'CA01' using the LSMW with BAPI using idoc type 'ROUTING_CREATE01'.
    the issue is while creating the Routing operations directly through tcode 'CA01', there were certain Unit of measures such as 'SETUP', 'Machine' and etc., for the value of hours when I input 1 and press enter, the value is getting changed to '1,0' and my legacy file will come with a value '1'(say) then the Idoc is failing. is there any function module which is doing this?
    kindly provide your inputs.
    Regards,
    Vishnu

    Hi Vishnu,
    Please check the settings in user profile.
    Regards,
    Madhu.

  • BAPI for creation of Production Order with Ref to sales order

    Hi all,
    we are using BAPI_PRODORD_CREATE  for creating Production Order with ref to sales order.
    As per the Business Scenario, we are not creating any masters like BOM and Routing, instead
    we are creating Routing directly into the Production Order under operation overview screen.
    during creation of routing system is generating a default operation.
    the following is the error results after running the Bapi.
    "No routing selected"
    Best Regards.
    GTNRNR.

    Hi GTNRNR,
    with out creation of BOM you created routing and in routing for the operations which components did you allocated so that can be used to manufacture the final product. Can you be please specific?
    Regards,
    Madhu.G

  • Regarding Routing..

    Hi Friends,
          can u tell me teh step by steb process for routing, when i create a routing in one material, it asks sub components, like that i created 5 components .Once i created a routing for a single material, how it ll relate to the workcenter..
       plz clear my doubts...

    Hi,
    thanus kodi
    For creation of routing BOM structure is must and use BOM header material for create the ROUTING.Therefore it ask for sub component, may be you not maintain the BOM.
    STEP1) Create the bom first ( CS01 )
    STEP2) Create the work center ( CR01 ) 
    STEP3) Go for creation of routing
    3.1) Material ( give BOM header material)
    3.2) Give plant
    3.3) Enter
    3.4) Header details screen appears ( give status and usages)
    3.5) Select the operation overview button.
    3.6) In that srceen you assign the work center 
    3.7) Then select the component overview button and assing the materials to respective workcenter
    3.8) save
    still you face problem plz goto this link
    http://help.sap.com/saphelp_47x200/helpdata/en/7e/d42611455911d189400000e8323c4f/frameset.htm
    thnax
    sunil jawalkar
    9890960640

  • Creating an LSMW for routing

    Hi
    I have managed to create a LSMW model, that wil create (CA01) a routing.
    My problem is that components (from the BOM) is not assigned to operations.
    When I display converted data, just before I create a batch input session, I can can see selected components is assigned to an operation.
    When I use transaction CA03 afterwards, behind the TAB " CompAlloc" there is no materials that has been assigned to operations. 
    Has anyone any experience on this issue?

    Dear,
    As said by Bala,get the help from ABAP programmer and go for a BDC for
    creation of routing.
    I have not worked or used LSMW for routing,so could not give a reply for your
    question.
    Regards
    Mangal

  • Delivery document not being picked while creating shipment document

    Dear All,
    Issue is regarding creation of shipment document.
    As i am creating shipment document in VT01N, am unable to get the delivery doc . ie., delivery document is not picked in shipment creation.
    I have created a sales order, picking is completed n saved, PGI not yet been done.
    Am unable to create a shipment document due to delivery document not being picked.
    i/p's will be of great help.
    with regards,
    Vijayashree

    Dear all,
    The issue is solved.
    As the Route was not picking in Sales Order so the delivery was not picked in shipment creation.
    Route determination setting was not correct.
    Regards,
    Vijayashree

  • Report RCCLROUT does not create any output

    Hi experts,
    I hope someonw can help me on the following incident:
    Running report RCCLROUT from se80, I do not get any output.
    However, the report#s description says:
    *& Creation of routing IDOCs to a given selection                      *
    *& This program selects to an input given via the selection screen the *
    *& corresponding routing data from the database. Then the function     *
    *& module for creation of routing idocs is called.                     *
    *& In general this report is called from the report RCCLMDAT, but it   *
    *& can also be used for its own.                                       *
    I read the source code an found out, that the selection is not used.
    In my simple understanding, just the function call should be un-commended.
    *&   Event START-OF-SELECTION
    START-OF-SELECTION.
    *CALL FUNCTION 'CLOI_ROUTING_READ'
    *     EXPORTING
    *          date_fr   =  date_fr
    *          date_to   =  date_to
    *          lot_fr    =  lot_fr
    *          lot_to    =  lot_to
    *          mestyp    =  mestyp
    *          logsys    =  opt_sys
    *     TABLES
    *          matnr_ro  =  matnr_ro
    *          werks_ro  =  werks_ro
    *          rout_data =  t_mapl
    *     EXCEPTIONS
    *          others    = 1.
    *&   Event END-OF-SELECTION
    end-of-selection.
    As nobody changed the report and it is last used by SAP, I woder myself about how to get my LOIROUT02 EDI File....
    BTW: all of the other reports in this development class are working fine.
    I'd be thankefull for any response...
    Data of SAP: 4.6C;
    Data of Report:
    Title       Generate Routing IDocs                                     
    Original language      DE   German                                                                               
    Created                29.01.1997       SAP                            
    Last changed by        01.04.1998       SAP                            
    Status                 Active                                                                               
    Type                  Executable program                              
    Status                                                                
    Application           PPC                                             
    Authorization groups                                                  
    Development class     CLOI                  for logistics optimization
    Logical database                                                      
    Selection screen

    Thank you very much for your quick response.
    I have implemented Userexits for Planed Order, Production Order and Work Center to fill my extension segments.
    The Settings are defined correct and the Data (Files) are created for the above and the BOM Files.
    (BOM s are also used in standard)
    Only the Routings (in Standard) are not working correct.
    I have no RFC components and therefore nothing to configure. All of the other settings did work (at least) for
    - LOPLO01
    - LOPRO01
    - LOIBOM01
    - LOIWCS01
    I will try to use FUB CLOI_ROUTING_SEND instead.
    If this works, than it's a bug of the report as far as is see.
    FUB CLOI_ROUTING_SEND works fine!!!
    Any ideas?
    kind regards
    Christoph
    Edited by: Christoph Huber on Dec 1, 2008 10:21 AM

  • Loading time issue

    hi,
    I have an issue with loading custom compont based on title window.
    Problem is creating component take too many large time.
    This component based on TitleWindow.
    And it included
    1.HBox which contain 15 buttons(actually it is also an separate component)
    2.TabNavigator which contain 9 tabs(7 of them are custom components)
    I have use creation policy all for the tabnavigator,because I can't perform my logic using on demand creation policy.
    Note:
    If I use creation policy auto,then I can't perform my logic.
    eg:cann't call reset methods of components, because sometimes,If I I didn't navigate then it has not been created and Object reference is null.then cann't help.
    component is very reusable in my system.But it takes too many time to load.
    What can I do? Any suggessons?

    If you want to go down the creation policy route, set the creation policy to NONE, the use the initialize methods to create them when you have data.
    I have a similar project (some code below). In the main <mx:Application/> block, I have a preinitialize method that gets the initial data, the one that is good for tabone then call VSMain.initialize(). This creates the viewstack but only TabOne. The others are created when they are accessed for the first time.
    <mx:VBox width="990" paddingLeft="0" paddingRight="0" horizontalCenter="0" height="570" horizontalScrollPolicy="off" verticalScrollPolicy="off">
    <mx:ViewStack id="VSMain" width="990" height="570" selectedIndex="0" creationPolicy="none">
         <s:NavigatorContent id="one" label="One">
              <main:TabOne/>
         </s:NavigatorContent>
         <s:NavigatorContent id="two" label="Two" creationPolicy="none">
              <main:TabTwo />
         </s:NavigatorContent>
         <s:NavigatorContent id="three" label="Three" creationPolicy="none">
              <main:TabThree/>
         </s:NavigatorContent>
    </mx:ViewStack>
    </mx:VBox>

  • Routings Mass Processing

    Hello PP Experts,
    We hv defined the routings in the old plants, Now we hv changed the plant .
    Can we do the mass conversion  of these routings for new plant?
    Any transaction code?
    Thanks in advance.
    Subhash

    Hi Subhash,
    There is no tcode available for MASS changes of Routing.
    You can create a BDC for creation of routing.
    regards
    radhak mk

  • Steps for discrete manufacturing  in production planning module

    hi,
        my all dear sir, i am consused about the steps of discrete manufacturing in pp module. so please give me solution
          thank you sir

    Hi
    MM01 - make to stock with strategy 10 or 40
    CS01-BOM craetion
    CR01-workcentre creation
    CA01-Routing cretion
    MD61-Create PIR
    MD04-check the requiremnt
    MD02-Run theMRP against the FG
    MD04 -check the planned order for the PIR
    MD04-convert planned order to Production order and save the order
    or you can create directly without PIR CO01
    co02 -chnage order(release)
    MB1A -gooda issue
    CO11N-confirmation of order
    MIGO -GR of order
    CO02 -Teco(technical completion
    CO03 -dispaly of order
    -ashok

Maybe you are looking for

  • The difference between Telepresence Content Server and MSE 3500

    Good day! Could someone explain me what's the difference between Telepresence Content Server and MSE 3500? Why do I need to obtain two these devices for sorting out my tasks? I want to understand gist of the first and the second devices.

  • Java DataBase in NetBeans!!

    Hi there, can you help guy, I have the NetBeans IDE 4.1, Oracle 9, j2sdk1.4.0, and win xp (on standalone machine) I remember the old version of NetBeans, you can use Mounting FileSystem for jdbc\oracle\driver to use the OracleDriver but I get message

  • Batch Export Stills Broken in FCP5?

    In FCPHD you used to be able to batch export stills by setting markers in your clip 1) Choose a clip, put in markers where you want to export 2) open the export queue window (window -> export queue) 3) drag the markers into the queue window 4) select

  • HT4539 how can i get a book out of the download queue? I have already downloaded it once.

    How do I delete a book of my download queue? I already downloaded one copy. I don't want to be charged for another copy.

  • HI Experts Explain  this Scenario

    THIS SCENARIO IS POSSIBLE WITH BPM. ANY BODY HELP ME TO SOLVE THIS PROBLEM          EP SYSTEM  - REQ-->      XI System               -REQ-> FILE RECEIVER                                      <--RES     XI System             <--RES---   FILE SENDER <-