Box inside another box in SMARTFORM for hierarchical item data printing

Hi All,
I need to put a <b>box inside another box</b> and <b>both the boxes need to be bordered</b>. There are 2 levels of main data to be printed in the 2 boxes. Header data will be printed in the outer box and corresponding to each header row a number of line items will be printed in the inner box.
There will be multiple numbers of headers as per requirement. How can this feature be implemented in SMARTFORM / SAP-script?

Hi ,
You can try using a combination of variable window and main window to achieve what you are lookoing for.
You will have to use Main window instances such a way similar to newspaper printing.
Cheers
VJ

Similar Messages

  • Moving WCC cluster setup from one box to another box

    We want to move the existing WCC  (clustered) from one box to another box (both unix). We have the cluster/ folder {which have the folders cs/, vault/, weblayout/} on shared drive mounted in source machine running on 11.1.1.6.0.
    We have installed the same installation in destination box. We want to follow the below steps to move the config., data from source to destination.
    1) Stop servers in source.
    2) Change the db details in weblogic console destination to source db.
    3) Unmount the shared/ folder in source and mount it in destination box. (The vault, weblayout, cs folders will be mapped directly in destination ucm)
    The other qns we have are
    1) Are the above steps are correct and will WCC run without any problems.
    2) Do the domain homes needs to be in sync (because the destination box is a fresh installation)
    Just to test it, I have copied the cluster/cs/ folder from source to destination and the destination content servers are working fine. (I have not copied vault/ weblayout and changing the db)
    I have seen a article on cloning WCC servers
    Is it Possible to Clone Webcenter Content 11g ? (Doc ID 1507480.1)
    It pointed to documentation http://docs.oracle.com/cd/E23943_01/core.1111/e10105/testprod.htm#ASADM11306
    For target already exists, it just asked to migrate config. using CMU. Do I need to worry about domain homes or cluster/cs is enough to run WCC smoothly if they are in sync?
    Thanks,
    Narasa Kumar

    Hi
    Domain home contains information pertaining to weblogic and it's clustering configuration. Most of the WCC related config data will be residing in Oracle_ECM1 and ucm/cs folders. if the domain data changes from source to destination then  there will be difference in behavior based on what changes are done in destination domain.
    Differences/ changes in intradoc.cfg and config.cfg between 2 environments will have impact.
    Better is publish your directory structure and then ask for Q and changes are that response might fit-in-better to your scenario.
    Ideally, have same structure and configuration on destination and then perform movement of WCC. Run a sanity to confirm working use cases and then perform any changes to configuration or other things have you planned.
    Thank you!

  • How to move CRM_UI_FRAME component from one box to another box

    Hi All,
    Need help about this task.
    Background:
    - CRM Dev Box
    - CRM QC Box
    - CRM Prod Box
    Problem:
    - CRM_UI_FRAME component on the QC Box is not working properly. When we are going to the BSP Workbench, an error comes out that there is an unclosed tag; '>' or '/>' expected entity: "<<document>>" Offset : 0000003376 Error Severity: error.
    - BSPWD_BASICS/WorkAreaHostViewSet is not loaded
    - This problem never occurs on both Dev and Prod Box
    Our Solution:
    - To copy the whole CRM_UI_FRAME component from Dev to QC
    Our Question
    - Is the solution possible?
    - If it is, how could we transfer/copy the whole CRM_UI_FRAME or any component from one box to another box
    - Could we just attach this to a transport? Or is this a BASIS task?
    - Other suggestions on how to do this?
    Thanks in advance!
    Regards,
    Marc

    Hi,
    Please ensure to read note #[1540435 |http://service.sap.com/sap/support/notes/1540435]and to decide which update strategy/scenario you
    need and in the "[SLD Planning Guide|http://www.sdn.sap.com/irj/sdn/nw-sld?rid=/library/uuid/e0a1a8fb-0527-2a10-f781-8b67eab16582]".
    You should ensure that your CIM Model and CR Content on your SLD are updated as
    per SAP note [669669 |http://service.sap.com/sap/support/notes/669669]on both SLDs.
    Regards,
    Aidan

  • Transporting form BOX to another BOX to production BOX changes not effect

    Hi Expert's,
    Good Day!
    I would like some help from on my object from "Transporting form BOX1 to another BOX1 to production BOX changes not effect" ??
    The issue is regarding transaction SE51 (screen painter). I was changing the Define Length from 45 to 55 upon activating their will be a pop-up information message will appear "Selection screen: Report generation makes screen changes ineffective". After the activation the Define Length in transaction se51 will now be 55.
    However, upon transporting to another Box/system the Define Length will be 45 instead of 55. Can you help me how to solve this problem? What to do to avoid the changes in the Define Length so that it would still be 55 instead of 45?
    Answer's will be a great help.
    Thank you,
    ~Junne Ray

    Hi Satya,
    Good Day!
    I was changing the Screen (transaction SE51) of a field Define Length from 45 to 55. the changes is transported and reflected to another box but when transporting it again to the production box the Screen (transaction SE51) the Define length changes again to 45 instead to 55.
    ~Thank you so much
    Junne Ray
    Edited by: jrvillacortz on Mar 25, 2009 6:23 AM

  • Report design for hierarchical xml data

    I need to create a report that shows hierarchical xml data. I already have an xml saved to a database. How would I go bout creating a design for such a report? Should I be doing groups on every parent with children? Any example?
    Thanks

    Hi markgoldin,
    I tested the issue in my local machine by following steps:
      1. Created a table and store the xml into the table with the following query:
    CREATE TABLE xmlTbl (id INT, xmlVal xml);
    INSERT INTO xmlTbl values(1,
    '<Customers>
    <Customer ID="11">
    <FirstName>Bobby</FirstName>
    <LastName>Moore</LastName>
    </Customer>
    <Customer ID="20">
    <FirstName>Crystal</FirstName>
    <LastName>Hu</LastName>
    </Customer>
    </Customers>'
     2. Created a stored procedure to retrieve data from the table with the following query:
    create procedure xml_report
    as
    DECLARE @xmlDoc XML;
    SELECT @xmlDoc = xmlVal FROM xmlTbl WHERE id=1;
    SELECT T.c.value('(@ID)','int') AS ID,
    T.c.value('(FirstName[1])','varchar(99)') AS firstName,
    T.c.value('(LastName[1])','varchar(99)') AS lastName
    FROM @xmlDoc.nodes('/Customers/Customer') T(c)
    GO
      3. In the Report Data pane, right-click Data Sources and click Add Data Source.
      4. For an embedded data source, verify that Embedded connection is selected. From the Type drop-down list, select a data source type; for example, Microsoft SQL Server or OLE DB. Type the connection string directly or click Edit to open the Connection
    Properties dialog box and select Server name and database name from the drop down list.
      5. For a shared data source, verify that Use shared data source reference is selected, then select a data source from the drop down list.
      6. Right-click DataSets and click Add Dataset, type a name for the dataset or accept the default name, In Data source, select the name of an existing shared data source, select StoredProcedure in Query type, then select xml_report from stored procedure
    name drop down list.
      7. In the Toolbox, click Table, and then click on the design surface.
      8. Drag the Date field from the dataset to the cells in the table.
    The following screenshot is for your reference:
    For more information about how to use the xml data type methods, please refer to the following document:
    http://msdn.microsoft.com/en-us/library/ms190798.aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Print smartforms for service order with printer, not a spool in CRM WebUI

    Dear Experts!
    We have a long list of different print forms for a service order. We would love to have a list of these forms appearing when clicking on "Print" button to choose from.
    We have made appropriate settings in SPRO (CRM -> Basic Functions -> Actions -> Actions in Transaction -> Change Actions and Conditions -> Define Action Profiles and Actions & Define Conditions). Option "Print Immediately" is set, and the Output Device is set to local printer. So now we have the following results:
    - When clicking "Print Preview", a window appears where one of the possible forms may be selected to be shown as PDF.
    - When clicking "Print", one of the forms is being moved to spool. So, you may only enter the spool in GUI and send the document to printer.
    There is only one help topic about printing, that says:
    Prerequisites
    Actions are displayed on the Print pushbutton if the following criteria are met:
    -The print action is set as relevant for the toolbar
    - A print smart form is defined as the processing type
    - The action is set to Execute immediately
    - The action is inactive, that is, it is set to be executed manually
    Please, give us a hint on how to make customizing to send document right to the printer.

    Hi Alex,
    This Business Add-In (PRINTER_DETERM_PPF) is used in the Actions (CRM-BF-ACI) component. It enables you to determine a printer more flexibly than the standard Customizing activity allows you to. For example, if you want to print an e-mail confirmation from a local printer in your office, and not from the usual printer for your entire department, you can use this add-in to do so.
    Get back to me for a more info.
    Hope this helps.
    Cheers, Satish

  • Code  of ME_process_cust_Po BADI for checking item data?

    Hi all,
    While users are creating new PO in ME21N, I have to check the condition records for the Materials they entered.
    If the condition record is not maintained for the respective material The creation of PO while saving it , should not be  allowed  and a message should be displayed.
    Please mention  the respective method and code to do this?
    Thanks
    Vamshi.

    Hi ,
    this is the sample code for Item check, by using mm_messages_mac(include u can raise error msg based on the INFNR(info record) field.
      DATA: ls_mepoitem TYPE mepoitem,
            ls_customer TYPE mepo_badi_exampl,
            ls_tbsg     TYPE tbsg.
      INCLUDE mm_messages_mac. "useful macros for message handling
    here we check customers data*
      ls_mepoitem = im_item->get_data( ).
      IF ls_mepoitem-loekz EQ 'D'.
    a physical deletion of the item was carried out. therrefor we have to*
    delete customer data on the level of the item*
        ls_customer-ebeln = ls_mepoitem-ebeln.
        ls_customer-ebelp = ls_mepoitem-ebelp.
        CALL FUNCTION 'MEPOBADIEX_SET_DATA'
          EXPORTING
            im_data                    = ls_customer
            im_physical_delete_request = 'X'.
      ELSE.
    update/insert operation*
        CALL FUNCTION 'MEPOBADIEX_GET_DATA'
          EXPORTING
            im_ebeln = ls_mepoitem-ebeln
            im_ebelp = ls_mepoitem-ebelp
          IMPORTING
            ex_data  = ls_customer.
    check customers data*
    check field badi_bsgru. This should be carried out only for new items. Once the PO is posted the*
    field should no longer be changeable. This is done in Method FIELDSELECTION_ITEM.*
        IF im_item->is_persistent( ) EQ mmpur_no.
          IF ls_customer-badi_bsgru IS INITIAL.
    Place the cursor onto field badi_bsgru. The metafield was defined in BAdI ME_GUI_PO_CUST,*
    Method MAP_DYNPRO_FIELDS.*
            mmpur_metafield mmmfd_cust_01.
            mmpur_message_forced 'W' 'ME' '083' text-002 '' '' ''.
          ELSE.
    check whether the field is valid*
            *SELECT SINGLE * FROM tbsg INTO ls_tbsg WHERE bsgru EQ ls_customer-badi_bsgru.*
            IF NOT sy-subrc IS INITIAL.
              mmpur_metafield mmmfd_cust_01.
              mmpur_message_forced 'E' 'ME' '083' text-004 '' '' ''.
    invalidate the object*
              CALL METHOD im_item->invalidate( ).
            ENDIF.
          ENDIF.
        ENDIF.
    check field badi_afnam*
        IF ls_customer-badi_afnam IS INITIAL.
          mmpur_metafield mmmfd_cust_02.
          mmpur_message_forced 'W' 'ME' '083' text-003 '' '' ''.
        ENDIF.
      ENDIF.
    regards
    Prabhu

  • User exit for PO Item data update

    Hello All,
    At time of creation of PO using ME21N / ME58, we want to update PO item data . We want to update Over and Under delivery tolerances values from corressponding sales order rather than purchase info record.
    Please let me know if anyone has worked on similar requirement or any pointers for relevant user exits in SAP Release 4.6C .
    Regards,
    Manu.

    Hello ,
    Would you please check the below Userexits in 4.6C .
    EXIT_SAPLV50E_001
    EXIT_SAPLV50E_002
    EXIT_SAPLV50E_003
    EXIT_SAPLV50E_004
    EXIT_SAPLV50E_005
    EXIT_SAPLV50E_006
    In which I hope 2 and 4th were usefull.
    Regards,

  • How to move record from one box to another box by using or or or

    Wonder if someone has done something like below:
    display data in the A box, then move any one or two or more records to B box by using the symbol >, >>, <<
    Any help will be appreciated!!!!
    Thanks in advance!!

    Hii user454615,
    I'm unable to understand what u want to achieve. Do u want to move elements between T lists like the way it happens in a shuttle?
    Abhishek.

  • A shadow when putting a box over another box.

    why when i put a box with the same color over a box from the master page with the same color it creates a different color shadow instead of blending in, how can you fix it.

    The text box's opacity has been lowered you need to make them a solid colour.
    The opacity control is on the top menu bar between effect and hyperlink. 
    Slide it all the way to the right or type in 100!

  • How to call out of box delete function on client side for deleting item in document library SharePoint 2010.

    Hi,
    We want to add the custom functionality to delete the item in document library .
    if we click on custom button it should delete the item in document library.
    Could anyone please suggest me.
    How to accomplish the task.
    Thanks ... 

    Hi,
    Any update?
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Reg. Exit/BADI for changing item data of PO in ME22N

    Hi all,
    My requirement is to update the field LABNR (Order Ack.) of few specific line items of a PO, in the Transaction ME22N, using Exit/BADI.
    I have tried the BADI  ME_PROCESS_PO_CUST. But the PROCESS_ITEM method of this BADI processes only the line item which has been changed/inserted in ME22N transaction. But my requirement is to update line items irrespective of whether that line item was "changed/not changed" during the process in ME22N screen.
    Could you please suggest me some suitable Exit/BADI for this requirement.
    Regards,
    Anbarasan K

    Thanks Martin.
    Problem solved by implementing the method Process_Header.
    1. Get the items from Header                              -  im_header->get_items
    2. Loop the item list and get the line item record   - re_item-item->get_data
    3. <- Logic to Update the line item - >.
    4. Update the line item                                       - re_item-item->set_data
    Thank you very much.. Martin.
    Regards,
    Anbarasan K

  • Generic Data source using FM for BOM Item data is not saving

    Hi Experts,
    This is the first time I post on this forum.
    I am creating a custom datasource (ycp_bom_itm) based on Function Module in R/3 which get data from MAST and STPO.
    I have defined the Function Module and the extraction structure as well.
    So While saving the Data source i am getting Error as
    " Units field MEINS for field ZMENGE of DataSource ycp_bom_itm is hidden
         Message no. R8147"
    Does any of you have experience of this issue? Please Help to solve this issue
    Thank's In advance

    Hi,
    Go to Rsa6 and select relevant d.s (Custom) there will be 4  options for each field selction, hide fieldi ,nversion,field only .
    check MEINS  field  details either it is checked/unchecked (Enable/disabled)  hide field , need to be un checked.
    Thanks.

  • How to use one hash table inside another hash table

    Hi everyone,
    Any example of hash table inside another hash table.
    Can one here help me how to write one hash table inside another with repeating keys for the first hash table.
    Thanks,
    kanty.

    Do you mean you want the 'value' entries in a hash table to themselves be hash tables? Easy but this often indicates a design flaw.
    Hashtable<String,<Hashtable<String,Value>> fred = new Hashtable<String,<Hashtable<String,Value>> ();But what do you mean by "with repeating keys for the first hash table"?
    Edited by: sabre150 on Jul 2, 2010 10:11 PM
    Looks like you have already handled the declaration side in your other thread. I suspect you should be writing your own beans that hold the information and these beans would then be stored in a Map. The problem I have is that your description is too vague so I can't be certain.

  • InDesign CS3 placed inside another InDesign CS3

    I have an InDesign file placed inside another and one of the picture doesn't print or export properly.
    It's not the first time it's happened, nut usually the problem seems to occur with a complex PSD file placed in the 1st document.
    This time the file is simple, but it's in multiply mode in the 1st InDesign document.
    Any idea how to fix this?

    I just tried to reproduce the image problem with PSD in ID in ID to show you screenshots but now everything seems to be working correctly (I had some files from last month that were causing a problem but now they're not). I'll just have to wait for it to happen again.
    As for the place ID into ID causing a crash, I figured this isn't a widespread quirk, but several others in my office have this issue, although one colleague does not. We're all using the same workflow, the same hardware/software/fonts (OS 10.5.8; CS3 5.0.4), etc.
    ID crashes the first time I place an ID file into an ID file, whether by file>place or drag-and-drop. Doesn't matter if the files are local or on a server. It also happens when the placed ID file has changes that causes the "container file" to be updated (the relinking causes the crash). If I quit ID before doing any of these operations, so that the place/relink is one of the first operations that I do, then the program doesn't crash. If I've been working for a little while then place/relink, that's when I get the crash.
    Any thoughts?

Maybe you are looking for